From 16b747fc501b402c583adae5f89bc02a3bcec72e Mon Sep 17 00:00:00 2001 From: AluminumTank Date: Sun, 29 Mar 2020 18:49:54 -0400 Subject: [PATCH] removed case-insensitive search; this is configurable if the user wants it --- wofi-pass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wofi-pass b/wofi-pass index 71e41ea..f967e1e 100755 --- a/wofi-pass +++ b/wofi-pass @@ -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