1
0
Fork 0
dotfiles/.local/bin/statusbar/sb-music

31 lines
1.0 KiB
Plaintext
Raw Normal View History

2022-07-04 21:36:33 +02:00
#!/bin/sh
2022-08-07 12:54:35 +02:00
filter() {
if mpc 1>/dev/null 2>&1 && [ "$(mpc | wc -l)" -eq 3 ]; then
2022-08-07 12:54:35 +02:00
song=$(mpc current -f "%artist% - %title%" | xargs -0 )
[ ${#song} -gt 35 ] && song="$(printf %.35s song)…"
2022-08-11 10:20:33 +02:00
mpc | awk 'NR==2' | grep -q playing && icon="" || icon=""
2022-08-07 12:54:35 +02:00
echo " $icon $song "
elif mpc 1>/dev/null 2>&1 && [ "$(mpc | wc -l)" -eq 1 ]; then
2022-08-07 12:54:35 +02:00
echo " ﱙ "
else
exit 1
fi
}
2022-07-04 21:36:33 +02:00
pidof -x sb-mpdup >/dev/null 2>&1 || sb-mpdup >/dev/null 2>&1 &
case $BLOCK_BUTTON in
1) mpc status | filter ; setsid -f "$TERMINAL" -e ncmpcpp ;; # right click, pause/unpause
2) mpc toggle | filter ;; # right click, pause/unpause
2022-08-07 12:54:35 +02:00
3) mpc status | filter ; notify-send " Music module" "\- Shows mpd song playing.
2022-08-11 10:20:33 +02:00
-  when paused.
2022-07-04 21:36:33 +02:00
- Left click opens ncmpcpp.
- Middle click pauses.
- Scroll changes track.";; # right click, pause/unpause
4) mpc prev | filter ;; # scroll up, previous
5) mpc next | filter ;; # scroll down, next
6) mpc status | filter ; "$TERMINAL" -e "$EDITOR" "$0" ;;
*) mpc status | filter ;;
esac