Created
December 12, 2018 09:34
-
-
Save arondeparon/5b844c9fa5c85ca3f6f30507b659dcb6 to your computer and use it in GitHub Desktop.
Turn off dark mode for Microsoft Office on Mac
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
# So, Microsoft made their Office suite dark-mode compatible, sort of. | |
# Thing is, it looks absolutely terrible and there is no simple way to turn it off. | |
# Oh wait, there is! Paste these commands in your terminal to excempt the app from Dark Mode in Mac OS. | |
defaults write com.microsoft.Excel NSRequiresAquaSystemAppearance -bool yes | |
defaults write com.microsoft.Word NSRequiresAquaSystemAppearance -bool yes | |
defaults write com.microsoft.Outlook NSRequiresAquaSystemAppearance -bool yes | |
defaults write com.microsoft.Powerpoint NSRequiresAquaSystemAppearance -bool yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment