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: Module scheduling

      https://github.com/ianperrin/MMM-ModuleScheduler

      posted in Feature Requests
      yawnsY
      yawns
    • RE: News feed not loading and how not to translate them

      use url: 'http://www.ara.cat/rss' instead
      You linked to http://www.ara.cat/rss.html which is a landing page, the real rss feed (xml based) is http://www.ara.cat/rss

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Need help for MMM-Carousel

      The way you put it overrides ignoreModules everytime. You need to define it as an array:

      {
      	module: 'MMM-Carousel',
      	config: {
      		ignoreModules: [ 'alert', 'MMM-iCloud-Client', 'MMM-DWD-WarnWeather', 'calendar', 'compliments', 'MMM-swisstransport', 'clock' ],
      	}
      },
      
      
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: [ORDER CLOSED] Two way mirror order in Germany

      I just started a new post to collect interested users. Of course without any promise from Goldjunge_Chriz to really do a second order.

      https://forum.magicmirror.builders/topic/2016/two-way-mirror-order-in-germany-accumulation-for-2nd-round

      posted in Hardware
      yawnsY
      yawns
    • RE: Image Galery

      @Jeff said in Image Galery:

      I trying to get shadows around the picture to get a smooth overlay from the picture to the mirrors backround.
      I’m not sure how to do this. The only way I know, i to change the original picture e.g. on instagram and put a black shadow overlay around. But I’m not really happy with this solution.
      Maybe someone knows better…

      Some options I could think of, by just modifying your css file.

      1. adds a small drop shadow to the image on the right side and at the bottom
      #MMM-Instagram-image {
          box-shadow: 5px 5px 5px #aaa;
      }
      
      1. adds a “glowing” shadow all around the image
      #MMM-Instagram-image {
          box-shadow: 2px 2px 15px #aaa, -2px 2px 15px #aaa, 2px -2px 15px #aaa, -2px -2px 15px #aaa;
      }
      
      1. make it look like a polaroid thrown on the mirror
      #MMM-Instagram-image {
          box-shadow: 10px 10px 15px #aaa;
      	padding: 10px 10px 30px 10px;
      	border: 1px solid #bfbfbf;
      	background-color: #fff;
      	transform: rotate(-6deg);
      	-ms-transform: rotate(-6deg);
      	-webkit-transform: rotate(-6deg);
      }
      

      Not sure if this is what you are looking for. If you go for the polaroid look (which I really like) you could add several “versions” with different rotation values and change the class when loading the next image to have some randomness.

      posted in Requests
      yawnsY
      yawns
    • RE: Multipages

      The core MagicMirror does not support this. However you can follow this approach, I guess it is what you are after:

      https://forum.magicmirror.builders/topic/2530/multiple-pages-of-modules-using-css

      posted in Feature Requests
      yawnsY
      yawns
    • RE: Mistake in the config.js and i dont no

      Please remove this

        {
        	module: 'calendar',
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: remoteFile in compliments module

      @jcorraliza
      Hi, I just tried on my computer …

      snippit from my config.js

      {
      	module: 'compliments',
      	position: 'lower_third',
      	config: {
      		remoteFile: 'compliments.json'
      	}
      },
      
      

      my compliments.json

      {
          "morning" : [
              "heyho"
          ],
          "afternoon" : [
              "home early?"
          ],
          "evening" : [
              "finally home"
          ],
      	"fog" : [
      		"fog, oh no :("             
      	]
      }
      

      The compliments.json file is located in ~/MagicMirror/modules/default/compliments
      Three things to mention:

      1. Of course you need to use the default “currentweather” module
      2. You need to run the new updated MagicMirror version. Otherwise compliments and currentweather are not interacting
      3. There is a delay loading the compliments file. I added some debug output to track that and as you see MagicMirror starts with default values and takes 30 seconds to load and verify your remote file.0_1483870239034_compliments.PNG
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: [ORDER CLOSED] Two way mirror order in Germany

      @tomster said in [ORDER CLOSED] Two way mirror order in Germany:

      Thank you again for getting that order together. Still have to come up with something to return the favour though…

      yeah, me too!

      posted in Hardware
      yawnsY
      yawns
    • RE: Currency Exchange Rates?

      all right everyone, I did some progress on the module. Please take a look at it and let me know your thoughts.

      Features:

      • ticker mode - displays all selected currencies in a marquee ticker, main use in my opinion is in bottom_bar or top_bar
      • table mode - display all selected currencies in a table. Up to 8 currencies are split into 2 columns, anything above is split into 3 columns
      • you can hide/show the curreny flag and the currency code/abbreviation
      • you can display a custom header above the output to show your selected base currency and the date of the data

      Question: Does anyone know if and how I could manipulate the original header to avoid the custom header thing and still display base currency and date?

      One notice: data is provided by fixer.io which is updating their data once a day. There are other apis for currency rates but you cannot select your own base currency if you are on a free plan. Means you would have to pay for it

      [card:yawnsde/MMM-CurrencyExchange]

      posted in Requests
      yawnsY
      yawns
    • 1
    • 2
    • 11
    • 12
    • 13
    • 14
    • 15
    • 31
    • 32
    • 13 / 32