summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-09-04 14:16:21 -0400
committerLuke Smith <luke@lukesmith.xyz>2018-09-04 14:16:21 -0400
commit7831a1c28e24167c430b8a39ed3681fac6bc96a3 (patch)
treedf53da544124daec91da5e1083df2e7814294954
parenta8c46a59a199abc4fc8927d8aacd6c25cddc44f0 (diff)
downloadeibhear-7831a1c28e24167c430b8a39ed3681fac6bc96a3.tar.gz
eibhear-7831a1c28e24167c430b8a39ed3681fac6bc96a3.tar.zst
eibhear-7831a1c28e24167c430b8a39ed3681fac6bc96a3.zip
i3mpd script simplifications
-rwxr-xr-x.scripts/i3mpd19
1 files changed, 7 insertions, 12 deletions
diff --git a/.scripts/i3mpd b/.scripts/i3mpd
index 13d5966..9b285b3 100755
--- a/.scripts/i3mpd
+++ b/.scripts/i3mpd
@@ -1,18 +1,13 @@
-#!/bin/bash
-
-# Pass the password in the block instance
-if [[ -n $BLOCK_INSTANCE ]]; then
- password=("-h" "$BLOCK_INSTANCE@localhost")
-fi
+#!/bin/sh
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
- 1) mpc $password status | filter && $TERMINAL -e ncmpcpp & disown ;; # left 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 ;;
+ 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 ;;
esac