~kris/dots

srice

srice/.config/eww/scripts/i3-mode.sh -rw-r--r-- 301 bytes
e98f3b03 — Kris Yotam chore: sync local state after restore (push updates, no pull) a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
# Simpan sebagai ~/.config/eww/scripts/i3-mode.sh

i3-msg -t subscribe -m '["mode"]' | while read -r line; do
    # Parse JSON untuk mendapatkan nama mode
    mode=$(echo "$line" | jq -r '.change')
    
    # Output mode name (akan dibaca oleh eww sebagai deflisten)
    echo "$mode"
done