Skip to content

Instantly share code, notes, and snippets.

@hofmannsven
Created December 6, 2017 00:32
Show Gist options
  • Star 95 You must be signed in to star a gist
  • Fork 21 You must be signed in to fork a gist
  • Save hofmannsven/ff21749b0e6afc50da458bebbd9989c5 to your computer and use it in GitHub Desktop.
Save hofmannsven/ff21749b0e6afc50da458bebbd9989c5 to your computer and use it in GitHub Desktop.
Increase key repeat rate on macOS

Increase key repeat rate on macOS

Settings: System Preferences » Keyboard » Key Repeat/Delay Until Repeat

Use the commands below to increase the key repeat rate on macOS beyond the possible settings via the user interface. The changes aren't applied until you restart your computer.

Source: https://apple.stackexchange.com/a/83923

defaults write -g InitialKeyRepeat -int 10 # normal minimum is 15 (225 ms)
defaults write -g KeyRepeat -int 1 # normal minimum is 2 (30 ms)
@alexandre-g
Copy link

The issue I have with KeyRepeat is that you can't have it faster than 1. Doesn't accept floating-point values from what I saw.
Used to work around this using Karabiner (actually not Karabiner but the app that it replaced) but that was apparently not possible anymore since some MacOS version.

I imagine the com.apple.Accessibility. KeyRepeatInterval relates to key repeat speed on virtual accessibility keyboard
If anyone figures out how to increase key repeat interval beyond 1 please do reach out 🙏🏻

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment