From cf497be66437fb2fdd2ad7b0dafef52f740471a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?tr=C3=A9meur?= Date: Fri, 26 Jun 2020 21:47:31 +0100 Subject: [PATCH] Fix album artist issue? --- scripts/nowplaying.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/nowplaying.sh b/scripts/nowplaying.sh index 9b30baf..350d5fb 100755 --- a/scripts/nowplaying.sh +++ b/scripts/nowplaying.sh @@ -1,6 +1,6 @@ #/usr/bin/bash -ARTIST=$( cmus-remote -Q 2>/dev/null | grep "tag artist" | cut -d " " -f 3- ) +ARTIST=$( cmus-remote -Q 2>/dev/null | grep "tag artist " | cut -d " " -f 3- ) TITLE=$( cmus-remote -Q 2>/dev/null | grep "tag title" | cut -d " " -f 3- ) SPOTIFY_PID="$(pidof -s spotify || pidof -s .spotify-wrapped)"