//go:build !darwin && !windows package platform // Launch-at-login on Windows/Linux uses different mechanisms (registry Run key / // XDG autostart .desktop) and lands with those platform targets. Stubbed so the // settings wiring compiles everywhere. // SetLaunchAtLogin is a no-op outside macOS. func SetLaunchAtLogin(bool) error { return nil } // IsLaunchAtLoginEnabled always reports false outside macOS. func IsLaunchAtLoginEnabled() bool { return false }