aboutsummaryrefslogtreecommitdiff
path: root/config/ratpoison/panel/music
diff options
context:
space:
mode:
authorVasil Zlatanov <vasil.zlatanov@gmail.com>2015-08-18 01:39:43 +0200
committerVasil Zlatanov <vasil.zlatanov@gmail.com>2015-08-18 01:39:43 +0200
commitd923956d4866beb5093c89e0c1a4f54a9c37070f (patch)
tree849dcc217039940b4f41e1e82f595c7a00669d99 /config/ratpoison/panel/music
parent26a62982eab36ee68608a61306e6fab6447edd8a (diff)
downloaddotfiles-d923956d4866beb5093c89e0c1a4f54a9c37070f.tar.gz
dotfiles-d923956d4866beb5093c89e0c1a4f54a9c37070f.tar.bz2
dotfiles-d923956d4866beb5093c89e0c1a4f54a9c37070f.zip
major fixes and rearrangement
Diffstat (limited to 'config/ratpoison/panel/music')
-rwxr-xr-xconfig/ratpoison/panel/music20
1 files changed, 20 insertions, 0 deletions
diff --git a/config/ratpoison/panel/music b/config/ratpoison/panel/music
new file mode 100755
index 0000000..2fb91d1
--- /dev/null
+++ b/config/ratpoison/panel/music
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+while true;do
+
+new=`mpc current`
+
+if mpc | grep -q playing; then
+symbol='p'
+else
+symbol='P'
+fi
+
+echo "$symbol`echo $new | cut --bytes 1-30`"
+echo "K`mpc -h 127.0.0.1 volume | perl -pe 's/^volume://' | perl -pe 's/%$//' | perl -pe 's/^ //'`"
+mpc idle > /dev/null
+if [ $? -ne 0 ];then
+echo 'mpd not alive';
+sleep 30;
+fi
+done