blob: dd29ee2077841762d91aa70ba8d300fb1d22d8a0 (
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 -55 "$(pidof "${STATUSBAR:-dwmblocks}")" 2>/dev/null
done
|