Variable: org-timer-display

org-timer-display is a customizable variable defined in org-timer.el.gz.

Value

mode-line

Documentation

Define where running timer is displayed, if at all.

When a timer is running, Org can display it in the mode line and/or frame title. Allowed values are:

both displays in both mode line and frame title
mode-line displays only in mode line (default)
frame-title displays only in frame title
nil current timer is not displayed

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-timer.el.gz
(defcustom org-timer-display 'mode-line
  "Define where running timer is displayed, if at all.
When a timer is running, Org can display it in the mode line
and/or frame title.  Allowed values are:

both         displays in both mode line and frame title
mode-line    displays only in mode line (default)
frame-title  displays only in frame title
nil          current timer is not displayed"
  :group 'org-time
  :type '(choice
	  (const :tag "Mode line" mode-line)
	  (const :tag "Frame title" frame-title)
	  (const :tag "Both" both)
	  (const :tag "None" nil)))