2022-01-26 23:09:26 +01:00
|
|
|
/* MagicMirror² Test config custom calendar
|
2020-07-18 13:57:48 +02:00
|
|
|
*
|
2021-04-08 21:12:56 +02:00
|
|
|
* By Rejas
|
2020-07-18 13:57:48 +02:00
|
|
|
* MIT Licensed.
|
|
|
|
*/
|
2021-10-04 22:48:21 +02:00
|
|
|
let config = {
|
2020-07-18 13:57:48 +02:00
|
|
|
timeFormat: 12,
|
|
|
|
|
|
|
|
modules: [
|
|
|
|
{
|
|
|
|
module: "calendar",
|
|
|
|
position: "bottom_bar",
|
|
|
|
config: {
|
2023-01-16 21:33:05 +00:00
|
|
|
customEvents: [{ keyword: "CustomEvent", symbol: "dice" }],
|
2020-07-18 13:57:48 +02:00
|
|
|
calendars: [
|
|
|
|
{
|
2023-01-16 21:33:05 +00:00
|
|
|
maximumEntries: 5,
|
2020-11-24 14:57:51 +01:00
|
|
|
maximumNumberOfDays: 10000,
|
2020-07-18 21:10:36 +02:00
|
|
|
symbol: "birthday-cake",
|
2020-07-19 11:54:03 +02:00
|
|
|
fullDaySymbol: "calendar-day",
|
|
|
|
recurringSymbol: "undo",
|
2022-10-07 19:16:37 +02:00
|
|
|
url: "http://localhost:8080/tests/mocks/calendar_test_icons.ics"
|
2020-07-18 13:57:48 +02:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2021-10-04 22:48:21 +02:00
|
|
|
};
|
2021-07-05 00:33:50 +02:00
|
|
|
|
2020-07-18 13:57:48 +02:00
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
|
|
if (typeof module !== "undefined") {
|
|
|
|
module.exports = config;
|
|
|
|
}
|