summaryrefslogtreecommitdiffstats
path: root/.scripts/i3mpd
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-11-05 17:51:24 -0500
committerLuke Smith <luke@lukesmith.xyz>2018-11-05 17:51:24 -0500
commit2f4c2a68a1cbebb0e06a5b3296e4bbb575c5fcb2 (patch)
tree4adda53569104861794d990ef99c85edc1ae2d8c /.scripts/i3mpd
parentcd667e6aa111c86b40b9e3104605953e9b341332 (diff)
downloadeibhear-2f4c2a68a1cbebb0e06a5b3296e4bbb575c5fcb2.tar.gz
eibhear-2f4c2a68a1cbebb0e06a5b3296e4bbb575c5fcb2.tar.zst
eibhear-2f4c2a68a1cbebb0e06a5b3296e4bbb575c5fcb2.zip
scripts sorted
Diffstat (limited to '.scripts/i3mpd')
-rwxr-xr-x.scripts/i3mpd13
1 files changed, 0 insertions, 13 deletions
diff --git a/.scripts/i3mpd b/.scripts/i3mpd
deleted file mode 100755
index 9dc97a0..0000000
--- a/.scripts/i3mpd
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-filter() {
- sed "/^volume:/d" | 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 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