Cool Trick with Minimizing Windows
This is one of the neatest tricks I've seen done with the Dock. I'll just quote it here in case you're too lazy to visit the linked website:Step 1-Open up your favorite website, app, anything that has windows.
You should now have a frozen, half-minimized, fully functional window. You can scroll, type, and do anything you could do in the normal window. Some things might be a little wierd, but thats to be expected.
Step 2-Open up Terminal and type “killall Dock”, but don’t press enter. Keep that in the background for later.
Step 3- Hold in shift and click on the minimize button on the window you opened in Step 1.
Step 4- As the window is minimizing, quickly switch over to your Terminal window and press enter.
On my old Titanium PB, "killall Dock" was too slow. So I instead did:
ps -eax | grep Dock | grep -v Dock
The first number on the left is the PID number. You can then type "kill" followed by an space and the PID number, and it will stop the Dock as soon as you press Return.