You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
276 B

#!/bin/bash
# Check if ncspot is playing
status=$(playerctl -p ncspot status 2>/dev/null)
# Only output song info if ncspot is playing
if [ "$status" = "Playing" ]; then
playerctl -p ncspot metadata --format "{{ artist }} - {{ title }}" 2>/dev/null
else
echo "-"
fi