The Mac Observer

Skip navigational links

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

Show: Subjects Only | Full Comments
Close Name:Guest
Subject: A script to make and manage your stacks (piles)

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.
###

Comment on this Article


You cannot edit your comments.   You cannot delete your comments.
Log in | Register | Having Problems? Reset TMO Cookies & Try Again
Username:   Password:   Log me on automatically each visit   

You are not logged in, and this post will appear as "Guest." Log in with your username and password from the TMO forums. If you do not have a username, you can register here.
Please note that guests are limited to including a maximum of two URLs per post.


Post A Comment
  Subject


  Your Comments



Please enter the word exactly as you see it in the image above. Registered users aren't prompted for this. Having trouble reading the image get a new one.


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

Apple Stock Quote

  • AAPL: $88.93. Change Today: -3.74.
  • (Prices delayed up to 20 minutes.)
  • Discuss in our Apple Finance Board

Hot Topics

Top Deals From DealsOnTheWeb