88 lines
1.3 KiB
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")
2024-04-13 09:32:22 +02:00
(include "modules/systray.yuck")
2023-11-21 19:19:09 +01:00
(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")
(include "windows/powermenu.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-11-23 20:46:43 +01:00
(workspace-mod)))
2023-04-12 20:32:07 +02:00
(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-11-23 20:46:43 +01:00
(sys-mod)
(net-mod)
2024-04-13 09:32:22 +02:00
(systray-mod)
2023-11-23 20:46:43 +01:00
(clock-mod)))
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-23 20:46:43 +01:00
(radio-mod)))
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))
2023-11-23 20:46:43 +01:00
(defwidget window []
(box
:class "winouter"
(eventbox
:class "winevent"
(box
:class "wininner"
(children)
)
)
)
)
(defwidget module []
(box
:class "modouter"
(eventbox
:class "modevent"
(box
:class "modinner"
(children)
)
)
)
)