21 lines
490 B
Plaintext
21 lines
490 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 {}
|
|
} |