Skip to content

Instantly share code, notes, and snippets.

@beerpiss
Created January 9, 2022 02:25
Show Gist options
  • Save beerpiss/ce5233bbd3c41ac01b9ef4a22d9a5e00 to your computer and use it in GitHub Desktop.
Save beerpiss/ce5233bbd3c41ac01b9ef4a22d9a5e00 to your computer and use it in GitHub Desktop.
is this how you write launch daemons
<?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