From 1079a96f8d64ab122a911627dc5fec19a3c1b489 Mon Sep 17 00:00:00 2001 From: Jacob Schlecht Date: Fri, 10 Jul 2026 19:56:05 -0600 Subject: [PATCH] fix: Do not enable autostart on first launch Signed-off-by: Jacob Schlecht --- src/main.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/main.ts b/src/main.ts index 911db87..3a604fd 100644 --- a/src/main.ts +++ b/src/main.ts @@ -43,11 +43,10 @@ if (acquiredLock) { // create window and application contexts createMainWindow(); - // enable auto start on Windows and MacOS + // save first launch state if (config.firstLaunch) { - if (process.platform === "win32" || process.platform === "darwin") { - autoLaunch.enable(); - } + // Doesn't do anything right now. Used to enable auto start, but that behaviour was removed. + // Left in case it gets used in the future. config.firstLaunch = false; }