aerc/filters/plaintext

14 lines
186 B
Plaintext
Raw Normal View History

2019-06-08 01:08:17 +02:00
# vim: set ft=awk :
2019-06-07 17:53:42 +02:00
BEGIN {
dim = "\x1B[2m"
cyan = "\x1B[36m"
reset = "\x1B[0m"
}
{
if ($0 ~ /^On .*, .* wrote:/ || $0 ~ /^>+/) {
2019-06-07 17:53:42 +02:00
print dim cyan $0 reset
} else {
print $0
}
}