答案1
使用命令
defaults write com.google.Chrome NSRequiresAquaSystemAppearance -bool Yes
在终端运行这个就可以了。
禁用其他应用程序的暗模式
如果您想禁用其他应用程序的暗模式,您需要先获取 Bundle Identifier。
osascript -e 'id of app "<App Name>"'
这将获取 Bundle Identifier。使用以下命令禁用它的暗黑模式。
defaults write <Bundle Identifier> NSRequiresAquaSystemAppearance -bool Yes
如果你想再次启用它的暗模式
defaults delete <Bundle Identifier> NSRequiresAquaSystemAppearance
会做。
答案2
如果您想在使用暗系统模式设置时禁用 Google Chrome 暗模式,那么您可以非常轻松地做到这一点。
在苹果系统在终端中运行:
defaults write com.google.Chrome NSRequiresAquaSystemAppearance -bool YES
在视窗在快捷方式属性中的目标中添加后缀
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-features=DarkMode
来源https://www.techllog.com/2019/05/how-to-disable-chromes-dark-mode/