@dusty_taylor07 you need to cd MagicMirror
first
Read the statement by Michael Teeuw here.

Posts
-
RE: npm can't find my package.json file
-
RE: Picture background
Hi will. Welcome to this forum. Top right you see a magnifying glass. Click on it to open the search box. Within 10 seconds searching this forum for “background” you find this:
https://forum.magicmirror.builders/topic/6744/adding-background-image ;)That should answer your question
-
RE: MMM-Jnews
I was wondering if you could add a way to “force” a specific language ?
( my mirror language is English and i would love to read the French news )mh, you could try to use this:
{ module: 'MMM-Jnews', config: { lang: "fr", apiKey: "YOUR API KEY", image : true, rotateInterval: 25 * 1000 } },
-
RE: Solved - Several module instances with one node_helper
Thanks for taking your time providing the solution you found. Very much appreciated
-
RE: MMM-Nest-Thermostat: Display Nest Thermostats in Magic Mirror
There is a
:
too much in the module line, and there is a dot before the token value -
RE: MMM-Scrobbler CSS
@solelo said in MMM-Scrobbler CSS:
@spwood100 how did you get the “Spotify Music” header at the top of it?
Please try this:
{ module: 'MMM-Scrobbler', header: 'Spotify Music', // <<<<<< position: 'top_right', config: { username: 'Last.fm username', apikey: 'Last.fm api key', //time interval to search for new song (every 15 seconds) updateInterval: 15 * 1000, //how often should we try to retrieve a song if not listening delayCount: 5, //time interval to search for new song if the 5 times not listening is received. //set this to the same number as updateInterval to ignore this option delayInterval: 120*1000, animationSpeed: 1000, showAlbumArt: true, showMetaData: true, //Determines the position of the meta text. Possible values: top, bottom, left, right alignment: "bottom", } }
-
RE: Black screen after MM v2.4.0 update.
According to another similar thread please set this instead:
dtoverlay=vc4-fkms-v3d
(with an additional f ) -
RE: static text to MM2
Ah, I see. The module is missing the code to actually display/do something, either directly or via template system.
/* global Module */ /* Magic Mirror * Module: MMM-static-text * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. */ Module.register("MMM-static-text",{ // Default module config. defaults: { text: "Wetterinformationen!" }, // Override dom generator. getDom: function() { var wrapper = document.createElement("div"); wrapper.innerHTML = this.config.text; return wrapper; } });
-
RE: static text to MM2
Did you change all files in
modules/default
? Or did you create a folderMM-static-text
inmodules
? -
RE: [NEWBIE] Change In Clock Module Is giving error in config file
There is a comma missing after your position line
position: "top_left",
However you could also just set the timezone of your raspberry and ignore this timezone thing in clock module