1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00

Cleanup i3/blocks/volume formatting a touch

This commit is contained in:
Joe Groocock 2016-09-01 14:11:06 +01:00
parent 6b97fe75f9
commit 34d7ae3a12

View File

@ -75,21 +75,17 @@ VOL=$(volume | format)
ACTIVE=$(pacmd list-sinks | grep '* index' | awk -F": " '{print $2}')
if pactl list short sinks | grep -q \^$ACTIVE".*Yeti"
then
if pactl list short sinks | grep -q \^$ACTIVE".*Yeti"; then
printf ""
elif [ "$VOL" -eq -1 ]
then
elif [ "$VOL" -eq -1 ]; then
printf "X"
exit 0
elif [ "$VOL" -eq 0 ]
then
elif [ "$VOL" -eq 0 ]; then
printf ""
elif [ "$VOL" -gt 59 ]
then
elif [ "$VOL" -gt 59 ]; then
printf ""
else
printf ""
fi
printf " "$VOL
printf " $VOL"