dotfiles-remastered/.config/eww/modules/bar/bar.yuck
2023-11-27 00:34:43 +01:00

34 lines
479 B
Plaintext

(defwidget bar []
(box
:class "bar-widget"
:orientation "h"
:space-evenly true
(box
:orientation "h"
:space-evenly false
:halign "start"
(workspaces)
)
(box
:orientation "h"
:space-evenly false
:halign "center"
(playerctl)
)
(box
:orientation "h"
:space-evenly false
:halign "end"
(volume_slider)
(clock)
(notifications)
)
)
)