dwmblocks/daemons/pulse_daemon.sh
2024-10-14 11:12:59 +03:00

10 lines
266 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 2 ;;
esac
done