Created
August 29, 2012 18:08
-
-
Save jeremyhicks/3516385 to your computer and use it in GitHub Desktop.
Custom Mac OS X Preferences
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
# 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 `[email protected]` instead of `Foo Bar <[email protected]>` 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