Add working hours custom variable

This commit is contained in:
contrapunctus 2022-02-13 02:54:18 +05:30
parent 7f4e5e9c7c
commit 65d6f8ddd6
2 changed files with 17 additions and 0 deletions

View File

@ -35,6 +35,14 @@
:group 'chronometrist)
;; group:1 ends here
;; [[file:chronometrist-third.org::*working-hours][working-hours:1]]
(defcustom chronometrist-third-working-hours nil
"Pair of ISO-8601 timestamps specifying user's working hours.
Setting this currently has no effect."
:type '(choice (const :tag "No defined working hours" nil)
(cons :tag "Time range" string string)))
;; working-hours:1 ends here
;; [[file:chronometrist-third.org::*divisor][divisor:1]]
(defcustom chronometrist-third-divisor 3
"Number to determine accumulation of break time relative to work time."

View File

@ -47,6 +47,15 @@
:group 'chronometrist)
#+END_SRC
** TODO working-hours :custom:variable:
#+BEGIN_SRC emacs-lisp
(defcustom chronometrist-third-working-hours nil
"Pair of ISO-8601 timestamps specifying user's working hours.
Setting this currently has no effect."
:type '(choice (const :tag "No defined working hours" nil)
(cons :tag "Time range" string string)))
#+END_SRC
** divisor :custom:variable:
#+BEGIN_SRC emacs-lisp
(defcustom chronometrist-third-divisor 3