É possível criar uma nova janela de visualização de colunas com raiz na "lista de volumes" através do AppleScript. Também pode copiar o alvo e a seleção para a nova janela.
(*
* Clone Finder window as column view rooted at “computer container”
*
* Create a new Finder window in column view mode rooted
* at the “computer container” (list of mounted volumes) with
* the selection, target, position, and bounds of the currently
* active Finder window.
*
* BUGS
* - In list view, it is possible to make a selection that spans
* multiple folders. It is not possible to recreate this
* selection in column view (or icon view).
*)
on run
local oldWin, theSelection
tell application "Finder"
if not (exists Finder window 1) then return
set oldWin to Finder window 1
set theSelection to selection
tell (make new Finder window with properties {target:computer container, current view:column view})
set bounds to (get bounds of oldWin)
set position to (get position of oldWin)
set target to (get target of oldWin)
activate
end tell
set selection to theSelection
close oldWin
end tell
end run
Copie o script em um documento Editor AppleScript ( Editor de Script anterior a 10.6) e salve-o no formato “script” ou “pacote de scripts”.
Você pode usar um iniciador como FastScripts (ou Quicksilver , etc.) para vincular o script a uma chave para acesso rápido. Se você quiser apenas executá-lo de vez em quando, basta salvá-lo como ~/Scripts/Applications/Finder/Clone Finder window as column view rooted at “computer container”.scpt
(ou qualquer outro nome que desejar) e ativar o menu de script .