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