summaryrefslogtreecommitdiff
path: root/bin/mail
diff options
context:
space:
mode:
Diffstat (limited to 'bin/mail')
-rwxr-xr-xbin/mail11
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/mail b/bin/mail
new file mode 100755
index 0000000..00236ed
--- /dev/null
+++ b/bin/mail
@@ -0,0 +1,11 @@
+#!/bin/bash
+sel=$(iselect -a 'kitchen' 'cafe')
+case $sel in
+ kitchen)
+ neomutt -F ~/.muttrc_kitchen
+ ;;
+ cafe)
+ neomutt -F ~/.muttrc_cafe
+ ;;
+esac
+