63 lines
1.6 KiB
Text
63 lines
1.6 KiB
Text
|
|
(defwindow bar0
|
|
:monitor "0"
|
|
:class "bar"
|
|
:geometry (geometry
|
|
:x "0%"
|
|
:y "5px"
|
|
:width "1400px"
|
|
:height "25px"
|
|
:anchor "top center")
|
|
:stacking "fg"
|
|
:exclusive true
|
|
(bar0))
|
|
|
|
(defwidget monitor0 []
|
|
(box
|
|
:visible false
|
|
(label
|
|
:width "15"
|
|
:text "1")
|
|
(seperator)))
|
|
|
|
(defwidget workspaces0 []
|
|
(box
|
|
:space-evenly false
|
|
:spacing 3
|
|
(for workspace in workspaces
|
|
(eventbox
|
|
:onclick `/home/willifan/.config/scripts/workspaces.sh ${workspace.ID}`
|
|
:class {workspace.activeID == "0" ? "activeWorkspace" : "smallBox"}
|
|
:valign "center"
|
|
:halign "center"
|
|
:height 20
|
|
:width 20
|
|
(box
|
|
:halign "center"
|
|
:space-evenly false
|
|
(smallSpacer)
|
|
(label
|
|
:class {workspace.occupied == true ? "" : "unoccupiedWorkspace"}
|
|
:width 16
|
|
:text "${workspace.ID}")
|
|
(imageDPI
|
|
:visible "${workspace.occupied}"
|
|
:image "${workspace.clients[0].icon}"
|
|
:size "16")
|
|
(smallSpacer))))))
|
|
|
|
(defwidget start0 []
|
|
(box
|
|
:orientation "h"
|
|
:space-evenly false
|
|
:halign "start"
|
|
(space)
|
|
(monitor0)
|
|
(time)))
|
|
|
|
(defwidget bar0 []
|
|
(centerbox :orientation "h"
|
|
(start0)
|
|
(center)
|
|
(end)))
|
|
|