10 lines
134 B
Bash
Executable file
10 lines
134 B
Bash
Executable file
#!/bin/sh
|
|
|
|
vol=$(pamixer --get-volume)
|
|
mute=$(pamixer --get-mute)
|
|
|
|
if [ $mute = 'true' ]; then
|
|
echo MUTED
|
|
else
|
|
echo Vol: $vol%
|
|
fi
|