voidrice/.scripts/i3volume

13 lines
355 B
Text
Raw Normal View History

2018-04-22 17:39:23 -07:00
#!/bin/bash
case $BLOCK_BUTTON in
2018-07-03 15:35:57 -04:00
1) $TERMINAL -e pulsemixer & disown ;;
2018-10-06 22:42:21 -04:00
3) pulsemixer --toggle-mute ;;
4) pulsemixer --change-volume +5 ;;
5) pulsemixer --change-volume -5 ;;
2018-04-22 17:39:23 -07:00
esac
2018-10-06 22:42:21 -04:00
printpastatus() { [[ $(pulsemixer --get-mute) = 1 ]] && echo -n 🔇 " " && exit
echo 🔊 $(pulsemixer --get-volume | sed -e "s/\s[0-9][0-9]*//g")% ;}
2018-04-22 17:39:23 -07:00
printpastatus