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

27 lines
822 B
EmacsLisp

;; -*- lexical-binding: t; -*-
(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-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: