dotfiles/os/macos/keyboard.pref.fish

20 lines
619 B
Fish
Raw Normal View History

2024-02-01 21:27:49 -08:00
#!/usr/bin/env fish
source "$DOT/script/utils.fish"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
print_subtitle "Keyboard"
execute "defaults write -g AppleKeyboardUIMode -int 3" \
"Enable full keyboard access for all controls"
execute "defaults write NSGlobalDomain NSAutomaticCapitalizationEnabled -bool false" \
"Disable automatic capitalization"
execute "defaults write -g NSAutomaticSpellingCorrectionEnabled -bool false" \
"Disable automatic correction"
execute "defaults write com.apple.HIToolbox AppleFnUsageType -int 2" \
"Remap the emoji picker to the Fn key"