Skip to content

Instantly share code, notes, and snippets.

@kennonb
Created June 27, 2013 21:09
Show Gist options
  • Save kennonb/5880428 to your computer and use it in GitHub Desktop.
Save kennonb/5880428 to your computer and use it in GitHub Desktop.
OS X Defaults (New Install)
# No delay on Dock display.
defaults write com.apple.Dock autohide-delay -float 0
# Expand save panel by default
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true
# Expand print panel by default
defaults write NSGlobalDomain PMPrintingExpandedStateForPrint -bool true
# Disable the “Are you sure you want to open this application?” dialog
defaults write com.apple.LaunchServices LSQuarantine -bool false
# Allow text selection in Quick Look
defaults write com.apple.finder QLEnableTextSelection -bool true
# Add a spacer to the left side of the Dock (where the applications are)
defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}'
# 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
# Revert power button to alert box, instead of immediate sleep
defaults write com.apple.loginwindow PowerButtonSleepsSystem -bool no
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment