Compare commits

...

2 Commits

Author SHA1 Message Date
contrapunctus 65d36aa83a Update website 2022-02-10 16:21:43 +05:30
contrapunctus 5301d0327a Tweak explanation 2022-02-10 16:21:18 +05:30
1 changed files with 4 additions and 4 deletions

View File

@ -7,9 +7,9 @@ The [[#goal-list][goal-list]] associates each Chronometrist task with a goal.
Enabling the [[#goal-minor-mode][minor-mode]] sets up hooks to
1. display a goal column in the Chronometrist buffer, and
2. start and stop alert timers.
2. display alerts about the time spent relative to the defined time goal.
Alerts are functions which start timers - at the end of the timer, a notification is displayed. Alerts are stored in [[#alert-functions][alert-functions]] (used by [[#run-alert-timers][run-alert-timers]] to start the timers). The timers created are stored in [[#timers-list][timers-list]] (used by [[#stop-alert-timers][stop-alert-timers]] to stop the timers).
Alerts are functions which start timers - at the end of the timer, a notification is displayed. Alerts are stored in the custom variable [[#alert-functions][alert-functions]] (used by [[#run-alert-timers][run-alert-timers]] to start the timers). The timers created are stored in [[#timers-list][timers-list]] (used by [[#stop-alert-timers][stop-alert-timers]] to stop the timers).
* Program source
** Library headers and commentary
@ -19,7 +19,7 @@ Alerts are functions which start timers - at the end of the timer, a notificatio
;; Author: contrapunctus <xmpp:contrapunctus@jabber.fr>
;; Maintainer: contrapunctus <xmpp:contrapunctus@jabber.fr>
;; Keywords: calendar
;; Homepage: https://github.com/contrapunctus-1/chronometrist
;; Homepage: https://tildegit.org/contrapunctus/chronometrist
;; Package-Requires: ((emacs "25.1") (alert "1.2") (chronometrist "0.6.0"))
;; Version: 0.2.1
@ -35,7 +35,7 @@ Alerts are functions which start timers - at the end of the timer, a notificatio
;;; Commentary:
;; Add support for time goals to Chronometrist
;; For information on usage and customization, see https://github.com/contrapunctus-1/chronometrist-goal/blob/master/README.md
;; For information on usage and customization, see https://tildegit.org/contrapunctus/chronometrist-goal/src/branch/production/README.md
#+END_SRC
** Dependencies