Add mpris script to polybar

Depends on playerctl to function correctly.
This commit is contained in:
Marty Oehme 2019-12-02 22:19:49 +01:00
parent 57336630d3
commit 6816cd0ebd

View file

@ -0,0 +1,11 @@
#!/bin/sh
player_status=$(playerctl status 2>/dev/null)
if [ "$player_status" = "Playing" ]; then
echo "ﱘ $(playerctl metadata artist) - $(playerctl metadata title)"
elif [ "$player_status" = "Paused" ]; then
echo " $(playerctl metadata artist) - $(playerctl metadata title)"
else
echo ""
fi