password-store

Simple password manager using gpg and ordinary unix directories
git clone https://git.zx2c4.com/password-store
Log | Files | Refs | README | LICENSE

commit 95d100938736d074a404a5f4d4ef1a38ceaab515
parent 47a1f0897313bbde85051e939af0fc8220feb175
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Wed, 23 Apr 2014 22:22:38 +0200

contrib: import passmenu

Diffstat:
Acontrib/dmenu/README.md | 11+++++++++++
Acontrib/dmenu/passmenu | 12++++++++++++
Mcontrib/related-projects.txt | 3---
3 files changed, 23 insertions(+), 3 deletions(-)

diff --git a/contrib/dmenu/README.md b/contrib/dmenu/README.md @@ -0,0 +1,11 @@ +`passmenu` is a [dmenu][]-based interface to [pass][], the standard Unix +password manager. This design allows you to quickly copy a password to the +clipboard without having to open up a terminal window if you don't already have +one open. + +# Usage + + passmenu [dmenu arguments...] + +[dmenu]: http://tools.suckless.org/dmenu/ +[pass]: http://www.zx2c4.com/projects/password-store/ diff --git a/contrib/dmenu/passmenu b/contrib/dmenu/passmenu @@ -0,0 +1,12 @@ +#!/bin/bash + +shopt -s nullglob globstar + +prefix=${PASSWORD_STORE_DIR-~/.password-store} +password_files=( "$prefix"/**/*.gpg ) +password_files=( "${password_files[@]#"$prefix"/}" ) +password_files=( "${password_files[@]%.gpg}" ) + +password=$(printf '%s\n' "${password_files[@]}" | dmenu "$@") + +[ $? -eq 0 ] && pass -c "$password" diff --git a/contrib/related-projects.txt b/contrib/related-projects.txt @@ -5,6 +5,3 @@ The following projects make use of pass: * passff: A firefox plugin. <https://github.com/jvenant/passff> - -* passmenu: A dmenu script. - <https://github.com/cdown/passmenu>