MagicMirror/tests/configs/modules/clock/clock_showWeek.js
2021-07-05 22:07:33 +02:00

24 lines
414 B
JavaScript

/* Magic Mirror Test config for default clock module
*
* By Johan Hammar
* MIT Licensed.
*/
const config = require("../../default.js").configFactory({
timeFormat: 12,
modules: [
{
module: "clock",
position: "middle_center",
config: {
showWeek: true
}
}
]
});
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}