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

    Posts

    Recent Best Controversial
    • RE: Touchscreen works wrong when screen is rotated vertical

      @Manino You have to do a couple of things. The best explanation is here. Basically, find the name of your monitor, and then do this command in terminal:

      xinput set-prop ‘name of your device’ ‘Coordinate Transformation Matrix’ 0 1 0 - 1 0 1 0 0 1

      This will rotate the touch controls to the right (depending on which way you turned your monitor, this might have to be adjusted). The only problem is that I haven’t found a way to make it permanent (in Raspbian), so it reverts every so often and you have to run the command again. I’ve written it to etc, but it doesn’t take. If anyone has any suggestions for permanence, I’d love to hear it.

      posted in Troubleshooting
      A
      almightyyoshi
    • RE: MMM-CalendarExt3

      @MMRIZE
      That did it. Thanks!

      posted in Utilities
      A
      almightyyoshi
    • RE: MMM-CalendarExt3

      I finally found a touch module that I could easily use for the glance notification and have the payload step as 1. However, two things are happening:

      1: on the first press it’s going back to June. Second press goes to April. Third press goes to August. Fourth press goes to December (which would be correct, however, due to the other jumps it could just be random)

      2: no events are populating in the glance

      Here’s what I have for the button:

      {
            module: "MMM-TouchButton",
            position: "top_left",
            config: {
                buttons: [
                     {
                      name: "Next",
                      icon: "fa fa-calendar-days",
                      notification: "CX3_GLANCE_CALENDAR",
                      payload: {instanceID: [], step: [1]},
                        },
                      ]
                    },
                 },
      
      

      And here’s my CX3 config:

      {
                  module: "MMM-CalendarExt3",
                  position: "middle_center",
                  config: {
                          mode: "month",
                          instanceID: "currentMonth",
                          firstDayOfWeek: 0,
                          useSymbol: true,
                          glanceTime: 60000,
                          calendarSet: [],
                  }
              },
      
      

      Any thoughts?

      posted in Utilities
      A
      almightyyoshi
    • RE: MMM-CalendarExt3

      @sdetweil

      What’s worse, I had an example right above it that I knew worked, and I still didn’t register that the 09 was the issue.

      posted in Utilities
      A
      almightyyoshi
    • RE: MMM-CalendarExt3

      @sdetweil

      Ha! I was replying to yours. @MMRIZE hadn’t popped up in my feed when I replied. I thought I refreshed when I got on, but possibly not.

      posted in Utilities
      A
      almightyyoshi
    • RE: MMM-CalendarExt3

      @sdetweil

      Nope. Stupid mistake. Needed to be month_9.date_22.

      posted in Utilities
      A
      almightyyoshi
    • RE: MMM-CalendarExt3

      I’m having a bit of css trouble. I’m trying to display an image in the background of specific cells. It was working in July (in both CX2 and CX3) but has since stopped displaying in either.

      .CX3 .month_09.date_22 { /*first day of fall*/
              opacity:50%;
              background-position:center;
              background-repeat:no-repeat;
              background-image: url('../modules/MMM-CalendarExt3/images/Fall-Tree-small.png');
      }
      
      
      posted in Utilities
      A
      almightyyoshi
    • RE: MMM-CalendarExt3

      @MMRIZE
      Thanks for the help. I actually just had to specify singleday and fullday along with the calendar name, which I’m ashamed I didn’t think of before.

      posted in Utilities
      A
      almightyyoshi
    • RE: MMM-CalendarExt3

      @MMRIZE

      Not sure what I’m doing wrong. I’ve tried the following:

      .CX3 .event.calendar_Music {
              border: none;
      }
      
      .CX3 .event.calendar_"Music" {
              border: none;
      }
      
      .CX3 .event.calendar_MUSIC {
              border: none;
      }
      
      .CX3 .event.calendar_"MUSIC" {
              border: none;
      }
      
      .CX3 .event.calendar_music {
              border: none;
      }
      
      .CX3 .event.calendar_"music" {
              border: none;
      }
      

      Do calendar names pull from the default calendar module, or do they need to be specified somewhere within CX3?

      posted in Utilities
      A
      almightyyoshi
    • RE: MMM-CalendarExt3

      Hi, all. How can I remove the border for a specific calendar? I got this from @MMRIZE

      .CX3 .event.fullday,
      .CX3 .event.multiday {
              border-left: 4px solid var(--calendarColor);
              border-bottom: 1px solid var(--calendarColor);
      
      .CX3 .event.singleday {
              border-left:4px solid var(--calendarColor);
      

      There are a couple of calendars where I have icons so I don’t want to use any border. I’ve tried a few different ways (including calendarName_{Music}, data-calendar-name=“Music”), but none worked, so it seems I’m doing something incorrectly. A little help, please?

      posted in Utilities
      A
      almightyyoshi
    • 1
    • 2
    • 3
    • 4
    • 2 / 4