Skip to content

Instantly share code, notes, and snippets.

@wey-gu
Forked from karolyi/osx_keyboardspeed.sh
Created August 15, 2019 15:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wey-gu/cc499a1492fb2ceb47326784d284962c to your computer and use it in GitHub Desktop.
Save wey-gu/cc499a1492fb2ceb47326784d284962c to your computer and use it in GitHub Desktop.
Mac OS X super fast keyboard speed
#!/usr/bin/env bash
# http://papers.ch/speeding-up-your-mac-osx-terminal-input/
#echo "Disable press-and-hold for keys in favor of key repeat"
#defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false
echo "Set a blazingly fast keyboard repeat rate"
defaults write NSGlobalDomain KeyRepeat -int 2
echo "Set a shorter Delay until key repeat"
defaults write NSGlobalDomain InitialKeyRepeat -int 12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment