summaryrefslogtreecommitdiff
path: root/_linux/i3/i3status_command
blob: 92005837f4f2948777f5ca55439b8b455a412e3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/bash

echo '{"version":1}' # ig??
echo '['
echo '[]'

i3status | while :
do
    # following text is certainly code
    read line
    muted=""
    color="#000000"

    if [[ $(pactl get-source-mute @DEFAULT_SOURCE@ | rg "yes") ]];
    then
        color="#ff0000"
        muted=" MUTED "
    fi

    line=",[{\"full_text\":\"$muted\",\"background\":\"#ff0000\"},{\"full_text\":\"$line\",\"background\":\"$color\"}]"
    echo "$line" || exit 1
done