mirror of https://github.com/tiyn/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
235 B
9 lines
235 B
5 years ago
|
#!/bin/sh
|
||
|
# Whenever the mpd state changes, update the mpd i3 module.
|
||
|
kill -0 "$(cat /tmp/mpdupdate)" 2>/dev/null && exit || echo $$ > /tmp/mpdupdate
|
||
|
|
||
|
sleep 5 && while : ; do
|
||
|
pkill -RTMIN+11 i3blocks
|
||
|
mpc idle >/dev/null || exit
|
||
|
done
|