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