• Mac OS X

    Mac OS X: Automatically Open Expanded Viewing

    The open and save dialogs can automatically have the expanded view opened by default rather than having you need to open it manually each time you go to open or save a file. To enable this setting, use the following command: defaults write -g NSNavPanelExpandedStateForSaveMode -bool TRUE

  • Mac OS X

    Mac OS X 10.5: Getting ARD Buttons in Screen Sharing

    I originally posted this at http://www.318.com/TechJournal Screen Sharing is a great enhancement to Leopard. The ability to control other Macs isn’t only available through third party applications any more. However, many administrators who are used to using Apple Remote Desktop will want some of the features they have become accustomed to, such as curtain mode, full screen, get clipboard, etc. So to obtain these features, the following command (all on one line) will unlock many of the buttons that have been disabled in Screen Sharing: defaults write com.apple.ScreenSharing 'NSToolbar Configuration ControlToolbar' -dict-add 'TB Item Identifiers' '(Scale,Control,Share,Curtain,Capture,FullScreen,GetClipboard,SendClipboard,Quality)'

  • Mac OS X

    Mac OS X 10.5: Disable Glass Shelf in Dock

    I originally posted this at http://www.318.com/TechJournal For early Leopard adopters that don’t like the new look and feel of the dock, here’s a command to disable that Glass shelf look in your dock: defaults write com.apple.dock no-glass -boolean YES killall Dock If you would like to revert the setting: defaults write com.apple.dock no-glass -boolean NO killall Dock click on the code and choose run to activate or deactivate this setting

  • Mac OS X

    Changing the Screenshot Location in OS X

    Each user in Mac OS X can customize the location that their screenshots (aka screencaptures) will go. To do so you would edit the com.apple.screencapture property list, customizing the location key. You can easily edit this file using the defaults command. For example, if we wanted to set the location to go to a folder called screenshots in the home directory of a user we could use the following command: defaults write com.apple.screencapture location ~/screenshots You can also change the default type of screenshot which I cover here https://krypted.com//mac-os-x/mac-os-x-changing-the-default-screen-shot-format.

  • Mac OS X

    TinkerTool for Mac OS X

    I cover a lot of defaults commands on this site. And I’m likely only going to be increasing that coverage. But there are a lot of developers out there that wrap these commands into little GUI applications. One such, and likely the most popular, is TinkerTool. TinkerTool is an application that gives you access to additional preference settings Apple has built into Mac OS X. This allows to activate hidden features in the operating system and in some of the applications delivered with the system.