Skip to content

Instantly share code, notes, and snippets.

@maximebories
Last active March 30, 2023 20:13
Show Gist options
  • Save maximebories/4f1df0b9ba2d235370227211d72d16d4 to your computer and use it in GitHub Desktop.
Save maximebories/4f1df0b9ba2d235370227211d72d16d4 to your computer and use it in GitHub Desktop.
Aria2c Homebrew Service
<?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>homebrew.mxcl.aria2</string>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>StandardOutPath</key>
<string>/opt/homebrew/Cellar/aria2/1.36.0_1/log/aria2.log</string>
<key>StandardErrorPath</key>
<string>/opt/homebrew/Cellar/aria2/1.36.0_1/log/aria2.log</string>
<key>ProgramArguments</key>
<array>
<string>/opt/homebrew/bin/aria2c</string>
<string>--enable-rpc</string>
<string>--rpc-listen-all=true</string>
<string>--rpc-allow-origin-all</string>
</array>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment