25 lines
421 B
JavaScript
25 lines
421 B
JavaScript
let config = {
|
|
address: "0.0.0.0",
|
|
ipWhitelist: [],
|
|
timeFormat: 12,
|
|
|
|
modules: [
|
|
{
|
|
module: "weather",
|
|
position: "bottom_bar",
|
|
config: {
|
|
lat: 48.14,
|
|
lon: 11.58,
|
|
showHumidity: "feelslike",
|
|
weatherProvider: "openweathermap",
|
|
apiKey: "test-api-key"
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|