//go:build !windows && !linux package autostart import "fmt" type otherManager struct{} // New returns the stub autostart Manager for unsupported platforms. func New() Manager { return otherManager{} } func (otherManager) Set(enabled bool, executablePath, iconPath string) error { return SetAutostart(enabled, executablePath, iconPath) } func (otherManager) Status(expectedEnabled bool, executablePath string) (bool, string) { return AutostartStatus(expectedEnabled, executablePath) } func SetAutostart(enabled bool, executablePath string, iconPath string) error { if !enabled { return nil } return fmt.Errorf("autostart is not implemented for this platform") } func AutostartStatus(expectedEnabled bool, executablePath string) (bool, string) { if !expectedEnabled { return true, "Autostart is off" } return false, "Autostart is not implemented for this platform" }