Rework Input Devices category
This commit is contained in:
parent
1e5c897c63
commit
6c3cf001c6
19
README.md
19
README.md
@ -692,28 +692,29 @@ killall PowerChime
|
|||||||
|
|
||||||
### Keyboard
|
### Keyboard
|
||||||
|
|
||||||
#### Disable Auto-Correct
|
#### Auto-Correct
|
||||||
```bash
|
```bash
|
||||||
|
# Disable
|
||||||
defaults write -g NSAutomaticSpellingCorrectionEnabled -bool false
|
defaults write -g NSAutomaticSpellingCorrectionEnabled -bool false
|
||||||
```
|
|
||||||
|
|
||||||
#### Enable Auto-Correct
|
# Enable (Default)
|
||||||
```bash
|
|
||||||
defaults write -g NSAutomaticSpellingCorrectionEnabled -bool true
|
defaults write -g NSAutomaticSpellingCorrectionEnabled -bool true
|
||||||
```
|
|
||||||
|
|
||||||
#### Show Auto-Correct Setting
|
# Show Status
|
||||||
```bash
|
|
||||||
defaults read -g NSAutomaticSpellingCorrectionEnabled
|
defaults read -g NSAutomaticSpellingCorrectionEnabled
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Enable Key Repeat
|
#### Key Repeat
|
||||||
Disable the default "press and hold" behavior.
|
Disable the default "press and hold" behavior.
|
||||||
```bash
|
```bash
|
||||||
|
# Enable Key Repeat
|
||||||
defaults write -g ApplePressAndHoldEnabled -bool false
|
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.
|
Sets a very fast repeat rate, adjust to taste.
|
||||||
```bash
|
```bash
|
||||||
defaults write NSGlobalDomain KeyRepeat -int 0.02
|
defaults write NSGlobalDomain KeyRepeat -int 0.02
|
||||||
|
Loading…
Reference in New Issue
Block a user