aboutsummaryrefslogtreecommitdiff
path: root/home/rices/schrottkatze/eww/configDir/bottomBar/workspaces.yuck
blob: 2709e1b4589cbf616c72ceac6705ec07b91777f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(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"
)