dwmblocks/daemons/pulse_daemon.sh
2021-04-08 14:46:09 +05:30

10 lines
264 B
Bash
Executable file

#!/bin/sh
# This script should be autostarted with X session
# It signals volume block to update on audio related events
pactl subscribe |
while IFS='' read -r output ; do
case $output in
*" sink "*) sigdwmblocks 1 ;;
esac
done