3

This is small stuff but I haven't been able to figure it out:

How do I hide "Mail" from the mode line in emacs?

MajorBriggs
  • 1,191
  • 5
  • 12
  • 23

1 Answers1

5

Just don't enable display-time-mode.

If you do want time, but not Mail, set display-time-mail-string to an empty string:

(setq display-time-mail-string "")

or, better yet:

(custom-set-variables '(display-time-mail-string ""))
sds
  • 1,596
  • 2
  • 14
  • 21