Rework Input Devices category

This commit is contained in:
Marcel Bischoff 2015-12-04 01:26:24 +01:00
parent 1e5c897c63
commit 6c3cf001c6

View File

@ -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