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

    Posts

    Recent Best Controversial
    • RE: Trying to get glowing pink text (new to coding)

      If it is photos of glowing text I can probably tell you that it doesn’t look like it in real life, there are many factors to get a certain look.

      But if you can show us an example of what color/glow you are looking than maybe we can help you figure out what to do!

      posted in Custom CSS
      brobergB
      broberg
    • RE: Step by step video tutorial - how to build frame less magic mirror !

      Good step to add is to use vinyl something on the backside of the mirror where the screen isn’t visible to remove the light coming through from the back, this will give less distraction and a better reflection so it looks more lika a mirror and less like a tinted glass panel.

      posted in Hardware
      brobergB
      broberg
    • RE: How to delete this line

      @Stoffbeuteluwe

      Youcan always try identifying if the element has an assigned name with the inspection/development windows.

      In this case the progressbar DIV has a classname (.widgetprogbarbkg)

      So to hide it,just set display to none

      .MMM-Fitbit2 .widgetprogbarbkg {
      	display: none;
      }
      
      posted in Custom CSS
      brobergB
      broberg
    • RE: Add fade from another point instead vertical

      you can play around with gradient backgrounds

      maybe this works (disclaimer : I haven’t tried it, just looked up text fade with css):

      .calendar .title:before {
          content:'';
          width:100%;
          height:100%;    
          position:absolute;
          left:0;
          top:0;
          background: linear-gradient(to right, transparent, #000 100%);
      }
      
      posted in Troubleshooting
      brobergB
      broberg
    • RE: Move a module with custom.css
      .mmm-suncalc {
      	position: absolute;
      	top: 100px;
      	left: 30px;
      }
      
      posted in Development
      brobergB
      broberg
    • RE: how can use 2 screen half to half

      @hakansoydogan I do believe the Raspberry pi4 has dual hdmi out, so you can run two monitors with that. Just let the MM2 stretch over both and you can place your modules however you want,

      posted in Hardware
      brobergB
      broberg
    • RE: Snow amount on weather forecast

      @hango nevertheless, easier to keep things in one thread. That questions is there so one don’t accidentally brings up a dead thread.

      posted in Feature Requests
      brobergB
      broberg
    • RE: Stuck on booting in portrait mode

      Reading this : https://forum.magicmirror.builders/topic/4684/electron-cpu-usage/245

      The last post says that the rotation doesn’t work with the drivers that are standard for Rpi 4.

      So I would suggest you keep it in landscape mode and rotate it with html/css instead.
      https://forum.magicmirror.builders/topic/9707/save-performance-when-rotating-screen-e-g-on-raspberry-pi

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Snow amount on weather forecast

      @hango Please answer in the question thread instead of creating a new one.

      posted in Feature Requests
      brobergB
      broberg
    • RE: keep getting error after modifying config.js file

      As samson said you are missing a comma after position

      But it also likes like you are using a text editor that converts single quotes to smart quotes.

      There is a difference between “clock” and "clock".
      Use either the Nano text editor if you are working directly on the Pi, if you are working from another pc/mac change your text editor to one that doesn’t convert quotes to smart quotes (like atom, notepad+, sublime or similar)

      And, when the value of an variable is a number or true/false you don’t use any quotes at all.

      So

      {
      module: "clock",
      position: "top_left",
      config: {
         timeFormat:12,  ------------ Pure number, no quotes
         showPeriod:false,   ------------ true or false, no quotes
         displayType:"both",
         analogSize:"400px"
         }
      },
      
      posted in Troubleshooting
      brobergB
      broberg
    • 1
    • 2
    • 3
    • 4
    • 5
    • 79
    • 80
    • 1 / 80