mirror of
https://github.com/GeorgeSG/dotfiles.git
synced 2026-09-06 17:38:45 +00:00
14 lines
445 B
Plaintext
14 lines
445 B
Plaintext
(deflisten active-workspace :initial "." "sh widgets/workspaces/get-active-workspace.sh")
|
|
|
|
(defwidget workspaces [?monitor-workspaces]
|
|
(box :class "workspaces"
|
|
:orientation "h"
|
|
:space-evenly true
|
|
:halign "start"
|
|
:spacing 10
|
|
(for workspace in monitor-workspaces
|
|
(button :class "workspace ${active-workspace == workspace ? "current" : ""}" :onclick "hyprctl dispatch workspace ${workspace}" "${workspace}")
|
|
)
|
|
)
|
|
)
|