From 350f9019c269a04889669dde7cb3b037b9a8505a Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Fri, 27 May 2022 09:40:29 -0700 Subject: [PATCH] Append 'password-store=basic' switch on startup Co-authored-by: Scott Nonnenberg --- app/main.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/main.ts b/app/main.ts index a58ac4ca8..a6d88c6ba 100644 --- a/app/main.ts +++ b/app/main.ts @@ -1466,6 +1466,9 @@ function getAppLocale(): string { // Signal doesn't really use media keys so we set this switch here to unblock // them so that other apps can use them if they need to. app.commandLine.appendSwitch('disable-features', 'HardwareMediaKeyHandling'); +if (OS.isLinux()) { + app.commandLine.appendSwitch('password-store', 'basic'); +} // This method will be called when Electron has finished // initialization and is ready to create browser windows.