SIP가 비활성화 된 HighSierra (10.13.6)에서 작동합니다.
다음 명령을 사용하여 .plist 파일을 편집했습니다.
PL="/System/Library/CoreServices/Dock.app/Contents/Resources/DockMenus.plist"&&
sudo -- defaults write $PL finder-running -array-add '<dict><key>command</key><integer>1004</integer><key>name</key><string>REMOVE_FROM_DOCK</string></dict>'
로 결과를 확인하십시오 sudo defaults read $PL finder-running
.
괜찮아 보인다면 sudo chmod -v +r $PL; killall Dock
.
해당 AppleScript의 이탈리아어 형식 버전은 다음과 같습니다.
tell application "System Events"
tell UI element "Finder" of list 1 of process "Dock"
perform action "AXShowMenu"
click menu item "Rimuovi dal Dock" of menu 1
end tell
end tell
그게 다야, 나는 그것이 완전한 완전한 요약으로 유용하기를 바랍니다.