2668bff317
Music no longer italicizes. The notification has been changed to match.
19 lines
753 B
Bash
Executable file
19 lines
753 B
Bash
Executable file
#!/bin/sh
|
|
|
|
filter() { mpc | sed "/^volume:/d;s/\\&/&/g;s/\\[paused\\].*/⏸/g;/\\[playing\\].*/d" | paste -sd ' ';}
|
|
|
|
pidof -x mpdup >/dev/null 2>&1 || 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
|
|
3) mpc status | filter ; notify-send "🎵 Music module" "\- Shows mpd song playing.
|
|
- ⏸ when paused.
|
|
- 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
|