vote up 4 vote down star
4

Google gave me: http://developer.apple.com/samplecode/LoginItemsAE/index.html

And I figured there must be a better way than using AppleScript Events.

So I downloaded the Growl sources. They use the exact sources from that Apple developer article.

Is there a better way?

(I refer to Login Items in Accounts in System Preferences, ie. making my program start when the user Logs in, programmatically)

flag

An unrelated Google got me the following comprehensive Apple documentation: developer.apple.com/documentation/MacOSX/… – Max Howell Mar 8 at 10:58

4 Answers

vote up 8 vote down check

There's an API that's new in Leopard called LSSharedFileList. One of the things it lets you do is view and edit the Login Items list (called Session Login Items in that API).

BTW, I'm the lead developer of Growl. We haven't switched away from AE yet because we still require Tiger, but I'm thinking of dropping that for 1.2 (haven't talked it over with the other developers yet). When we do drop Tiger, we'll drop LoginItemsAE as well, and switch to the Shared File List API.

link|flag
1  
I think you mean LSSharedFileList – Nathan Kinsinger Mar 4 at 3:03
vote up 2 vote down

I do this in an app I'm writing:

Check out UKLoginItemRegistry for an easy way to do this pragmatically. Afaik, there is no way in Tiger to do this without Apple Events; in Leopard there's a better way, but if you use UKLoginItemRegistry it really is no problem. Here's the complete code for implementing an "Open at Logon" menu item

+ (bool)isAppSetToRunAtLogon {
  int ret = [UKLoginItemRegistry indexForLoginItemWithPath:[[NSBundle mainBundle] bundlePath]];
  NSLog(@"login item index = %i", ret);
  return (ret >= 0);
}

- (IBAction)toggleOpenAtLogon:(id)sender {
  if ([PopupController isAppSetToRunAtLogon]) {
    [UKLoginItemRegistry removeLoginItemWithPath:[[NSBundle mainBundle] bundlePath]];
  } else {
    [UKLoginItemRegistry addLoginItemWithPath:[[NSBundle mainBundle] bundlePath] hideIt: NO];
  }
}
link|flag
vote up 0 vote down

I can't remember of the top of my head but aren't the login items stored in a plist file in the user's Library? So it would be just a matter of adding your application using the default command (for example during installation?)

link|flag
That's private storage of {System Events,LSSharedItemList}. The layout within the property list has changed at least once (for the introduction of LSSharedItemList), so I wouldn't recommend relying on that layout in the future. – Peter Hosey Mar 4 at 3:03
vote up 0 vote down

I created a class, BBAppSessionLoginState, that uses LSSharedFileList to add/remove the current app to the user session's login items.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.