[Emacs] Don't display time in modeline when frames only

This commit is contained in:
Ivan Malison 2016-11-22 01:09:19 -06:00
parent 16faa79574
commit c633a75af5
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -1301,7 +1301,7 @@ whenever there is an error.
(setq display-time-default-load-average nil)
(setq display-time-interval 1)
(setq display-time-format "%a|%m-%d|%r")
(display-time-mode 1)
(display-time-mode (if (imalison:use-frames-only) -1 +1))
#+END_SRC
** Kill Ring
#+BEGIN_SRC emacs-lisp