dotfiles/scripts/micdown
2024-12-28 14:36:59 -06:00

12 lines
275 B
Bash
Executable file

#!/bin/sh
# Decreases mic volume by 5%
amixer set Capture 5%- | grep -o -m 1 '[0-9]*%'
# MICSTAT="$(micstat)"
# notify-send -u low --replace-id=11 "$MICSTAT" 2>/dev/null
DWMBLOCKS="$(pidof dwmblocks)"
if [ -n "$DWMBLOCKS" ] ; then
kill -45 "$DWMBLOCKS" 2>/dev/null
fi