Skip to content

Instantly share code, notes, and snippets.

@shinnok
Last active November 3, 2019 10:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shinnok/6897d2714c32ee4f95f1722139df4581 to your computer and use it in GitHub Desktop.
Save shinnok/6897d2714c32ee4f95f1722139df4581 to your computer and use it in GitHub Desktop.
com.tarsnap.gui.plist
<?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">
<!-- Tarsnap GUI launchd script for running Tarsnap scheduled Jobs every
day at 10AM. Copy to appropriate path and load with:
$launchctl load ~/Library/LaunchAgents/com.tarsnap.gui.plist
-->
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.tarsnap.gui</string>
<key>ProgramArguments</key>
<array>
<string>/Users/shinnok/Applications/Tarsnap.app/Contents/MacOS/Tarsnap</string>
<string>--jobs</string>
</array>
<key>StartCalendarInterval</key>
<dict>
<key>Hour</key>
<integer>10</integer>
<key>Minute</key>
<integer>0</integer>
</dict>
<key>WorkingDirectory</key>
<string>/Users/shinnok/Downloads/</string>
<key>StandardOutPath</key>
<string>/Users/shinnok/Library/Logs/tarsnap-gui.log</string>
<key>StandardErrorPath</key>
<string>/Users/shinnok/Library/Logs/tarsnap-gui.log</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment