Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the '10.4: Create tab clones via a keyboard shortcut' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
10.4: Create tab clones via a keyboard shortcut
Authored by: Syco on Apr 18, '06 11:31:23AM
You can use launchd to keep Quicksilver open, even when it crashes. Put this in a file named com.blacktree.QuicksilverOpener.plist in ~/Library/LaunchAgents/.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
        <key>Label</key>
        <string>com.blacktree.QuicksilverOpener</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
                <string>/Applications/Quicksilver.app/Contents/MacOS/Quicksilver</string>
        </array>
</dict>
</plist>
Then, in Terminal, run: launchctl load ~/Library/LaunchAgents/com.blacktree.QuicksilverOpener.plist

[ Reply to This | # ]