arch-setup/files/scripts/volume-osd.sh
2026-03-16 13:58:03 +01:00

9 lines
No EOL
174 B
Bash
Executable file

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