tags:

views:

19

answers:

1

Hi, how can I add an item to Gnome's context menu? I want 'shred' to be in there, too. KR

+3  A: 

Install nautilus-actions:

sudo apt-get install nautilus-actions

Now you can define new action in: System > Preferences > Nautilus Actions Configuration

In the Action tab fill:

  • Context label = shred

In the Command tab fill:

  • Path = /usr/bin/shred
  • Parameters = -f -u -z %M

You may need to restart Nautilus, run:

nautilus -q
Paweł