mirror of
https://github.com/GeorgeSG/dotfiles.git
synced 2026-09-06 09:28:45 +00:00
16 lines
483 B
Plaintext
16 lines
483 B
Plaintext
(deflisten active-workspace :initial "." "./lib/get-active-workspace.sh")
|
|
|
|
(defwidget workspaces [?monitor-workspaces]
|
|
(box :class "workspaces"
|
|
:orientation "h"
|
|
:space-evenly true
|
|
:halign "start"
|
|
:spacing 8
|
|
(for workspace in monitor-workspaces
|
|
(eventbox :cursor "pointer"
|
|
(button :class "interactive workspace ${active-workspace == workspace ? "active" : ""}" :onclick "hyprctl dispatch workspace ${workspace}" "${workspace}")
|
|
)
|
|
)
|
|
)
|
|
)
|