24 lines
532 B
Bash
Executable File
24 lines
532 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if playerctl metadata --format={{playerName}} | grep -q "spotifyd"; then
|
|
echo ""
|
|
else
|
|
echo ""
|
|
fi
|
|
|
|
# if mpc status | grep -q "playing"; then
|
|
# mpc | sed "/^volume:/d;s/\\&/&/g;s/\\[playing\\].*//g"
|
|
# elif mpc status | grep -q "paused"; then
|
|
# echo ""
|
|
# else
|
|
# echo ""
|
|
# fi
|
|
|
|
if playerctl --player=spotifyd status | grep -q "Playing"; then
|
|
playerctl metadata --format "{{ artist }} - {{ title }}"
|
|
elif playerctl --player=spotifyd status | grep -q "Paused"; then
|
|
echo ""
|
|
else
|
|
echo ""
|
|
fi
|