Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ssaadh/425c1228177099606ef5186cf8f14b42 to your computer and use it in GitHub Desktop.
Save ssaadh/425c1228177099606ef5186cf8f14b42 to your computer and use it in GitHub Desktop.
Launchd script to keep a macOS app to always run even if it closes randomly (issue I'm having from crashes). Place in ~/Library/LaunchAgents and run <code>launchctl load ~/Library/LaunchAgents/FILENAME.plist</code>
<?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>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>Label</key>
<string>App.restart</string>
<key>ProgramArguments</key>
<array>
<string>/path/to/App.app/Contents/MacOS/App</string>
</array>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment