From 5eee5b44924bf9079a67d5bc7612bfad56ddeed3 Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Fri, 17 Jan 2020 19:14:34 +0300 Subject: config restructuring and cleanup --- dotfiles/.local/bin/i3barmusic | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 dotfiles/.local/bin/i3barmusic (limited to 'dotfiles/.local/bin/i3barmusic') diff --git a/dotfiles/.local/bin/i3barmusic b/dotfiles/.local/bin/i3barmusic new file mode 100755 index 0000000..5647a81 --- /dev/null +++ b/dotfiles/.local/bin/i3barmusic @@ -0,0 +1,18 @@ +#!/bin/sh + +filter() { + sed "/^volume:/d" | tac | sed -e "s/\\&/&/g;s/\\[paused\\].*//g;s/\\[playing\\].*//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 -- cgit v1.2.3