Skip to content

Instantly share code, notes, and snippets.

@jeremyhicks
Created August 29, 2012 18:08
Show Gist options
  • Save jeremyhicks/3516385 to your computer and use it in GitHub Desktop.
Save jeremyhicks/3516385 to your computer and use it in GitHub Desktop.
Custom Mac OS X Preferences
# expand save dialog sheet
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true
# allow key repeat
defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false
# finder cmd-q
defaults write com.apple.finder QuitMenuItem -bool true
# text selection in quick look
defaults write com.apple.finder QLEnableTextSelection -bool true
# finder warning for changing a file extension
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false
# dock auto hide delay
defaults write com.apple.Dock autohide-delay -float 0
# Remove the animation when hiding/showing the Dock
defaults write com.apple.dock autohide-time-modifier -float 0
killall Dock
# Copy email addresses as `foo@example.com` instead of `Foo Bar <foo@example.com>` in Mail.app
defaults write com.apple.mail AddressesIncludeNameOnPasteboard -bool false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment