mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 20:22:53 +00:00
23 lines
441 B
JavaScript
23 lines
441 B
JavaScript
|
let config = {
|
||
|
modules: [
|
||
|
{
|
||
|
module: "compliments",
|
||
|
position: "middle_center",
|
||
|
config: {
|
||
|
specialDayUnique: true,
|
||
|
compliments: {
|
||
|
anytime: [
|
||
|
"Typical message 1",
|
||
|
"Typical message 2",
|
||
|
"Typical message 3"
|
||
|
],
|
||
|
"....-..-..": ["Special day message"]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") { module.exports = config; }
|