Initial commit of V2.

This commit is contained in:
Michael Teeuw
2016-03-24 17:19:32 +01:00
parent c428d6a985
commit 4266c0b279
235 changed files with 31730 additions and 246 deletions

35
config/config.js Normal file
View File

@@ -0,0 +1,35 @@
/* 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'
}
},
]
};