I need to create a package, that should include my application, my pluggin and a script. The idea, is to create a script that leaves my application running as a service, because I need to launch my application on the computer start up. I read about services but I am new and it is hard for me to understand how to do it. Any Ideas? Thanks
Share
You cite Growl as an example. Growl is:
The first part is easy; Xcode has templates for that.
To make it run in the background, but still capable of showing UI, set
LSUIElementin your Info.plist. If your app will never show UI, you probably wantLSBackgroundOnlyinstead. Both of these are documented in the Information Property List Key Reference.For the last part, that’s been previously covered on Stack Overflow. (Updates to that answer: I left Growl a few months ago, and I’m pretty sure they’re using LSSharedFileList now.)