This repository has been archived on 2022-05-13. You can view files and clone it, but cannot push or open issues or pull requests.
chronometrist/chronometrist-report-custom.el

30 lines
992 B
EmacsLisp

(defgroup chronometrist-report nil
"Weekly report for the `chronometrist' time tracker.")
(defcustom chronometrist-report-buffer-name "*Chronometrist-Report*"
"The name of the buffer created by `chronometrist-report'.")
(defcustom chronometrist-report-update-interval 5
"How often the `chronometrist-report' buffer should be updated, in seconds.
This is not guaranteed to be accurate - see (info \"(elisp)Timers\").")
(defcustom chronometrist-report-week-start-day "Sunday"
"The day used for start of week by `chronometrist-report'.")
(defcustom chronometrist-report-weekday-number-alist
'(("Sunday" . 0)
("Monday" . 1)
("Tuesday" . 2)
("Wednesday" . 3)
("Thursday" . 4)
("Friday" . 5)
("Saturday" . 6))
"alist in the form (\"NAME\" . NUMBER), where \"NAME\" is the name of a weekday and NUMBER its associated number.")
(provide 'chronometrist-report-custom)
;; Local Variables:
;; nameless-current-name: "chronometrist-report"
;; End: