OS X Tweak - add a recent apps stack to your Dock
I find I’m pretty much using the same applications over and over on my desktop machine. I also like to keep a fairly small Dock, which makes this little tweak very usfull for me.
The code below creates a stack right in your Dock that will contain your most recently used applications. If, like me, you’ve got all sorts of rubbish in your Applications folder, this will come in handy for finding the apps you use the most as it should always contain the applications you actually use !
Fire up Terminal and paste in the following:
defaults write com.apple.dock persistent-others -array-add ‘{ “tile-data” = { “list-type” = 1; }; “tile-type” = “recents-tile”; }’
killall Dock
The ‘killall Dock’ should make your Dock restart, complete with the new stack.
« Where have Steve’s trousers gone?
Why Twitter is better than milk »
Related posts
Comments
Comment from Oli
Time: August 27, 2008, 3:14 pm
@Shaun - I’ve also started using Quicksilver, though I keep forgetting I’ve got it installed ! Yes, I’m a muppet.
Comment from Graham T
Time: September 27, 2008, 10:49 pm
I got this response
-bash: syntax error near unexpected token `}’
?
Comment from Oli
Time: September 27, 2008, 10:58 pm
@Graham, I’ve not seen that error before. Are you using Leopard ?
Comment from mark
Time: October 4, 2008, 10:11 am
Anyone have the problem mentioned by Graham need replace all the quotes with single quote instead of whatever else your browser decides to display.

Subscribe to the-iBlog RSS feed





Comment from Shaun
Time: August 27, 2008, 1:52 pm
Interesting idea! I’m sure it’s very useful for some people.
Personally I use Quicksilver for everything anyway so I never need to touch my Applications folder.