Files
wehub-resource-sync dbe3ade0dc
Enforce Pull-Request Rules / check (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:19:24 +08:00

28 lines
525 B
JavaScript

let config = {
address: "0.0.0.0",
ipWhitelist: [],
modules: [
{
module: "weather",
position: "bottom_bar",
config: {
lat: 48.14,
lon: 11.58,
weatherProvider: "openweathermap",
apiKey: "test-api-key",
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;
}