Candyrice/eww/yuck/panel/panel_window.yuck

24 lines
505 B
Plaintext
Raw Normal View History

2024-08-06 02:18:07 +00:00
(include "yuck/panel/panel_widg.yuck")
(defwindow panel [h]
2024-08-06 02:18:07 +00:00
:monitor 0
:windowtype "dock"
:wm-ignore true
: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"
)
(panel_widg :h "${h}")
2024-08-06 02:18:07 +00:00
)