blob: e13091444eb719d11655d774014a8eb245d41b38 (
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 MUTED MUTED MUTED MUTED MUTED MUTED MUTED MUTED MUTED"
fi
line=",[{\"full_text\":\"$muted\",\"background\":\"#ff00ff\"},{\"full_text\":\"$line\"}]"
echo "$line" || exit 1
done
|