13 lines
175 B
Bash
Executable File
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
|