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).

link|improve this question

feedback

3 Answers

up vote 10 down vote accepted

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:

defaults write com.apple.dock no-glass -boolean YES

What this does is it modifies ~/Library/Preferences/com.apple.dock.plist and changes no-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: alt text

link|improve this answer
4  
+1 we have a winner. The important concept to get here is that those "defaults" commands you keep seeing are just writing to .plist files. – username May 19 '09 at 17:25
feedback

The Secrets app will allow you to toggle some of the more well known default commands.

link|improve this answer
feedback

There are a few tools that allow you to change these 'default' type settings from a gui interface, here are two:

link|improve this answer
Maybe I read the question wrong. I thought you were looking for a GUI option for changing some hidden options for OS X which are most-likely launched from 'defaults' commands. The above apps allow you to on/off these settings... I believe most of those hidden options are there. – l0c0b0x May 19 '09 at 17:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.