voidrice/.local/bin/volumed
2023-04-23 14:55:47 +00:00

10 lines
220 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) || exit 1
pkill -RTMIN+10 "${STATUSBAR:-dwmblocks}"
done