diff --git a/.config/polybar/scripts/poly-mprisdisplay b/.config/polybar/scripts/poly-mprisdisplay new file mode 100755 index 0000000..54d0257 --- /dev/null +++ b/.config/polybar/scripts/poly-mprisdisplay @@ -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