mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-08-21 21:00:57 +00:00
Initial commit of V2.
This commit is contained in:
52
js/defaults.js
Normal file
52
js/defaults.js
Normal file
@@ -0,0 +1,52 @@
|
||||
/* exported defaults */
|
||||
|
||||
/* Magic Mirror
|
||||
* Config Defauls
|
||||
*
|
||||
* By Michael Teeuw http://michaelteeuw.nl
|
||||
* MIT Licensed.
|
||||
*/
|
||||
|
||||
var defaults = {
|
||||
|
||||
language: 'en',
|
||||
|
||||
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'
|
||||
},
|
||||
};
|
Reference in New Issue
Block a user