dotfiles_ewwii/nbcl/panel/panel_window.nbcl
candifloss 74b209b1e6 Introduce Config to NBCL
- Panel height in config file
- Update component name, too
2026-08-22 23:09:45 +05:30

21 lines
459 B
Plaintext

import "nbcl/panel/panel_component.nbcl" as panel_component { * }
Window "ewwii_panel" {
monitor = 0
windowtype = "dock"
wm_ignore = false
stacking = "fg"
geometry = {
anchor = "top center"
x = "0px"
y = "0px"
height = config.panel_height.to_string() +"px"
width = "100%"
}
reserve = {
distance = config.panel_height.to_string() +"px"
side = "top"
}
EwwiiPanel {}
}