summaryrefslogtreecommitdiff
path: root/mw
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2019-04-20 18:45:07 -0400
committerLuke Smith <luke@lukesmith.xyz>2019-04-20 18:45:07 -0400
commit629ecc8e566a276f4e653288306a09a77bbe3122 (patch)
tree091aa61959281fbbd448f84e6d46a6a7ad1b7421 /mw
parent018ee2aeddb02bcb2f59cef27aebaa2254fe0276 (diff)
minor interface changes
Diffstat (limited to 'mw')
-rwxr-xr-xmw4
1 files changed, 2 insertions, 2 deletions
diff --git a/mw b/mw
index a91a23c..2007dcf 100755
--- a/mw
+++ b/mw
@@ -108,7 +108,7 @@ fi
}
addaccount() { \
- printf "Insert the \033[31memail address\033[0m that you want to autoconfigure for mutt/mbsync\\n\\nEmail: \033[36m\t"
+ printf "Insert the \033[31memail address\033[0m that you want to autoconfigure for mutt/mbsync\\n\tEmail: \033[36m"
read -r fulladdr
printf "\033[0m"
while ! echo "$fulladdr" | grep "$emailre" >/dev/null; do
@@ -261,7 +261,7 @@ choosecron() { ! pgrep crond >/dev/null && echo "No cron manager running. Instal
addtype() { ! command -v mbsync >/dev/null && printf "You must have the \`mbsync\` command to add an account.\\nIt syncs mail and detects remote mailboxes.\\nYou can typically get it by installing \`isync\`.\\n" && return 1
while : ; do
- echo "Do you want to keep your mail for this account offline with mbsync? [yes/no]"
+ printf "Do you want to keep your mail for this account offline with mbsync? [yes/no]\\n\t"
read -r offnot
case "$offnot" in
[Yy]es) accounttype="offline" && break ;;