blob: b66f4c87ab064a2efcc00f12b79b683903344893 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/bash
# Pass the password in the block instance
#if [[ -n $BLOCK_INSTANCE ]]; then
#password=("-h" "$BLOCK_INSTANCE@localhost")
#fi
filter() {
# tr '\n' ' ' | grep -Po '.*(?= \[playing\])|paused' | tr -d '\n'
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"
}
case $BLOCK_BUTTON in
1) mpc status | filter && $TERMINAL -e ncmpcpp & disown ;; # right click, pause/unpause
3) mpc toggle | filter ;; # right click, pause/unpause
4) mpc prev | filter ;; # scroll up, previous
5) mpc next | filter ;; # scroll down, next
*) mpc status | filter ;;
#1) mpc $password status | filter && $TERMINAL -e ncmpcpp & disown ;; # right click, pause/unpause
#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
|