Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

12 wiersze
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)