aerc/contrib/plaintext
2019-06-07 16:33:18 -04:00

13 lines
191 B
Awk
Executable file

#!/usr/bin/env -S awk -f
BEGIN {
dim = "\x1B[2m"
cyan = "\x1B[36m"
reset = "\x1B[0m"
}
{
if ($0 ~ /^On .*, .* wrote:/ || $0 ~ /^>+/) {
print dim cyan $0 reset
} else {
print $0
}
}