From d75ce880d41e64907255a0f2dccc05fe1a68f937 Mon Sep 17 00:00:00 2001 From: dawidd6 Date: Sun, 20 Mar 2016 12:02:55 +0100 Subject: [PATCH] fix for mpc detection --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index cfaea51b..9ecad5f5 100755 --- a/neofetch +++ b/neofetch @@ -1192,7 +1192,7 @@ getmemory () { # Song {{{ getsong () { - if pgrep "mpd" >/dev/null 2>&1; then + if hash "mpc" >/dev/null 2>&1; then song="$(mpc current 2>/dev/null)" state=$(mpc | awk -F '\\[|\\]' '/\[/ {printf $2}' 2>/dev/null)