Lion で非表示に変更された ~/Library を表示する

対応:10.7.x 非対応:
これは defaults と関係ありません。
chflags nohidden ~/Library
元に戻す場合は、
chflags hidden ~/Library

Finderでカット(cmd+x)を可能にする

(注意)カットだけでペーストはできない?
defaults write com.apple.finder AllowCutForItems -bool yes
killall Finder

元に戻す場合は、
defaults delete com.apple.finder AllowCutForItems
killall Finder

SMB/CIFS、AFP、NFSおよびWebDAVサーバに.DS_Storeを作るのを抑止する

対応:10.4.x、10.5.x(他環境未確認) 非対応:
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
詳細はAppleの解説を参照。

タイトルバーに現在の位置をフルパスで表示する

対応:10.5.x 非対応:10.4.x以前
defaults write com.apple.finder _FXShowPosixPathInTitle -bool yes
killall Finder
元に戻す場合は
defaults delete com.apple.finder _FXShowPosixPathInTitle
killall Finder

リスト表示時に青白のストライプを背景に表示

対応:10.5.x 非対応:10.4.x以前
defaults write com.apple.finder FXListViewStripes -bool yes
killall Finder

元に戻す場合は
defaults delete com.apple.finder FXListViewStripes
killall Finder

終了メニューを追加する

対応:10.4.x、10.5.x(他環境未確認) 非対応:
defaults write com.apple.finder QuitMenuItem -bool yes
killall Finder

元に戻す場合は
defaults delete com.apple.finder QuitMenuItem
killall Finder

デスクトップのアイコンを特大表示にする

対応:10.4.x、10.5.x(他環境未確認) 非対応:
defaults write com.apple.finder DesktopViewOptions -dict IconSize -int 256
killall Finder

元に戻す場合は
defaults write com.apple.finder DesktopViewOptions -dict IconSize -int 120
killall Finder
など、好きな大きさの値に変更する。Finderのメニューから手動で行っても良い。


カラム表示の際、カラム幅を指定する

対応: 非対応:
注) Finderの標準機能としてoptionキーを押しながらカラムサイズを変えるとその幅に指定されるようです。
open Library/Preferences/com.apple.finder.plist 

Finderのplistが開くので、StandardViewOptions->ColumnViewOptions を探してColumnWidthを数値指定
killall Finder

隠しファイルを表示

".DS_Store"など隠しファイルを表示
defaults write com.apple.finder AppleShowAllFiles -bool yes
killall Finder

元に戻す場合は、
defaults delete com.apple.finder AppleShowAllFiles
killall Finder

デスクトップを非表示にする

デスクトップが一般のフォルダと同様の扱いになるのでcmd+F1などでwindowをまわす際じゃまにならない。
defaults write com.apple.finder CreateDesktop -bool no
killall Finder

元に戻す場合は、
defaults delete com.apple.finder CreateDesktop
killall Finder