aboutsummaryrefslogtreecommitdiffstats
path: root/.mutt/compose.sh
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@outlook.com>2015-02-04 17:11:03 +0800
committerAaron LI <aaronly.me@outlook.com>2015-02-04 17:11:03 +0800
commit4403a73e1de25b09691f8f30ea0d6ad784f85f8b (patch)
tree8eb498d2bfedfa9941aabf7bffe2c14efbeba46e /.mutt/compose.sh
parent158883aba19b1dced08ad02cb87bd07cb90dfb0c (diff)
downloaddotfiles-4403a73e1de25b09691f8f30ea0d6ad784f85f8b.tar.bz2
Updated mutt configuration files.
* Added compose.rc, compose.sh, updated muttrc; to support compose mail in new tmux window * Added mutt_bgrun.sh, updated mailcap; to view attachment without blocking mutt * deleted zh * updated colors
Diffstat (limited to '.mutt/compose.sh')
-rwxr-xr-x.mutt/compose.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/.mutt/compose.sh b/.mutt/compose.sh
new file mode 100755
index 0000000..9172421
--- /dev/null
+++ b/.mutt/compose.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+#
+# Compose mail in new tmux/screen window.
+#
+# Reference:
+# [1] Multi-window Mutt with Screen
+# http://op-co.de/blog/posts/mulit-window_mutt/
+#
+
+# set the screen window title to the message receiver
+#awk -F 'To: ' '/^To:/ { print "\033k" $2 "\033\\" }' "$1"
+
+mutt -F ~/.mutt/compose.rc -H "$1"
+rm "$1"