mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-10 09:14:37 +00:00
This PR adds an option to tweak the layout of the weather module. When set, the humidity appears alongside the temperature: 
22 lines
370 B
JavaScript
22 lines
370 B
JavaScript
let config = {
|
|
units: "imperial",
|
|
|
|
modules: [
|
|
{
|
|
module: "weather",
|
|
position: "bottom_bar",
|
|
config: {
|
|
location: "Munich",
|
|
mockData: '"#####WEATHERDATA#####"',
|
|
decimalSymbol: ",",
|
|
showHumidity: "wind"
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|