//go:build darwin package vncspawner // detectDarwin enables the macOS built-in Screen Sharing service. func candidates() []Candidate { return []Candidate{ { Path: "/System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart", Args: []string{ "-activate", "-configure", "-access", "-off", "-restart", "-agent", "-configure", "-allowAccessFor", "-allUsers", "-configure", "-clientopts", "-setreqperm", "-no", }, Desc: "macOS Screen Sharing (kickstart)", }, } }