58 lines
946 B
Plaintext
Raw Normal View History

2023-11-21 19:19:09 +01:00
(include "modules/workspaces.yuck")
2023-04-12 20:32:07 +02:00
2023-11-21 19:19:09 +01:00
(include "modules/sys.yuck")
(include "modules/net.yuck")
(include "modules/clock.yuck")
2023-11-21 16:52:35 +01:00
2023-11-21 19:19:09 +01:00
(include "windows/calendar.yuck")
(include "windows/sys.yuck")
2023-11-22 06:14:03 +01:00
(include "windows/radio.yuck")
2023-11-21 16:52:35 +01:00
2023-04-12 20:32:07 +02:00
(defwidget left []
(box
:space-evenly false
2023-11-21 16:52:35 +01:00
:orientation "v"
:halign "end"
:valign "start"
2023-04-12 20:32:07 +02:00
(workspaces)))
(defwidget right []
(box
:space-evenly false
2023-11-21 16:52:35 +01:00
:orientation "v"
2023-04-12 20:32:07 +02:00
:halign "end"
2023-11-21 16:52:35 +01:00
:valign "end"
2023-04-12 20:32:07 +02:00
(sys)
2023-11-21 16:52:35 +01:00
(net)
(clock)))
2023-04-12 20:32:07 +02:00
(defwidget center []
(box
:space-evenly false
2023-11-21 16:52:35 +01:00
:orientation "v"
:halign "end"
:valign "center"
2023-11-22 06:14:03 +01:00
(radio-button)))
2023-04-12 20:32:07 +02:00
(defwidget bar-box []
(centerbox
2023-11-21 16:52:35 +01:00
:orientation "v"
:class "bar"
2023-04-12 20:32:07 +02:00
(left)
(center)
(right)))
2023-11-21 16:52:35 +01:00
2023-04-12 20:32:07 +02:00
(defwindow bar
:monitor 0
2023-11-21 16:52:35 +01:00
:geometry (geometry
:x "0%"
2023-04-12 20:32:07 +02:00
:y "0%"
2023-11-21 16:52:35 +01:00
:width "20px"
:height "100%"
:anchor "right center")
2023-04-12 20:32:07 +02:00
:stacking "fg"
:exclusive true
2023-11-21 16:52:35 +01:00
(bar-box))