Empty Trash DT3.1

Could we have an icon on the toolbar for Empty Trash, please?

It’s a hassle having to move the mouse to trash, then right click and then empty trash, An icon would save time.

The request is noted. You currently can also press Command-Shift-Delete to empty the trash.

1 Like

Thank you.
On my keyboard, it is Command+Shift+Backspace.

A simple script attached as button will do the job? (that what I did. Key code 51 is backspace in std Apple keyboard)

tell application id “DNtp”
tell application “System Events”
delay 0.05
key code 51 using {shift down, command down} – empty trash
end tell
end tell

You say tomato, I say tomahto. :wink:

And yes, this can vary depending on the keyboard though Delete and Backspace are functionally the same.