voidrice/.scripts/statusbar/i3mpdupdate
2018-11-05 17:51:24 -05:00

9 lines
154 B
Bash
Executable file

#!/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