diff options
author | Luke Smith <luke@lukesmith.xyz> | 2018-03-16 12:34:46 -0700 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2018-03-16 12:34:46 -0700 |
commit | 459ca7d5a0f9737dba5fb42315dac0237397c8fb (patch) | |
tree | e9a5215b06de138ebab3afb6b2ae4a49b313b1eb /mutt-wizard.sh | |
parent | d50da7007088f6dc9a7c410d00a50dd17e8953bf (diff) |
interface tweaks
Diffstat (limited to 'mutt-wizard.sh')
-rwxr-xr-x | mutt-wizard.sh | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/mutt-wizard.sh b/mutt-wizard.sh index 5a1e001..1fd21a8 100755 --- a/mutt-wizard.sh +++ b/mutt-wizard.sh @@ -228,15 +228,14 @@ wipe () { rm $HOME/.offlineimaprc while : ; do choice=$(dialog --title "Luke's mutt/offlineIMAP wizard" --nocancel \ - --menu "What would you like to do?" 16 45 8 \ + --menu "What would you like to do?" 14 45 7 \ 0 "List all email accounts configured." \ 1 "Add an email account." \ - 2 "Auto-detect mailboxes for an account." \ - 3 "Enable/disable autosync." \ - 4 "Change an account's password." \ - 5 "Remove an email account." \ - 6 "Remove all email accounts." \ - 7 "Exit this wizard." \ + 2 "Enable/disable autosync." \ + 3 "Change an account's password." \ + 4 "Remove an email account." \ + 5 "Remove all email accounts." \ + 6 "Exit this wizard." \ 3>&1 1>&2 2>&3 3>&1 ) case $choice in @@ -244,11 +243,10 @@ case $choice in $(grep ~/.offlineimaprc -e "^accounts =" | sed 's/accounts =//g') " 6 60;; 1) chooseAdd;; -2) detectWarning && chooseDetect ;; -3) chooseSync;; -4) inventory && for i in $userchoices; do changePassword $i ; done;; -5) inventory && for i in $userchoices; do removeAccount $i ; done;; -6) (dialog --defaultno --title "Wipe all custom neomutt/offlineIMAP settings?" --yesno "Would you like to wipe all of the mutt/offlineIMAP settings generated by the system?" 6 60 && wipe) ;; -7) clear && break ;; +2) chooseSync;; +3) inventory && for i in $userchoices; do changePassword $i ; done;; +4) inventory && for i in $userchoices; do removeAccount $i ; done;; +5) (dialog --defaultno --title "Wipe all custom neomutt/offlineIMAP settings?" --yesno "Would you like to wipe all of the mutt/offlineIMAP settings generated by the system?" 6 60 && wipe) ;; +6) clear && break ;; esac done |