Variable: org-clock-clocked-in-display
org-clock-clocked-in-display is a customizable variable defined in
org-clock.el.gz.
Value
mode-line
Documentation
When clocked in for a task, Org can display the current task and accumulated time 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 clock is not displayed
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-clock.el.gz
(defcustom org-clock-clocked-in-display 'mode-line
"When clocked in for a task, Org can display the current
task and accumulated time 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 clock is not displayed"
:group 'org-clock
:type '(choice
(const :tag "Mode line" mode-line)
(const :tag "Frame title" frame-title)
(const :tag "Both" both)
(const :tag "None" nil)))