1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-03-18 01:57:44 +01:00
2019-09-07 17:42:18 +02:00

9 lines
235 B
Bash
Executable File

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