voidrice/.local/bin/volumed
2023-04-23 07:11:24 +00:00

10 lines
210 B
Bash

#!/bin/bash
# Update the volume module in the statusbar whenever
# headphones are added or removed.
while :; do
grep -qP -m1 '^jack\/headphone' <(acpi_listen)
pkill -RTMIN+10 "${STATUSBAR:-dwmblocks}"
done