We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 213018e commit adbdbb4Copy full SHA for adbdbb4
1 file changed
app/utils/session_autostart.py
@@ -179,7 +179,9 @@ def _macos_apply_autostart(enabled: bool) -> bool:
179
except OSError as e:
180
_LOG.warning("Could not write LaunchAgent plist %s: %s", path, e)
181
return False
182
- _macos_launchctl("load", path)
+ # Do NOT call launchctl bootstrap here — RunAtLoad=true would launch a second
183
+ # instance immediately while the app is already running. launchd picks up the
184
+ # plist automatically at next login.
185
return True
186
187
0 commit comments