1
0
Fork 0
dotfiles/.local/bin/statusbar/sb-volume

31 lines
644 B
Plaintext
Raw Normal View History

2022-07-04 21:36:33 +02:00
#!/bin/sh
# Prints the current volume or ﱝ if muted.
case $BLOCK_BUTTON in
1) setsid -f "$TERMINAL" -e pulsemixer ;;
2) pamixer -t ;;
4) pamixer --allow-boost -i 1 ;;
5) pamixer --allow-boost -d 1 ;;
3) notify-send "📢 Volume module" "\- Shows volume 墳, ﱝ if muted.
- Middle click to mute.
- Scroll to change." ;;
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
esac
2022-07-25 16:30:12 +02:00
[ $(pamixer --get-mute) = true ] && echo " ﱝ " && exit
2022-07-04 21:36:33 +02:00
vol="$(pamixer --get-volume)"
if [ "$vol" -gt "70" ]; then
2022-07-25 16:30:12 +02:00
icon="墳"
2022-07-04 21:36:33 +02:00
elif [ "$vol" -gt "30" ]; then
2022-07-25 16:30:12 +02:00
icon="奔"
2022-07-04 21:36:33 +02:00
elif [ "$vol" -gt "0" ]; then
2022-07-25 16:30:12 +02:00
icon="奄"
2022-07-04 21:36:33 +02:00
else
2022-07-10 20:52:51 +02:00
echo " ﱝ "&& exit
2022-07-04 21:36:33 +02:00
fi
2022-07-25 16:30:12 +02:00
echo " $icon $vol%"