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 64d0f105d588f32de7ffc30068b6d000504dc8b9
parent a41ce86e2315202311765cba144be71b36f90e82
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Sun, 23 Mar 2014 05:16:55 -0300

clip: wait longer for slow systems

Diffstat:
Msrc/password-store.sh | 2+-
Msrc/platform/darwin.sh | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/password-store.sh b/src/password-store.sh @@ -122,7 +122,7 @@ clip() { # we're going with this for now. sleep_argv0="password store sleep on display $DISPLAY" - pkill -f "^$sleep_argv0" 2>/dev/null && sleep 0.1 + pkill -f "^$sleep_argv0" 2>/dev/null && sleep 0.5 before="$(xclip -o -selection "$X_SELECTION" | base64)" echo -n "$1" | xclip -selection "$X_SELECTION" ( diff --git a/src/platform/darwin.sh b/src/platform/darwin.sh @@ -3,7 +3,7 @@ clip() { sleep_argv0="password store sleep for user $(id -u)" - pkill -f "^$sleep_argv0" 2>/dev/null && sleep 0.1 + pkill -f "^$sleep_argv0" 2>/dev/null && sleep 0.5 before="$(pbpaste | openssl base64)" echo -n "$1" | pbcopy (