applications: added new script

This commit is contained in:
2025-08-28 09:19:15 +02:00
parent 23b8102b2a
commit 65cee6eec0
10 changed files with 287 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/bash
DIR=$(dirname "$0")
for app in "$DIR"/*.app; do
echo "Installing $(basename "$app")..."
cp -rv "$app" "$HOME"/Applications/
xattr -dr com.apple.quarantine "/Applications/$(basename "$app")"
done
open "x-apple.systempreferences:com.apple.preference.security?Privacy_Accessibility"