editor2-issues icon indicating copy to clipboard operation
editor2-issues copied to clipboard

Enable Dark Mode titlebar on Mojave

Open dapetcu21 opened this issue 7 years ago • 2 comments

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/>
screenshot 2018-09-26 at 21 22 17

dapetcu21 avatar Sep 26 '18 18:09 dapetcu21

Will this be implemented anytime soon?

amel avatar Aug 23 '19 18:08 amel

@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

thejustinwalsh avatar Nov 16 '21 13:11 thejustinwalsh