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

    Memphismark

    @Memphismark

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

    Memphismark Unfollow Follow

    Best posts made by Memphismark

    • RE: Can't get module background to change

      @ashishtank
      Thank you ! A classic case of the 2% threshold! (you must be at least 2% smarter than what you’re operating to operate it properly)

      posted in Custom CSS
      M
      Memphismark

    Latest posts made by Memphismark

    • RE: Annual Dates are off by one day in default Calendar module

      @sdetweil said in Annual Dates are off by one day in default Calendar module:

      @memphismark thanks. there were a couple more bugs related to daylight savings, and full day events.

      one more fix to go in

      Specifically, it was a weekly occurrence that started after 6pm on Saturdays. It worked fine any other time and DOW. It busted my brain until I solved it by doing the IDIC thing. :-)

      posted in Troubleshooting
      M
      Memphismark
    • RE: Annual Dates are off by one day in default Calendar module

      @ctkjedi The module is fine. Well, kinda. I had a problem where weekly events were showing up 6 days late. My problem was I had Google Calendar repeat frequency set to “weekly.” It started working when I set it to “every 7 days.”

      Adjust the frequency on Google and see what it does.

      posted in Troubleshooting
      M
      Memphismark
    • RE: Can't get module background to change

      @ashishtank
      Thank you ! A classic case of the 2% threshold! (you must be at least 2% smarter than what you’re operating to operate it properly)

      posted in Custom CSS
      M
      Memphismark
    • Can't get module background to change

      in my custom.css file I have this code:

      body {
        color: #aaa;
      }
      
      .dimmed {
        color: #000
      }
      
      .normal {
        color: #000
      }
      
      .bright {
        color: #000
      }
      
      .module.clock {
        background.color: rgb(255, 255, 255);
        opacity: 0.5;
      border-radius:8px;
      padding:8px;
      }
      

      And it won’t work. I can change the dimmed/bright/normal colors and it changes, so I know it’s reading the file. However I can’t get the opaque background around the module at all.
      }

      posted in Custom CSS
      M
      Memphismark
    • RE: Google Calendar Sat Evening Shift

      @sdetweil I did some more troubleshooting, it’s only for weekly repeating events. If I do a “Custom every 7 days” setting, it works fine.

      This is an event “Every 7 days”
      BEGIN:VEVENT
      DTSTART;TZID=America/Chicago:20210313T190000
      DTEND;TZID=America/Chicago:20210313T193000
      RRULE:FREQ=DAILY;INTERVAL=7
      DTSTAMP:20210307T173844Z
      UID:47ub0hqniap77qf2crasr1s2qe@google.com
      CREATED:20210307T154413Z
      DESCRIPTION:
      LAST-MODIFIED:20210307T173316Z
      LOCATION:
      SEQUENCE:9
      STATUS:CONFIRMED
      SUMMARY:Ohio Gaming
      TRANSP:OPAQUE
      END:VEVENT

      Here’s the same event set to Weekly:
      BEGIN:VEVENT
      DTSTART;TZID=America/Chicago:20210313T190000
      DTEND;TZID=America/Chicago:20210313T193000
      RRULE:FREQ=WEEKLY;BYDAY=SA
      DTSTAMP:20210307T173946Z
      UID:47ub0hqniap77qf2crasr1s2qe@google.com
      CREATED:20210307T154413Z
      DESCRIPTION:
      LAST-MODIFIED:20210307T173916Z
      LOCATION:
      SEQUENCE:9
      STATUS:CONFIRMED
      SUMMARY:Ohio Gaming
      TRANSP:OPAQUE
      END:VEVENT

      posted in Bug Hunt
      M
      Memphismark
    • Google Calendar Sat Evening Shift

      This is a weird one. Google calendar, everything works.

      EXCEPT for Saturday evenings. Any appointment that is 6pm or later on a Saturday, it shows up 6 days later. a 7pm appointment on 3/13/21 will show up at 7pm 3/19/21. A 5:45pm appointment works properly.

      I have multiple calendars that I’ve tried this on with the same result. Any appointment 6pm-11:45pm on Saturdays shows up +6 days. This does not happen with any other time or day of the week.

      posted in Bug Hunt
      M
      Memphismark