Originally Posted By: joemikeb
The easiest way to get everything looking the same is to systematically delete all .DS_Store files in the folders at every level in your entire system. OnyX, TinkerTool System, Cocktail, and other utilities have the ability to do that.


unless you feel like opening terminal and pasting this:
Code:
find . | grep /\.DS_Store$ | while read f ; do rm "$f" ; done ; killall Finder


I think I've posted that before. Searches your entire home folder for store files, and deletes them. The usual cautions go with using this command. But it's not using anything terribly nasty like "rm -RF" or requiring sudo at least. It won't touch other users, other drives, or any system files, just store files in your home folder.

There's no "UNDO" for that. You'd better make sure you mean it when you do it. Time Machine won't save you either.


I work for the Department of Redundancy Department