mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-29 12:39:45 +00:00
19 lines
371 B
JavaScript
19 lines
371 B
JavaScript
|
let config = {
|
||
|
modules: [
|
||
|
{
|
||
|
module: "compliments",
|
||
|
position: "middle_center",
|
||
|
config: {
|
||
|
specialDayUnique: true,
|
||
|
compliments: {
|
||
|
anytime: ["just a test"],
|
||
|
"00-10 16-19 * * fri": ["just pub time"]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") { module.exports = config; }
|