2023-02-06 10:27:26 +01:00
|
|
|
#!/bin/sh
|
2023-02-21 17:49:55 +01:00
|
|
|
|
|
|
|
big="\033[11m"
|
|
|
|
reset="\033[10m"
|
|
|
|
|
2023-02-06 10:27:26 +01:00
|
|
|
pidof -x sbd-playerctl >/dev/null 2>&1 || sbd-playerctl >/dev/null 2>&1 &
|
2023-03-29 00:09:07 +02:00
|
|
|
[ "$(playerctl status 2>&1)" = "No players found" ] && printf "$bigﱙ$reset" && exit 1
|
2023-02-06 10:27:26 +01:00
|
|
|
# song="$(playerctl metadata xesam:artist) - $(playerctl metadata xesam:title)"
|
2023-02-09 12:14:40 +01:00
|
|
|
song="$(playerctl metadata xesam:title) - $(playerctl metadata xesam:artist)"
|
2023-02-06 10:27:26 +01:00
|
|
|
[ ${#song} -gt 35 ] && song="$(printf %.35s "$song")…"
|
2023-02-21 17:49:55 +01:00
|
|
|
|
2023-03-28 09:45:16 +02:00
|
|
|
icon="$(playerctl status | sed "s/Playing//;s/Paused//;s/Stopped/ﱙ/;")"
|
2023-03-29 00:09:07 +02:00
|
|
|
printf "$big$icon$reset $song"
|