Variable: org-clock-x11idle-program-name

org-clock-x11idle-program-name is a customizable variable defined in org-clock.el.gz.

Value

"x11idle"

Documentation

Name of the program which prints X11 idle time in milliseconds.

you can do "~$ sudo apt-get install xprintidle" if you are using a Debian-based distribution.

Alternatively, can find x11idle.c in https://orgmode.org/worg/code/scripts/x11idle.c

This variable was added, or its default value changed, in Org version
9.7.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-clock.el.gz
(defcustom org-clock-x11idle-program-name
  (if (executable-find "xprintidle")
      "xprintidle" "x11idle")
  "Name of the program which prints X11 idle time in milliseconds.

you can do \"~$ sudo apt-get install xprintidle\" if you are using
a Debian-based distribution.

Alternatively, can find x11idle.c in
https://orgmode.org/worg/code/scripts/x11idle.c"
  :group 'org-clock
  :package-version '(Org . "9.7")
  :type 'string)