Skip to content

Instantly share code, notes, and snippets.

@justinxreese
Created January 13, 2016 22:43
Show Gist options
  • Save justinxreese/b1c607bd7dc05061d8ac to your computer and use it in GitHub Desktop.
Save justinxreese/b1c607bd7dc05061d8ac to your computer and use it in GitHub Desktop.
My OS X defaults
# Disable the crash reporter
defaults write com.apple.CrashReporter DialogType -string "none"
# Check for software updates daily, not just once per week
defaults write com.apple.SoftwareUpdate ScheduleFrequency -int 1
# Automatically quit printer app once the print jobs complete
defaults write com.apple.print.PrintingPrefs "Quit When Finished" -bool true
# Expand save panel by default
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode2 -bool true
# Disable smart quotes as they’re annoying when typing code
defaults write NSGlobalDomain NSAutomaticQuoteSubstitutionEnabled -bool false
# Disable smart dashes as they’re annoying when typing code
defaults write NSGlobalDomain NSAutomaticDashSubstitutionEnabled -bool false
# Enable Quitting Finder (Hide desktop icons/Cmd-Tab entry)
defaults write com.apple.finder QuitMenuItem -bool true
# Finder: show path bar
defaults write com.apple.finder ShowPathbar -bool true
# Don’t display the annoying prompt when quitting iTerm
defaults write com.googlecode.iterm2 PromptOnQuit -bool false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment