You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: configuration/introduction.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,11 +21,11 @@
21
21
};
22
22
```
23
23
24
-
See [module configuration](/modules/configuration.md) for more information
25
-
and examples.
24
+
See [module configuration](/modules/configuration) for more information and
25
+
examples.
26
26
27
27
4. Run your magic mirror. Refer back to
28
-
[installation](/getting-started/installation.md) if you're not sure how to do
28
+
[installation](/getting-started/installation) if you're not sure how to do
29
29
so.
30
30
31
31
## More useful configuration of your MagicMirror
@@ -56,13 +56,13 @@ The following properties can be configured, place them above the modules item:
56
56
|`language`| The language of the interface. (Note: Not all elements will be localized.) Possible values are `en`, `nl`, `ru`, `fr`, etc. for the full list see: [List of ISO 639-1 codes](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)|`en`|
57
57
|`timeFormat`| The form of time notation that will be used. Possible values are `12` or `24`. | 24 |
58
58
|`units`| The units that will be used in the default weather modules. Possible values are `metric` or `imperial`. |`metric`|
59
-
|`electronOptions`| An optional array of Electron (browser) options. This allows configuration of e.g. the browser screen size and position (example: `electronOptions: { fullscreen: false, width: 800, height: 600 }`). Kiosk mode can be enabled by setting `kiosk: true`, `autoHideMenuBar: false` and `fullscreen: false`. More options can be found [here](https://github.com/electron/electron/blob/master/docs/api/browser-window.md). This will most likely be used in advanced installations, below. |[]|
59
+
|`electronOptions`| An optional array of Electron (browser) options. This allows configuration of e.g. the browser screen size and position (example: `electronOptions: { fullscreen: false, width: 800, height: 600 }`). Kiosk mode can be enabled by setting `kiosk: true`, `autoHideMenuBar: false` and `fullscreen: false`. More options can be found [here](https://github.com/electron/electron/blob/master/docs/api/browser-window). This will most likely be used in advanced installations, below.|[]|
60
60
|`electronSwitches`| An optional array of Electron switches. This allows configuration of electron app itself. <br> This properties will not affect the `serveronly` mode. Usually normal `MM` users don't need this property, but if you are a hard-core hacker, you might need this to handle Electron itself over `MagicMirror` provides. More options can be found [here](https://www.electronjs.org/docs/latest/api/command-line-switches) (Not all available switches are described there.)<br>example:`electronSwitches:["enable-transparent-visuals", "disable-gpu"];`|[]|
61
61
|`customCss`| The path of the `custom.css` stylesheet. The default is `css/custom.css`. |`css/custom.css`|
62
-
|`watchTargets`| An optional array of file paths to monitor when using `node --run server:watch`. When any of these files change, the server automatically restarts and connected browsers reload. Particularly useful when frequently modifying `config.js`, `custom.css`, or module files during development or setup. Example: `watchTargets: ["config/config.js", "css/custom.css", "modules/MMM-MyModule/MMM-MyModule.js"]`. See [Development Mode](/core-development/debugging.md#watch-mode-with-auto-reload) for more details. |`undefined`|
62
+
|`watchTargets`| An optional array of file paths to monitor when using `node --run server:watch`. When any of these files change, the server automatically restarts and connected browsers reload. Particularly useful when frequently modifying `config.js`, `custom.css`, or module files during development or setup. Example: `watchTargets: ["config/config.js", "css/custom.css", "modules/MMM-MyModule/MMM-MyModule.js"]`. See [Development Mode](/core-development/debugging#watch-mode-with-auto-reload) for more details.|`undefined`|
63
63
64
64
After the above options, you will then add modules. See
65
-
[module configuration](/modules/configuration.md) for more information.
65
+
[module configuration](/modules/configuration) for more information.
66
66
67
67
### Advanced configuration and frequently asked how to configure examples
| in | String | Animate name when module will be shown (after dom update), it will use an `animateIn` type name (see [Animation Guide](/modules/animate.md#animatein)) |
428
-
| out | String | Animate name when module will be hidden (before dom update), it will use an `animateOut` type name (see [Animation Guide](/modules/animate.md#animateout)) |
| in | String | Animate name when module will be shown (after dom update), it will use an `animateIn` type name (see [Animation Guide](/modules/animate#animatein)) |
428
+
| out | String | Animate name when module will be hidden (before dom update), it will use an `animateOut` type name (see [Animation Guide](/modules/animate#animateout)) |
429
429
430
430
**Example:**
431
431
@@ -499,7 +499,7 @@ Possible configurable options:
499
499
500
500
-`animate` - String - (_Introduced in version: 2.25.0._) Hide the module with a
501
501
special animate. It will use an `animateOut` type name. All animations name
502
-
are available in [Animation Guide](/modules/animate.md#animateout)
502
+
are available in [Animation Guide](/modules/animate#animateout)
503
503
504
504
::: warning Notes:
505
505
@@ -542,7 +542,7 @@ Possible configurable options:
542
542
object, if specified in the options (_Introduced in version: 2.15.0_).
543
543
-`animate` - String - (_Introduced in version: 2.25.0._) Show the module with a
544
544
special animation. It will use an `animateIn` type name. All animations name
545
-
are available in [Animation Guide](/modules/animate.md#animatein)
545
+
are available in [Animation Guide](/modules/animate#animatein)
0 commit comments