Skip to content

Instantly share code, notes, and snippets.

@kyle-johnson
Created July 11, 2017 22:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyle-johnson/47ed53eec42a72482ac8a322954ea20f to your computer and use it in GitHub Desktop.
Save kyle-johnson/47ed53eec42a72482ac8a322954ea20f to your computer and use it in GitHub Desktop.
# Expand save panel by default
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode2 -bool true
# Automatically quit printer app once the print jobs complete
defaults write com.apple.print.PrintingPrefs "Quit When Finished" -bool true
# Disable Resume system-wide (Terminals get funny with this turned on)
defaults write com.apple.systempreferences NSQuitAlwaysKeepsWindows -bool false
# Enable full keyboard access for all controls
# (e.g. enable Tab in modal dialogs)
defaults write NSGlobalDomain AppleKeyboardUIMode -int 3
# Disable auto-correct
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false
# Keep folders on top when sorting by name
defaults write com.apple.finder _FXSortFoldersFirst -bool true
# When performing a search, search the current folder by default
defaults write com.apple.finder FXDefaultSearchScope -string "SCcf"
# Disable the warning when changing a file extension
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment