:app calendar

Watch your missed deadlines in real time

1. Description

Adds a calendar view for Emacs, with org and google calendar sync support.

1.1. Maintainers

This module has no dedicated maintainers. Become a maintainer?

1.2. Module flags

This module has no flags.

1.4. Hacks

No hacks documented for this module.

2. TODO Usage

This module has no usage documentation yet. Write some?

3. Configuration

3.1. Changing calendar sources

By defining your own calendar commands, you can control what sources to pull calendar data from:

(defun my-open-calendar ()
  (interactive)
  (cfw:open-calendar-buffer
   :contents-sources
   (list
    (cfw:org-create-source "Green")  ; org-agenda source
    (cfw:org-create-file-source "cal" "/path/to/cal.org" "Cyan")  ; other org source
    (cfw:howm-create-source "Blue")  ; howm source
    (cfw:cal-create-source "Orange") ; diary source
    (cfw:ical-create-source "Moon" "~/moon.ics" "Gray")  ; ICS source1
    (cfw:ical-create-source "gcal" "https://..../basic.ics" "IndianRed") ; google calendar ICS
   )))

The kiwanami/emacs-calfw project readme contains more examples.

3.2. Synchronizing Org and Google Calendar

The kidd/org-gcal.el project README contains more detailed instructions on how to link your calendar with Google calendars.

4. Troubleshooting

There are no known problems with this module. Report one?

5. TODO Appendix

This module has no appendix yet. Write one?