E-Paper-Calendar/Calendar/settings.py.sample

37 lines
955 B
Text
Raw Normal View History

""" To quickly get started, fill in the following details:"""
ical_urls = [
"https://calendar.google.com/calendar/ical/en.usa%23holiday%40group.v.calendar.google.com/public/basic.ics"
]
highlighted_ical_urls = [
]
rss_feeds = [
"http://feeds.bbci.co.uk/news/world/rss.xml#"
]
2019-02-06 00:25:55 +01:00
api_key = ""
owm_paid_subscription = False
2019-02-06 00:25:55 +01:00
location = "Julich, DE"
week_starts_on = "Monday"
display_colours = "bwr"
2019-02-10 23:32:18 +01:00
language = "en"
2019-02-06 00:25:55 +01:00
units = "metric"
hours = "24"
update_interval = 60
2019-03-06 22:15:08 +01:00
"""DESIGN"""
font_boldness = "semibold" # extralight, light, regular, semibold, bold, extrabold
2019-03-24 21:30:44 +01:00
choosen_design = "month-overview" # month-overview, day-list, day-view, agenda-list
general_settings = { # General settings that designs may use
2019-03-06 22:15:08 +01:00
"info-area" : "rss", # empty, events, rss
"highlight-event-days" : True
2019-03-06 22:15:08 +01:00
}
"""DEBUG"""
render_to_display = True
render_to_file = False # Will be called "design_exported.png" in Calendar-directory
calibrate_hours = [0, 12, 18]