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

    Posts

    Recent Best Controversial
    • RE: MMM-CalendarExt3Agenda - Can I Make it show more events?

      @sdetweil Hi,

      I ran it via npm start and got this. There are always hundreds of events since it’s my, my wife’s, my daughter’s, etc calendars.

      cadd0f37-53a6-4f56-9369-d3a484aeb1e7-image.png

      It still looks like it did in my above pictures where it only goes partway own the screen.

      posted in Troubleshooting
      K
      Kelemvor
    • RE: MMM-CalendarExt3Agenda - Can I Make it show more events?

      Sorry I haven’t had time to work on this until now. I pasted in your CSS info, and changed the maximumEntries to 99 in the default calendar area, but it didn’t change the events. I used the CSS from up above, and even changed the max-height to 1850, just to use a really big number.

      These are the various CSS entries I have for this module:

      .CX3A {
        font-size: 20px; /* default was 16px */
      	min-width: 440px;
      	max-width: 440px;
      	overflow-y: unset;
      	text-align: left;
      	position: relative;
      	color: var(--color-text);
      	--todayColor: BurlyWood;
      	padding: 5px 5px;
      	max-height: 1850px;
      }
      
      .CX3A .event .description,
      .CX3A .event .location {
        display: none;
      }
      
      .CX3A .cw {
        display: none;
      }
      
      .CX3A .relativeDay {
        display:none;
      }
      
      .CX3A .relativeDay.relativeDay_0 {
        display: inline-block;
      }
      

      The only thing I have for the Config for the default calendar module is:

      config: {
      	maximumEntries: 99,
      	calendars: [...
      

      And here’s the config section for this module:

      	{
      		module: "MMM-CalendarExt3Agenda",
      		position: "top_right",
      		title: "My Agenda",
      		config: {
      			weatherPayload: (payload) => {
      				if (Array.isArray(payload?.forecastArray)) {
      					payload.forecastArray = payload.forecastArray.map((f) => {
      						f.maxTemperature = Math.round(f.maxTemperature * 9 / 5 + 32)
      						f.minTemperature = Math.round(f.minTemperature * 9 / 5 + 32)
      						return f
      					})
      				}
      				return payload
      			},
      			waitFetch: 180000,
      			instanceId: "basicCalendar",
      			locale: 'en-US',
      			firstDayOfWeek: 0,
      			startDayIndex: 0,
      			miniMonthWeekdayOptions: { weekday: 'short' },
      			endDayIndex: 10,
      			skipDuplicated: true,
      			calendarSet: ['m', 'c', 'e', 'n', 'packers', 'volleyball'],
      		}
      	},
      

      I still only have the events going about halfway down the screen. I’m trying ot get it to go down and fill in the area in the red box.

      1381057a-1e8b-44b1-bd5a-b09f21c98db4-image.png

      posted in Troubleshooting
      K
      Kelemvor
    • RE: MMM-CalendarExt3Agenda - Can I Make it show more events?

      @BKeyport said in MMM-CalendarExt3Agenda - Can I Make it show more events?:

      max-height: 850px;

      Well, I tried setting min-height to a really high number. This made the box go down off the screen, but the data still stopped where it did before. When I watch the text as MM is loading, I can see it’s loading 100+ entries for each calendar. I’m pretty sure the events are there, it’s just not displaying them.

      Here’s what I see currently. My modules have shading behind them to make them easier to read…
      PXL_20240120_210735901.jpg

      posted in Troubleshooting
      K
      Kelemvor
    • MMM-CalendarExt3Agenda - Can I Make it show more events?

      Hi,

      I’m not sure if this is a module thing, or a MM thing, but I have MMM-CalendarExt3Agenda setup as the only thing in my top_right location. I want it to go all the way down the side of my screen until it gets to the one thing I have in the Bottom_bar area. However, it’s stopping just over halfway down the screen.

      Is there a way I can tell the module to show more events so it uses more of the screen? Or maybe I have to do something with the MM layout sections to make top_right go down further and MMM-CalendarExt3Agenda will then take up more space?

      Thanks for any ideas.

      posted in Troubleshooting
      K
      Kelemvor
    • Can I hard code the widths for the top_left and top_right columns?

      Hi,
      I have a MM module that expands to take up too much of the screen. Instead of using max_width for that one module, is there a way I can hard code the width of both the left and right columns (fields, locations, whatever you call it).

      I’d like to specify the width of the blank space that goes all the way around the display (or at last the left and right edges), and the width of the left and right columns. I assume this would go in the CSS file somewhere, but I don’t know the names of what I’d need to specify.

      Thanks.

      posted in Troubleshooting
      K
      Kelemvor
    • RE: MMM-CalendarExt3Agenda no longer working after MM update

      @MMRIZE Hi. The version in Packages.json is 1.4.1.

      Thanks.

      posted in Troubleshooting
      K
      Kelemvor
    • RE: MMM-CalendarExt3Agenda no longer working after MM update

      THe vk thing doesn’t seem to be affecting anything so I’ll make a new thread about that if somethign comes up.

      MM is still telling me that there’s an update available for CalendarExt3Agenda.

      I previously ran:

      cd ~/MagicMirror/modules/MMM-CalendarExt3Agenda
      git pull
      npm update
      

      But it still tells me there’s an update. Is there some other command I need to run? I ran it before running the commands you pasted in above so maybe I just need to run these commands again?

      Thanks.

      posted in Troubleshooting
      K
      Kelemvor
    • RE: MMM-CalendarExt3Agenda no longer working after MM update

      @sdetweil Thanks!

      I ran that and it seemed to fix the problem. It still tells me there’s an update for Ext3Agenta. Do I now need to run the Upgrade commands from Git again?

      cd ~/MagicMirror/modules/MMM-CalendarExt3Agenda
      git pull
      npm update
      

      Also, at the end of everything loading I see this. Not sure what it means or if it’s important or not.
      b63ab704-e615-4b9d-ae09-6c95ccc0bb16-image.png

      Thoughts?

      posted in Troubleshooting
      K
      Kelemvor
    • MMM-CalendarExt3Agenda no longer working after MM update

      Hi,
      I installed the new version of MM and now this module isn’t working properly. I get some data but not much. I do see a notification that there’s an update, but when I run git pull and npm install, it gives me a warning about committing changes for a json file and then says aborted. (not sure if that’s important or not).

      Updating d1d25b3…e0adcbf
      error: Your local changes to the following files would be overwritten by merge:
      package-lock.json
      Please commit your changes or stash them before you merge.
      Aborting

      up to date, audited 1 package in 2s

      When I run MM, the calendar info shows but only a few items and doesn’t grab all the calendars in the list.

      Anyone know why this might not be working and how I update it properly if that’s the issue?

      Thanks!

      posted in Troubleshooting
      K
      Kelemvor
    • How can I increase the font size for some modules?

      Hi,

      My MM is connected to a ~24" screen in portrait mode. Some of the modules are easily readable, but some could be a bit bigger. Is there an easy way to increase the font size for them?

      I’ve never been good with the Developer view to figure out which tags are on which elements.

      I’m using the default Weather module and the Forecast section could stand to be a bit larger all around. I’m also using the CalendarExt3Agenda and everything there could stand to be a bit bigger as well.

      Any help would be great.
      Thanks!

      c1b768f4-4962-4049-b130-0909932f2245-image.png

      posted in Troubleshooting
      K
      Kelemvor
    • RE: Bunch of errors displayed when I launch MM. Are they important?

      @sdetweil Thanks for the info. It doesn’t seem to be affecting anything so I’ll just leave it and see how the next version works.

      Thanks.

      posted in Troubleshooting
      K
      Kelemvor
    • Bunch of errors displayed when I launch MM. Are they important?

      Hi,

      I’m getting an RPi3 setup to run MM. Everything seems to be working, but if I watched the text that scrolls by when I launch it, there are a bunch of errors in there.

      Can anyone tell me what these error means and if they are anything to be concerned about?

      bbc9a131-a7be-4b0e-a2bb-9aefcf71d408-image.png

      Thanks

      posted in Troubleshooting
      K
      Kelemvor
    • Brand new setup - running into some issues. libatk?

      Hi,
      I had MM setup on my laptop, but I picked up an RPi3 from someone who wasn’t using theirs. I went through the steps here:
      https://docs.magicmirror.builders/getting-started/installation.html

      I’m using the “Lite” build of the version from the RPi Installer.

      The first issue I had is that Git does not appear to get installed, so when I got to step 2, it didn’t work. I had to manually install Git, which isn’t in the instructions (might want to add that).

      Anyway, I then went through the rest of the steps, but ran into a problem when I tried to start MM. After running npm run start, I got this:

      > magicmirror@2.25.0 start
      > DISPLAY="${DISPLAY:=:0}" ./node_modules/.bin/electron js/electron.js
      
      /home/kelemvor/MagicMirror/node_modules/electron/dist/electron: error while loading shared libraries: libatk-1.0.so.0: cannot open shared object file: No such file or directory
      

      Is there something I need to do to install whatever libatk is?

      Thanks.

      posted in Troubleshooting
      K
      Kelemvor
    • RE: MMM-MagicReplicator

      @KristjanESPERANTO Can this be used without interacting directly with the MM? Can I do something on a computer to get the recipe to show up on the MM?

      posted in Productivity
      K
      Kelemvor
    • Famous people born on this day

      Hi,

      Similar to those modules that show interesting things or facts about today, I thought it’d be neat to show a list of people who were born on this day. Doing a Google search for “Born on this day” finds tons of websites with the info. Some of them have people in random order with lots of people you’ve never heard of. I did find this one that seems to have them ordered by popularity which is nice.
      https://www.thefamouspeople.com/famous-people-born-today.php

      I have no idea how it works to get that info into a MM.

      Anyway, there ya go.

      posted in Requests
      K
      Kelemvor
    • RE: MMM-CalendarExt3Agenda questions.

      @MMRIZE thanks for the info. I don’t even know how modules get updated or how I know when a module needs to be updated. Do I need to subscribe to the GitHub page or can I turn on auto updates or anything like that?

      posted in Troubleshooting
      K
      Kelemvor
    • RE: Module isn't staying in its position area

      @BKeyport Thanks. I’m using the “mywordoftheday” module. I put in a max-width 400px and it seemed to do the trick.
      Thanks.

      posted in Troubleshooting
      K
      Kelemvor
    • RE: MMM-CalendarExt3Agenda questions.

      HI.
      Maybe there’s some CSS to fix this, but when I changed the calendar to use Sunday as the first day of the week (firstDayOfWeek: 0), it moved the days over, but didn’t move the colors. Saturday should be Blue and Sunday should be Red. In my calendar, the color of the days inside the calendar are correct. However, the colors of the headings are not. Is there a way to fix that?

      e631791c-32e3-48e9-8b8b-3a1027b357ab-image.png

      Thanks.

      posted in Troubleshooting
      K
      Kelemvor
    • Any way to use a MM as a cookbook in the kitchen?

      Hi,

      I’m envisioning using MM as a Family Dashboard in/near our kitchen. I’m wondering if there a way to also use it as a cookbook when making dinner. If I have a website that has a recipe I’m trying to follow, would there be any way to put that website up on the screen? I’m open to any brainstorming but need it to be easy so my wife and kids could use it.

      If I could “Cast” a webpage to a module, that would be great, but I haven’t found one of those.
      Is there a way to display a static webpage in a module, and I could just have an empty page unless I save the web page to a certain file in my OneDrive or something, and then MM could show it?
      I could take a screenshot of the recipe, save it as a certain file, in a certain location, and MM could show it if that file exists. If not, it’d just show nothing?

      I don’t know. Really just wondering if this is possible in any way that anyone has come up with.

      Thanks!

      posted in Troubleshooting
      K
      Kelemvor
    • Module isn't staying in its position area

      Hi,

      I am trying the WordOfTheDay Module and am having an issue. I have it set to top_right, but it’s displaying really wide and is spanning across the entire screen. It’s actually resizing the right column as my weather module is also spanning across the screen as well. Is there something I need to do to force it to stay on the right?

      Thanks.

      posted in Troubleshooting
      K
      Kelemvor
    • 1 / 1