diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2016-02-27 15:58:12 +0100 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2016-02-27 15:58:12 +0100 |
commit | a307e0474e78c51590aeac95dbc5587a87ef6501 (patch) | |
tree | c5c7ca86b0b86704a4c1adc588e7ce249826e98f /packages/scripts/resources/bin/dmenu-pass.sh | |
parent | 77955935e9549a847ae7e0d78819f090d429fdb6 (diff) | |
download | debian-packages-a307e0474e78c51590aeac95dbc5587a87ef6501.tar.gz debian-packages-a307e0474e78c51590aeac95dbc5587a87ef6501.zip |
refactor scripts packages
Diffstat (limited to 'packages/scripts/resources/bin/dmenu-pass.sh')
-rwxr-xr-x | packages/scripts/resources/bin/dmenu-pass.sh | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/packages/scripts/resources/bin/dmenu-pass.sh b/packages/scripts/resources/bin/dmenu-pass.sh new file mode 100755 index 0000000..bb3be7a --- /dev/null +++ b/packages/scripts/resources/bin/dmenu-pass.sh @@ -0,0 +1,40 @@ +#!/usr/bin/env 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 "$@") + +[[ -n $password ]] || exit + +while true; do + pass show "$password" 2>&1 \ + | sed -e 's/^pass:.*/pass: XXXX/' \ + | xmessage -file - \ + -buttons "Done:1,Copy 'login':2,Copy 'pass':3,Copy all:4" \ + -default "Done" \ + -nearmouse -timeout 10 + case "$?" in + 2) + pass show "$password" 2>&1 \ + | sed -ne 's/^login: \(.*\)/\1/p' \ + | xclip -i -verbose -l 1 2>/dev/null + ;; + 3) + pass show "$password" 2>&1 \ + | sed -ne 's/^pass: \(.*\)/\1/p' \ + | xclip -i -verbose -l 1 2>/dev/null + ;; + 4) + pass show "$password" 2>&1 \ + | xclip -i -verbose -l 1 2>/dev/null + ;; + *) + break + ;; + esac +done |