Skip to main content

Configuration Examples

Here are some common configuration patterns for MagicMirror² modules in config.js.

Basic Module Entry

{
module: "clock",
position: "top_left"
}

Module with Custom Settings

{
module: "weather",
position: "top_right",
config: {
location: "Berlin",
units: "metric"
}
}

Disabling a Module

{
module: "newsfeed",
position: "bottom_bar",
disabled: true
}

Changing Global Settings

let config = {
language: "en",
timeFormat: 24,
units: "metric",
modules: [ /* ... */ ]
}

Always save your changes and refresh the mirror to apply new settings.