mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-01 21:43:26 +00:00
see #3358 used command: `find ./ -type f -exec perl -i -0pe 's/\/\*\s*magicmirror.*?\*\/\s*//si' {} \;` This is a first draft, I think we should preserve some of the comments.
32 lines
662 B
JavaScript
32 lines
662 B
JavaScript
let config = {
|
|
timeFormat: 12,
|
|
|
|
modules: [
|
|
{
|
|
module: "calendar",
|
|
position: "bottom_bar",
|
|
config: {
|
|
maximumEntries: 30,
|
|
hideDuplicates: false,
|
|
calendars: [
|
|
{
|
|
maximumEntries: 15,
|
|
maximumNumberOfDays: 10000,
|
|
url: "http://localhost:8080/tests/mocks/calendar_test.ics" // contains 11 events
|
|
},
|
|
{
|
|
maximumEntries: 15,
|
|
maximumNumberOfDays: 10000,
|
|
url: "http://localhost:8080/tests/mocks/calendar_test_clone.ics" // clone of upper calendar
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|