1
0
mirror of https://github.com/artizirk/dotfiles.git synced 2024-09-19 15:41:05 +03:00
dotfiles/.bin/volume_subscribe.sh

11 lines
239 B
Bash
Executable File

#!/bin/bash
OLD_VOL=0
pactl subscribe | grep --line-buffered "sink" |
while read; do
VOL=$(amixer get Master | grep -Po "[0-9]+(?=%)" | tail -1)
if [[ $VOL != $OLD_VOL ]]; then
swayosd-client --output-volume=+0
OLD_VOL=$VOL
fi
done