Turn off wallpaper-tinting from the command line
Anyone know of a command to disable wallpaper tinting? That is, instead of clicking the checkbox in System Preferences.
This is controlled via the AppleReduceDesktopTinting
global setting:
defaults write -g AppleReduceDesktopTinting -bool yes
A helpful tip for finding these is to dump everything and use diff
to see what changed:
defaults read > before
- [Change the setting]
defaults read > after
diff before after
There will likely be a lot of noise, but you should be able to sift through and find the one you're looking for!