Created
July 15, 2018 15:35
Apple MacOS default language for specific application
This file contains hidden or 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
#!/bin/sh | |
# determine application identifier | |
mdls -name kMDItemCFBundleIdentifier /Applications/Outbank.app | |
# set german as default language (only for this app) | |
defaults write com.stoegerit.outbank.osx AppleLanguages '(de)' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment