Compare commits

..

No commits in common. "b18c2233e3178dd25aa3d9e616833566fdfdb39a" and "8570e0f72d48ea8bcb322cd121d397f90a61823f" have entirely different histories.

1 changed files with 40 additions and 6 deletions

View File

@ -2,15 +2,29 @@
shopt -s nullglob globstar shopt -s nullglob globstar
typeit=0
if [[ $1 == "--type" ]]; then
typeit=1
shift
fi
STARTDIR=${PASSWORD_STORE_DIR-~/.password-store} STARTDIR=${PASSWORD_STORE_DIR-~/.password-store}
BASEDIR=$STARTDIR BASEDIR=$STARTDIR
DONE=0 DONE=0
LEVEL=0 LEVEL=0
PREVSELECTION=""
SELECTION="" SELECTION=""
while [ "$DONE" -eq 0 ] ; do while [ "$DONE" -eq 0 ] ; do
password_files=( `find "$STARTDIR" -name "*.gpg" | sed -e 's/\.gpg//' -e 's#^.*password-store/##' ` ) password_files=( "$STARTDIR"/* )
entry=$(printf '%s\n' "${password_files[@]}" | dmenu -i "$@" -l 15) password_files=( "${password_files[@]#"$STARTDIR"/}" )
password_files=( "${password_files[@]%.gpg}" )
if [ "$LEVEL" -ne 0 ] ; then
password_files=(".." "${password_files[@]}")
fi
entry=$(printf '%s\n' "${password_files[@]}" | dmenu "$@" -l 15)
echo "entry: $entry" echo "entry: $entry"
if [ -z "$entry" ] ; then if [ -z "$entry" ] ; then
@ -18,9 +32,29 @@ while [ "$DONE" -eq 0 ] ; do
exit exit
fi fi
if [ "$entry" != ".." ] ; then
PREVSELECTION=$SELECTION
SELECTION="$SELECTION/$entry"
SELECTION="$SELECTION/$entry" # check if another dir
pass show "$SELECTION" | xclip -r -sel clip if [ -d "$STARTDIR/$entry" ] ; then
DONE=1 STARTDIR="$STARTDIR/$entry"
LEVEL=$((LEVEL+1))
else
# not a directory so it must be a real password entry
if [[ $typeit -eq 0 ]]; then
pass show -c "$SELECTION" 2>/dev/null
else
xdotool - <<<"type --clearmodifiers -- $(pass show "$SELECTION" | head -n 1)"
fi
DONE=1
fi
else
LEVEL=$((LEVEL-1))
SELECTION=$PREVSELECTION
STARTDIR="$BASEDIR/$SELECTION"
fi
done done