Skip to content

Instantly share code, notes, and snippets.

@daniepetrov
Forked from hofmannsven/README.md
Last active June 14, 2023 06:04
Show Gist options
  • Save daniepetrov/975e126f0c9195178e361d02a0d7f372 to your computer and use it in GitHub Desktop.
Save daniepetrov/975e126f0c9195178e361d02a0d7f372 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 12 // (180 ms)
defaults write -g KeyRepeat -int 2 // (30 ms)
defaults write -g ApplePressAndHoldEnabled -bool false // (повторение)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment