-
-
Save isao/81e3678e9075425a03bd80cdbb434f08 to your computer and use it in GitHub Desktop.
LaunchEvents -> com.apple.notifyd.matching
This file contains hidden or 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
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