summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhineng Li <[email protected]>2026-01-09 10:26:06 +0800
committerZhineng Li <[email protected]>2026-01-09 10:26:06 +0800
commitafcaa7f6aedbfcd01931894e94de4a2069f32883 (patch)
tree3ef6f7ad42886ca9c20a90cfd21d9286eab38a0d
parent879ad0b81c16831f9457d33016cef4e2213df44e (diff)
Split app list into multiple lines for better readability
-rwxr-xr-x.macos11
1 files changed, 10 insertions, 1 deletions
diff --git a/.macos b/.macos
index 56a34a6..8fc4ffa 100755
--- a/.macos
+++ b/.macos
@@ -220,7 +220,16 @@ defaults write com.apple.AppStore InAppReviewEnabled -bool FALSE
# Close affected applications
#########################################################################
-apps=("Finder" "Dock" "Spotlight" "Siri" "Safari" "Terminal" "App Store" "System Settings")
+apps=(
+ "Finder"
+ "Dock"
+ "Spotlight"
+ "Siri"
+ "Safari"
+ "Terminal"
+ "App Store"
+ "System Settings"
+)
for appname in "${apps[@]}"; do
killall -q "$appname" || true