mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
33 lines
607 B
JavaScript
33 lines
607 B
JavaScript
/* Magic Mirror Test config custom calendar
|
|
*
|
|
* By Rejas
|
|
* MIT Licensed.
|
|
*/
|
|
let config = {
|
|
timeFormat: 12,
|
|
|
|
modules: [
|
|
{
|
|
module: "calendar",
|
|
position: "bottom_bar",
|
|
config: {
|
|
calendars: [
|
|
{
|
|
maximumEntries: 4,
|
|
maximumNumberOfDays: 10000,
|
|
symbol: "birthday-cake",
|
|
fullDaySymbol: "calendar-day",
|
|
recurringSymbol: "undo",
|
|
url: "http://localhost:8080/tests/configs/data/calendar_test_icons.ics"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|