MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. yawns
    3. Best
    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: Simple Music Player Module

      Are you talking about this one? https://github.com/masters1222/mm-hide-all

      open a terminal:

      cd ~/MagicMirror/modules
      git clone https://github.com/masters1222/mm-hide-all.git
      
      posted in Entertainment
      yawnsY
      yawns
    • RE: Magic Mirror minus the mirror

      @billp100
      Boolean values and numbers should be written without " or ’

      posted in General Discussion
      yawnsY
      yawns
    • RE: MM is eating all memory and crash!

      @juergschwarz

      Uninstall PiHole. If you search this forum for PiHole you will find two other threads with similar memory issues, both related to PiHole. After removing it the issue was gone.

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: MMM-MovieInfo

      @SilentJbob1680
      For some reason they changed the variable containing the path to the image from posterPath to poster_path

      You could change this

      const poster = document.createElement('img');
                  poster.classList.add('poster');
                  poster.src = `https://image.tmdb.org/t/p/w185_and_h278_bestv2/${movie.posterPath}`;
                  wrapper.appendChild(poster);
      

      to this

      const poster = document.createElement('img');
                  poster.classList.add('poster');
                  poster.src = `https://image.tmdb.org/t/p/w185_and_h278_bestv2/${movie.poster_path}`;
                  wrapper.appendChild(poster);
      

      for an immediate fix, or you could wait for strawberry to fix it on github and provide a new version. If you fix it on your own you will need to revert the changes before you can update once strawberry provided the update.

      posted in Entertainment
      yawnsY
      yawns
    • RE: Lock folders?

      One problem I see there is this:
      If you lock down folder access rights, your scripts might fail too and it will be a hassle to get this right. I second “FlatPepsi” … make a backup and let them play

      posted in General Discussion
      yawnsY
      yawns
    • RE: first attempt .. gone wrong :)

      Did you run the installation with sudo? It’s trying to install in /root/MagicMirror and that’s wrong

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: MMM-MovieInfo

      @SilentJbob1680
      So, please open a terminal on your raspberry, change into the ~/MagicMirror/modules/MMM-MovieInfo folder and do git pull to retrieve the update

      posted in Entertainment
      yawnsY
      yawns
    • RE: 7" touchscreen as a alarm clock?

      –> https://forum.magicmirror.builders/topic/695/my-mini-magic-alarm-clock

      posted in General Discussion
      yawnsY
      yawns
    • RE: Need help with internet monitor-module

      Both schlachtkreuzer6 and doubleT are totally right. I tried to change the post with your config, but akismet.com flags this as spam.
      Besides wrong quotes the position of your added module was incorrect.
      Please try this config:

      /* 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",
      port: 8080,
      ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
      
      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/help/city_list.txt
      			appid: "YOUR_OPENWEATHER_API_KEY"
      		}
      	},
      	{
      		module: "weatherforecast",
      		position: "top_right",
      		header: "Weather Forecast",
      		config: {
      			location: "New York",
      			locationID: "5128581",  //ID from http://www.openweathermap.org/help/city_list.txt
      			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
      		}
      	},
      	{
      		module: "internet-monitor",
      		position: "top_center",
      		header: "Internet Monitor",
      		config: {
      			type: "",
      			maxTime: 20000,
      			updateInterval: 0,
      			verbose: false,
      			displayStrength: true,
      			displaySpeed: true,
      			strengthIconSize: 80,
      			maxGaugeScale: 100,
      			wifiSymbol: {
      				size: 50,
      				fullColor: "#3afc25",
      				almostColor: "#ffff0c",
      				halfColor: "#ff8c00",
      				noneColor: "#ff1111"
      			},
      		},
      	},
      ]
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Just testing. Please ignore.

      Okay, ignoring it :P

      posted in General Discussion
      yawnsY
      yawns
    • 1 / 1