Skip to content

Instantly share code, notes, and snippets.

@kiwanami
Created July 7, 2011 00:46
Show Gist options
  • Save kiwanami/1068688 to your computer and use it in GitHub Desktop.
Save kiwanami/1068688 to your computer and use it in GitHub Desktop.
org and ical in calfw
(require 'calfw-org)
(require 'calfw-ical)
(defun my-open-calendar ()
(interactive)
(cfw:open-calendar-buffer
:view 'month
:contents-sources
(list
(cfw:org-create-source "Seagreen4") ; color
(cfw:ical-create-source "ical1" "https://www.google.com/calendar/ical/../basic.ics" "#2952a3")
(cfw:ical-create-source "ical2" "https://www.google.com/calendar/ical/../basic.ics" "Red"))))
;; title, URL, color
;; M-x my-open-calendar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment