feat: add post-installation and post-removal scripts for package management

This commit is contained in:
litruv
2026-02-21 18:12:59 +11:00
parent 3df5432127
commit 62c42f7b63
3 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?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 JIT compilation for V8 JavaScript engine -->
<key>com.apple.security.cs.allow-jit</key>
<true/>
<!-- Allow unsigned executable memory (required for Electron) -->
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<!-- Allow loading unsigned dylibs -->
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
<!-- Network access for Matrix communication -->
<key>com.apple.security.network.client</key>
<true/>
<!-- Microphone access for voice/video calls -->
<key>com.apple.security.device.audio-input</key>
<true/>
<!-- Camera access for video calls -->
<key>com.apple.security.device.camera</key>
<true/>
<!-- Screen recording for screen sharing -->
<key>com.apple.security.screen-recording</key>
<true/>
</dict>
</plist>