Skip to content

Instantly share code, notes, and snippets.

@lmammino
Created April 4, 2013 10:03
Show Gist options
  • Save lmammino/5309230 to your computer and use it in GitHub Desktop.
Save lmammino/5309230 to your computer and use it in GitHub Desktop.
"Decrypt Document" integration for Gedit (compatible with textmate text encryption/decription)
#!/bin/sh
pw=`zenity --entry --hide-text --title="Encrypt document" --text="Insert key"`;
openssl enc -d -aes128 -base64 -pass "pass:$pw";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment