From daba596ef719b1cce5bb4941505d312e4dd35dbb Mon Sep 17 00:00:00 2001 From: Gergely Risko Date: Fri, 1 Dec 2017 14:48:51 +0100 Subject: Fix password -> pass typo in typeMenu This was not causing any big problems, because the only difference between typeField (the default fallback of the switch statement) and typePass functions is the handling of notifications. --- rofi-pass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rofi-pass b/rofi-pass index cf51668..0835265 100755 --- a/rofi-pass +++ b/rofi-pass @@ -420,7 +420,7 @@ typeMenu () { fi case "$typefield" in '') exit;; - 'password') sleep $wait; typePass;; + 'pass') sleep $wait; typePass;; "${AUTOTYPE_field}") sleep $wait; autopass;; *) sleep $wait; typeField esac -- cgit