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

    Posts

    Recent Best Controversial
    • RE: Help choosing more than one item from an array

      @justjim1220 It looks like you are trying to do multiple request, as mykles description sounds like one request with a comma seperated list.

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: gmail Calendar default usage.

      @MarWind https://github.com/MichMich/MagicMirror/issues/839

      posted in Bug Hunt
      strawberry 3.141S
      strawberry 3.141
    • RE: Magic mirror serving multiple clients

      @cowboysdude take a look at https://github.com/fewieden/MMM-syslog-slave thats the only thing were I connected multiple instances

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-NFL Issues

      @danielloftus you didn’t close the modules array, you missed commas and you placed quotes.

              {
      	        module: 'MMM-NFL',
      	        position: 'bottom_right',
      	        config: {
      		        colored: true,
      			helmets: true,
      			reloadInterval: 3000
          		}
      	},
      ]
      
      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: Some Calendar Icons Missing

      @lazyboy0284 you’re lucky someone integrated the fontawsome v5 with backwards compatibility and it was merged today into the develop branch https://github.com/MichMich/MagicMirror/pull/1427

      posted in Bug Hunt
      strawberry 3.141S
      strawberry 3.141
    • RE: MagicMirror Ideas for Retail Application

      @solelo I guess it depends on the type of store, you can also check out this list https://github.com/MichMich/MagicMirror/wiki/3rd-party-modules

      posted in General Discussion
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-NFL Only shows "loading"

      @mrpicasso @Mykle1 @BKeyport with the help of https://github.com/alacercogitatus the problem is now fixed. Make sure you get the newest version of the master branch and run npm install https://github.com/fewieden/MMM-NFL

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: change current weather colors - time and wind

      @karde this is for the default module currentweather and not as I thought MMM-WunderGround

      /* wind speed selector */
      .currentweather > .module-content > div > div.normal.medium > *:nth-child(2),
      /* wind direction selector */
      .currentweather > .module-content > div > div.normal.medium > *:nth-child(3),
      /* sunset/sunrise time selector */
      .currentweather > .module-content > div > div.normal.medium > *:nth-child(6){
          color: orange;
      }
      
      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Issue displaying images in alerts

      @tagriel the url would be https://github.com/fewieden/MMM-soccer

      but the only thing you need is a module let’s call it imageserver, which is only responsible as an image host.

      directory structure:

      MagicMirror
      - modules
        - imageserver
          - public
            - kids.png
          - imageserver.js
          - node_helper.js
      

      imageserver.js

      Module.register("imageserver", {});
      

      node_helper.js

      const NodeHelper = require('node_helper');
      module.exports = NodeHelper.create({});
      

      config.js

      {
      	module: "imageserver"
      },
      

      command

      MM.getModules()[0].notificationReceived("SHOW_ALERT", {title: 'My Title', message: 'Some Text', imageUrl: '/imageserver/kids.png'}, {name: 'test'});
      

      0_1540843796205_93d389de-7eb6-4713-bab0-630e13884ac2-grafik.png

      posted in Bug Hunt
      strawberry 3.141S
      strawberry 3.141
    • RE: Default Newsfeed: Fullscreen News Article in MMM-Modal instead of iFrame

      @RaspiManu I’m quite busy to help you out much here. But maybe it helps you to check out https://github.com/fewieden/MMM-Modal/issues/6 where @skuethe implemented MMM-Modal with MMM-Touch and MMM-WiFiPassword

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: position from config.js conversion to main.css

      @Dimonic every region has the class region, the position gets splitted by underscore. then you have the class top and center

      the selector will match any tag which has the class region and top and center

      e.g. anytag class="region top center"

      EDIT: it wont let me write real html code < nor <

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: MMM-NHL displays 'Loading'

      @Cliff365 I released a new version, please update the module again.

      posted in Troubleshooting
      strawberry 3.141S
      strawberry 3.141
    • RE: custom CSS clock module

      @PointPubMedia the hour and the minute are in the same div which makes it not possible to do it just in css, but
      there is a config option which adds a wrapper around the minutes, which is perfect for this task.

      the selector would be probably something like this:

      .clock div.time.bright.large.light span.bold {
        //set the font size here
      }
      

      therefore you also have to add clockBold: true to the config

      if you dont like the bold effect you can overwrite it as well where you change the font size

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: CSS basics

      @broberg the secondsWrapper is the only sup tag so it can be accessed by .clock sup.dimmed

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: How to change the clock css to be 90% full screen ?

      @nagaculun did you consider using the config option analogSize for the clock module?

      analogSize: Specific to the analog clock. Defines how large the analog display is. Possible values: A positive number of pixels Default value: '200px'

      Furthermore the value can have even more units than just pixels, as it uses the standard width and height property for it.
      Check out the property values section here https://www.w3schools.com/cssref/pr_dim_width.asp

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Box/Frame around module

      @Da-ne-ezy custom.css

      .MODULENAME {
        border: 2px solid white;
      }
      
      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • RE: Change background image based on time of day

      This should not work, as the getStyles function of the module gets just executed once when the mirror boots. I would suggest to create some classes like morning, afternoon, evening, … and in the module you load the css file with those classes, then create an interval which checks the current time of the day. based on that you query for the body like var body = document.querySelector('body'); and set the specific class body.className = 'morning';

      posted in Development
      strawberry 3.141S
      strawberry 3.141
    • 1 / 1