Created
July 16, 2017 04:03
-
-
Save shbatm/ccd5de1db3c6f8cc22843d784e2c77b7 to your computer and use it in GitHub Desktop.
MagicMirror Sample Config.js for Remote Sockets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Magic Mirror Config Sample | |
* | |
* By Michael Teeuw http://michaelteeuw.nl | |
* MIT Licensed. | |
* | |
* For more information how you can configurate this file | |
* See https://github.com/MichMich/MagicMirror#configuration | |
* | |
*/ | |
var config = { | |
address: "localhost", | |
port: 8081, | |
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses | |
// or add a specific IPv4 of 192.168.1.5 : | |
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"], | |
// or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format : | |
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"], | |
language: "en", | |
timeFormat: 24, | |
units: "metric", | |
modules: [ | |
{ | |
module: "alert", | |
}, | |
{ | |
module: "updatenotification", | |
position: "top_bar" | |
}, | |
{ | |
module: "clock", | |
position: "top_left" | |
}, | |
{ | |
module: "calendar", | |
header: "US Holidays", | |
position: "top_left", | |
remote: "http://mirror:8080", | |
config: { | |
calendars: [ | |
{ | |
symbol: "calendar-check-o ", | |
url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics" | |
} | |
] | |
} | |
}, | |
{ | |
module: "compliments", | |
position: "lower_third" | |
}, | |
{ | |
module: "newsfeed", | |
position: "bottom_bar", | |
remote: "http://mirror:8080", | |
config: { | |
feeds: [ | |
{ | |
title: "New York Times", | |
url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" | |
} | |
], | |
showSourceTitle: true, | |
showPublishDate: true | |
} | |
}, | |
] | |
}; | |
/*************** DO NOT EDIT THE LINE BELOW ***************/ | |
if (typeof module !== "undefined") {module.exports = config;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment