removed case-insensitive search; this is configurable if the user wants it

This commit is contained in:
Joel Beckmeyer 2020-03-29 18:49:54 -04:00
parent eacb4ff7af
commit 16b747fc50
1 changed files with 2 additions and 2 deletions

View File

@ -60,10 +60,10 @@ password_files=( "$prefix"/**/*.gpg )
password_files=( "${password_files[@]#"$prefix"/}" )
password_files=( "${password_files[@]%.gpg}" )
password=$(printf '%s\n' "${password_files[@]}" | wofi -i --dmenu "$@")
password=$(printf '%s\n' "${password_files[@]}" | wofi --dmenu "$@")
[[ -n $password ]] || exit
field_list="$(_parse_fields)"
field=$(printf "$field_list" | wofi -i --dmenu)
field=$(printf "$field_list" | wofi --dmenu)
echo $field
if [[ $typeit -eq 0 ]]; then