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
| ;; Current as of macOS 15.1 | |
| (with send-signal …) | |
| (with errno …) | |
| (with report) | |
| (with no-report) | |
| (with no-sandbox) | |
| (with grant) | |
| (with sip-override) | |
| (with no-times) |
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
| ;; Current as of macOS 15.1 | |
| Accessibility | |
| Accounts | |
| AirDrop | |
| AirPlay | |
| AppStoreSandboxes | |
| AppleInstallerSandboxes | |
| AppleMediaServices | |
| ArchiveUtility |
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
| //effect goes away after rebooting, automation is recommended | |
| void* handle = dlopen("/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/HIServices", RTLD_NOW); | |
| xpc_connection_t conn = xpc_connection_create("com.apple.hiservices-xpcservice", NULL); | |
| if (conn == NULL) { | |
| NSLog(@"Error creating connection"); | |
| return; | |
| } |
OlderNewer