Git Product home page Git Product logo

Comments (3)

kiwanami avatar kiwanami commented on June 30, 2024

Hi @trenkert,
I'm also interesting in the googlecalendar solution, because I want to check my schedule on the mobile devices.

There are some solutions:

calfw-gcal

Employing this program, you can add a schedule on calfw buffer.
http://sheephead.homelinux.org/2011/01/18/6559/
https://translate.google.co.jp/translate?hl=ja&sl=ja&tl=en&prev=_dd&u=http%3A%2F%2Fsheephead.homelinux.org%2F2011%2F01%2F18%2F6559%2F

org-gcal and calfw-org

Through the org database, you can sync the schedules between gcal and calfw.
http://sheephead.homelinux.org/2014/03/15/7035/
https://translate.google.co.jp/translate?hl=ja&sl=ja&tl=en&prev=_dd&u=http%3A%2F%2Fsheephead.homelinux.org%2F2014%2F03%2F15%2F7035%2F
https://github.com/myuhe/org-gcal.el

If you like there solutions, @myuhe may help you.

from emacs-calfw.

myuhe avatar myuhe commented on June 30, 2024

The g-client package is not maintained.
I recommend to use org-gcal and calfw-org. org-gcal communicate to gcal asynchronously.

  • Setting example
(setq cfw:org-capture-template
      '("c" "calfw2org" entry 
        (file "~/schedule.org")
        "*  %?\n %(cfw:org-capture-day)"))
(require 'org-gcal)
(require 'calfw-org)

(defun cfw:open-calendar ()
  (interactive)
  (let ((cp
         (cfw:create-calendar-component-buffer
          :view 'month
          :contents-sources
          (list 
           (cfw:org-create-file-source
            "Task" "~/Task.org" "#268bd2")
           (cfw:org-create-file-source
            "schedule" "~/schedule.org" "#859900")))))
    (switch-to-buffer (cfw:cp-get-buffer cp))))

Then, you can push evet through org-capture.

If you fetch event data from gcal, use org-gcal-fetch .

from emacs-calfw.

kiwanami avatar kiwanami commented on June 30, 2024

@myuhe, thanks for your comment!

from emacs-calfw.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.