summaryrefslogtreecommitdiffstats
path: root/.scripts/statusbar/i3mpdupdate
blob: 646b49ea56dcecd92335b3b031ba33b58497b8eb (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh

[ "$(pgrep -x i3mpdupdate | wc -l)" -gt 2 ] && exit

while : ; do
	pgrep -x mpd || exit
	mpc idle > /dev/null
	pkill -RTMIN+11 i3blocks ;
done