MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. yawns
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 0
    • Followers 7
    • Topics 10
    • Posts 967
    • Groups 2

    Posts

    Recent Best Controversial
    • RE: npm can't find my package.json file

      @dusty_taylor07 you need to cd MagicMirror first

      posted in Troubleshooting
      yawnsY
      yawns
    • 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

      posted in Hardware
      yawnsY
      yawns
    • RE: MMM-Jnews

      @ob018 said in 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 
      	}
      },
      
      posted in Education
      yawnsY
      yawns
    • RE: Solved - Several module instances with one node_helper

      Thanks for taking your time providing the solution you found. Very much appreciated

      posted in Development
      yawnsY
      yawns
    • 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

      posted in Utilities
      yawnsY
      yawns
    • 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", 
      		}
      	
      }
      
      posted in Development
      yawnsY
      yawns
    • 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 )

      posted in Troubleshooting
      yawnsY
      yawns
    • 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;
      	}
      });
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: static text to MM2

      Did you change all files in modules/default? Or did you create a folder MM-static-text in modules ?

      posted in Troubleshooting
      yawnsY
      yawns
    • 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

      posted in Troubleshooting
      yawnsY
      yawns
    • 1
    • 2
    • 7
    • 8
    • 9
    • 10
    • 11
    • 96
    • 97
    • 9 / 97