dotfiles/.local/bin/statusbar/sb-volume

40 lines
949 B
Plaintext
Raw Normal View History

2023-10-12 15:12:12 +02:00
#!/bin/sh
2023-10-13 12:05:40 +02:00
# Prints the current volume or  if muted.
2023-10-12 15:12:12 +02:00
case $BLOCK_BUTTON in
2023-10-12 18:01:00 +02:00
1) setsid -w -f "$TERMINAL" -e pulsemixer; pkill -RTMIN+10 "${STATUSBAR:-dwmblocks}" ;;
2) wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle ;;
4) wpctl set-volume @DEFAULT_AUDIO_SINK@ 1%+ ;;
5) wpctl set-volume @DEFAULT_AUDIO_SINK@ 1%- ;;
2023-10-12 15:12:12 +02:00
3) notify-send "📢 Volume module" "\- Shows volume 🔊, 🔇 if muted.
- Middle click to mute.
2023-10-12 18:01:00 +02:00
- Scroll to change." ;;
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
2023-10-12 15:12:12 +02:00
esac
2023-10-12 18:01:00 +02:00
vol="$(wpctl get-volume @DEFAULT_AUDIO_SINK@)"
2023-10-13 12:05:40 +02:00
# If muted, print  and exit.
[ "$vol" != "${vol%\[MUTED\]}" ] && echo  && exit
2023-10-12 18:01:00 +02:00
vol="${vol#Volume: }"
split() {
# For ommiting the . without calling and external program.
IFS=$2
set -- $1
printf '%s' "$@"
}
vol="$(printf "%.0f" "$(split "$vol" ".")")"
case 1 in
2023-10-13 12:05:40 +02:00
$((vol >= 70)) ) icon="" ;;
$((vol >= 30)) ) icon="" ;;
$((vol >= 1)) ) icon="" ;;
* ) echo  && exit ;;
2023-10-12 18:01:00 +02:00
esac
echo "$icon$vol%"