From 6c3cf001c610f8458765c58c8f7045ae9e5cb262 Mon Sep 17 00:00:00 2001 From: Marcel Bischoff Date: Fri, 4 Dec 2015 01:26:24 +0100 Subject: [PATCH] Rework Input Devices category --- README.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 3b99c37..556cf69 100644 --- a/README.md +++ b/README.md @@ -692,28 +692,29 @@ killall PowerChime ### Keyboard -#### Disable Auto-Correct +#### Auto-Correct ```bash +# Disable defaults write -g NSAutomaticSpellingCorrectionEnabled -bool false -``` -#### Enable Auto-Correct -```bash +# Enable (Default) defaults write -g NSAutomaticSpellingCorrectionEnabled -bool true -``` -#### Show Auto-Correct Setting -```bash +# Show Status defaults read -g NSAutomaticSpellingCorrectionEnabled ``` -#### Enable Key Repeat +#### Key Repeat Disable the default "press and hold" behavior. ```bash +# Enable Key Repeat defaults write -g ApplePressAndHoldEnabled -bool false + +# Disable Key Repeat +defaults write -g ApplePressAndHoldEnabled -bool true ``` -#### Set Key Repeat Rate +#### Key Repeat Rate Sets a very fast repeat rate, adjust to taste. ```bash defaults write NSGlobalDomain KeyRepeat -int 0.02