2018 년 11 월 편집
High Sierra 이후 모든 것이 무용지물입니다. Finder에서 Cmd ⌘ Shift ⇧ . [마침표, 완전 정지]는 보이지 않는 파일을 즉석에서 토글합니다.
Cmd ⌘ H "가장 전면 앱 숨기기"에 대한 시스템 전체 단축키입니다.
새로운 지름길을 묶으려면 Automator를 사용하여 서비스를 추가 할 수는 있지만 기존 시스템 기본값을 무시하도록 설득하는 방법을 여전히 모릅니다.
비 시스템 키를 사용하지만 사용하지 않는 경우 서비스로 작동합니다. Cmd ⌘ H
on run {input, parameters}
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
return input
end run
El Capitan에 대한 편집…
Finder 윈도우 새로 고침이 El Capitan에서 더 이상 작동하지 않는 것을 발견했습니다. 따라서 이것은 Finder를 종료하는 수정 된 버전입니다.
on run {input, parameters}
--Toggle Invisibles, El Capitan Version
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 & "; killall Finder"
end run
Finder 숨기기에 다른 키 명령을 지정한 경우 Finder에서만 작동하도록 할 수 있다고 생각합니다. 메뉴 항목으로 표시되므로 '무용하지 않은'것을 대안]을 사용 Cmd ⌘ H 하면 Finder에서만 보이지 않는 항목 을 자유롭게 전환 할 수 있습니다.
테스트-이런 식으로 작동합니까