Skip to content

Instantly share code, notes, and snippets.

@demidovsky
Last active April 2, 2019 12:27
Show Gist options
  • Save demidovsky/0ab84def23d5e7681c36450e95e08c37 to your computer and use it in GitHub Desktop.
Save demidovsky/0ab84def23d5e7681c36450e95e08c37 to your computer and use it in GitHub Desktop.

Check all non-Apple installed services:

launchctl list | grep -v com.apple

Get active services:

grep -B 1 -A 1 "active count = 1$" <<< "$(launchctl dumpstate)"

Remove unnecessary:

launchctl unload -w /Library/LaunchDaemons/......plist

Reboot.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment