Le Fri, 21 Jul 2006 14:40:41 +0200,
Roberto Pariset <[EMAIL PROTECTED]> a écrit :

> Hello there,
> 
> just to talk about something, would it be doable to do a gpg plugin,
> which can encrypt and decrypt files and so on? Something like
> Nautilus+Seahorse. I don't know if anyone would benefit from it or if
> it's even doable, it is more about discussing the topic for now.
> 
> Cheers,
> Roberto

Wouldn't these scripts do it ?

#!/bin/sh

#gpgencrypt

gpg -r $USER --output ${1}.gpg --encrypt ${1}

and

#!/bin/bash

#gpgdecrypt

gpg -r $USER --output ${1%.*} --decrypt $1

do what you want (using them as custom actions ?)
_______________________________________________
Thunar-dev mailing list
[email protected]
http://foo-projects.org/mailman/listinfo/thunar-dev

Reply via email to