mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
35 lines
449 B
JavaScript
35 lines
449 B
JavaScript
|
/* exported config */
|
||
|
|
||
|
/* Magic Mirror Config
|
||
|
*
|
||
|
* By Michael Teeuw http://michaelteeuw.nl
|
||
|
* MIT Licensed.
|
||
|
*/
|
||
|
|
||
|
var config = {
|
||
|
|
||
|
language: 'en',
|
||
|
|
||
|
modules: [
|
||
|
{
|
||
|
module: 'clock',
|
||
|
position: 'top_left'
|
||
|
},
|
||
|
{
|
||
|
module: 'compliments',
|
||
|
position: 'lower_third',
|
||
|
},
|
||
|
{
|
||
|
module: 'helloworld',
|
||
|
position: 'top_right'
|
||
|
},
|
||
|
{
|
||
|
module: 'helloworld',
|
||
|
position: 'bottom_bar',
|
||
|
config: {
|
||
|
text: 'Magic Mirror V2'
|
||
|
}
|
||
|
},
|
||
|
]
|
||
|
|
||
|
};
|