eww: add new tiles to control-center, new notification popup, new styles for a lot of widgets

This commit is contained in:
retrozinndev
2025-01-07 16:26:20 -03:00
parent 435b222e03
commit c505ecf4cf
43 changed files with 802 additions and 319 deletions
+12 -1
View File
@@ -7,19 +7,25 @@
(include "widgets/bar/window.yuck")
(include "widgets/bar/network.yuck")
(include "widgets/bar/battery.yuck")
(include "widgets/bar/hardware.yuck")
(defwindow bar
:monitor 0
:geometry (geometry :width "100%"
:height "44px"
:height "50px"
:anchor "top center")
:stacking "fg"
:exclusive true
:namespace "eww-bar"
(box :class "bar"
:vexpand true
:hexpand false
(centerbox :orientation "horizontal"
(box :class "widgets-left"
:halign "start"
:space-evenly false
:vexpand true
(logo)
(workspaces)
(window)
@@ -27,12 +33,16 @@
(box :class "widgets-center"
:halign "center"
:space-evenly false
:vexpand true
(clock)
(media)
)
(box :class "widgets-right"
:halign "end"
:space-evenly false
:vexpand true
(systray :spacing 0
:orientation "horizontal"
:space-evenly false
@@ -46,4 +56,5 @@
(cc-toggle)
)
)
)
)