[Thunar-dev] gpg
Xavier Dectot
xavier.dectot at culture.gouv.fr
Fri Jul 21 15:21:18 CEST 2006
Le Fri, 21 Jul 2006 14:40:41 +0200,
Roberto Pariset <robdebian at gmail.com> 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 ?)
More information about the Thunar-dev
mailing list