Add script “passmenu”

Add the script “passmenu” to provide the same functionality as the
official “passmenu” script but using “bemenu” instead of “dmenu”.
This commit is contained in:
coderkun 2020-07-04 13:37:20 +02:00
parent 8eef24bb1b
commit fe93010b04
1 changed files with 17 additions and 0 deletions

17
passmenu Executable file
View File

@ -0,0 +1,17 @@
#!/bin/sh
set -e
shopt -s nullglob globstar
# Present menu to select password
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[@]}" | bemenu $@)
# Copy password to clipboard
pass show -c "$password" 2>/dev/null
# Send notification
notify-send -u critical -t 45000 "Password in clipboard" \
"The password for \"$password\" is currently in the clipboard."