-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Start at login does nothing in 10.8 #831
Comments
On 10.8b3 (12A193i) QS honors the start-at-login request and does appear in the login items in the Users & Groups prefPane. |
Confirmed. Thanks for pointing this out. Having looked into it, we still need to update the way we do this, though. |
Any updates on this issue? |
I also recently have seen this on 3 new 10.8 mountain lion installs with B69 — I just use launchd instead but this is a fairly major issue for general users nevertheless... |
@iandol can you give us some pointers on starting QS with launchd? |
I use the following QS.plist saved to my ~/Library/LaunchAgents/ <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>QS</string>
<key>ProgramArguments</key>
<array>
<string>/Applications/Quicksilver.app/Contents/MacOS/Quicksilver</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist> |
The preference in Quicksilver isn't working, but adding it to Login Items like you would any other app should work fine. Also, don't use |
@skurfer — curious why you think launchd is a bad idea? |
Same question, especially since I crafted a plist file that's in the repo for this exact purpose ;-). El 8 août 2012, a las 02:43, Ian notifications@github.com escribió:
|
I forget the details. I'm sure I've explained it on another issue here. One thing I remember is that it just kills Quicksilver, rather than telling it to quit, so any of the stuff it should be doing at shutdown gets skipped. This is probably less of an issue with the way the most recent crash reporter works, but still, are you OK with that? I don't think it was intended for use with GUI applications. Another thing is what if you actually want to quit Quicksilver for some reason? I don't think that was all. FYI, the "Open at Login" action is also broken. (It uses the same code as the Quicksilver preference.) |
I don't know anything about Objective-C, but I have learned a fair bit about launchd and its agents, and I'm pretty sure the launch agent plist that landol posted will work just fine. What isn't a good idea is to add the Alternatively, one could also use this version in order to avoid launchd having anything directly to do with starting QS:
|
I would like to add this observation to the 'modifier-only activation' issue (single command in my case). |
The preferences stays active across logins, but the application is never added to the user’s login items.
The text was updated successfully, but these errors were encountered: