Leopard: Changing Dock Stacks to Folders
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.
###
Comments are currently closed. Please email the author instead.
Recent Headlines - Updated November 9th
- Sun, 11:59 AM
- Mac Geek Gab Podcast - MGG 226: Magic Mouse, Apple Battery Secrets, Q&A
- Sat, 7:58 PM
- News - Apple TV 3.0.1 Update Fixes Missing Content Bug
- Fri, 7:45 PM
- Rumor - Taiwan Leak Shows Verizon UTMS/CDMA iPhone for Q3 2010
- 6:40 PM
- News - iPhone Moves Into RadioShack
- 6:30 PM
- News - Apple to Open Stunning Paris Apple Store in Le Louvre on Saturday
- 5:43 PM
- Free on iTunes - Dictionary, Dictionary, Dictionary, And More
- 4:09 PM
- John Martellaro's Blog - Particle Debris (week ending 11/6) Failure IS an Option
- 3:32 PM
- Games - The Latest App Store Games: Gravity Sling, RocketBird, Ground Effect, Checkers!
- 2:25 PM
- Games - Star Soccer 2010 for Mac Puts Gamers in Role of Up-and-Coming Player
- 2:15 PM
- How-To - The Mysteries of Rosetta Housekeeping
- 1:33 PM
- News - iPhone Game Developer Sued for Collecting User’s Cell Numbers
- 1:17 PM
- Games - Warhammer Online Expands Trial Play Option
The Mac Observer Reader Specials
- TypeStyler For Mac OS X is Now Shipping! Download The Free Fully Functional 60 Day Tryout at www.typestyler.com
RamJet Memory: Mac Pro 8-core 8GB Kit $199.99, 4GB Kits $109.99! Sale on MacBook and MacBook Pro 8GB kits $549.99! New MacBook DDR3 2GB for $49.99. iMac and Mac mini 4GB Kits for $79.99! 1TB SATA Hard Drives for $109.99! Click here
OWC: Get the Right Memory for Your Mac Top Quality, Competitive Price, Lifetime Backed Free Expert Support + Installation Videos too! MacBook & mini 8GB, iMac 16GB, Mac Pro up to 32GB. Click here
If you're using a Mac, then you've gotta check out Full Tilt Poker for Mac. This Full Tilt Poker bonus code does the unthinkable, it actually rewards!For the latest Apple products use Ciao, a price comparison website, to find laptops like MacBook Air. Then find the best prices on MP3 players and use our comparison tool to evaluate mobile phones like the Apple iPhone.
Laptop Hardware Provided by TechRestore - Overnight Mac & iPod Repairs.


