# Tắt gõ tắt (Text Replacement) toàn hệ thống defaults write NSGlobalDomain NSAutomaticTextReplacementEnabled -bool false defaults write -g WebAutomaticTextReplacementEnabled -bool false # Tắt tự sửa chính tả toàn hệ thống defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false # Tắt tự gợi ý text completion defaults write NSGlobalDomain NSAutomaticTextCompletionEnabled -bool false # Tắt tự viết hoa đầu câu defaults write NSGlobalDomain NSAutomaticCapitalizationEnabled -bool false # Tắt tự thêm dấu chấm khi nhấn Space 2 lần defaults write NSGlobalDomain NSAutomaticPeriodSubstitutionEnabled -bool false # Tắt ngoặc kép & gạch ngang "thông minh" defaults write NSGlobalDomain NSAutomaticQuoteSubstitutionEnabled -bool false defaults write NSGlobalDomain NSAutomaticDashSubstitutionEnabled -bool false # Tắt kiểm tra chính tả liên tục (gạch chân đỏ khi gõ) defaults write -g NSAllowContinuousSpellChecking -bool false # Tắt tự sửa chính tả (auto-correct) defaults write -g NSAutomaticSpellingCorrectionEnabled -bool false # Tắt gợi ý / hoàn thành tự động (text completion) defaults write -g NSAutomaticTextCompletionEnabled -bool false #Tắt tự nhận diện ngôn ngữ để sửa defaults write NSGlobalDomain NSSpellCheckerAutomaticallyIdentifiesLanguages -bool false killall cfprefsd ================================ #Khóa vị trí Dock (không cho đổi trái/phải/dưới) defaults write com.apple.dock position-immutable -bool true #Khóa nội dung Dock (không cho kéo thêm/bớt, sắp xếp icon) defaults write com.apple.dock contents-immutable -bool true #Khóa kích thước Dock (không cho kéo to/nhỏ) defaults write com.apple.dock size-immutable -bool true #Khóa luôn trạng thái ẩn/hiện (không cho bật/tắt autohide) defaults write com.apple.dock autohide-immutable -bool true #Tắt cửa sổ cảnh báo khi đổi phần mở rộng file defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false #Finder: không tạo file .DS_Store trên USB / network defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true #Bạn có thể ép Finder dùng List view mặc định bằng lệnh Terminal: defaults write com.apple.finder FXPreferredViewStyle Nlsv # Bật auto arrange theo tên defaults write com.apple.finder FXPreferredGroupBy -string "Name" # Chế độ xem mặc định: List view defaults write com.apple.finder FXPreferredViewStyle Nlsv # Hiển thị dung lượng thư mục trong chế độ List view defaults write com.apple.finder CalculateAllSizes -bool true # Bật auto arrange theo Name defaults write com.apple.finder FXPreferredGroupBy -string "Name" # Hiển thị thanh trạng thái defaults write com.apple.finder ShowStatusBar -bool true # Hiển thị thanh path defaults write com.apple.finder ShowPathbar -bool true # Mở thư mục mới luôn trong List view defaults write com.apple.finder FXPreferredViewStyle Nlsv # Hiển thị đầy đủ đường dẫn trong title bar defaults write com.apple.finder _FXShowPosixPathInTitle -bool true # Mở thư mục mới trong tab thay vì cửa sổ mới defaults write com.apple.finder FinderSpawnTab -bool true # Hiển thị dung lượng thư mục trong chế độ List view defaults write com.apple.finder CalculateAllSizes -bool true # Bật tính năng kéo-thả copy thay vì di chuyển khi dùng Option defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false # Tắt Notification Badge trên Dock defaults write com.apple.dock show-recents -bool false # Tắt Resume ứng dụng khi khởi động lại defaults write NSGlobalDomain NSQuitAlwaysKeepsWindows -bool false killall Finder Killall Dock