Moves i3 to LEGACY

This commit is contained in:
Jonathan Hodgson 2019-07-30 15:10:03 +01:00
parent 3797371054
commit 7033add60b
20 changed files with 0 additions and 0 deletions

30
LEGACY/i3/blocks/mediaplayer Executable file
View file

@ -0,0 +1,30 @@
#!/usr/bin/sh
#COMMAND="playerctl --player=$BLOCK_INSTANCE"
COMMAND="playerctl"
case $BLOCK_BUTTON in
1) $COMMAND previous ;;
3) $COMMAND next ;;
esac
if [ "$($COMMAND status 2> /dev/null )" = "Playing" ]; then
colour="#00FF00"
else
colour="#FF8000"
fi
title=$($COMMAND metadata title 2> /dev/null | sed "s/\&/\&/g")
artist=$($COMMAND metadata artist 2> /dev/null | sed "s/\&/\&/g")
if [ "$title" != "" ]; then
ret="<span foreground='$colour'>$title</span>"
if [ -n "$artist" ]; then
ret="$ret - $artist"
fi
echo "$ret";
fi