25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

12 satır
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)