dotfiles-remastered/.config/eww/modules/bar/bar.yuck

34 lines
479 B
Plaintext
Raw Normal View History

2023-11-26 23:34:43 +00:00
(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)
)
)
)