voidrice/.scripts/i3volume

13 lines
355 B
Text
Raw Normal View History

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