Snow Leopard only hintThis hint enables you to turn off (and back on) moving files to Trash when deleting files, thus deleting them immediately when the trash is off.

This hint takes advantage of the fact that if the .Trashes folder in a user's home folder is not accessible, Mac OS X ignores it and displays an immediate file deletion warning like the one seen at right.

Create a service in Automator that (via the top two drop-down menus) takes no input and is available in any application. Add a single Run AppleScript action that has following contents:
on run {input, parameters}
  do shell script "chown root ~/.Trash" with administrator privileges
  do shell script "killall Finder"
  return input
end run
Save the service as Bypass Trash...

Add to digg Add to Reddit Add to Slashdot Email this Article Add to StumbleUpon


[Read more...]