-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvdirsyncer
33 lines (28 loc) · 1007 Bytes
/
vdirsyncer
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[general]
status_path = "~/.config/vdirsyncer/status/"
[pair calendar]
a = "local_calendar"
b = "google_calendar"
conflict_resolution = "b wins"
collections = ["f@frnsys.com"]
metadata = ["color", "displayname"]
[pair calendar_local]
a = "local_calendar"
b = "google_calendar_work"
conflict_resolution = "b wins"
collections = ["francis.tseng@jainfamilyinstitute.org"]
metadata = ["color", "displayname"]
[storage local_calendar]
type = "filesystem"
path = "~/.calendar"
fileext = ".ics"
[storage google_calendar]
type = "google_calendar"
token_file = "~/.config/vdirsyncer/tokens/google_calendar"
client_id.fetch = ["command", "head", "-n1", "docs/keys/calendar"]
client_secret.fetch = ["command", "tail", "-n1", "docs/keys/calendar"]
[storage google_calendar_work]
type = "google_calendar"
token_file = "~/.config/vdirsyncer/tokens/google_calendar_work"
client_id.fetch = ["command", "head", "-n1", "work/jfi/keys/calendar"]
client_secret.fetch = ["command", "tail", "-n1", "work/jfi/keys/calendar"]