Skip to content

Files

Latest commit

 

History

History
37 lines (32 loc) · 710 Bytes

File metadata and controls

37 lines (32 loc) · 710 Bytes
aliases category classification date date_modified draft id image links local_archive_links pinned print series tags title type
set-macos-theme-mode-for-specific-apps
macos
public
2022-11-28 07:13:34 -0800
2022-11-28 07:13:34 -0800
false
20221128151334
false
false
dark-mode
macos
theme
Set macOS Theme for Specific Apps
tech-note
osascript -e 'id of app "Outlook"'

com.microsoft.Outlook

# Exclude from dark mode:
defaults write <Bundle-Identifier> NSRequiresAquaSystemAppearance -bool yes

# Dark mode on:
defaults write com.microsoft.Outlook NSRequiresAquaSystemAppearance -bool no

# Reset mode:
defaults delete <Bundle-Identifier> NSRequiresAquaSystemAppearance