2018-06-21 19:03:52 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Run the following command to find your input device
|
|
|
|
# $ pacmd list-sources | grep name
|
2018-06-21 22:29:46 -07:00
|
|
|
LEVELS="40000"
|
|
|
|
INPUTDEVICE="alsa_input.pci-0000_00_1b.0.analog-stereo ${LEVELS}"
|
|
|
|
|
|
|
|
echo "Keeping Mic Level Static"
|
|
|
|
while sleep 0.1;do
|
2018-06-21 19:03:52 -07:00
|
|
|
pacmd set-source-volume ${INPUTDEVICE}
|
|
|
|
done
|