Make List view Stacks work like Grid view Stacks

There's a new hidden preference available for List view Stacks in the Dock in 10.6. Open Terminal and run these two commands:

defaults write com.apple.dock use-new-list-stack -bool YES
killall Dock


This will make the List view behave like the Grid view, only with all items arranged in one vertical list, with names to the right.
Comments (1)  Permalink

Change Safari 4 tabs back to Safari 3 style (Safari 4 Beta)

Safari 4 has some major UI changes, like the new tab bar layout. You're not alone if you hate the new tab bar, and here's a way to revert it to the style used in Safari 3:

Safari 4 with Safari 3 tab bar


To change the tab bar, enter the following command in terminal:

defaults write com.apple.Safari DebugSafari4TabBarIsOnTop -bool NO

To reset the blue loading bar in stead of the spinner, enter the following commands:

defaults write com.apple.Safari DebugSafari4IncludeToolbarRedesign -bool NO
defaults write com.apple.Safari DebugSafari4LoadProgressStyle -bool NO
Comments (2)  Permalink

Disable shadow in screen window captures

Leopard has a new unwelcome (for most) feature, a shadow around whole-window screenshots (ie, Command-Shift-4, Space). Fortunately this can be disabled from Terminal with these commands:

defaults write com.apple.screencapture disable-shadow -bool true killall SystemUIServer

To add the shadow effect back in:

defaults delete com.apple.screencapture disable-shadow

killall SystemUIServer
Comments (0)  Permalink

Stop disk image verification

While this process is a precaution against possibly installing/using corrupt files, sometimes it is completely unnecessary. To stop disk image verification forever, open Terminal and type:

defaults write com.apple.frameworks.diskimages skip-verify TRUE  

If you want verification enabled again, type the same command, replacing the "TRUE" with "FALSE".
Comments (0)  Permalink

Activate Single Window Mode - Safari

Since Safari 3.1 it's possible to use Safari in single window mode.
That means all links which normally open up a new window, now simply load in a new tab in the current window.

To activate this behaviour, enter the following command in terminal:
defaults write com.apple.Safari TargetedClicksCreateTabs -bool true

To reverse:
defaults write com.apple.Safari TargetedClicksCreateTabs -bool false
Related Entries:
Boot iPhone or iPod Touch in verbose mode
Alway boot Mac OS X in Verbose Mode
How to force your iPod Touch into restore mode
Comments (0)  Permalink

How to fix VMware's network bridge on Ubuntu 7.10

When you can't get your network device to work with Ubuntu 7.10 on VMware Fusion, simply enter the following command in your terminal:
    sudo dhclient eth0
This will force your system updating it's IP-address with VMware's DHCP server.
Related Entries:
Get JOGL working on Linux
Comments (0)  Permalink

Load VMware's networking extensions manually

VMware installs some kernel extensions to your mac by default. These extensions also run when you don't have VMware open, so basicly it slows down your system startup and usage.
To load and unload VMware's networking kernel extensions manually, follow these steps:

  1. Install VMware
  2. Run Terminal, and enter:
    sudo rm /Library/LaunchDaemons/com.vmware.launchd.vmware.plist and enter your password
  3. Restart your mac
  4. Run Automator, and choose a custom workflow
  5. Drag "Run Shell Script" in the left pane under Library/Utilities to the workflow on the right
  6. Enter the following command in the input field:
    sudo /Library/Application\ Support/VMware\ Fusion/boot.sh --start
  7. Drag "Launch Application" to the workflow, and choose VMware
  8. Save the project as an Application, name it "Start VMware"

  9. Redo these steps and enter as shell script:
    sudo /Library/Application\ Support/VMware\ Fusion/boot.sh --stop and in stead of "Launch Application", choose "Quit Application" and safe also this project as Application, name it "Stop VMware"

Now, when you want to use VMware, just double click on "Start VMware", and when you quit, run "Stop VMware"
Comments (0)  Permalink

Highlight stack items on hover

Do you want a nice hover effect when you mouse over icons in a stack window ?
It's a shame this isn't enabled by default in Leopard, because it makes navigating within stacks a lot easier.

  • Startup Terminal, and run the following commands:
    1. defaults write com.apple.dock mouse-over-hilte-stack -boolean yes [Enter]
  • then you'll have to relaunch the Dock:
    1. killall Dock
    Thats it..

    To disable the highlighting:
      defaults write com.apple.dock mouse-over-hilte-stack -boolean no
    Comments (1)  Permalink

    Changing the login window background wallpaper

    Changing the login window wallpaper is a really easy job, you only need to edit a plist file.

    1. Launch Property List Editor (in /Developer » Applications » Utilities), and then open the com.apple.loginwindow.plist file from /Library » Preferences.
    2. Add a New Sibling of class String with the name DesktopPicture. In the Value column, enter the complete path to the new image you want to set as the login window backgroung image. For example, you'd use this...
      /Library/Desktop Pictures/Plants/Agave.jpg
      ...to use the Apple-supplied agave plant picture.
    3. Please keep in mind that you need the correct user permissions to edit the plist file; save the changes and quit the editor when done. After using either method, log out and you should see your new login window background picture.
    Comments (0)  Permalink

    Alway boot Mac OS X in Verbose Mode

    To boot Mac OS X in verbose mode, you could hit Command+V during startup, which brings up the familiar white on black console. If you'd prefer to always see the system messages on boot, you can adjust the firmware from the Terminal with the nvram command.

    To turn on Verbose booting, at the Terminal type the following:
    sudo nvram boot-args="-v"

    Disabling Verbose mode:
    sudo nvram boot-args=

    And to see the current firmware nvram settings:
    nvram -p
    Related Entries:
    Boot iPhone or iPod Touch in verbose mode
    Activate Single Window Mode - Safari
    Secure Gmail Notifier using hidden preference setting
    10.4.8/9 to 10.4.10 upgrade guide
    How to force your iPod Touch into restore mode
    Comments (0)  Permalink
    Next1-10/32