Candyrice/yuck/panel/panel_window.yuck
2024-12-08 19:06:47 +05:30

24 lines
519 B
Plaintext

(include "yuck/panel/panel_widg.yuck")
(defwindow panel [h w]
:monitor 0
:windowtype "dock"
:wm-ignore false
: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}" :w "${w}")
)