123456789101112131415161718192021222324 |
- /* Magic Mirror Test config for default clock module
- *
- * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
- * MIT Licensed.
- */
- let config = {
- language: "es",
- timeFormat: 12,
-
- modules: [
- {
- module: "clock",
- position: "middle_center",
- config: {
- showPeriodUpper: true
- }
- }
- ]
- };
-
- /*************** DO NOT EDIT THE LINE BELOW ***************/
- if (typeof module !== "undefined") {
- module.exports = config;
- }
|