Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* 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", // Address to listen on, can be:
- // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
- // - another specific IPv4/6 to listen on a specific interface
- // - "", "0.0.0.0", "::" to listen on any interface
- // Default, when address config is left out, is "localhost"
- port: 8080,
- 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: 12,
- units: "imperial",
- modules: [
- {
- module: "alert",
- },
- {
- module: "updatenotification",
- position: "top_bar"
- },
- {
- module: "clock",
- position: "top_left"
- },
- {
- module: "MMM-NowPlayingOnSpotify",
- position: "top_right",
- config: {
- clientID: "9ca2c3cbd3b44edf99aaf774f62f84a6",
- clientSecrent: "24d6c1af133142d3b100498c996e3754",
- accessToken: "BQDgEwzHQlgxYdLsHSSJE_9TCB4lFCmPBIzEQJZ6FcFr9RC9wrxFcDSBMRZ7uOwVaXDfpPDGOA2UiaH_fN6hiubHPRNqLLAz--q41oFuCD85dZoRp1TA0fhFWFPRnfxL9Z4CbiIVhGDRBw6allIc_26RWoE3",
- refreshToken: "AQAgBjxuvzpaYo_sCQgSKD5BHSLq6zxGSLuvRr7p8Q3jSxcDQDk5UVeQfWibL3fj6aHO34uaYNbTYOaOGU2gtIf_f6jfoEnvn5yZfAbmNJT8cLxecADkCMd8DfrSCk3rIQ_teA"
- }
- },
- {
- module: "calendar",
- header: "US Holidays",
- position: "top_left",
- config: {
- calendars: [
- {
- symbol: "calendar-check-o ",
- url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
- }
- ]
- }
- },
- {
- module: "compliments",
- position: "lower_third"
- },
- {
- module: "currentweather",
- position: "top_right",
- config: {
- location: "Ontario, OH",
- locationID: "5379439", //ID from http://bulk.openweathermap.org/sample/; unzip the gz file and find your city
- appid: "d997016f18704fb7b63f7a99d5ff6019"
- }
- },
- {
- module: "newsfeed",
- position: "bottom_bar",
- config: {
- feeds: [
- {
- title: "Recent Tech News",
- url: "https://www.techmeme.com/feed.xml"
- }
- ],
- showSourceTitle: true,
- showPublishDate: true
- }
- },
- ]
- };
- /*************** DO NOT EDIT THE LINE BELOW ***************/
- if (typeof module !== "undefined") {module.exports = config;}
Add Comment
Please, Sign In to add comment