This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# declare my US locale | |
defaults write NSGlobalDomain AppleLocale -string "en_US@currency=USD" | |
defaults write com.apple.systempreferences AppleIntlCustomFormat -dict-add "AppleIntlCustomLocale" "en_US" | |
# date string formats | |
defaults write NSGlobalDomain AppleICUDateFormatStrings -dict-add "1" "yyyy/MM/dd" | |
defaults write NSGlobalDomain AppleICUDateFormatStrings -dict-add "2" "dd MMM y" | |
defaults write NSGlobalDomain AppleICUDateFormatStrings -dict-add "3" "dd MMMM y" | |
defaults write NSGlobalDomain AppleICUDateFormatStrings -dict-add "4" "EEEE, dd MMMM y" |