Forcing Lion Finder to open in List View?

19

14

One of my favorite features in Snow Leopard was the fact that Finder would always open a new window in the "List View". Lion instead opens the multi-column view by default.

Is there any way I can make the Finder window open in "List View" by default?

Raphael Caixeta

Posted 2011-08-09T16:27:19.980

Reputation: 311

This has got to be supported..? If you go in to Finder's Preferences, maybe you can do it in there? Click on a Finder window, then click Finder (on the Menu Bar) and select Preferences.. Do you not see such an option in there? – James T Snell – 2011-08-09T17:19:00.063

Yep, it doesn't work anymore. – Raphael Caixeta – 2011-08-10T03:53:11.617

The problem with that setting is that its not reliable: the folder's own settings still overrides, and (for some reason) changing the view options for even one folder, like the download folder, changes FXPreferredViewStyle (and nothing much displays differently). – Vervious – 2011-08-10T17:18:49.780

Turns out, Lri's answer works, or at least it did for me. I very simply typed this into the Terminal and immediately the Finder updated in List View, for all folders, regardless of their previous settings. So, thanks! – Itai Ferber – 2011-11-24T02:49:31.427

3@Nano8Blazex This is because Macs use .DS_store to store Finder view information. You can remove all these files from your harddrive (it might take a few minutes), after using Lri's answer, and they shouldn't be overridden anymore unless you switch views within the Finder itself. – jrhorn424 – 2012-03-21T01:36:32.000

Answers

12

I remember doing this before on SL. I haven't tested this yet on Lion.

  • First, recursively delete all .DS_Store files. These files contains per-folder settings. According to this guide from Adobe:
  1. Select Applications > Utilities to launch Terminal.

  2. Enter the following UNIX command:

    sudo find / -name ".DS_Store" -depth -exec rm {} \;

  3. When prompted for a password enter your Mac OS X Administrator password.

  • Restart

  • Now you have one of two options:

    1. In Terminal type: defaults write com.apple.Finder FXPreferredViewStyle Nlsv (The four letter codes for the view modes are icnv, Nlsv, clmv and Flwv.)

    2. Open the finder windows and cmd J to open view pref. Change the setting to Always open in list view and then use as default button at the bottom

Tuan Anh Tran

Posted 2011-08-09T16:27:19.980

Reputation: 444

1I tried this and it worked at first, but shortly thereafter some folders reverted to column view. I wonder if this has to do with selectors in application dialogs (e.g. download, print-to-pdf) defaulting to column view and changing the folder view setting? – Philip – 2012-04-19T20:49:34.087

@Philip the view will be changed if you changed it in application dialogs (open, save as....) – Tuan Anh Tran – 2012-06-13T08:43:42.073

1What if the application dialog defaults to that view but I didn't actually change it? E.g. to the best of my knowledge there's no way for Chrome to prompt for a download location without opening a column view dialog....? – Philip – 2012-06-14T15:51:53.253

2

As long as you're in the terminal, you don't even need to restart. After you run defaults write com.apple.Finder FXPreferredViewStyle Nlsv, just type killall Finder, which will restart Finder but keep all your other apps open. This worked for me in Lion, using the clmv option for column views.

Elle Mundy

Posted 2011-08-09T16:27:19.980

Reputation: 301

2

At least on Mountain Lion, there doesn't seem to be any default view mode. The view mode used for folders without a view mode saved in a .DS_Store file is changed when you create a new window or close the last Finder window. It corresponds to the FXPreferredViewStyle key, but the key is not always updated immediately.

The always open in option should be called something like "remember view mode for this folder". If it's checked, the previously used view mode is saved to a .DS_Store file, which overrides FXPreferredViewStyle the next time the folder is opened. It only applies to one folder, or doesn't affect any folders under it.

You can delete the folder-specific view options by running sudo find / -name .DS_Store -delete and quitting and reopening Finder.

Lri

Posted 2011-08-09T16:27:19.980

Reputation: 34 501