launchdServices

fnLaunchdService[] launchdServices() @safe

Lists all launchd services on macOS.

This function queries launchd to enumerate all loaded services in both system and user domains.

Returns

Array of LaunchdService structs containing service information.

Throws

MonacoException if the launchd query fails.

Example:

version (OSX) {
  auto services = launchdServices();
  writeln("Found ", services.length, " services");
}