From b08ebfec1dcf2578332d55ca57d1416453c9b09f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sun, 19 Feb 2017 21:36:15 +0100 Subject: Add i3blocks mpd note and ncmpcpp on right click --- config/i3blocks/scripts/mpd | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'config/i3blocks/scripts') diff --git a/config/i3blocks/scripts/mpd b/config/i3blocks/scripts/mpd index 6594a57..0b915a6 100755 --- a/config/i3blocks/scripts/mpd +++ b/config/i3blocks/scripts/mpd @@ -7,6 +7,9 @@ case "$BLOCK_BUTTON" in 2) mpc stop >/dev/null ;; + 3) + nohup urxvt -title "Music player daemon client" -e ncmpcpp & + ;; 4) mpc next >/dev/null ;; @@ -16,11 +19,13 @@ case "$BLOCK_BUTTON" in esac if [ -n "`mpc status | grep -E "(playing|paused)"`" ]; then - echo `mpc -f "%artist%, %album%, %title%" status | head -1` + echo `mpc -f "♫ %artist%, %album%, %title%" status | head -1` echo if [ -n `mpc status | grep playing` ]; then echo "#ffff00" elif [ -n `mpc status | grep paused` ]; then echo "#00ff00" fi +else + echo "♫" fi -- cgit v1.2.3