mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-06 15:29:28 -05:00
11 lines
365 B
Fish
Executable File
11 lines
365 B
Fish
Executable File
#!/bin/fish
|
|
|
|
if ! hyprctl workspaces -j | jq -e 'first(.[] | select(.name == "special:special"))'
|
|
set activews (hyprctl activewindow -j | jq -r '.workspace.name')
|
|
string match -r -- '^special:' $activews && set togglews (string sub -s 9 $activews) || set togglews special
|
|
else
|
|
set togglews special
|
|
end
|
|
|
|
hyprctl dispatch togglespecialworkspace $togglews
|