You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 line
390 B

  1. ;;-*-mode: emacs-lisp; coding: utf-8;-*-
  2. ;; I only want the time in my modeline, not system load
  3. ;; %T is HH:MM:SS basically
  4. ;; Also update every 5 seconds instead of 60
  5. (custom-set-variables '(display-time-default-load-average nil))
  6. (custom-set-variables '(display-time-format "%T"))
  7. (custom-set-variables '(display-time-interval 5))
  8. ;; Set the time in the mode line
  9. (display-time-mode)