algernon/elfeed-goodies@8e4c1fbfb8 -> algernon/elfeed-goodies@c9d9cd1967 emacs-circe/circe@77e16de3b9 -> emacs-circe/circe@41cdc116b0 https://git.savannah.gnu.org/git/emms.git@c3596ae7166d -> https://git.savannah.gnu.org/git/emms.git@b55bc4fe1857 kidd/org-gcal.el@6e26ae75ae -> kidd/org-gcal.el@f8075bd8ea remyhonig/elfeed-org@268efdd012 -> remyhonig/elfeed-org@d28c858303 tecosaur/emacs-everywhere@02450162ad -> tecosaur/emacs-everywhere@0d0d185429 Fix: #6410 Close: #6411 Co-authored-by: Gpkfr <gpkfr@users.noreply.github.com> |
||
---|---|---|
.. | ||
autoload.el | ||
config.el | ||
packages.el | ||
README.org |
app/calendar
Table of Contents TOC
Description
Configuration
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.
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.