7 lines
255 B
Text
7 lines
255 B
Text
|
#!/bin/dash
|
||
|
|
||
|
hyprctl monitors -j | jq '.[] | select(.focused) | .activeWorkspace.id'
|
||
|
|
||
|
socat -u UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock - |
|
||
|
stdbuf -o0 awk -F '>>|,' -e '/^workspace>>/ {print $2}' -e '/^focusedmon>>/ {print $3}'
|