dotfiles_ewwii/nbcl/panel/panel_window.nbcl
2026-09-08 10:45:30 +05:30

21 lines
421 B
Plaintext

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