diff options
Diffstat (limited to 'config/i3blocks/scripts/mpd')
-rwxr-xr-x | config/i3blocks/scripts/mpd | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/config/i3blocks/scripts/mpd b/config/i3blocks/scripts/mpd deleted file mode 100755 index d179511..0000000 --- a/config/i3blocks/scripts/mpd +++ /dev/null @@ -1,37 +0,0 @@ -#!/usr/bin/env bash - -status="$(mpc -f "♫ %artist%, %album%, %title%" status)" - -case "$BLOCK_BUTTON" in - 1) - mpc toggle >/dev/null - ;; - 2) - mpc stop >/dev/null - ;; - 3) - nohup urxvt -title "Music player daemon client" -e ncmpcpp 2>&1 >/dev/null & - ;; - 4) - mpc prev >/dev/null - ;; - 5) - mpc next >/dev/null - ;; -esac - -if [ "$(echo "$status" | wc -l)" -gt 1 ] && \ - [[ "$status" == **(playing|paused)* ]]; then - echo "$status" | head -1 - echo - case "$status" in - *playing*) - echo "#00ff00" - ;; - *paused*) - echo "#ffff00" - ;; - esac -else - echo "♫" -fi |