Added support for multiple ical URLs
This commit is contained in:
parent
ec33bcff46
commit
8d3e683f4a
1 changed files with 7 additions and 3 deletions
|
@ -1,14 +1,18 @@
|
||||||
""" To quickly get started, fill in the following details:"""
|
""" To quickly get started, fill in the following details:"""
|
||||||
|
|
||||||
url = "https://calendar.google.com/calendar/ical/en.usa%23holiday%40group.v.calendar.google.com/public/basic.ics"
|
ical_urls = [
|
||||||
|
"https://calendar.google.com/calendar/ical/en.usa%23holiday%40group.v.calendar.google.com/public/basic.ics"
|
||||||
|
]
|
||||||
|
|
||||||
api_key = "api-key"
|
api_key = "api-key"
|
||||||
location = "Julich, DE"
|
location = "Julich, DE"
|
||||||
week_starts_on = "Monday"
|
week_starts_on = "Monday"
|
||||||
display_colours = "bwr"
|
display_colours = "bwr"
|
||||||
language = "en"
|
language = "en"
|
||||||
|
|
||||||
# url refers to the iCal url. It's the link you can copy when you click on
|
# ical_urls refers to the iCal url/s. It's the link you can copy when you click on
|
||||||
# 'export' Calendar in Google or Yahoo (and many more online) Calendars
|
# 'export' Calendar in Google or Yahoo (and many more online) Calendars. To add multiple iCal URLs, simply add
|
||||||
|
# a comma after the first url and add the next url in the next line: "URL2".
|
||||||
|
|
||||||
# api-key refers to your openweathermap api key. It can be generated for free
|
# api-key refers to your openweathermap api key. It can be generated for free
|
||||||
# when you sign up for an account and consists of a bunch of numbers and letters
|
# when you sign up for an account and consists of a bunch of numbers and letters
|
||||||
|
|
Loading…
Reference in a new issue