Featured Article: TMO Visits The Bay, a Premium Apple Reseller in New Zealand
TMO Quick Tip - Leopard: Changing Dock Stacks to Folders
by , 7:30 AM EST, February 27th, 2008
Not everyone is hip with the changes Apple made to the Dock in Mac OS X 10.5. Stacks, for example, became one of those love-it-or-hate-it features, and it sure seems like there are plenty of people that hate it. Now that Leopard's 10.5.2 update is out, however, you can choose to switch back to Dock folders if you like.
|
Stack icons change when you add new items to their folder. |
|---|
To change an icon from Stack view to the more familiar Folder view in the Dock, do this:
- Click and hold on a Stack item's icon.
- Choose Display as Folder from the pop-up contextual menu.
![]() Choose Folder to change from Stack to Folder view. |
|---|
Changing from Stacks to Folder view can be handy if you look for Dock items based on the icon and not location. Since Stacks show the top most or most recent item, the icon representing the Stack can change several times a day depending on how often you add new files to the folder it represents.
|
Folder icons always stay the same. |
|---|
You can set Stack of Folder views on a folder-by-folder basis, which means you can mix and match Stacks and Folders depending on your needs. That's handy if you want to use Stacks as a visual cue to see when a new item has been added to a folder.
If you want to make your Dock folders act even more like they did in Tiger, check out my Quick Tip on changing from the Stack-style pop-up display to a hierarchical pop-up menu view.
[Thanks to TMO reader Hill Jason for pointing the Folder view feature out.]
Jeff Gamet is TMO's Morning Editor and Reviews Editor. He lectures, teaches and speaks on Mac OS X and design-related topics, and is the author of The Designer's Guide to Mac OS X from Peachpit Press.
if you have tips or tricks to share, or Mac-related questions you want answered.
Observer Comments
I have posted this elsewhere before. It works well:
#!/bin/tcsh
#
# To install, use either the MacOS X Terminal (Unix command line) app or the MacOS X GUI to save the
# contents of this file as a text-only file called makepile. Then, use: chmod +x makepile in Terminal
# to give makepile executable permission.
# Look below(after) the script for the usage example and text to create an input file for this script.
# script to read a filename list from standard input and make a piles (nested folders) of links to them
# ... for example, for inclusion in the dock
###
set folder = '.'
while ( 1 )
set filename = ($<)
@ nn = $#filename
if ( $nn > 1 && "$filename[1]" == "FOLDER" ) then
echo Now creating folder $filename[2]
if ( -e "$filename[2]" ) then
echo "******" Folder "$filename[2]" already exists ... existing folder is used.
else
mkdir "$filename[2]"
endif
set folder = "$filename[2]"
else
@ kk = $%filename
if ( "$filename" == "end-of-list" ) then
echo found\: $filename
break
else if ( $kk < 1 ) then # note "else if", not "elseif" !!!
echo "null line or end of file reached"
break
else
set f = "$filename"
echo f is $f
set froot = "${f:r}"
echo froot is $froot
set ftail = "${froot:t}"
echo ftail is $ftail
set flink = ${folder:q}/${ftail:q}
echo ---\> now creatink link as $flink:q for $filename in $folder
if ( -e "${filename:q}" ) then
ln -i -s "${filename:q}" "${flink:q}"
else
echo "******" File \"${filename:q}\" does not exist ... link not created.
endif
endif
endif
end
###
# Usage example:
#
# To see how to use makepile, do the following example.
#
# First, make a file called pileList and put the following lines that begin with #... into it.
# A file like this can be easily built by opening a blank file in MacOS X TextEdit and then dragging
# the desired file selections over the text page and letting up on the mouse button.
#
#... FOLDER ~/DockStuff
#... FOLDER ~/DockStuff/iLife
#... /Applications/iCal.app
#... /Applications/iDVD.app
#... /Applications/GarageBand.app
#... /Applications/iChat.app
#... /Applications/iWeb.app
#... /Applications/iTunes.app
#... /Applications/iPhoto.app
#... FOLDER ~/DockStuff/iWork
#... /Applications/iWork '08/Keynote.app
#... /Applications/iWork '08/Numbers.app
#... /Applications/iWork '08/Pages.app
#... FOLDER ~/DockStuff/iStudy
#... /Developer/Applications/Xcode.app
#... /Applications/Dictionary.app
#... /Applications/iCal.app
#... /Applications/Mail.app
#... /Applications/Safari.app
#... /Applications/Chess.app
#... /Applications/Calculator.app
#... /Applications/DVD Player.app
#... /Applications/Stickies.app
#... /Applications/TextEdit.app
#... /Applications/TextWrangler.app
#... /Applications/Delicious Library.app
#... /Applications/Graphing Calculator
#... /Users/KEP/Across Lite V2.1/Across Lite v2.0
#... /Applications/Dashboard.app
#... FOLDER ~/DockStuff/iArt
#... /Applications/iMovie (previous version).localized/iMovie HD.app
#... /Applications/DVD Player.app
#... /Applications/Front Row.app
#... /Applications/Photo Booth.app
#... /Applications/Preview.app
#... /Applications/QuickTime Player.app
#... /Applications/Soundtrack.app
#... /Applications/GraphicConverter/GraphicConverter.app
#... /Applications/Flip4Mac/WMV Player.app
#... FOLDER ~/DockStuff/Tech
#... /Applications/System Preferences.app
#... /Applications/Time Machine.app
#... end-of-list
#
# Next remove the #... at the beginnings of the lines (the beginning spaces too if you wish).
# Then save the file giving it the name pileList in the same folder as is this makepile file.
# NOTE! The file pileList must be saved as a text-only file.
#
# Using the Terminal (Unix command line) app, cd to the makepile folder and then
# enter the command string: ./makepile <pileList
#
# Then makepile runs and creates a folder in your home folder called DockStuff.
# Each sub-folder in DockStuff contains symbolic links (aliases) as specifed in pileList.
#
# For MacOS X Leopard the alias sub-folders can be dragged into the right side of the dock
# and will become piles from which the aliased apps and files can be accessed. Then the left
# side of the dock will show only apps that are running.
#
# There are hints elsewhere on the web (for example, www.leoparddocks.com) for customizing the
# dock appearance including fancy folder representations for each of the piles.
###
Recent Headlines - Updated Saturday, November 29th, 2008
- Sat., 9:00 PM
- Podcast - Apple Weekly Report #135: Apple Lawsuits, Banned iPhone Ad, Green MacBook Ad
- Fri., 12:45 PM
- Podcast - Mac Geek Gab #178: Batch Permission Changes, Encrypting Follow-up, Re-Enabling AirPort, and GigE speeds
- Thu., 1:30 PM
- iPO Review - Scosche kickBACK iPhone case
- 7:00 AM
- Happy Thanksgiving from TMO!
- Wed., 6:00 PM
- TMO Appearances - Nancy Gravley Joins MacJury Gift Guide
- 5:15 PM
- TMO Visits The Bay, a Premium Apple Reseller in New Zealand
- 3:25 PM
- iPO Oh the Games You'll Play - iPhone: The Wii of Handheld Gaming Devices?
- 2:15 PM
- Sonnet Releases Simply Fast FireWire 800 to 400 Adapter
- 1:10 PM
- Mac Gaming News - Disney Plans 1st Annual PotC Online Thanksgiving Event
- 12:05 PM
- iPodObserver - UK Shuts Down iPhone 3G Ad
- 11:15 AM
- TMO Appearances - Jeff Gamet on MacJury Gift Guide
- 10:30 AM
- TMO Contest - TMO Announces Macworld Expo Pass Winners
- 9:50 AM
- PhotoCopy 1.1 Adds iPhoto Event Support
- 9:15 AM
- Acclivity Buys MYOB US
- 8:30 AM
- Review - Bento 2 Holiday Pack
- 7:50 AM
- Microsoft Offers Black Friday Office Discount
- 7:30 AM
- iPO Quick Tip - iPhone: Google Street View
The Mac Observer Reader Specials
- Download Typestyler, still the Ultimate Styling Tool for Internet, Print and Video Graphics. Works great in Classic with a Native OS X Version on the way. Free Tryout: www.typestyler.com
New MacPro Memory 800Mhz With Apple Spec Heat Sink - 2GB $72 / 4GB $104 / 8GB $204. Click to Maximize your Macs...
Mac observers can now play Party Poker for Mac as well as Mac casino games by going to MacPokerOnline.com.
RamJet Memory: Mac Pro FB-DIMMs: 2Gig kit $95, 4Gig Kit $179, 8Gig Kit $355! MacBook 2Gig Kit $78, 4Gig Kit $149! Click hereFor the latest Apple products use Ciao a comparison website to find laptops like MacBook Air. Then find the best prices on MP3 players and use our comparison tool to evaluate cell phones.
Laptop Hardware Provided by TechRestore - Overnight Mac & iPod Repairs.


