33 lines
675 B
JavaScript
Raw Normal View History

/* Magic Mirror Test config custom calendar
*
2021-04-08 21:12:56 +02:00
* By Rejas
* MIT Licensed.
*/
2021-07-13 23:39:55 +02:00
let config = require(process.cwd() + "/tests/configs/default.js").configFactory({
timeFormat: 12,
modules: [
{
module: "calendar",
position: "bottom_bar",
config: {
calendars: [
{
maximumEntries: 4,
maximumNumberOfDays: 10000,
symbol: "birthday-cake",
2020-07-19 11:54:03 +02:00
fullDaySymbol: "calendar-day",
recurringSymbol: "undo",
url: "http://localhost:8080/tests/configs/data/calendar_test_icons.ics"
}
]
}
}
]
2021-07-05 19:45:58 +02:00
});
2021-07-05 00:33:50 +02:00
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}