aliases | category | classification | date | date_modified | draft | id | image | links | local_archive_links | pinned | series | tags | title | type | |||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
macos |
public |
2022-11-28 07:13:34 -0800 |
2022-11-28 07:13:34 -0800 |
false |
20221128151334 |
false |
false |
|
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