17 lines
268 B
Plaintext
17 lines
268 B
Plaintext
# Middle part of the top bar
|
|
import core.json
|
|
|
|
fn panel_center() {
|
|
Box {
|
|
space_evenly = false
|
|
spacing = 0
|
|
halign = "center"
|
|
|
|
Label {
|
|
height = config.panel_height
|
|
text = global("xdistate").mutate(|val|{
|
|
json.parse(val).window_title
|
|
})
|
|
}
|
|
}
|
|
} |