dotfiles/.config/pipewire/pipewire.conf.d/20-disable-auto-grain.conf
2024-08-08 12:31:06 +02:00

15 lines
505 B
Text
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# https://askubuntu.com/questions/279407/how-to-disable-microphone-from-auto-adjusting-its-input-volume
pulse.rules = [
{
# Disable mic auto gain for some applications
matches = [
{ application.process.binary = "chrome" }
{ application.process.binary = "chromium" }
{ application.process.binary = "Discord" }
{ application.process.binary = "teams" }
{ application.process.binary = "skypeforlinux" }
]
actions = { quirks = [ block-source-volume ] }
}
]