summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhineng Li <[email protected]>2026-01-09 10:19:46 +0800
committerZhineng Li <[email protected]>2026-01-09 10:19:46 +0800
commit879ad0b81c16831f9457d33016cef4e2213df44e (patch)
tree1c58afa8b7fcccc19de5d592b957cfe12e8d004a
parent3de03e01481028f456bbf2d60af32a3969079d3d (diff)
configure App Store
-rwxr-xr-x.macos13
1 files changed, 12 insertions, 1 deletions
diff --git a/.macos b/.macos
index 6e1b16c..56a34a6 100755
--- a/.macos
+++ b/.macos
@@ -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