I'm not a Mac person (yet, plan to add that to the repertoire this year) but I've been following a lot of the Mac questions on SF. The defaults command comes up a lot and from the context of the questions / answers I get what it does. Just curious, is there a GUI for editing the settings? Seems to me that this would be somewhat analagous to the registry editor in Windows (although I expect that the registry does much more).
Yes and no. Mac OS X doesn't have a unified registry like Windows; instead, it stores preferences in individual
.plist
files.When you execute a
defaults write
command, it stores the change in~/Library/Preferences
. As an example, the command to change the Dock from the 3D glass look to a more basic 2D shade is:What this does is it modifies
~/Library/Preferences/com.apple.dock.plist
and changesno-glass
to true. The Mac OS X developer utilities contain a program called Property List Editor that will allow you to edit the file with a GUI:The Secrets app will allow you to toggle some of the more well known
default
commands.Thomas Tempelmann | Mac OS X Prefs Editor - A GUI for the 'defaults' command
Prefs Editor:
There are a few tools that allow you to change these 'default' type settings from a gui interface, here are two: