Skip to content

Commit

Permalink
Enable app launcher.
Browse files Browse the repository at this point in the history
  • Loading branch information
sbruens committed Nov 21, 2023
1 parent cea9d72 commit 492f60b
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
appKitController._AppKitBridge_setConnectionStatus(.disconnected)
}

// // Enable app launcher to start on boot.
// appKitController._AppKitBridge_setAppLauncherEnabled(true)
// Enable app launcher to start on boot.
appKitController._AppKitBridge_setAppLauncherEnabled(true)
}
}

Expand All @@ -67,17 +67,17 @@
try Bundle(path: bundlePath)?.loadAndReturnError()

let bundle = Bundle(path: bundlePath)!
NSLog("[AppKitBundleLoader] AppKit bundle loaded successfully")
NSLog("[CatalystApp] AppKit bundle loaded successfully")

if let appKitControllerClass = bundle.classNamed("AppKitIntegration.AppKitController") as? NSObject.Type {
return appKitControllerClass.init()
}
}
catch {
NSLog("[AppKitBundleLoader] Error loading: \(error)")
NSLog("[CatalystApp] Error loading: \(error)")
}
}
preconditionFailure("[AppKitBundleLoader] Unable to load")
preconditionFailure("[CatalystApp] Unable to load")
}

#endif

0 comments on commit 492f60b

Please sign in to comment.