Candyrice/yuck/panel/panel_window.yuck

24 lines
505 B
Plaintext

(include "yuck/panel/panel_widg.yuck")
(defwindow panel [h]
:monitor 0
:windowtype "dock"
:wm-ignore true
:stacking "fg"
:halign "center"
:valign "center"
:geometry
(geometry
:anchor "top center"
:x "0%"
:y "0%"
:height "${h}px"
:width "100%"
)
:reserve
(struts
:distance "${h}px"
:side "top"
)
(panel_widg :h "${h}")
)