12 lines
275 B
Bash
Executable file
12 lines
275 B
Bash
Executable file
#!/bin/sh
|
|
# Increases 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
|