• Stars
    star
    206
  • Rank 184,436 (Top 4 %)
  • Language
    Objective-C
  • Created over 12 years ago
  • Updated over 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A class that uses the new ServiceManagement api to allow apps to run at login.

StartAtLoginController

Easy to use controller that makes use of the Cocoa ServiceManagement APIs. This is the required way to do login items for sandboxed applications (required for all Mac App Store apps) and works in non-sandboxed applications as well.

It's been tested on 10.7 and 10.8 (and should work on 10.6.6+). Entries set by this class do not appear in the Accounts Panel of System Preferences.

HOW-TO

Helper Bundle

You must create an instance of the controller and set its bundle identifier to use to your helper bundle. (It must point to a helper bundle that has LSBackgroundOnly or LSUIElement set to YES in its Info.plist and put this bundle in Contents/Library/LoginItems).

For sandboxed apps, sign it with the same entitlements and developer id. Also, your can only be launched at login if it has been copied to /Applications.

Here is an example of a helper bundle:

- (void)applicationWillFinishLaunching:(NSNotification *)aNotification
{
	NSString *appPath = [[[[[[NSBundle mainBundle] bundlePath] stringByDeletingLastPathComponent] stringByDeletingLastPathComponent]  stringByDeletingLastPathComponent] stringByDeletingLastPathComponent]; 
	// get to the waaay top. Goes through LoginItems, Library, Contents, Applications
	[[NSWorkspace sharedWorkspace] launchApplication:appPath];
	[NSApp terminate:nil];
}

You can find a decent tutorial about this at Tim SchrΓΆder's blog post "The Launch At Login Sandbox Project".

Main Application

Then in your application

  • add the framework ServiceManagement and
  • add the files StartAtLoginController.{h,m}

to your main app's target. You can use the controller either in code or with the interface builder.

Programmatically

When using in code, create an instance of StartAtLoginController by providing the helper app's bundle identifier:

StartAtLoginController *loginController = [[StartAtLoginController alloc] initWithIdentifier:@"your.app.helpers.bundle.id"];

Now, you can manipulate the Services Entry:

loginController.startAtLogin = YES; // adds the entry into LaunchServices and activates it
//
loginController.enabled = NO; // disables the entry on the services list
//
BOOL startsAtLogin = [loginController startAtLogin]; // gets the current enabled state

Interface Builder

If you want to use the interface builder

  • Place a NSObject (the blue box) into the nib window
  • From the Inspector - Identity Tab
    • Set the Class to StartAtLoginController
    • Add the user defined runtime attribute identifier of type String and set it to your helper app's bundle identifier
  • Place a Checkbox on your Window/View
  • From the Inspector - Bindings Tab
    • Unroll the > Value item
    • Bind to StartAtLoginController with the Model Key Path startAtLogin

REQUIREMENTS

Works only on 10.6.6 or later.

LICENSE

This is licensed under MIT. Here is some legal jargon:

Copyright (c) 2011 Alex Zielenski Copyright (c) 2012 Travis Tilley

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

Mousecape

Cursor Manager for OSX
Objective-C
1,206
star
2

optool

Command Line Tool for interacting with MachO binaries on OSX/iOS
Objective-C
1,120
star
3

ThemeEngine

OS X App to edit compiled .car files
Objective-C
736
star
4

ZKRevealingTableViewCell

A Sparrow-style Implementation of Swipe-To-Reveal
Objective-C
339
star
5

ZKSwizzle

Streamlined way to swizzle Objective-C instance and class methods
Objective-C
135
star
6

Opee

Code Injection Platform for OS X
C
110
star
7

ScrollToRefresh

An NSScrollView subclass to allow the popular "pull to refresh" from iPhone to work on Mac OS X Lion
Objective-C
102
star
8

sartFileTool

command line tool to decode/encode SArtFile.bin
Objective-C
75
star
9

artFileTool

a tool to decode ArtFile.bin
Objective-C
72
star
10

ZKTextField

NSTextField replacement
Objective-C
72
star
11

Zeppelin

Carrier Logo Manager
Objective-C
38
star
12

Black-Mac-OS-X

A SIMBL plugin to turn 10.6.x Snow Leopard into a black tub of awesomeness.
Objective-C
33
star
13

TinyBar

iOS Tweak that thins notification banners down to size!
Objective-C
31
star
14

dockify

The application/installer used for Dockify
Objective-C
17
star
15

ZKInspector

Xcode/IB-like inspector class for OSX
Objective-C
14
star
16

FBEye

SIMBL plugin for various tweaks in the OS
Objective-C
14
star
17

ICOFamily

A class for reading and saving ICO files. Works with 64px and 24px sizes in addition to 256, 128, 48, 32, 16.
Objective-C
12
star
18

icnsmake

Command Line Tool for quickly making and exporting icns files
Objective-C
8
star
19

AutumnBoard

Icon Theming Library for 10.10
Objective-C
6
star
20

ILScopebar

A cocoa scope bar that uses an overflow menu.
Objective-C
5
star
21

dotfiles

Shell
4
star
22

repo

my cydia repo
Perl
3
star
23

Eclipse

A color theme for Xcode
1
star
24

cel-admission-polyfill

a polyfill for using CEL for admission control in kubernetes
Go
1
star
25

Grid

An online multiplayer implementation of Connect4 in javascript
JavaScript
1
star
26

eatery

FOOD!
Objective-C
1
star
27

graph

1
star
28

dockify_library

The actual library used in Dockify
Objective-C
1
star
29

alexzielenski.github.com

JavaScript
1
star
30

WWDC-2015

My 2015 WWDC Scholarship Application
Swift
1
star