dotfiles/de/home/.config/eww/modules/bar/workspaces.yuck
2025-03-21 13:45:08 -07:00

13 lines
409 B
Text

(deflisten workspacesArray :initial "${[{"name": "placeholder","focused":true}]}"
'scripts/bar/workspaces')
(defwidget workspaces [array]
(box :class "workspaces"
:orientation "h"
:space-evenly false
:halign "start"
(for entry in array
(button :onclick `swaymsg workspace "${entry.name}"`
:class {entry.focused ? "focused" : ""}
'${replace(entry.name,".*:","")}'))))