/ internal / daemon / permissions_other.go
permissions_other.go
 1  //go:build !darwin
 2  
 3  package daemon
 4  
 5  import "context"
 6  
 7  func probePermissions(_ context.Context) permissionStatus {
 8  	return permissionStatus{ScreenRecording: "unsupported", Accessibility: "unsupported", Automation: "unsupported"}
 9  }
10  
11  func requestPermission(_ context.Context, _ string) permissionResult {
12  	return permissionResult{Status: "unsupported", Message: "permissions probing is only available on macOS"}
13  }