Skip to content

Instantly share code, notes, and snippets.

@laurilehmijoki
Created January 9, 2013 12:28
Show Gist options
  • Save laurilehmijoki/4492781 to your computer and use it in GitHub Desktop.
Save laurilehmijoki/4492781 to your computer and use it in GitHub Desktop.
OS X key repeat
# For inspiration, see http://mths.be/osx
# Set a shorter Delay until key repeat (requires OS restart to take effect)
defaults write NSGlobalDomain InitialKeyRepeat -int 12
# Set a blazingly fast keyboard repeat rate (requires OS restart to take effect)
defaults write NSGlobalDomain KeyRepeat -int 0.02
defaults write com.apple.finder AppleShowAllFiles TRUE
# Disable the “Are you sure you want to open this application?” dialog
defaults write com.apple.LaunchServices LSQuarantine -bool false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment