1
0
Fork 0

fix player icon with bash as default shell

This commit is contained in:
Luca Bilke 2023-03-13 01:42:23 +01:00
parent a4c062545e
commit 583d27b433
1 changed files with 3 additions and 3 deletions

View File

@ -4,10 +4,10 @@ big="\033[11m"
reset="\033[10m"
pidof -x sbd-playerctl >/dev/null 2>&1 || sbd-playerctl >/dev/null 2>&1 &
[ "$(playerctl status 2>&1)" = "No players found" ] && echo "$bigﱙ$reset" && exit 1
[ "$(playerctl status 2>&1)" = "No players found" ] && echo -e "$bigﱙ$reset" && exit 1
# song="$(playerctl metadata xesam:artist) - $(playerctl metadata xesam:title)"
song="$(playerctl metadata xesam:title) - $(playerctl metadata xesam:artist)"
[ ${#song} -gt 35 ] && song="$(printf %.35s "$song")…"
icon="$big$(playerctl status | sed "s/Playing//;s/Paused//;")$reset"
echo "$icon $song"
icon="$(playerctl status | sed "s/Playing//;s/Paused//;")"
echo -e "$big$icon$reset $song"