2024-02-11 15:37:14 -08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
hyprctl monitors -j | jq '.[] | select(.focused) | .activeWorkspace.id'
|
|
|
|
|
2024-08-01 02:44:24 -07:00
|
|
|
socat -u UNIX-CONNECT:/run/user/1000/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock - |
|
2024-02-11 15:37:14 -08:00
|
|
|
stdbuf -o0 awk -F '>>|,' -e '/^workspace>>/ {print $2}' -e '/^focusedmon>>/ {print $3}'
|