Add mpris script to polybar
Depends on playerctl to function correctly.
This commit is contained in:
parent
57336630d3
commit
6816cd0ebd
1 changed files with 11 additions and 0 deletions
11
.config/polybar/scripts/poly-mprisdisplay
Executable file
11
.config/polybar/scripts/poly-mprisdisplay
Executable 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
|
Loading…
Reference in a new issue