~kris/dots

srice

ref: 2dc7c2f7e39f562e3603676ef50c2df0a4723c19 srice/.config/eww/scripts/i3-mode.sh -rwxr-xr-x 301 bytes
2dc7c2f7 — Kris Yotam update nvim plan9 theme, add hosts file, misc updates 6 months 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