8 lines
243 B
Bash
Executable file
8 lines
243 B
Bash
Executable file
#!/bin/sh
|
|
# Get the maximum volume of any pulseaudio sink channel
|
|
# amixer get Master | egrep -o "[0-9]+%"
|
|
vol=$(amixer get Master | awk -F'[]%[]' '/%/ {if ($7 == "off") { print "MM" } else { print $2 }}' | head -n 1)
|
|
|
|
echo Vol: $vol%
|
|
|
|
exit 0
|