From 1b1556c4766529cb75837d9d478be1d9bc491078 Mon Sep 17 00:00:00 2001 From: Abdelhak Bougouffa Date: Wed, 5 Oct 2022 16:50:27 +0200 Subject: [PATCH] tweak(mu4e): change icon for reply flagged mails The current config is kinda confusing, it uses the same symbol for both forwarded/passed mails and replied mails. FontAwesome provides a nice icon for "reply", why not use it! --- modules/email/mu4e/autoload/email.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/email/mu4e/autoload/email.el b/modules/email/mu4e/autoload/email.el index 86db95144..1923d785b 100644 --- a/modules/email/mu4e/autoload/email.el +++ b/modules/email/mu4e/autoload/email.el @@ -134,7 +134,7 @@ will also be the width of all other printable characters." mu4e-headers-flagged-mark (cons "F" (+mu4e-normalised-icon "flag")) mu4e-headers-new-mark (cons "N" (+mu4e-normalised-icon "eye-slash" :v-adjust 0.05 :height 0.7)) mu4e-headers-passed-mark (cons "P" (+mu4e-normalised-icon "arrow-right")) - mu4e-headers-replied-mark (cons "R" (+mu4e-normalised-icon "arrow-right")) + mu4e-headers-replied-mark (cons "R" (+mu4e-normalised-icon "reply")) mu4e-headers-seen-mark (cons "S" "") ;(+mu4e-normalised-icon "eye" :height 0.6 :v-adjust 0.07 :color "dsilver")) mu4e-headers-trashed-mark (cons "T" (+mu4e-normalised-icon "trash")) mu4e-headers-attach-mark (cons "a" (+mu4e-normalised-icon "file-text-o" :color "silver"))