mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 20:22:53 +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
395 B
JavaScript
23 lines
395 B
JavaScript
let config = {
|
|
modules: [
|
|
{
|
|
module: "compliments",
|
|
position: "lower_third",
|
|
animateIn: "foo",
|
|
animateOut: "bar",
|
|
config: {
|
|
compliments: {
|
|
anytime: ["AnimateCSS Testing..."]
|
|
},
|
|
updateInterval: 2000,
|
|
fadeSpeed: 1000
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|