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
    • RE: Eeepc instead of raspberry

      @pnobrega as long as the module isn’t relying on rpi hardware (like the gpio) you are good to go.
      You can run MM2 on a regular windows machine to if you like. (There is a guide somewhere here on that)

      posted in Hardware
      brobergB
      broberg
    • RE: Currentweather,doesn't appear.

      @samson_82

      I tested this with my mirror (2.9.0)

      {
      	module: "currentweather",
      	position: "bottom_right",
      	config: {
      	location: "Alzey,Germany",
      	locationID: "2956710",
      	appid: "my api code",
      			}
      },
      

      And had no issues, Double check your API code and the Mirrors internet connection.

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Currentweather,doesn't appear.

      The only thing that I see wrong is that the position doesn’t exist.

      These are the positions that you can choose from :

      top_bar, top_left, top_center, top_right, upper_third, middle_center, lower_third, bottom_left, bottom_center, bottom_right, bottom_bar, fullscreen_above, and fullscreen_below
      

      A reference for the positions (regions) can be found here :
      https://forum.magicmirror.builders/topic/286/regions/2

      posted in Troubleshooting
      brobergB
      broberg
    • RE: virtual touchscreen?

      Looks like a noise-maker with that rotating mirror :D
      But fun idea!

      posted in Hardware
      brobergB
      broberg
    • RE: MMM-flic

      @da4throux excellent! Maybe now I will have the motivation to setup the flic buttons I got two years ago 😁

      posted in System
      brobergB
      broberg
    • RE: Trying to change size of currentweather module driving me nuts...

      @magicmarc

      .currentweather .small {
         font-size: 10px;
      }
      .currentweather .medium {
         font-size: 15px;
      }
      .currentweather .large {
         font-size: 20px;
      }
      
      posted in Custom CSS
      brobergB
      broberg
    • RE: MMM Remote Control Error

      @Chynovsky you are missing commas after

      module: 'MMM-Remote-Control'
      And
      position: 'bottom_left'

      It should be

      module: 'MMM-Remote-Control',
      And
      position: 'bottom_left',

      posted in General Discussion
      brobergB
      broberg
    • RE: My first two mirrors made with privacy film vs acrylic one

      @hedmik check with your local “Glasmästare” most of them can get hold of two way mirrors, Pilkington is readily available. Pilkington mirroview has a good enough balance for most scenarios.

      posted in Show your Mirror
      brobergB
      broberg
    • RE: MM using Arduino...

      @justjim1220 with a 16mhz clockspeed, limited amount of memory… I would say you can’t.

      You could probably write something similar if you just want some simple text displayed on a small tft.

      posted in Tutorials
      brobergB
      broberg
    • RE: Change a font issue

      @artomka

      Try (removing the font weight from the font face)

      
      @font-face {
        font-family: FivoSans;
        font-style: normal;
        src:
          local("Fivo"),
          url("FivoSans-Medium.woff2") format("woff2");
      }
      
      .newsfeed .light {
        font-family: FivoSans;
      }
      

      (notice that i added the .light class after .newsfeed, this is because the .light class name adds the robot font and overwrites the more general font added to .newsfeed)
      With the font file still in the css folder (no subfolders ofc)., Next step is to try any other font type, like otf or ttf

      posted in Custom CSS
      brobergB
      broberg
    • 1 / 1