From d27732ea3a023da885f5991946d4db30a0cb9cbf Mon Sep 17 00:00:00 2001 From: InigoGutierrez Date: Thu, 7 May 2020 23:51:28 +0200 Subject: i3blocks: Added an empty echo if cmus is not running. --- i3blocks/i3music.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'i3blocks') diff --git a/i3blocks/i3music.sh b/i3blocks/i3music.sh index d446b50..bb646b9 100755 --- a/i3blocks/i3music.sh +++ b/i3blocks/i3music.sh @@ -8,7 +8,7 @@ esac symbol=🎵 ampersand='and' # & in echo messes up script -pgrep -x cmus >/dev/null || exit 0 +pgrep -x cmus >/dev/null || (echo "" && exit 0) stat="$(cmus-remote -Q | grep "^status " | awk '{print $2}' | sed "s/&/$ampersand/")" artist="$(cmus-remote -Q | grep "^tag artist " | cut -d' ' -f3- | sed "s/&/$ampersand/")" title="$(cmus-remote -Q | grep "^tag title " | cut -d' ' -f3- | sed "s/&/$ampersand/")" -- cgit v1.2.1