MacMegasite Archive
   


To reduce the database size and server load, all articles from 2004 or earlier are archived here.


Return to MacMegasite



       

Sun, 26 Oct 2003

Hidden Exposé blob

Panther's dock has a hidden feature that will display a floating blue 'blob' that activates Exposé if you click on it. The hint was posted in macosxhints a few days ago and now If Then Software has written a free utility to enable or disable the feature.

Or, you could use this shell script:


#!/bin/sh

if [ $1 = "on" ]
then
defaults write com.apple.dock wvous-floater -bool true
else
defaults write com.apple.dock wvous-floater -bool false
fi
killall Dock

[] permanent link