diff options
| author | Vito Graffagnino <vito@graffagnino.xyz> | 2020-09-08 18:10:49 +0100 |
|---|---|---|
| committer | Vito Graffagnino <vito@graffagnino.xyz> | 2020-09-08 18:10:49 +0100 |
| commit | 3b0142cedcde39e4c2097ecd916a870a3ced5ec6 (patch) | |
| tree | 2116c49a845dfc0945778f2aa3e2118d72be428b /.i3/scripts/i3mpd | |
| parent | 8cc927e930d5b6aafe3e9862a61e81705479a1b4 (diff) | |
Added the relevent parts of the .config directory. Alss add ssh config
Diffstat (limited to '.i3/scripts/i3mpd')
| -rwxr-xr-x | .i3/scripts/i3mpd | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.i3/scripts/i3mpd b/.i3/scripts/i3mpd new file mode 100755 index 0000000..b66f4c8 --- /dev/null +++ b/.i3/scripts/i3mpd @@ -0,0 +1,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 |
