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

    Oboudreaux

    @Oboudreaux

    1
    Reputation
    1
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Oboudreaux Unfollow Follow

    Best posts made by Oboudreaux

    • RE: Default Modules

      A little improvement on compliments: a day of the week category.

      const day = moment().format("dddd");
      ...
      if (day in this.config.compliments) {
                    compliments.push.apply(compliments, this.config.compliments[day])
      }
      

      allows entries like:

      "Monday" : [
          "Looks like somebody has a case of the Mondays"
      ],
      "Tuesday" : [
          "Take out the trash."
      ]
      

      Sorry, I didn’t see a better place to drop this

      posted in Modules
      O
      Oboudreaux

    Latest posts made by Oboudreaux

    • RE: MMM-RAIN-MAP (new: version 2.x)

      Does “substitudeModules” work in server only mode? “displayOnlyOnRain” works just fine but when the rain map pops up it appears under the module it’s supposed to hide.

      posted in Utilities
      O
      Oboudreaux
    • RE: Default Modules

      A little improvement on compliments: a day of the week category.

      const day = moment().format("dddd");
      ...
      if (day in this.config.compliments) {
                    compliments.push.apply(compliments, this.config.compliments[day])
      }
      

      allows entries like:

      "Monday" : [
          "Looks like somebody has a case of the Mondays"
      ],
      "Tuesday" : [
          "Take out the trash."
      ]
      

      Sorry, I didn’t see a better place to drop this

      posted in Modules
      O
      Oboudreaux