elenapan/Scripts/volume.sh
elena 9276efd7f1 updated music and volume scripts
Former-commit-id: 09a9509d37
Former-commit-id: 75caa00883bacbdc94aba01849829e6bbb98a405
Former-commit-id: 4a0e0752bed13307db9a561f70812c70fe1383e5
2017-09-25 03:09:11 +03:00

16 lines
379 B
Bash
Executable file

#!/bin/bash
# For Alsa
#amixer get Master | grep "${snd_cha}" | awk -F'[]%[]' '/%/ {if ($7 == "off") {print "  "} else {printf "%d%% ", $2}}'
#
# For pulse
VOL="$(pactl list sinks | grep "Volume: " | awk '{print $5}' | head -1)"
MUTE="$(pactl list sinks | grep -i "mute" | head -1 | awk '{print $2}')"
if [[ "$MUTE" != "no" ]]; then
echo "  "
else
echo "$VOL "
fi