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