Candyrice/eww/yuck/panel/panel_window.yuck
candifloss e608123faf Defined 3 sides of the panel.
Added placeholder css.
Minor changes to panel definition.
2024-08-07 20:34:26 +05:30

24 lines
499 B
Plaintext

(include "yuck/panel/panel_widg.yuck")
(defwindow panel [h]
:monitor 0
:windowtype "dock"
:wm-ignore true
:stacking "fg"
:halign "end"
:valign "end"
: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}")
)