Skip to content

Instantly share code, notes, and snippets.

@loopj
Last active May 14, 2026 21:18
Show Gist options
  • Select an option

  • Save loopj/3468778dc66ccc612b56d1f273b45f7f to your computer and use it in GitHub Desktop.

Select an option

Save loopj/3468778dc66ccc612b56d1f273b45f7f to your computer and use it in GitHub Desktop.
Run sendspin in the background and start at boot on MacOS
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://apple.com">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.sendspin-audio.daemon</string>
<key>ProgramArguments</key>
<array>
<!-- Replace with the path to sendspin cli -->
<string>/Users/james/.local/bin/sendspin</string>
<string>daemon</string>
<!-- Replace with your audio device, or remove to use defaults -->
<string>--audio-device</string>
<string>Arctis</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>ProcessType</key>
<string>Interactive</string>
<key>Nice</key>
<integer>-20</integer>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment