system/scripts/get_volume.sh

9 lines
209 B
Bash
Executable file

#!/bin/bash
enabled=$(amixer -D pulse sget Master | egrep -o "\[on\]" | wc -l)
if [[ $enabled == "0" ]]; then
echo "off"
else
echo $(amixer -D pulse sget Master | egrep -o "[0-9]+%" | head -n 1)
fi
exit 0