Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save SilverEzhik/cf562cd9bd18bd38d22863f9f1a859b7 to your computer and use it in GitHub Desktop.
Save SilverEzhik/cf562cd9bd18bd38d22863f9f1a859b7 to your computer and use it in GitHub Desktop.
To fix the language switcher and other stuff like the notifications and Spotlight in Mac OS with hybrid dark mode (dark menu bar and light theme apps), do this.
To fix the language switcher and other stuff like the notifications and Spotlight in Mac OS with hybrid dark mode (dark menu bar and light theme apps), do this:
defaults write com.apple.HIToolbox NSRequiresAquaSystemAppearance -bool no
defaults write com.apple.notificationcenterui NSRequiresAquaSystemAppearance -bool no
defaults write com.apple.menuextra.textinput NSRequiresAquaSystemAppearance -bool no
defaults write com.apple.TISwitcher NSRequiresAquaSystemAppearance -bool no
defaults write com.apple.Spotlight NSRequiresAquaSystemAppearance -bool no
@jeffzhkw
Copy link

Note that com.apple.TISwitcher is deprecated in MacOS 14 Sonoma.
Use com.apple.TextInputSwitcher instead.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment