From 82df70eff06e7b44ee84283070d7f801f7fc1d92 Mon Sep 17 00:00:00 2001 From: Sam Chudnick Date: Sat, 6 Nov 2021 20:25:45 -0400 Subject: initial commit --- .local/bin/statusbar/bar-volume | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 .local/bin/statusbar/bar-volume (limited to '.local/bin/statusbar/bar-volume') diff --git a/.local/bin/statusbar/bar-volume b/.local/bin/statusbar/bar-volume new file mode 100755 index 0000000..d9bcc9d --- /dev/null +++ b/.local/bin/statusbar/bar-volume @@ -0,0 +1,13 @@ +#!/bin/sh +# i3blocks volume module + +case $BUTTON in + 1)urxvt -e alsamixer;; + 3)urxvt -e vim ~/.local/bin/statusbar/volume;; + 4)amixer -q sset Master 1%+ unmute;; + 5)amixer -q sset Master 1%- unmute;; +esac + +stats=$(amixer sget Master | grep "Front Left:" | cut -d ' ' -f 7,8 | tr -d '[]') +[ "${stats##* }" = "on" ] && echo -n "${stats%% *}" || echo -n "${stats%% *}" + -- cgit v1.2.3