feat: use eww as bar!

This commit is contained in:
João Dias
2024-11-23 10:10:28 -03:00
parent 1f08358b10
commit fb7b91699e
18 changed files with 349 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
(defwindow control-center []
:monitor 0
:geometry (geometry :width "500px"
:height "90%"
:anchor "center right")
:stacking "overlay"
:exclusive false
:namespace "eww-cc"
(box
(toggles)
)
)
(defwidget toggles []
(box :class "row"
(button :onclick "notify-send 'stop internet!'"
(box
(label :class "title" :text "Internet >")
(label :class "extra" :text "Caique Wifi")
)
)
)
)