Shortcut to open trash?

Another way to do it is with an AppleScript. The key difference is that this will show all Trash contents. The above method won't show Trash contents from other volumes, like a memory stick.

image

tell application "Finder"
	open trash
	set the current view of the front Finder window to list view
	activate
end tell
1 Like