hyprmoonarch/home/config/polybar/modules/polybar-playerctl.sh
2024-01-08 20:50:29 +01:00

13 lines
175 B
Bash
Executable File

#!/bin/sh
PLAYER="spotify"
if [ "$(pidof "$PLAYER")" != "" ];
then
echo "$(playerctl metadata --player="$PLAYER" --format "{{ artist }} - {{ title }}")"
else
echo ""
fi