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