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

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

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

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

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