2023-02-06 10:27:26 +01:00
|
|
|
#!/bin/sh
|
2023-02-21 17:49:55 +01:00
|
|
|
|
2024-02-01 20:16:45 +01:00
|
|
|
pidof -x sbd-playerctl >/dev/null 2>&1 || "$HOME/.local/libexec/daemons/sbd-playerctl" >/dev/null 2>&1 &
|
2024-02-03 18:21:24 +01:00
|
|
|
[ "$(playerctl status 2>&1)" = "No players found" ] && printf "%b" "" && 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
|
|
|
|
2024-01-15 22:25:14 +01:00
|
|
|
icon="$(playerctl status | sed "s/Playing//;s/Paused//;s/Stopped//;")"
|
2024-02-03 18:21:24 +01:00
|
|
|
printf "%b" "$icon $song"
|