11 lines
601 B
Bash
Executable file
11 lines
601 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
player_status=$(playerctl status 2> /dev/null)
|
|
|
|
if [ "$player_status" = "Playing" ]; then
|
|
echo -e " $(playerctl metadata --format '{{markup_escape(title)}}')\nPlaying: $(playerctl metadata --format '{{markup_escape(artist)}}') - $(playerctl metadata --format '{{markup_escape(title)}}')\nplaying"
|
|
elif [ "$player_status" = "Paused" ]; then
|
|
echo -e " $(playerctl metadata --format '{{markup_escape(title)}}')\nPaused: $(playerctl metadata --format '{{markup_escape(artist)}}') - $(playerctl metadata --format '{{markup_escape(title)}}')\npaused"
|
|
else
|
|
echo -e ""
|
|
fi
|