~kris/dots

srice

ref: e9b48d06a8541f3eda5c4db90382ab3c77183afb srice/.config/eww/scripts/get-workspaces.sh -rwxr-xr-x 461 bytes
e9b48d06 — Kris Yotam xprofile: systemd-aware pipewire start + blueman-applet; sb-internet: tolerate missing /proc/net/wireless 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

# Fungsi untuk get workspace state
get_workspaces() {
    i3-msg -t get_workspaces | jq -c '
        map({
            num: .num,
            name: .name,
            focused: .focused,
            urgent: .urgent,
            visible: .visible,
            output: .output
        })'
}

# Output initial state
get_workspaces

# Subscribe to workspace events
i3-msg -t subscribe -m '["workspace"]' | while read -r line; do
    get_workspaces
done