34 lines
665 B
JavaScript
Raw Normal View History

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