Replies: 5 comments 1 reply
-
|
I assume you are using the ical interface? If so, you probably would need to customize |
Beta Was this translation helpful? Give feedback.
-
|
Hi @haji-ali, Thanks for the work on this library! Yes, I am using the ical interface like this: (add-to-list 'load-path "~/build/emacs-calfw")
(require 'calfw)
(require 'calfw-ical)
(setq calendar-week-start-day 1)
(customize-set-variable 'calfw-display-calendar-holidays nil)
(defun my-open-calendar ()
(interactive)
(calfw-open-calendar-buffer
:contents-sources
(list
(calfw-ical-create-source "personal"
"https://nextcloud05.webo.cloud/remote.php/dav/calendars/<username>/personal/?export"
"Purple"))))When I run M-x my-open-calendar I am asked for my username and password in the minibuffer. |
Beta Was this translation helpful? Give feedback.
-
|
@kflak, I believe you can change |
Beta Was this translation helpful? Give feedback.
-
|
Hi, It's probably me being a moron as usual, but I can't get any of those to work. I still get asked for password and username when I fire up the calendar, both when changing the shell command in the source file, as well as adding it to the .wgetrc.... |
Beta Was this translation helpful? Give feedback.
-
|
I tried this: (defvar calfw-ical-calendar-external-shell-command "wget --user=<username> --password=<password>and in .wgetrc. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I am really enjoying calfw now that I have managed to pull my calendar from my nextcloud provider, but I would prefer not to have to type in my username and (very long string of random characters) password every time I fire up emacs. Is there a way to pull this information from f.x. pass or authinfo?
Beta Was this translation helpful? Give feedback.
All reactions