This commit is contained in:
Jerico Thomas
2025-08-01 12:29:34 -04:00
parent 5bf8965693
commit d93ce669b1
8 changed files with 191 additions and 77 deletions

29
entitlements.plist Normal file
View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- Allow the app to control other applications -->
<key>com.apple.security.automation.apple-events</key>
<true/>
<!-- Allow accessibility API access -->
<key>com.apple.security.personal-information.accessibility</key>
<true/>
<!-- Allow input monitoring (for PyAutoGUI) -->
<key>com.apple.security.device.microphone</key>
<false/>
<key>com.apple.security.device.camera</key>
<false/>
<!-- Allow network access if needed -->
<key>com.apple.security.network.client</key>
<true/>
<!-- Allow file system access -->
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<key>com.apple.security.files.downloads.read-write</key>
<true/>
</dict>
</plist>