Function: org-clock-auto-clockout-insinuate

org-clock-auto-clockout-insinuate is a byte-compiled function defined in org.el.gz.

Signature

(org-clock-auto-clockout-insinuate)

Documentation

Set up hook for auto clocking out when Emacs is idle.

See org-clock-auto-clockout-timer.

This function is meant to be added to the user configuration.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-clock-auto-clockout-insinuate ()
  "Set up hook for auto clocking out when Emacs is idle.
See `org-clock-auto-clockout-timer'.

This function is meant to be added to the user configuration."
  (require 'org-clock)
  (add-hook 'org-clock-in-hook #'org-clock-auto-clockout t))