Candyrice/yuck/panel/panel_window.yuck

24 lines
519 B
Plaintext
Raw Normal View History

2024-08-06 02:18:07 +00:00
(include "yuck/panel/panel_widg.yuck")
2024-12-08 13:36:47 +00:00
(defwindow panel [h w]
2024-08-06 02:18:07 +00:00
:monitor 0
:windowtype "dock"
2024-12-08 13:36:47 +00:00
:wm-ignore false
2024-08-06 02:18:07 +00:00
:stacking "fg"
:halign "center"
:valign "center"
2024-08-06 02:18:07 +00:00
:geometry
(geometry
:anchor "top center"
:x "0%"
:y "0%"
:height "${h}px"
2024-08-06 02:18:07 +00:00
:width "100%"
)
:reserve
(struts
:distance "${h}px"
:side "top"
)
2024-12-08 13:36:47 +00:00
(panel_widg :h "${h}" :w "${w}")
2024-08-06 02:18:07 +00:00
)