arch-setup/files/Code - OSS/User/History/48bd1051/75mo.sh

9 lines
No EOL
174 B
Bash

#!/bin/bash
song=$(playerctl -p spotify metadata --format "{{ artist }} - {{ title }}" 2>/dev/null)
if [ -n "$song" ]; then
echo "$song"
else
echo "no music :)"
fi