8 lines
115 B
Plaintext
8 lines
115 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
pactl subscribe | while read -r ;do
|
||
|
case "$REPLY" in
|
||
|
*change*) pamixer --get-mute ;;
|
||
|
esac
|
||
|
done
|