Last active
May 14, 2026 21:18
-
-
Save loopj/3468778dc66ccc612b56d1f273b45f7f to your computer and use it in GitHub Desktop.
Run sendspin in the background and start at boot on MacOS
This file contains hidden or 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://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