mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
12 lines
241 B
Bash
Executable File
12 lines
241 B
Bash
Executable File
#!/bin/bash
|
|
|
|
spaces (){
|
|
windows=$(hyprctl workspaces -j | jq 'map({id: .id}) | sort_by(.id)')
|
|
echo $windows
|
|
}
|
|
|
|
spaces
|
|
socat -u UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock - | while read -r line; do
|
|
spaces
|
|
done
|