8 lines
185 B
Bash
Executable file
8 lines
185 B
Bash
Executable file
#!/bin/sh
|
|
# Decreases mic volume by 5%
|
|
|
|
amixer set Capture 5%-
|
|
|
|
MICSTAT="$(micstat)"
|
|
notify-send -u low --replace-id=11 "$MICSTAT" 2>/dev/null
|
|
kill -45 "$(pidof dwmblocks)" 2>/dev/null
|