2024-05-11 11:11:15 +02:00
|
|
|
|
# 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" }
|
2024-08-08 12:31:06 +02:00
|
|
|
|
{ application.process.binary = "chromium" }
|
2024-08-25 19:05:38 +02:00
|
|
|
|
{ application.process.binary = "electron" }
|
2024-05-11 11:11:15 +02:00
|
|
|
|
{ application.process.binary = "Discord" }
|
2024-08-25 19:05:38 +02:00
|
|
|
|
{ application.process.binary = "vesktop" }
|
2024-05-11 11:11:15 +02:00
|
|
|
|
{ application.process.binary = "teams" }
|
|
|
|
|
{ application.process.binary = "skypeforlinux" }
|
|
|
|
|
]
|
|
|
|
|
actions = { quirks = [ block-source-volume ] }
|
|
|
|
|
}
|
|
|
|
|
]
|