Variable: org-clock-auto-clockout-timer
org-clock-auto-clockout-timer is a customizable variable defined in
org-clock.el.gz.
Value
nil
Documentation
Timer for auto clocking out when Emacs is idle.
When set to a number, auto clock out the currently clocked in task after this number of seconds of idle time.
This is only effective when org-clock-auto-clockout-insinuate
is added to the user configuration.
This variable was added, or its default value changed, in Org version
9.4.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-clock.el.gz
(defcustom org-clock-auto-clockout-timer nil
"Timer for auto clocking out when Emacs is idle.
When set to a number, auto clock out the currently clocked in
task after this number of seconds of idle time.
This is only effective when `org-clock-auto-clockout-insinuate'
is added to the user configuration."
:group 'org-clock
:package-version '(Org . "9.4")
:type '(choice
(integer :tag "Clock out after Emacs is idle for X seconds")
(const :tag "Never auto clock out" nil)))