aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAyush Agarwal <ayush@fastmail.in>2021-09-20 02:26:44 +0530
committerAyush Agarwal <ayush@fastmail.in>2021-09-20 02:26:44 +0530
commit44659ea57b5af13bf2b634efb2006600499b5da2 (patch)
treebfa869217c516776d2787d35286be7e84190cb2a
parent11fd05a0ed22673a8bec973408d9100a4a2ba6e9 (diff)
downloadtessen-44659ea57b5af13bf2b634efb2006600499b5da2.tar.gz
make 1st autotype message clearer
as mentioned before in 46cedab, the 1st autotype message should be clearer to indicate that autotyping will be performed no matter what the choice of `-a` is
-rwxr-xr-xtessen4
1 files changed, 2 insertions, 2 deletions
diff --git a/tessen b/tessen
index 300b986..a63e17d 100755
--- a/tessen
+++ b/tessen
@@ -76,7 +76,7 @@ get_key() {
local ch="" flag=false key_arr=()
if [[ "${1-}" == "pass_key_list" ]]; then
- key_arr=("autotype" "username" "password" "${!PASSDATA_ARR[@]}")
+ key_arr=("autotype username and password" "username" "password" "${!PASSDATA_ARR[@]}")
shift
elif [[ "${1-}" == "opt_key_list" ]]; then
key_arr=("autotype" "copy")
@@ -105,7 +105,7 @@ key_menu() {
get_key pass_key_list
- if [[ "$_KEY" == "autotype" ]]; then
+ if [[ "$_KEY" == "autotype username and password" ]]; then
auto_type username_password
exit 0
fi