diff options
| author | Raúl Benencia <id@rbenencia.name> | 2026-01-02 12:13:56 -0300 |
|---|---|---|
| committer | Raúl Benencia <id@rbenencia.name> | 2026-01-02 12:13:56 -0300 |
| commit | a026fd5bf5d07a6480c6746c7f6ca2b428b92ad9 (patch) | |
| tree | 97b14f45ab30a718c8cd1a2b7654a3de5e3c5c75 | |
| parent | 511e29a17f4f9d2079e9ac175a3720daada8753b (diff) | |
Group idle-active vars
| -rw-r--r-- | org-tempus.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/org-tempus.el b/org-tempus.el index 213a1ee..3fe3312 100644 --- a/org-tempus.el +++ b/org-tempus.el @@ -150,6 +150,11 @@ :type 'integer :group 'org-tempus) +(defcustom org-tempus-idle-active-streak-seconds 120 + "Seconds of continuous activity before notifying to clock-in." + :type 'integer + :group 'org-tempus) + (defcustom org-tempus-idle-auto-clock-out-seconds 0 "Idle seconds after which to auto clock out. Set to 0 to disable auto clock-out." @@ -161,11 +166,6 @@ Set to 0 to disable auto clock-out." :type 'boolean :group 'org-tempus) -(defcustom org-tempus-idle-active-streak-seconds 120 - "Seconds of continuous activity before notifying." - :type 'integer - :group 'org-tempus) - (defcustom org-tempus-idle-provider 'emacs "Provider used to query idle time. Known providers are `emacs' (activity inside Emacs), |
