mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-26 03:52:28 +00:00
29 lines
512 B
JavaScript
29 lines
512 B
JavaScript
|
|
||
|
let config = {
|
||
|
address: "0.0.0.0",
|
||
|
ipWhitelist: [],
|
||
|
timeFormat: 12,
|
||
|
|
||
|
modules: [
|
||
|
{
|
||
|
module: "calendar",
|
||
|
position: "bottom_bar",
|
||
|
config: {
|
||
|
maximumEntries: 1,
|
||
|
calendars: [
|
||
|
{
|
||
|
fetchInterval: 7 * 24 * 60 * 60 * 1000,
|
||
|
symbol: ["calendar-check", "google"],
|
||
|
url: "https://ics.calendarlabs.com/76/mm3137/US_Holidays.ics"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|