Answers:
首先,通过在Dock中单击打开垃圾桶。
在Finder中,按Command-shift-G(转到文件夹)并转到〜/。垃圾桶
在.Trash 的Finder窗口中,单击窗口标题栏中的代理图标并将其拖到侧边栏中。
然后,您在侧边栏中就有一个垃圾箱文件夹。
要从边栏中清空垃圾箱,请打开Automator并创建一个应用程序。作为应用程序中的唯一操作,选择“运行AppleScript”并使用以下AppleScript:
on run {}
tell application "Finder"
empty the trash
end tell
end run
将应用程序另存为“ Empty Trash”,并将其拖到侧栏。
如果启用iCloud中,你可能需要调整所提供的路径丹尼尔到
~/Library/Mobile\ Documents/com~apple~CloudDocs/.Trash
根据本文的介绍,每个分区都有自己的废纸folder文件夹,因此将其拖到侧边栏不是全局废纸folder。该脚本是:
on open
tell the application "Finder"
move the selection to the trash
end tell
end open
将脚本另存为应用程序,为其提供图标,然后将其拖动到侧栏中。
我认为那看起来很危险;如果您只想在选择文件时看到垃圾内容该怎么办?这个答案看起来很安全:
on open input
repeat with i in input
tell application "Finder" to move i to the trash
end repeat
end open
on run
tell application "Finder" to open trash
end run