<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How do I edit config, I see every new module starts whit going to config.js]]></title><description><![CDATA[<p dir="auto">I dont know what to do now … :(</p>
<ol>
<li>Duplicate config/config.js.sample to config/config.js.</li>
<li>Modify your required settings.</li>
</ol>
<p dir="auto">The following properties can be configured:</p>
]]></description><link>https://forum.magicmirror.builders/topic/1816/how-do-i-edit-config-i-see-every-new-module-starts-whit-going-to-config-js</link><generator>RSS for Node</generator><lastBuildDate>Mon, 17 Aug 2026 16:48:01 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/1816.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 20 Feb 2017 15:19:25 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How do I edit config, I see every new module starts whit going to config.js on Mon, 20 Feb 2017 17:00:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kmh0" aria-label="Profile: KMH0">@<bdi>KMH0</bdi></a><br />
Actually it is always the same thing.</p>
<ol>
<li>Find yourself a module you like, for example: <a href="https://github.com/fewieden/MMM-ip" target="_blank" rel="noopener noreferrer nofollow ugc">MMM-IP</a></li>
<li>Top right on the github repository you see a green button saying “clone or download”. If you click it you get the url for this repository. In this case it is <a href="https://github.com/fewieden/MMM-ip.git" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/fewieden/MMM-ip.git</a></li>
<li>Open a terminal on your pi (either directly or using SSH) and type <code>cd ~/MagicMirror/modules</code></li>
<li>Clone the module to your pi by typing <code>git clone https://github.com/fewieden/MMM-ip.git</code>. This downloads the repository and extracts it into a new folder.</li>
<li>Enter the new directory <code>cd MMM-ip</code> and run <code>npm install</code> (in this case it is not required … the readme should tell you to do so)</li>
<li>Edit your config file and add the code for the new module as the readme instructs to.</li>
<li>Restart your magic mirror process and check what happened.</li>
</ol>
<p dir="auto">Sidenote: If you run into trouble with your config file, you can always paste the content into <a href="http://jshint.com/" target="_blank" rel="noopener noreferrer nofollow ugc">http://jshint.com/</a>. If everything is fine it will only show this which is fine:</p>
<pre><code>One undefined variable
64	module
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/15141</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/15141</guid><dc:creator><![CDATA[yawns]]></dc:creator><pubDate>Mon, 20 Feb 2017 17:00:27 GMT</pubDate></item><item><title><![CDATA[Reply to How do I edit config, I see every new module starts whit going to config.js on Mon, 20 Feb 2017 16:31:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yawns" aria-label="Profile: yawns">@<bdi>yawns</bdi></a> Thank you so much! But how do I add modules ? Do I just copy paste in to the config?</p>
]]></description><link>https://forum.magicmirror.builders/post/15134</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/15134</guid><dc:creator><![CDATA[KMH0]]></dc:creator><pubDate>Mon, 20 Feb 2017 16:31:18 GMT</pubDate></item><item><title><![CDATA[Reply to How do I edit config, I see every new module starts whit going to config.js on Mon, 20 Feb 2017 16:27:38 GMT]]></title><description><![CDATA[<p dir="auto">You missed one ] which I added on 4th line from bottom</p>
<pre><code>var config = {
        port: 8080,
        ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],

        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',
                        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: 'New York',
                                locationID: '',  //ID from http://www.openweathermap.org
                                appid: 'YOUR_OPENWEATHER_API_KEY'
                        }
                },
                {
                        module: 'newsfeed',
                        position: 'bottom_bar',
                        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;}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/15132</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/15132</guid><dc:creator><![CDATA[yawns]]></dc:creator><pubDate>Mon, 20 Feb 2017 16:27:38 GMT</pubDate></item><item><title><![CDATA[Reply to How do I edit config, I see every new module starts whit going to config.js on Mon, 20 Feb 2017 16:25:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/broberg" aria-label="Profile: broberg">@<bdi>broberg</bdi></a></p>
<pre><code>var config = {
        port: 8080,
        ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"],

        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',
                        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: 'New York',
                                locationID: '',  //ID from http://www.openweathermap.org
                                appid: 'YOUR_OPENWEATHER_API_KEY'
                        }},
                {
                        module: 'newsfeed',
                        position: 'bottom_bar',
                        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;}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/15130</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/15130</guid><dc:creator><![CDATA[KMH0]]></dc:creator><pubDate>Mon, 20 Feb 2017 16:25:25 GMT</pubDate></item><item><title><![CDATA[Reply to How do I edit config, I see every new module starts whit going to config.js on Mon, 20 Feb 2017 16:14:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kmh0" aria-label="Profile: KMH0">@<bdi>KMH0</bdi></a> post your config, this will help to indentify the issues</p>
]]></description><link>https://forum.magicmirror.builders/post/15126</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/15126</guid><dc:creator><![CDATA[broberg]]></dc:creator><pubDate>Mon, 20 Feb 2017 16:14:01 GMT</pubDate></item><item><title><![CDATA[Reply to How do I edit config, I see every new module starts whit going to config.js on Mon, 20 Feb 2017 16:12:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/strawberry-3.141" aria-label="Profile: strawberry-3.141">@<bdi>strawberry-3.141</bdi></a> So I was playing around, thinking I knew everything now and my mirror is blank… I was trying to add a module in the config, and now I messed up. Any suggestions?</p>
]]></description><link>https://forum.magicmirror.builders/post/15125</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/15125</guid><dc:creator><![CDATA[KMH0]]></dc:creator><pubDate>Mon, 20 Feb 2017 16:12:41 GMT</pubDate></item><item><title><![CDATA[Reply to How do I edit config, I see every new module starts whit going to config.js on Mon, 20 Feb 2017 15:35:19 GMT]]></title><description><![CDATA[<p dir="auto">Thanks! It worked :D Made my day</p>
]]></description><link>https://forum.magicmirror.builders/post/15119</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/15119</guid><dc:creator><![CDATA[KMH0]]></dc:creator><pubDate>Mon, 20 Feb 2017 15:35:19 GMT</pubDate></item><item><title><![CDATA[Reply to How do I edit config, I see every new module starts whit going to config.js on Mon, 20 Feb 2017 15:24:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kmh0" aria-label="Profile: KMH0">@<bdi>KMH0</bdi></a></p>
<ol>
<li>open a terminal type in <code>cd ~/MagicMirror/config</code> to <code>c</code>hange <code>d</code>irectory</li>
<li><code>nano config.js</code></li>
<li>After you made your changes press <code>ctrl+x</code> and confirm</li>
<li>change directory to parent directory <code>cd ..</code></li>
<li>start the mirror <code>npm start</code></li>
</ol>
]]></description><link>https://forum.magicmirror.builders/post/15114</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/15114</guid><dc:creator><![CDATA[strawberry 3.141]]></dc:creator><pubDate>Mon, 20 Feb 2017 15:24:52 GMT</pubDate></item></channel></rss>