MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    MMM-Worldclock

    Scheduled Pinned Locked Moved Utilities
    39 Posts 9 Posters 14.0k Views 9 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • J Offline
      JohnGalt
      last edited by

      Thanks for the module. I have installed it and have it working, but do have one question: How do I keep the top ‘home’ time zone from displaying? I already have the clock module running, so I don’t need a 2nd module telling me the local time… Unfortunately, when i remove the code for the home timezone, it still displays. Thanks in advance,

      BKeyportB 1 Reply Last reply Reply Quote 0
      • BKeyportB Online
        BKeyport Module Developer @JohnGalt
        last edited by BKeyport

        @JohnGalt Let me see your config, that’s really odd…(JUST the config for Worldclock/MMM-Worldclock, no need for the rest)

        The "E" in "Javascript" stands for "Easy"

        1 Reply Last reply Reply Quote -1
        • J Offline
          JohnGalt
          last edited by

          Here you go:
          { module: “MMM-Worldclock”,
          position: “bottom_right”, // This can be any of the regions, best results in top_left or top_right regions
          config: { // See ‘Configuration options’ for more information.
          timeFormat: ‘hh:mm A’, //defined in moment.js format()
          style: ‘top’, //predefined 4 styles; ‘top’, ‘left’,‘right’,‘bottom’
          offsetTimezone: null, // Or you can set Europe/Berlin to get timegap difference from this timezone. null will be UTC timegap.
          clocks: [
          { title: “Home”,
          flag: “us” },
          {
          title: “Italy”,
          timezone: “Europe/Rome”,
          flag: “it”,
          },
          {
          title: “Durban, So Africa”, // Too long title could cause ugly text align.
          timezone: “Africa/Johannesburg”, //When omitted, Localtime will be displayed. It might be not your purporse, I bet.
          flag: “za”,
          },
          { title: “Aruba”,
          timezone: “America/Curacao”,
          flag: “aw”,
          },
          ] // Close clocks list
          } // Close Worldclock config
          }, // Close module MMM-Worldclock

          1 Reply Last reply Reply Quote 0
          • J Offline
            JohnGalt
            last edited by

            Hummm - It looks like the forum stripped out leading tabs and/or spaces, but the content look OK…

            BKeyportB 1 Reply Last reply Reply Quote 0
            • BKeyportB Online
              BKeyport Module Developer @JohnGalt
              last edited by

              @JohnGalt didn’t mark it as code… use ``` at the beginning and ending of the code to show it as pasted.

              To remove the home timezone, just remove it, including the opening and closing bracket.

              You don’t need to specify your local time zone. In my examples, I only use MMM-Worldclock to display the time on my mirror, so I need a local view. I pasted the code adjustment below, didn’t retab it, and I may have missed a few “adjusted” quotes, so if MM don’t like it, check the quotes.

              clocks: [
              {
              title: "Italy",
              timezone: "Europe/Rome",
              flag: "it",
              },
              {
              title: "Durban, So Africa", // Too long title could cause ugly text align.
              timezone: "Africa/Johannesburg", //When omitted, Localtime will be displayed. It might be not your purporse, I bet.
              flag: "za",
              },
              { 
              title: "Aruba",
              timezone: "America/Curacao",
              flag: "aw",
              },
              
              

              The "E" in "Javascript" stands for "Easy"

              J 1 Reply Last reply Reply Quote 0
              • J Offline
                JohnGalt @BKeyport
                last edited by

                @bkeyport - Thanks! It works as you describe. I thought I had already tried removing that code to no avail, but obviously hadn’t. Thanks again!

                1 Reply Last reply Reply Quote 0
                • BKeyportB Online
                  BKeyport Module Developer @BKeyport
                  last edited by

                  NOTICE: As of the current moment, this module is not behaving well with MagicMirror 2.16. The module comes up smaller than intended.

                  As such, the workaround is as follows:

                  in custom.css

                  .MMM-Worldclock .main {
                    font-size: 1.65rem;
                  }
                  
                  .MMM-Worldclock .caption {
                    font-size: 1rem;
                  }
                  

                  Hopefully the font generation in MagicMirror will go back to normal in a couple of releases. Of course, you can adjust the font sizes as you please.

                  The "E" in "Javascript" stands for "Easy"

                  1 Reply Last reply Reply Quote 0
                  • M Offline
                    MacG
                    last edited by

                    It’s a superb module but needs some CSS adjustments. Thanks for the helpful hints here in the thread.

                    Is it possible to update the clock only when the time has changed? The current refresh is every second, but I only use a clock with hours and minutes.

                    That might also lower the load on the browser and it would probably be helpful for CSS customizations via the browser developer tools.

                    MMM-Worldclock.png

                    BKeyportB S 2 Replies Last reply Reply Quote 0
                    • BKeyportB Online
                      BKeyport Module Developer @MacG
                      last edited by BKeyport

                      @macg I doubt there’d be any performance boost, as the whole browser/javascript is constantly scanning for changes. The original code this is based on used the second for the refresh as it assumes the second would be the minimum displayed unit.

                      There’s really no such thing as idle anymore.

                      As for CSS - please, adjust it, adding to your custom.css file - and publish what you do here. Sean’s CSS is good, mine is weaker, but I’m learning and playing at the pace my job allows. Changes that I evaluate would help the core will be included.

                      The "E" in "Javascript" stands for "Easy"

                      M 1 Reply Last reply Reply Quote 0
                      • M Offline
                        MacG @BKeyport
                        last edited by

                        @bkeyport By updating all of a second, I didn’t get to all the style classes with Chromium’s developer tools. But luckily you had already posted the essential ones.

                        I cared about the horizontal layout and yours has been tweaked a bit. The first clock with UTC time didn’t get a flag or globe, so it didn’t need to be as wide as the others. The text color and size were adjusted with MM variables. The size is 6px smaller than my standard (24px). The time difference to UTC time was hidden. With “display: none” I had no success, therefore my way over the transparent text.

                        At the config.js is:
                        style: ‘top’,
                        offsetTimezone: null,

                        And here al my lines for the custom.css:

                        /* Arrange clocks horizontally */
                        .MMM-Worldclock .worldtime {
                              display: flex;
                              flex-direction: row;
                        }
                        .MMM-Worldclock .world{
                              width: 100px;
                        }
                        .MMM-Worldclock .world-0{  /* 1st clock = UTC clock */
                              width: 70px;
                        }
                        
                        /* Time title font color and size */
                        .MMM-Worldclock .zone {
                              font-size: calc(var(--font-size) - 6px);
                              color: var(--color-text-bright);
                        }
                        
                        /* Hide time difference to UTC */
                        .MMM-Worldclock .gap {
                              font-size: 1px;
                              color: transparent;
                        

                        The screenshot of this is in my previous post.

                        For the time zones, I looked here to see which ones are accepted. At first, I thought that America/Texas or America/Houston would be possible. But this is not the case.

                        S BKeyportB 2 Replies Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 4
                        • 1 / 4
                        • First post
                          Last post
                        Enjoying MagicMirror? Please consider a donation!
                        MagicMirror created by Michael Teeuw.
                        Forum managed by Sam, technical setup by Karsten.
                        This forum is using NodeBB as its core | Contributors
                        Contact | Privacy Policy