Last active
November 30, 2023 17:54
-
-
Save jeffzhkw/e84affa2fec308c981242674410bb367 to your computer and use it in GitHub Desktop.
MacOS 14 Custom System Appearance
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
# Forcing the system to use light theme appearance | |
defaults write -g NSRequiresAquaSystemAppearance -bool Yes | |
# "Except" the following... | |
defaults write com.apple.HIToolbox NSRequiresAquaSystemAppearance -bool No | |
defaults write com.apple.OSDUIHelper NSRequiresAquaSystemAppearance -bool No | |
defaults write com.apple.Spotlight NSRequiresAquaSystemAppearance -bool No | |
defaults write com.apple.menuextra.textinput NSRequiresAquaSystemAppearance -bool No | |
defaults write com.apple.notificationcenterui NSRequiresAquaSystemAppearance -bool No | |
defaults write com.apple.TextInputSwitcher NSRequriesAquaSystemAppearance -bool No |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment