Para poder visualizar arquivos invisíveis…
Abra o Applescript Editor, em Aplicativos> Utilitários, copie / cole-o em um novo script ...
Como El Capitan, o truque de mudar de exibição não funciona mais, então é preciso voltar ao Finder
Para obter um método para transformá-lo em um serviço com comando de chave, consulte
/apple//a/258741/85275
set newHiddenVisiblesState to "YES"
try
set oldHiddenVisiblesState to do shell script "defaults read com.apple.finder AppleShowAllFiles"
if oldHiddenVisiblesState is in {"1", "YES"} then
set newHiddenVisiblesState to "NO"
end if
end try
do shell script "defaults write com.apple.finder AppleShowAllFiles " & newHiddenVisiblesState
do shell script "killall Finder"
return input
O Mavericks / Yosemite deve trabalhar com esta versão de atualização de visualização, que foi mais rápida e suave, mas parou de funcionar no El Capitan ...
set newHiddenVisiblesState to "YES"
try
set oldHiddenVisiblesState to do shell script "defaults read com.apple.finder AppleShowAllFiles"
if oldHiddenVisiblesState is in {"1", "YES"} then
set newHiddenVisiblesState to "NO"
end if
end try
do shell script "defaults write com.apple.finder AppleShowAllFiles " & newHiddenVisiblesState
tell application "Finder"
set theWindows to every Finder window
repeat with i from 1 to number of items in theWindows
set this_item to item i of theWindows
set theView to current view of this_item
if theView is list view then
set current view of this_item to icon view
else
set current view of this_item to list view
end if
set current view of this_item to theView
end repeat
end tell
Em seguida, salve como um aplicativo, no qual você pode clicar duas vezes para alternar entre mostrar / ocultar arquivos invisíveis.
Você não precisa matar o Finder para esta alternância; uma atualização é suficiente - e pode ser mais rápida.