Skip to content

Instantly share code, notes, and snippets.

@jeffzhkw
Last active November 30, 2023 17:54
Show Gist options
  • Save jeffzhkw/e84affa2fec308c981242674410bb367 to your computer and use it in GitHub Desktop.
Save jeffzhkw/e84affa2fec308c981242674410bb367 to your computer and use it in GitHub Desktop.
MacOS 14 Custom System Appearance
# 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