mostard
mostard

Reputation: 31

How to add an entry to Gnome's context Menu?

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

Upvotes: 3

Views: 3162

Answers (1)

Paweł Nadolski
Paweł Nadolski

Reputation: 8474

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

Upvotes: 8

Related Questions