created panel window

This commit is contained in:
Candifloss 2024-08-06 07:48:07 +05:30
parent a940cdd5bd
commit ea9c4c1fa3
3 changed files with 24 additions and 0 deletions

3
eww/yuck/panel/README.md Normal file
View File

@ -0,0 +1,3 @@
# Panel
This can be used as a topbar(or a bottom or side bar, as per preferences, with minimal modifications in the config)

View File

@ -0,0 +1,2 @@
(defwidget panel_widg
)

View File

@ -0,0 +1,19 @@
(include "yuck/panel/panel_widg.yuck")
(defwindow panel
:monitor 0
:windowtype "dock"
:wm-ignore true
:stacking "fg"
:halign "end"
:valign "end"
:geometry
(geometry
:anchor "top center"
:x "0%"
:y "0%"
:height "2.5%"
:width "100%"
)
(panel_widg)
)