4 lines
88 B
Bash
4 lines
88 B
Bash
|
#!/bin/bash
|
||
|
echo $(amixer -D pulse sget Master | egrep -o "[0-9]+%" | head -n 1)
|
||
|
exit 0
|