-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.json.example
More file actions
71 lines (71 loc) · 2.22 KB
/
config.json.example
File metadata and controls
71 lines (71 loc) · 2.22 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"caldav_url": "YOUR_CALDAV_CALENDAR_URL_FROM_MAILBOX_ORG",
"username": "YOUR_APPLICATION_USERNAME",
"password": "YOUR_APPLICATION_PASSWORD",
"timezone": "Europe/Vienna",
"uid_prefix": "ICS-",
"future_event_limit_days": 365,
"extra_events": [
"☀️ Sommerzeit beginnt:-1.Sunday.3",
"🌷 Muttertag:2.Sunday.5",
"👨👧👦 Vatertag:2.Sunday.6",
"🔥 Sonnwendfeier:21.6.fixed",
"🧾 Steuererklärung:30.6.fixed",
"🌒 Sommerzeit endet:-1.Sunday.10",
"🎃 Halloween:31.10.fixed",
"🕯️ 1. Advent:-4.Sunday.12",
"🕯️ 2. Advent:-3.Sunday.12",
"🕯️ 3. Advent:-2.Sunday.12",
"🕯️ 4. Advent:-1.Sunday.12",
"👹 Krampusnacht:5.12.fixed",
"🎅 Nikolaus:6.12.fixed"
],
"ics_feeds": [
{
"url": "https://app.muellapp.com/ical/74418?area_filter=145382%2C145383%2C151900&reminder&day=1&time=18:00",
"uid_prefix": "MUELL-",
"emoji_mapping": {
"Restmüll": "🗑️",
"Papier": "♻️",
"Gelber Sack": "🟡"
}
},
{
"url": "https://www.feiertage-oesterreich.at/kalender-download/ics/feiertage-oesterreich.ics",
"uid_prefix": "HOLIDAY-",
"import_locations": "K,St",
"emoji_mapping": {
"§": "🇦🇹",
"default": "🗓️"
}
},
{
"url": "https://better-f1-calendar.vercel.app/api/calendar.ics",
"uid_prefix": "F1-",
"emoji_mapping": {
": Practice ": "🏎️",
"FP1": "🏎️",
"FP2": "🏎️",
"FP3": "🏎️",
"Sprint Qualifying": "⏱️",
"Sprint": "⚡",
"Qualifying": "⏱️",
"Grand Prix": "🏆",
": Race": "🏆"
}
},
{
"url": "https://data.fis-ski.com/services/public/icalendar-feed-fis-events.html?seasoncode=2026§orcode=AL&categorycode=WC&gendercode=M",
"uid_prefix": "FISm-",
"emoji_mapping": {
"default": "⛷️ "
},
"cleanup_regex": [
{
"pattern": "STATUS:FREE",
"replacement": "STATUS:CONFIRMED"
}
],
}
]
}