i3blocks scripts added

This commit is contained in:
Luke Smith
2018-04-22 17:39:23 -07:00
parent 84557167e6
commit cec92894fc
8 changed files with 51 additions and 4 deletions

18
.scripts/i3mpd Executable file
View File

@@ -0,0 +1,18 @@
#!/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'
}
case $BLOCK_BUTTON in
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