dotfiles/.config/eww/scripts/get-workspaces.sh

7 lines
255 B
Bash
Raw Normal View History

2024-10-21 11:14:08 +02:00
#!/usr/bin/env bash
hyprctl workspaces -j | jq -c '[.[].id] | map(tostring)'
socat -u UNIX-CONNECT:$XDG_RUNTIME_DIR/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock - | while read -r line; do
hyprctl workspaces -j | jq -c '[.[].id] | map(tostring)'
done