Update 2022-12-06 08:01 OpenBSD/amd64

This commit is contained in:
c0dev0id
2022-12-06 08:01:44 +01:00
parent fb05d04fee
commit df81168e5e
28 changed files with 701 additions and 4 deletions

29
.bin/dexec_pass Executable file
View File

@@ -0,0 +1,29 @@
#!/usr/bin/env bash
. $HOME/.bin/_config
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_CMD -p Password)
[[ -n $password ]] || exit
# read password file
password_out=$(pass "$password" 2> /dev/null)
# copy password line
printf "%s" "$password_out" | head -1 | xclip -r
# extract additional information
password_info=$(printf "%s" "$password_out" | grep -Ei 'login|user')
url_info=$(printf "%s" "$password_out" | grep -Ei '^url' | awk -F"[ :]*" '{ $1=""; print $0 }' )
# show desktop notification
if [[ -n $password_info ]]; then
notify pass "$(printf '%s' "$password_info")"
else
notify pass "No username provided."
fi