Skip to content

Instantly share code, notes, and snippets.

@benmargolin
Created April 25, 2014 06:46
Show Gist options
  • Save benmargolin/11279860 to your computer and use it in GitHub Desktop.
Save benmargolin/11279860 to your computer and use it in GitHub Desktop.
deluged launchd plist (goes in /Library/LaunchDaemons, then launchctl load -w com.deluged.plist ; launchctl start com.deluged)
<?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>UserName</key>
<string>ben</string>
<key>Label</key>
<string>com.deluged</string>
<key>OnDemand</key>
<false/>
<key>ProgramArguments</key>
<array>
<string>Contents/MacOS/deluged</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>WorkingDirectory</key>
<string>/Applications/Deluge.app</string>
<key>ServiceDescription</key>
<string>deluged</string>
</dict>
</plist>
@benmargolin
Copy link
Author

This is for the binary install of Deluge.app, installed into /Applications

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment