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

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="$muted$line"
    echo "$line" || exit 1
done