Files
streamdeck-go/launchd/com.woodarddigital.streamdeck-go.plist
2026-04-13 08:11:19 -06:00

38 lines
1.1 KiB
Plaintext

<?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">
<!--
LaunchAgent for streamdeck-go (user daemon).
Installed to: ~/Library/LaunchAgents/com.woodarddigital.streamdeck-go.plist
Manage with:
launchctl load ~/Library/LaunchAgents/com.woodarddigital.streamdeck-go.plist
launchctl unload ~/Library/LaunchAgents/com.woodarddigital.streamdeck-go.plist
tail -f /tmp/streamdeck-go.log
The binary path below is set by install.sh at install time.
-->
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.woodarddigital.streamdeck-go</string>
<key>ProgramArguments</key>
<array>
<string>STREAMDECK_BINARY_PATH</string>
</array>
<!-- Start automatically when the user logs in. -->
<key>RunAtLoad</key>
<true/>
<!-- Restart automatically if the process exits. -->
<key>KeepAlive</key>
<true/>
<key>StandardOutPath</key>
<string>STREAMDECK_LOG_PATH</string>
<key>StandardErrorPath</key>
<string>STREAMDECK_LOG_PATH</string>
</dict>
</plist>