Created
November 26, 2018 17:50
-
-
Save luanpcweb/ededf5722b9b4dde1c1f5dcdd2a6b8d1 to your computer and use it in GitHub Desktop.
Remover Dark Mode de app específico (MAC OS)
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
To find the name of app: | |
osascript -e 'id of app "App Name"' | |
For disable: | |
defaults write com.oracle.workbench.MySQLWorkbench NSRequiresAquaSystemAppearance -bool yes | |
To revert the cahnge: | |
defaults write com.oracle.workbench.MySQLWorkbench NSRequiresAquaSystemAppearance -bool false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment