mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-04 14:47:20 +00:00
see #3358 used command: `find ./ -type f -exec perl -i -0pe 's/\/\*\s*magicmirror.*?\*\/\s*//si' {} \;` This is a first draft, I think we should preserve some of the comments.
23 lines
464 B
JavaScript
23 lines
464 B
JavaScript
let config = {
|
|
timeFormat: 12,
|
|
|
|
modules: [
|
|
{
|
|
module: "compliments",
|
|
position: "middle_center",
|
|
config: {
|
|
compliments: {
|
|
morning: ["Hi", "Good Morning", "Morning test"],
|
|
afternoon: ["Hello", "Good Afternoon", "Afternoon test"],
|
|
evening: ["Hello There", "Good Evening", "Evening test"]
|
|
}
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|