nix-configs/modules/desktop-environment/home/panels/eww/configDir/bottomBar/workspaces.yuck

19 lines
399 B
Text
Raw Normal View History

2024-09-10 22:07:27 +02:00
(defwidget workspaceWidget []
(box
:class "workspaces"
(for workspace in workspaces
(button
:style "border-bottom: 4px solid ${workspace.color}"
:class "${workspace.active ? "focused" : 0}"
2024-09-10 22:07:27 +02:00
:onclick "swaymsg workspace ${workspace.name}"
(label :text "${workspace.idx}")
2024-09-10 22:07:27 +02:00
)
)
)
)
(deflisten workspaces
:initial "[]"
"bar-ws-monitor"
)