Variable: display-time-default-load-average
display-time-default-load-average is a customizable variable defined
in time.el.gz.
Value
0
Documentation
Which load average value will be shown in the mode line.
Almost every system can provide values of load for the past 1 minute, past 5 or past 15 minutes. The default is to display 1-minute load average. The value can be one of:
0 => 1 minute load
1 => 5 minutes load
2 => 15 minutes load
nil => None (do not display the load average)
Source Code
;; Defined in /usr/src/emacs/lisp/time.el.gz
(defcustom display-time-default-load-average 0
"Which load average value will be shown in the mode line.
Almost every system can provide values of load for the past 1 minute,
past 5 or past 15 minutes. The default is to display 1-minute load average.
The value can be one of:
0 => 1 minute load
1 => 5 minutes load
2 => 15 minutes load
nil => None (do not display the load average)"
:type '(choice (const :tag "1 minute load" 0)
(const :tag "5 minutes load" 1)
(const :tag "15 minutes load" 2)
(const :tag "None" nil)))