Created
January 9, 2022 02:25
-
-
Save beer-psi/ce5233bbd3c41ac01b9ef4a22d9a5e00 to your computer and use it in GitHub Desktop.
is this how you write launch daemons
This file contains 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 Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>org.beerpsi.shitc0ver</string> | |
<key>POSIXSpawnType</key> | |
<string>Interactive</string> | |
<key>ProcessType</key> | |
<string>Interactive</string> | |
<key>Program</key> | |
<string>/bin/sh</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/bin/sh</string> | |
<string>-c</string> | |
<string>"killall CommCenter; launchctl stop com.apple.bluetoothd"</string> | |
</array> | |
<key>RunAtLoad</key> | |
<true/> | |
<key>StartInterval</key> | |
<integer>86400</integer> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment