Skip to content

Instantly share code, notes, and snippets.

@omeroot
Last active September 2, 2022 16:55
Show Gist options
  • Save omeroot/ceb3e9aa0ad071149cf17da9d62134ee to your computer and use it in GitHub Desktop.
Save omeroot/ceb3e9aa0ad071149cf17da9d62134ee to your computer and use it in GitHub Desktop.

Macos Disable Dark Mode For One App

Disable Dark Mode

$ osascript -e ‘id of app “App Name”‘

Example: osascript -e 'id of app "WindTerm"' $ KingToolbox.WindTerm <- this is bundle id

$ defaults write <Bundle Identifier> NSRequiresAquaSystemAppearance -bool Yes

Example: defaults write KingToolbox.WindTerm NSRequiresAquaSystemAppearance -bool Yes

Reset Appearance

$ defaults delete <Bundle Identifier> NSRequiresAquaSystemAppearance
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment