Skip to content

Instantly share code, notes, and snippets.

@ivan-hilckov
Forked from karolyi/osx_keyboardspeed.sh
Created June 5, 2019 03:59
Show Gist options
  • Save ivan-hilckov/27c7fe85436b2c3854fb2eddc2af5f76 to your computer and use it in GitHub Desktop.
Save ivan-hilckov/27c7fe85436b2c3854fb2eddc2af5f76 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 0.02
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