2020-08-01 12:20:16 +02:00
|
|
|
/* Magic Mirror Test config for display setters module using the helloworld module
|
|
|
|
*
|
2021-04-08 21:12:56 +02:00
|
|
|
* By Rejas
|
2020-08-01 12:20:16 +02:00
|
|
|
* MIT Licensed.
|
|
|
|
*/
|
2021-07-05 19:57:04 +02:00
|
|
|
let config = require("../default.js").configFactory({
|
2020-08-01 12:20:16 +02:00
|
|
|
modules: [
|
|
|
|
{
|
|
|
|
module: "helloworld",
|
|
|
|
position: "top_bar",
|
|
|
|
header: "test_header",
|
|
|
|
config: {
|
|
|
|
text: "Test Display Header"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
module: "helloworld",
|
|
|
|
position: "bottom_bar",
|
|
|
|
config: {
|
|
|
|
text: "Test Hide Header"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2021-07-05 19:45:58 +02:00
|
|
|
});
|
2021-04-08 21:12:56 +02:00
|
|
|
|
2021-07-05 18:08:56 +02:00
|
|
|
config.electronOptions.fullscreen = false;
|
|
|
|
config.electronOptions.width = 800;
|
|
|
|
config.electronOptions.height = 600;
|
2021-07-05 00:33:50 +02:00
|
|
|
|
2020-08-01 12:20:16 +02:00
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
|
|
if (typeof module !== "undefined") {
|
|
|
|
module.exports = config;
|
|
|
|
}
|