Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isao/81e3678e9075425a03bd80cdbb434f08 to your computer and use it in GitHub Desktop.
Save isao/81e3678e9075425a03bd80cdbb434f08 to your computer and use it in GitHub Desktop.
LaunchEvents -> com.apple.notifyd.matching
find /System/Library/LaunchDaemons /System/Library/LaunchAgents -name "*.plist" \
| while read p ; do plutil -convert json -o - ${p} \
| jq -r ' .. | objects | with_entries(select(.key == "Notification")) | select(. != {}).Notification'
done | sort -u > ~/Desktop/all-launchd-notifications.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment