Skip to content

Instantly share code, notes, and snippets.

@lyuehh
Created February 26, 2013 09:50
Show Gist options
  • Save lyuehh/5037355 to your computer and use it in GitHub Desktop.
Save lyuehh/5037355 to your computer and use it in GitHub Desktop.
# Disable the “Are you sure you want to open this application?” dialog
defaults write com.apple.LaunchServices LSQuarantine -bool false
# Increase window resize speed for Cocoa applications
defaults write NSGlobalDomain NSWindowResizeTime -float 0.001
# Set a blazingly fast keyboard repeat rate
defaults write NSGlobalDomain KeyRepeat -int 0
# Show all filename extensions in Finder
defaults write NSGlobalDomain AppleShowAllExtensions -bool true
# Allow text selection in Quick Look
defaults write com.apple.finder QLEnableTextSelection -bool true
# Avoid creating .DS_Store files on network volumes
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
# Disable the warning when changing a file extension
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment