nix-configs/modules/desktop/home/eww/configDir/bottomBar/workspaces.yuck
2025-09-04 04:32:26 +02:00

18 lines
488 B
Text

(defwidget workspaceWidget []
(box
:class "workspaces"
(for workspace in workspaces
(button
:style "border-bottom: 4px solid ${workspace.color}${workspace.active ? "; background-color: #3c3836" : ""}"
:class "${workspace.focused ? "focused" : ""}"
:onclick "niri msg action focus-workspace ${workspace.idx}"
(label :text "${workspace.icon ?: workspace.idx}")
)
)
)
)
(deflisten workspaces
:initial "[]"
"bar-ws-monitor"
)