infrastructure/hosts/neodymium/home/wayland/eww/scripts/get-active-workspace

9 lines
357 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
# print current active workspace id
2023-06-10 18:36:41 +00:00
hyprctl monitors -j | jaq '.[] | select(.focused) | .activeWorkspace.id'
# print current active workspace id on workspace changes
socat -u UNIX-CONNECT:/tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock - |
2023-06-10 18:36:41 +00:00
stdbuf -o0 awk -F '>>|,' -e '/^workspace>>/ {print $2}' -e '/^focusedmon>>/ {print $3}'