From e00f3a860c566ea1e8287573144c2e081d243664 Mon Sep 17 00:00:00 2001 From: Jacob Schlecht Date: Mon, 13 Jul 2026 12:01:14 -0600 Subject: [PATCH] fix: Do not enable autostart on first launch (#237) 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; }