-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example
31 lines (23 loc) · 950 Bytes
/
config.example
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
// coffeeCalendar config
// Please note that any line not containing the name of a config option will
// be ignored by the parser, and can be used for comments. Any missing
// options we be announed upon the launch of coffeeCalendar
// Time in minutes between resyncing calendars
cal_refresh_time = 30
// List of urls to download ical files from
online_calendars = ["https://example.com/basic.ics", "https://test.xyz/some_data/test.ics"]
// The hex color used to display the events from each calendar in the same
// order
online_calendar_colors = ["0x023E8A", "0x276221"]
// Exclude any events if the name is listed here
event_name_blacklist = [""]
// Will log anything including and before the current value
// 0: only log errors
// 1: log ical event parsing
// 2: log calendar tile values
log_level = 0
// The bgcolor of the current day's tile
current_day_bgcolor = "0xADD8E6"
// Screen resolution
screen_width = 1920
screen_height = 1080