summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2019-04-16 14:46:02 -0400
committerLuke Smith <luke@lukesmith.xyz>2019-04-16 14:46:02 -0400
commit8236230cee6412b78e955db4beeecdde71cc1d2d (patch)
tree9361bbd9e470c6b9774a51b199f15b057a0b9295
parent2addbac28615a8a83ee008681d86d7bec382be86 (diff)
number fix
-rwxr-xr-xmw12
1 files changed, 6 insertions, 6 deletions
diff --git a/mw b/mw
index 1b89bab..32cb6fc 100755
--- a/mw
+++ b/mw
@@ -341,9 +341,9 @@ What would you like \033[32mmutt-wizard\033[0m to do?
1 Add an email account
2 Change an account's password
3 Remove an account
- 5 Change GPG key pair used for encryption
- 6 Delete all account data
- 7 Enable/disable autosync
+ 4 Change GPG key pair used for encryption
+ 5 Delete all account data
+ 6 Enable/disable autosync
0 Exit
Input a number to continue or press ctrl-c.\\n"
printf "\033[36m\t"
@@ -353,9 +353,9 @@ Input a number to continue or press ctrl-c.\\n"
1) addtype ;;
2) pick "change the password of" && confirm "change the password of" && getpass ;;
3) pick delete && confirm "delete the \`$title\` profile" && delete ;;
- 5) askgpg ;;
- 6) confirm "delete all account data" && wipe && rm -ri "$mbsyncrc" "$accdir" "$creddir" "$muttdir/personal.muttrc" && echo "All configs and account settings have been purged." ;;
- 7) choosecron ;;
+ 4) askgpg ;;
+ 5) confirm "delete all account data" && wipe && rm -ri "$mbsyncrc" "$accdir" "$creddir" "$muttdir/personal.muttrc" && echo "All configs and account settings have been purged." ;;
+ 6) choosecron ;;
0) break ;;
*) printf "Invalid input.\\n"
esac