From 414a641b2510dcc741d7eae3e90f72ca576fb38a Mon Sep 17 00:00:00 2001 From: ediblerope Date: Thu, 9 Apr 2026 21:06:05 +0100 Subject: [PATCH] Block Electron/Vesktop from silently lowering mic volume Co-Authored-By: Claude Opus 4.6 --- settings/audio.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/settings/audio.nix b/settings/audio.nix index 2644569..baa00c8 100644 --- a/settings/audio.nix +++ b/settings/audio.nix @@ -16,6 +16,14 @@ matches = [ { "application.name" = "~Chromium.*"; } ]; actions = { quirks = [ "block-source-volume" ]; }; } + { + matches = [ { "application.name" = "~Electron.*"; } ]; + actions = { quirks = [ "block-source-volume" ]; }; + } + { + matches = [ { "application.name" = "~vesktop.*"; } ]; + actions = { quirks = [ "block-source-volume" ]; }; + } ]; }; };