From 6816cd0ebd9e807ae8acde0857661bf0ce38401f Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Mon, 2 Dec 2019 22:19:49 +0100 Subject: [PATCH] Add mpris script to polybar Depends on playerctl to function correctly. --- .config/polybar/scripts/poly-mprisdisplay | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 .config/polybar/scripts/poly-mprisdisplay 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