aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local/bin/i3barmusic
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/.local/bin/i3barmusic')
-rwxr-xr-xdotfiles/.local/bin/i3barmusic18
1 files changed, 0 insertions, 18 deletions
diff --git a/dotfiles/.local/bin/i3barmusic b/dotfiles/.local/bin/i3barmusic
deleted file mode 100755
index 5647a81..0000000
--- a/dotfiles/.local/bin/i3barmusic
+++ /dev/null
@@ -1,18 +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 toggle | filter ;;
- 2) mpc status | filter && setsid "$TERMINAL" -e ncmpcpp & ;;
- 3) mpc status | filter && notify-send "🎵 Music module" "\- Shows mpd song playing.
-- Italic 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
- *) mpc status | filter ;;
-esac; exit