blob: 123a3a4c53ca45dabe60792cd118dab1d4d00c07 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# Updates the music statusbar module when a playerctl-compatible player changes state
playerctl -aF status 2>/dev/null | while read -r _; do
kill -52 "$(pidof "${STATUSBAR:-dwmblocks}")" 2>/dev/null
done
|