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

    Posts

    Recent Best Controversial
    • RE: MMM-Astro [formly MMM-Astrology]

      @cowboysdude

      Great Improvement!!!

      But, of course, you seem to always strive for excellence! :winking_face:

      posted in Entertainment
      justjim1220J
      justjim1220
    • RE: Best way to display recipe

      @rts58

      you might look at MMM-Recipe by @cowboysdude

      I am currently using for my Kitchen MM display (not mirrored)

      posted in Development
      justjim1220J
      justjim1220
    • RE: MMM-ToDoLive

      @mykle1

      I have been looking for something exactly like this for my kitchen info mirror.

      Messages and things to do and grocery list!!! :grinning_face_with_smiling_eyes:

      Love It!!!

      posted in Fun & Games
      justjim1220J
      justjim1220
    • RE: MMM-ToDoLive

      @mykle1

      This is freaking awesome Mykle!

      posted in Fun & Games
      justjim1220J
      justjim1220
    • RE: My Family Info Board

      @mykle1

      What module is that one at the top right? The “things to do”?

      posted in Show your Mirror
      justjim1220J
      justjim1220
    • RE: access to config language setting

      @sdetweil

      I just did added this to the calendar config and it changed it automatically:

          {
              module: "calendar",
      	position: "top_left",	// This can be any of the regions. Best results in left or right regions.
      	config: {
      		language: "fr",
      		timezone: "France/Paris"
      	}
          },
      
      posted in Development
      justjim1220J
      justjim1220
    • RE: access to config language setting

      @sdetweil

      you will also need to add this to your start section:

      / /Set locale.
      moment.updateLocale(config.language, this.getLocaleSpecification(config.timeZone));
      
      posted in Development
      justjim1220J
      justjim1220
    • RE: access to config language setting

      @sdetweil after you add all that I posted, in your config file the use can add the timezone and language they want to use.

      {
          module: "calendar",
          position: "top_left",
          config: {
              language: "en",
              timezone: "Norway/Oslo"
          }
      },
      posted in Development
      justjim1220J
      justjim1220
    • RE: access to config language setting

      @sdetweil

      for timezone:
      Add this to your defaults in the modules js: timezone: "America/Chicago"

      Then add this in the code:

       getScripts: function() {
      	return [ 
                  "moment.js", "moment-timezone.js"
              ];
      },
      

      and this:

      var now = moment();
      	if (this.config.timezone) {
      	now.tz(this.config.timezone);
      }
      posted in Development
      justjim1220J
      justjim1220
    • RE: access to config language setting

      @sdetweil

      All I can find is to put this in your js file:

      getTranslations: function() {
      	return {
      		en: "translations/en.json",
      		de: "translations/de.json"
      	}
      }
      
      posted in Development
      justjim1220J
      justjim1220
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 64
    • 65
    • 6 / 65