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

Where to display clocked in task and accumulated time when clocked in.

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
  "Where to display clocked in task and accumulated time when clocked in.

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