2018-04-23 00:39:23 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Pass the password in the block instance
|
|
|
|
if [[ -n $BLOCK_INSTANCE ]]; then
|
|
|
|
password=("-h" "$BLOCK_INSTANCE@localhost")
|
|
|
|
fi
|
|
|
|
|
|
|
|
filter() {
|
2018-07-03 19:30:45 +00:00
|
|
|
sed 2q | tac | sed -e "s/\&/&/g;/volume:/d;s/\[paused\].*/<span color=\"gray\" font_style=\"italic\">/g;s/\[playing\].*/<span>/g" | tr -d '\n' | sed -e "s/$/<\/span>/g"
|
2018-06-16 01:44:52 +00:00
|
|
|
}
|
2018-04-23 00:39:23 +00:00
|
|
|
|
|
|
|
case $BLOCK_BUTTON in
|
2018-07-14 10:06:07 +00:00
|
|
|
1) mpc $password status | filter && $TERMINAL -e ncmpcpp & disown ;; # left click, pause/unpause
|
2018-04-23 00:39:23 +00:00
|
|
|
3) mpc $password toggle | filter ;; # right click, pause/unpause
|
|
|
|
4) mpc $password prev | filter ;; # scroll up, previous
|
|
|
|
5) mpc $password next | filter ;; # scroll down, next
|
|
|
|
*) mpc $password status | filter ;;
|
|
|
|
esac
|