nix-configs/modules/de/home/eww/configDir/bottomBar/workspaces.yuck

19 lines
457 B
Text
Raw Normal View History

2024-09-10 22:07:27 +02:00
(defwidget workspaceWidget []
(box
:class "workspaces"
(for workspace in workspaces
(button
2025-03-14 13:09:28 +01:00
:style "border-bottom: 4px solid ${workspace.color}${workspace.active ? "; background-color: #3c3836" : ""}"
:class "${workspace.focused ? "focused" : ""}"
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"
)