Skip to content

Instantly share code, notes, and snippets.

@luanpcweb
Created November 26, 2018 17:50
Show Gist options
  • Save luanpcweb/ededf5722b9b4dde1c1f5dcdd2a6b8d1 to your computer and use it in GitHub Desktop.
Save luanpcweb/ededf5722b9b4dde1c1f5dcdd2a6b8d1 to your computer and use it in GitHub Desktop.
Remover Dark Mode de app específico (MAC OS)
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