voidrice/.scripts/i3volume

13 lines
270 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-04-23 00:39:23 +00:00
3) pamixer -t ;;
4) pamixer -i 5 ;;
5) pamixer -d 5 ;;
esac
printpastatus() { [[ $(pamixer --get-mute) = "true" ]] && echo -n 🔇 && exit
echo 🔊 $(pamixer --get-volume)% ;}
printpastatus