mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-07 08:00:57 +00:00
This PR adds an option to tweak the layout of the weather module. When set, the humidity appears alongside the temperature: 
24 lines
452 B
JavaScript
24 lines
452 B
JavaScript
let config = {
|
|
modules: [
|
|
{
|
|
module: "weather",
|
|
position: "bottom_bar",
|
|
config: {
|
|
location: "Munich",
|
|
mockData: '"#####WEATHERDATA#####"',
|
|
windUnits: "beaufort",
|
|
showWindDirectionAsArrow: true,
|
|
showSun: false,
|
|
showHumidity: "wind",
|
|
roundTemp: true,
|
|
degreeLabel: true
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|