editor2-issues
editor2-issues copied to clipboard
Enable Dark Mode titlebar on Mojave
It looks really cool, it's very simple to implement and, more importantly, it makes Defold's title bar consistent to the theme of the rest of the OS.
You just need to add this to Info.plist:
<key>NSRequiresAquaSystemAppearance</key><false/>
Will this be implemented anytime soon?
@amel https://github.com/defold/defold/issues/4808#issuecomment-970285820
Apply Dark Mode:
defaults write com.defold.editor NSRequiresAquaSystemAppearance -bool NO
# might need this too if above doesn't work
defaults write net.java.openjdk.cmd NSRequiresAquaSystemAppearance -bool NO
Revert:
defaults delete com.defold.editor NSRequiresAquaSystemAppearance
# might need this too if above doesn't work
defaults delete net.java.openjdk.cmd NSRequiresAquaSystemAppearance