Created
June 27, 2013 21:09
-
-
Save kennonb/5880428 to your computer and use it in GitHub Desktop.
OS X Defaults (New Install)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 `[email protected]` instead of `Foo Bar <[email protected]>` 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