2016-03-24 17:19:32 +01:00
|
|
|
/* exported defaults */
|
|
|
|
|
|
|
|
/* Magic Mirror
|
|
|
|
* Config Defauls
|
|
|
|
*
|
|
|
|
* By Michael Teeuw http://michaelteeuw.nl
|
|
|
|
* MIT Licensed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var defaults = {
|
2016-04-03 20:27:32 +02:00
|
|
|
port: 8080,
|
2016-03-24 17:19:32 +01:00
|
|
|
|
|
|
|
language: 'en',
|
2016-03-29 13:28:15 +02:00
|
|
|
timeFormat: 24,
|
2016-03-24 17:19:32 +01:00
|
|
|
|
|
|
|
modules: [
|
|
|
|
{
|
|
|
|
module: 'helloworld',
|
|
|
|
position: 'upper_third',
|
|
|
|
config: {
|
|
|
|
text: 'Magic Mirror V2',
|
|
|
|
classes: 'large thin'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
module: 'helloworld',
|
|
|
|
position: 'middle_center',
|
|
|
|
config: {
|
|
|
|
text: 'Please create a config file.'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
module: 'helloworld',
|
|
|
|
position: 'middle_center',
|
|
|
|
config: {
|
|
|
|
text: 'See README for more information.',
|
|
|
|
classes: 'small dimmed'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
module: 'helloworld',
|
|
|
|
position: 'bottom_bar',
|
|
|
|
config: {
|
|
|
|
text: 'www.michaelteeuw.nl',
|
|
|
|
classes: 'xsmall dimmed'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
],
|
|
|
|
|
|
|
|
paths: {
|
|
|
|
modules: 'modules',
|
|
|
|
vendor: 'vendor'
|
|
|
|
},
|
2016-03-30 12:20:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
2016-04-03 19:52:13 +02:00
|
|
|
if (typeof module !== 'undefined') {module.exports = defaults;}
|