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: Is it possible to make a touch magic mirror

      @m7mdlover

      Generally speaking yes, if the IR frame says it is supported by linux or has linux driver it’s going to work.

      The MagicMirror2 software doesn’t use the traditional “apps”, so no. It uses Modules and is displayed as a webpage (i.e you can view it in your own browser or the built in electron browser), and there are a few out there but not in the way you seem to be after.

      posted in Show your Mirror
      brobergB
      broberg
    • RE: Question: What is the process of modifying other people's module ?

      @nagaculun either fork it on github or make copy of the module locally on your pie and start changing the code.

      posted in Development
      brobergB
      broberg
    • RE: Cheapest reflective film?

      @Uskompuf you can use any cheap reflective foil, the result will probably be the same. Mirror Foil is difficult to get right.

      posted in Hardware
      brobergB
      broberg
    • RE: Exclude certain events from Calendar

      @theaddies

                       {
                               module: "calendar",
                               header: "Work",
                               position: "top_left",
                               config: {
                                       maximumEntries: '5',
                                       excludedEvents: [ {filterBy: 'Workout', caseSensitive: false} ],
                                       calendars: [
                                                        url: 'https:www.mywebsite.com',
                                                       symbol: 'briefcase', 
                                                       auth: {
                                                               user: 'xxxx',
                                                               pass: 'xxxxxxx',
                                                               method: 'basic'
                                                               }
                                                       ]
                                           }
                            }
      
      posted in Troubleshooting
      brobergB
      broberg
    • RE: Need help with MMM-voice, getting errors

      @bjjsoul

      Hi, When you are asking for help please don’t make multiple posts about the same issue.
      Secondly, when asking for help with the configuration file we need to see the entire configuration file, just not a single part.

      Many times when you get WARNING! Could not validate config file. there is some symbols missing or added where they are not supposed to be.

      Like a missing { or }
      Like a missing [ or ]
      Like a missing , or " "

      Or maybe you have copied and pasted in a module configuration where it’s not supposed to be.

      posted in Troubleshooting
      brobergB
      broberg
    • RE: MMM-HASS & css nightmare (slight exaggeration)

      Remove all changes made in the hass css file

      Add

      .MMM-Hass .device {text-align: right}
      .MMM-Hass .value {display: inline-block; text-align: right; width:80px;}
      
      posted in Custom CSS
      brobergB
      broberg
    • RE: turn magic mirror black or fade dark

      @cazz use mmm-remote and one of the page/profile modules to just display a black background/empty page.

      posted in Troubleshooting
      brobergB
      broberg
    • RE: Default Modules

      @bjjsoul it does nothing but display the text “hello world”. It’s a super basic template for buildinh your own module.

      posted in Modules
      brobergB
      broberg
    • RE: MMM-FlightsAbove - Display all flights in the sky above you

      @Richard238

      Then try

      #flightsabove {overflow:hidden;}
      
      posted in Transport
      brobergB
      broberg
    • RE: MMM-NewsFeedTicker, how do I make the marquee go faster

      @Lordy

      Try this, but after that I don’t know.

      .tickerbody {
        -webkit-animation: marquee 1s linear infinite !important;
        -moz-animation: marquee 1s linear infinite !important;
        -ms-animation: marquee 1s linear infinite !important;
        -o-animation: marquee 1s linear infinite !important;
        animation: marquee 1s linear infinite !important;
      }
      

      Be aware that the Raspberry pi doesn’t do animations very well, so something that works smooth and quick on a normal computer won’t work as well on a pi.

      posted in Troubleshooting
      brobergB
      broberg
    • 1 / 1