aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGergely Risko <errge@nilcons.com>2017-12-01 14:48:51 +0100
committerGergely Risko <errge@nilcons.com>2017-12-01 14:48:51 +0100
commitdaba596ef719b1cce5bb4941505d312e4dd35dbb (patch)
treef04a701690f634d9e1ab656b8847108ea41aa88d
parent91a0829b690767b1734487f4af8766a586d7b1b7 (diff)
downloadrofi-pass-daba596ef719b1cce5bb4941505d312e4dd35dbb.tar.gz
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.
-rwxr-xr-xrofi-pass2
1 files changed, 1 insertions, 1 deletions
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