15 lines
376 B
Plaintext
15 lines
376 B
Plaintext
(include "widgets/clock/clock.yuck")
|
|
(include "widgets/hardware_stats/hardware-tab/hardware_button.yuck")
|
|
(include "widgets/volume/volume.yuck")
|
|
(include "widgets/workspaces/workspaces.yuck")
|
|
|
|
(defwidget bar []
|
|
(box :orientation "h"
|
|
:class "bar"
|
|
:halign "end"
|
|
:space-evenly "false"
|
|
(volume_button)
|
|
(hardware_button)
|
|
(workspaces_button)
|
|
(clock)))
|