diff options
Diffstat (limited to 'ratpoison/panel/music')
-rwxr-xr-x | ratpoison/panel/music | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ratpoison/panel/music b/ratpoison/panel/music new file mode 100755 index 0000000..6190dbc --- /dev/null +++ b/ratpoison/panel/music @@ -0,0 +1,11 @@ +while true;do +if mpc | grep -q playing; then +echo "p`mpc current`" | cut --bytes 1-40 +echo "K`mpc -h 127.0.0.1 volume | perl -pe 's/^volume://' | perl -pe 's/%$//' | perl -pe 's/^ //'`" +else +echo "P`mpc current`" | cut --bytes 1-40 +sleep 1; +echo "K`mpc -h 127.0.0.1 volume | perl -pe 's/^volume://' | perl -pe 's/%$//' | perl -pe 's/^ //'`" +fi +sleep 5; +done |