34 lines
479 B
Plaintext
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)
|
|
)
|
|
)
|
|
)
|