diff options
author | Saumit Dinesan <79687674+Saumit-D@users.noreply.github.com> | 2021-11-10 16:01:17 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-10 16:01:17 +0530 |
commit | af8cda7385fcd761ceff5fef09401377ed2fbb86 (patch) | |
tree | 8d1831bea5328b0ac7e0ec7beceb521068807d93 /scripts/not needed/music | |
parent | 96fd32a61a08475d686fa5f8187566ccff870da0 (diff) |
Add files via upload
Diffstat (limited to 'scripts/not needed/music')
-rw-r--r-- | scripts/not needed/music | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/scripts/not needed/music b/scripts/not needed/music new file mode 100644 index 0000000..7ea7032 --- /dev/null +++ b/scripts/not needed/music @@ -0,0 +1,19 @@ +#!/bin/sh + +filter() { mpc | sed "/^volume:/d;s/\\&/&/g;s/\\[paused\\].*/⏸/g;/\\[playing\\].*/d;/^ERROR/Q" | paste -sd ' ' -;} + +pidof -x sb-mpdup >/dev/null 2>&1 || sb-mpdup >/dev/null 2>&1 & + +case $BLOCK_BUTTON in + 1) mpc status | filter ; setsid -f "$TERMINAL" -e ncmpcpp ;; # right click, pause/unpause + 2) mpc toggle | filter ;; # right click, pause/unpause + 3) mpc status | filter ; notify-send "🎵 Music module" "\- Shows mpd song playing. +- ⏸ when paused. +- Left click opens ncmpcpp. +- Middle click pauses. +- Scroll changes track.";; # right click, pause/unpause + 4) mpc prev | filter ;; # scroll up, previous + 5) mpc next | filter ;; # scroll down, next + 6) mpc status | filter ; "$TERMINAL" -e "$EDITOR" "$0" ;; + *) mpc status | filter ;; +esac |