⚙️ System Configuration
Panduan optimasi sistem macOS untuk performa maksimal dan user experience yang lebih baik.
Disable Animations
Hapus animasi untuk performa lebih baik dan kecepatan:
bash
# Disable Launchpad animation
defaults write com.apple.dock springboard-show-duration -int 0
defaults write com.apple.dock springboard-hide-duration -int 0
# Disable Mission Control animation
defaults write com.apple.dock expose-animation-duration -float 0
# Disable window open/close animation
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false
# Disable dock hiding animation
defaults write com.apple.dock autohide-time-modifier -float 0
# Disable Spotlight Suggestions
defaults write com.apple.lookup.shared LookupSuggestionsDisabled 1
# Auto-hide Dock
defaults write com.apple.dock autohide -bool true
# Faster Dock show/hide
defaults write com.apple.dock autohide-delay -float 0
defaults write com.apple.dock autohide-time-modifier -float 0
# Smaller icon size
defaults write com.apple.dock tilesize -int 32
# Remove recent apps from Dock
defaults write com.apple.dock show-recents -bool false
# Disable "Animate opening applications"
defaults write com.apple.dock launchanim -bool false
# Enable "Minimize windows into application icon"
defaults write com.apple.dock minimize-to-application -bool true
# Faster trackpad
defaults write -g com.apple.trackpad.scaling -float 5
# Trackpad: enable tap to click
defaults write com.apple.AppleMultitouchTrackpad Clicking -bool true
# Increase mouse speed
defaults write -g com.apple.mouse.scaling -float 2.5
# Restart Dock
killall DockFinder Settings
Show Status Bar
bash
defaults write com.apple.finder ShowStatusBar -bool true
killall FinderShow Full Path in Finder Title
bash
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
killall FinderEnable Spring Loading for Directories
bash
defaults write NSGlobalDomain com.apple.springing.enabled -bool true
defaults write NSGlobalDomain com.apple.springing.delay -float 0View Options (List View)
Buka Finder, tekan ⌘J (Show View Options). 
bash
# Use list view in all Finder windows by default
# Four-letter codes for the other view modes: `icnv`, `clmv`, `Flwv`
defaults write com.apple.finder FXPreferredViewStyle -string "Nlsv"