diff options
author | Leah Neukirchen <leah@vuxu.org> | 2024-10-26 17:07:18 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2024-10-26 17:08:17 +0200 |
commit | ac125528f64710d661d227653cb79f75733b6465 (patch) | |
tree | 051406c0f92dbed24b4c96c8d817a29d00e43f9a /README | |
parent | 244e661fbca7bf0c9d7e91d3bf5e569adff95a89 (diff) | |
download | mblaze-ac125528f64710d661d227653cb79f75733b6465.tar.gz mblaze-ac125528f64710d661d227653cb79f75733b6465.tar.xz mblaze-ac125528f64710d661d227653cb79f75733b6465.zip |
Diffstat (limited to 'README')
-rw-r--r-- | README | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/README b/README index 4768225..c29fa70 100644 --- a/README +++ b/README @@ -91,6 +91,9 @@ EXAMPLES INBOX: mlist ~/Maildir/INBOX | msort -S | tail -20 | mshow -t + Or delete messages beyond a certain age: + mlist ~/Maildir/INBOX | mpick -t 'mtime < "-365d"' | xargs rm + Or apply the patches from the current message: mshow -O. '*.diff' | patch @@ -111,6 +114,27 @@ CONCEPTS For configuration, see mblaze-profile(5). +COLORS + mblaze color output of mshow(1) and mscan(1) can be configured via + environment variables starting with MCOLOR_. For example: + export MCOLOR_FROM=226 + + will turn the color of From= header line to bright yellow. + + All programmable colors: + MCOLOR_CUR current message in mless + MCOLOR_DIFF_D diff deleted lines + MCOLOR_DIFF_I diff inserted lines + MCOLOR_DIFF_R diff line range + MCOLOR_FOOTER footer + MCOLOR_FROM from header line + MCOLOR_HEADER rest of header + MCOLOR_QUOTE quote + MCOLOR_QQUOTE double-nested quote + MCOLOR_QQQUOTE triple-nested quote + MCOLOR_SEP message separator + MCOLOR_SIG message signature + SEE ALSO mailx(1), mblaze-profile(5), nmh(7) |