citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

commit dfacd9b056ce9e151a3f6e653d2c45027fca05e9
parent 2200b2e26f68ae2329cc30ece56c9dd9410c1d38
Author: William Casarin <jb55@jb55.com>
Date:   Mon,  4 Jan 2021 08:24:34 -0800

notmuch-thread-reader: use neomutt

Diffstat:
Mbin/notmuch-thread-reader | 9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/bin/notmuch-thread-reader b/bin/notmuch-thread-reader @@ -4,6 +4,9 @@ if [ -z $1 ]; then printf "usage: notmuch-thread-reader <thread-id>\n" exit 1 fi -notmuch show --format=mbox $1 > /tmp/$1 -sortmail /tmp/$1 -lessr /tmp/$1 + + +notmuch show --format=mbox $1 > /tmp/$1.mbox +neomutt -f /tmp/$1.mbox +#sortmail /tmp/$1 +#lessr /tmp/$1