dotfiles_ewwii/nbcl/panel/panel_section_center.nbcl
2026-09-07 16:50:41 +05:30

17 lines
349 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
})
}
}
}