mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-04 14:47:20 +00:00
21 lines
320 B
JavaScript
21 lines
320 B
JavaScript
|
let config = {
|
||
|
timeFormat: 12,
|
||
|
|
||
|
modules: [
|
||
|
{
|
||
|
module: "clock",
|
||
|
position: "middle_center",
|
||
|
config: {
|
||
|
showTime: true,
|
||
|
showDate: true,
|
||
|
displayType: "analog"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|