Created
January 27, 2012 19:48
-
-
Save fancyremarker/1690573 to your computer and use it in GitHub Desktop.
Quicksilver ß63 Launch Fix for OS 10.7.2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>local.quicksilver.startAtLogin</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/bin/sh</string> | |
<string>/usr/local/bin/qsapp</string> | |
</array> | |
<key>RunAtLoad</key> | |
<true/> | |
<key>KeepAlive</key> | |
<false/> | |
</dict> | |
</plist> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Quicksilver safe starter | |
# Requires: pgrep (via proctools) | |
/usr/bin/open /Applications/Quicksilver.app | |
/bin/sleep 0.5 | |
/usr/local/bin/pkill Quicksilver | |
/bin/sleep 0.5 | |
/usr/bin/open /Applications/Quicksilver.app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To install: (Make sure you already have http://mxcl.github.com/homebrew/ installed.)