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

48 lines
1.4 KiB
Text
Raw Normal View History

""" To quickly get started, fill in the following details:"""
ical_urls = [
]
highlighted_ical_urls = [
]
rss_feeds = [
]
2019-05-18 09:35:49 +02:00
crypto_coins = [
2019-05-18 09:31:09 +02:00
]
2019-02-06 00:25:55 +01:00
api_key = ""
owm_paid_subscription = False
2019-07-12 13:46:50 +02:00
location = "Berlin, DE"
2019-02-06 00:25:55 +01:00
week_starts_on = "Monday"
display_colours = "bwr"
2019-02-10 23:32:18 +01:00
language = "en"
datetime_encoding = "UTF-8" # UTF-8
units = "metric" # aviation (celcius,degrees/knots), metric (celcius,kmh), imperial(f,mph)
2019-02-06 00:25:55 +01:00
hours = "24"
update_interval = 60
max_loop_count = 0 # From 0 to 86400 representing the maximum number the loop is executed, with 0 being unlimited
run_on_hour = True # If True, updates calendar every full hour, ignoring differing update_interval
2019-03-06 22:15:08 +01:00
"""DESIGN"""
font_size = 14 # does not affect every text
font_boldness = "semibold" # extralight, light, regular, semibold, bold, extrabold
2019-05-18 09:31:09 +02:00
line_thickness = 1 # 1-3 Thickness advised
2019-07-12 13:46:50 +02:00
choosen_design = "month-overview" # month-overview, day-list, day-view, agenda-list, month-view, image-frame
general_settings = { # General settings that designs may use
2019-05-18 09:35:49 +02:00
"info-area" : "rss", # empty, events, rss, crypto
"highlight-event-days" : True,
2019-07-12 13:46:50 +02:00
"weather-info" : True,
"image-folder" : "",
"overlay-image" : "" # Size must be 384x640px with default display
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]
2019-05-15 06:15:38 +02:00
print_technical_data = False