i3mpd script simplifications

This commit is contained in:
Luke Smith 2018-09-04 14:16:21 -04:00
parent a8c46a59a1
commit 7831a1c28e

View file

@ -1,18 +1,13 @@
#!/bin/bash #!/bin/sh
# Pass the password in the block instance
if [[ -n $BLOCK_INSTANCE ]]; then
password=("-h" "$BLOCK_INSTANCE@localhost")
fi
filter() { filter() {
sed 2q | tac | sed -e "s/\&/&amp;/g;/volume:/d;s/\[paused\].*/<span color=\"gray\" font_style=\"italic\">/g;s/\[playing\].*/<span>/g" | tr -d '\n' | sed -e "s/$/<\/span>/g" sed 2q | tac | sed -e "s/\\&/&amp;/g;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 case $BLOCK_BUTTON in
1) mpc $password status | filter && $TERMINAL -e ncmpcpp & disown ;; # left click, pause/unpause 1) mpc status | filter && $TERMINAL -e ncmpcpp & disown ;; # right click, pause/unpause
3) mpc $password toggle | filter ;; # right click, pause/unpause 3) mpc toggle | filter ;; # right click, pause/unpause
4) mpc $password prev | filter ;; # scroll up, previous 4) mpc prev | filter ;; # scroll up, previous
5) mpc $password next | filter ;; # scroll down, next 5) mpc next | filter ;; # scroll down, next
*) mpc $password status | filter ;; *) mpc status | filter ;;
esac esac