diff options
| author | Zhineng Li <[email protected]> | 2026-01-09 10:19:46 +0800 |
|---|---|---|
| committer | Zhineng Li <[email protected]> | 2026-01-09 10:19:46 +0800 |
| commit | 879ad0b81c16831f9457d33016cef4e2213df44e (patch) | |
| tree | 1c58afa8b7fcccc19de5d592b957cfe12e8d004a | |
| parent | 3de03e01481028f456bbf2d60af32a3969079d3d (diff) | |
configure App Store
| -rwxr-xr-x | .macos | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -206,10 +206,21 @@ PLIST="$HOME/Library/Preferences/com.apple.Terminal.plist" ######################################################################### +# App Store +######################################################################### + +# Disable video autoplay +defaults write com.apple.AppStore AutoPlayVideoSetting -string off + +# Disable in-app ratings and reviews (broken on macOS Tahoe 26) +defaults write com.apple.AppStore InAppReviewEnabled -bool FALSE + + +######################################################################### # Close affected applications ######################################################################### -apps=("Finder" "Dock" "Spotlight" "Siri" "Safari" "Terminal" "System Settings") +apps=("Finder" "Dock" "Spotlight" "Siri" "Safari" "Terminal" "App Store" "System Settings") for appname in "${apps[@]}"; do killall -q "$appname" || true |
