Created
January 24, 2010 01:36
-
-
Save snb/284932 to your computer and use it in GitHub Desktop.
launch agent for periodically running xplanet
This file contains 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"> | |
<!--Put this in ~/Library/LaunchAgents and launchctl load it. Note that this | |
doesn't seem to work anymore in Snow Leopard.--> | |
<dict> | |
<key>Label</key> | |
<string>xplanet</string> | |
<key>Nice</key> | |
<integer>5</integer> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/local/bin/xplanet</string> | |
<string>-num_times</string> | |
<string>1</string> | |
<string>-body</string> | |
<string>major</string> | |
<string>-random</string> | |
<string>-range</string> | |
<string>20</string> | |
<string>-label</string> | |
<string>-labelpos</string> | |
<string>-15+680</string> | |
</array> | |
<key>RunAtLoad</key> | |
<true/> | |
<key>StartInterval</key> | |
<integer>3600</integer> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment