blob: 98b4b823eaadf5fadf4c475d8c45f43b1649a4bb (
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 MUTED MUTED MUTED MUTED MUTED|"
fi
line="$muted$line"
echo "$line" || exit 1
done
|