From 973af06df4996392564b34fae2ab75e6b56769ae Mon Sep 17 00:00:00 2001 From: Siina Mashek Date: Mon, 22 Apr 2024 06:06:10 +0300 Subject: [PATCH] Prepending 'Now playing:' to whatmusic --- common/whatmusic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/whatmusic b/common/whatmusic index 474de18..cde5629 100755 --- a/common/whatmusic +++ b/common/whatmusic @@ -12,7 +12,7 @@ artist=$(echo "$data" | jq '.artist_name' | tr -d '"') track=$(echo "$data" | jq '.track_name' | tr -d '"') if [[ "$artist" != "null" ]]; then - echo "$artist" - "$track" + echo "Currently playing: $artist" - "$track" else echo "Not listening to anything right now." fi