Initial commit. A lot of work left to do.

This commit is contained in:
Storm Dragon 2016-07-07 10:58:59 -04:00
parent e0e9d9f1f2
commit 6782292ac1

31
fleacollar.sh Executable file
View File

@ -0,0 +1,31 @@
#!/bin/bash
# This script has the lofty goal of becoming a full configuration utility for mutt.
# Written by Storm Dragon: https://social.stormdragon.tk/storm
# Written by Michael Taboada: https://2mb.social/mwtab
# This is a 2MB Solutions project: https://2mb.solutions
# Released under the terms of the WTFPL: http://wtfpl.net
# Variables
muttHome="$HOME/.mutt"
# Functions
add_email_address()
{
read -p "Please enter your email address: " emailAddress
if [ -f "$emailAddress" ]; then
read -p "This email address alread exists, would you like to remove it? " continue
}
# This is the main loop of the program
# Let's make a mainmenu variable to hold all the options for the select loop.
mainmenu=('Add Email Address' 'Exit')
select i in "${mainmenu[@]}" ; do
functionName="${i,,}"
functionName="${functionName// /_}"
functionName="${functionName/exit/exit 0}"
$functionName
done
exit 0