#!/bin/bash STATUS="$(playerctl status)" if [[ "$STATUS" == "Playing" ]]; then TITLE="$(playerctl metadata title)" ARTIST="$(playerctl metadata artist)" printf "%s - %s" "$ARTIST" "$TITLE" else echo "" fi