终端中是否可以在不影响其余环境的情况下为单个应用打开/关闭暗模式?我在Mac上使用日历,外观令人恐惧。其余应用在黑暗模式下看起来很棒。我只想为那个应用程序禁用它。
答案 0 :(得分:4)
在Terminal
中,运行以下命令:
defaults write com.apple.iCal NSRequiresAquaSystemAppearance true
要还原更改:
defaults write com.apple.iCal NSRequiresAquaSystemAppearance false