diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-06-26 13:36:39 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-06-26 13:36:39 +0200 |
commit | 24045d9f06b06a1d25dbd7f6ebc52f6b16d9db1b (patch) | |
tree | 0c5506a68d6bb24890f01f3d9c1f9af7fd43da60 | |
parent | df434eff54d584c4d4c1cbda94fa169bb6b19b74 (diff) | |
download | dotfiles-24045d9f06b06a1d25dbd7f6ebc52f6b16d9db1b.tar.gz dotfiles-24045d9f06b06a1d25dbd7f6ebc52f6b16d9db1b.tar.bz2 dotfiles-24045d9f06b06a1d25dbd7f6ebc52f6b16d9db1b.zip |
.osx: Set language and text formats
-rwxr-xr-x | .osx | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -46,6 +46,14 @@ defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false # Set a blazingly fast keyboard repeat rate defaults write NSGlobalDomain KeyRepeat -int 0 +# Set language and text formats +# Note: if you’re in the US, replace `EUR` with `USD`, `Centimeters` with `Inches`, and `true` with `false`. +defaults write NSGlobalDomain AppleLanguages -array "en" "nl" +defaults write NSGlobalDomain AppleLocale -string "en_GB@currency=EUR" +AppleMeasurementUnits +defaults write NSGlobalDomain AppleMeasurementUnits -string "Centimeters" +defaults write NSGlobalDomain AppleMetricUnits -bool true + # Disable auto-correct defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false |