Read the statement by Michael Teeuw here.
Just installed magic mirror, now how do I change some things?
-
I am also very new to the raspberry pi. I see the links but i am having an issue accessing the correct folders to make the needed changes. It may be something simple but I am not seeing it at this time.
How do you get into the modules to make changes?
Thanks in advance.
-
@Crookedsoul The modules that come with the Magic Mirror software can be found in
~/MagicMirror/modules/default/[name of module]
(assuming you ran through the tutorial and didn’t change anything).Any of the modules that you download from the community (Weatherbug, Instagram, Tides, etc.) need to be installed in their own folder in the modules folder. The positioning of any module is handled by the config.js script located at
~/MagicMirror/config/config.js
. In addition to location information, you’ll also define most of the module’s configuration there as well. Think of it as configuration parameters that you’re passing into the module code, so you need to specify those parameters while you’re telling the Magic Mirror system to load up the module. -
@bhepler hello everyone.
I am in the process of making a magic mirror as well. I have downloaded and installed it on my Pi 3. But I am getting a permission denied message when I try to update the current weather with an app ID.
I have not tried any other modules to update or change at this time.
Any help will be greatly appreciated.
-
I’m not totally sure what your issue is, but it may be permissions when editing the config.js file.
try:
sudo nano ~/MagicMirror/config/config.js
make the change and save it with ctrl-o, ctrl–z
-
for guys without command line experience do following!
login to your raspi.
execute following command:
sudo apt-get install mcThat’s the midnight commander SW. Maybe u know the old DOS norton commander, mc is similar like notons commander.
U can start mc by typing mc and enter.
For root privileges type sudo mc.
Now u can brows with your keyboard or mouse between the folder, view or edit config or other files.Good luck
-
Thank you I forgot to use Nano
-
@lolobyte I will try this as well. Thanks guys just really new to this you’re the best.
-
This post is deleted! -
Hello guys. I have just one question. I have installed my magic mirror, and changed everything like hours, temp. etc. But i can’t add my own news from my country…I am from Croatia. Please help me :/
-
You need to google search for Croatian rss news feeds. Then get the url to the rss file of the news feed. Then add it to your config like this:
{ disabled: f, module: 'newsfeed', position: 'bottom_bar', config: { feeds: [ { title: "NASA", url: "https://www.nasa.gov/rss/dyn/solar_system.rss" }, { title: "Reuters Science News", url: "http://feeds.reuters.com/reuters/scienceNews" }, { title: "New York Times", url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" }, { title: "BBC World News", url: "http://feeds.bbci.co.uk/news/world/us_and_canada/rss.xml" },