created panel window
This commit is contained in:
parent
a940cdd5bd
commit
ea9c4c1fa3
3
eww/yuck/panel/README.md
Normal file
3
eww/yuck/panel/README.md
Normal 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)
|
2
eww/yuck/panel/panel_widg.yuck
Normal file
2
eww/yuck/panel/panel_widg.yuck
Normal file
@ -0,0 +1,2 @@
|
||||
(defwidget panel_widg
|
||||
)
|
19
eww/yuck/panel/panel_window.yuck
Normal file
19
eww/yuck/panel/panel_window.yuck
Normal 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)
|
||||
)
|
Loading…
Reference in New Issue
Block a user