@thephantom_nl
I changed over to omxplayer and solved my problems with it resizing on restart.
I can not find the bookmark for how to install omxplayer. Must have not saved it.
Google it that is what I did…
Read the statement by Michael Teeuw here.

Posts
-
RE: MMM-IPCam format
-
RE: [MMM-GmailFeed] - Simple Gmail unread messages list/notification
@sdetweil said in [MMM-GmailFeed] - Simple Gmail unread messages list/notification:
@plainbroke module install instructions
git clone https://github.com/shaneapowell/MMM-GmailFeed.git cd MMM-GmailFeed npm install
the GitHub page is the README.MD file
also, if the module has a package.json you need to npm install ( in the new module folder), even if they don’t say so
I did all the npm install and it still did not work until I did the “npm install request” in the MagicMirror/modules folder, that alone fixed almost all my install issues… Could hardly believe something so simple fixed so much… And yes I have been running npm install in all my modules folders just to be safe. That pm2 restart mm && pm2 log lines=50 ( i think that is correct) really made life easier… Thanks to all whom helped with my issue…
-
RE: MMM-Carousel - how to configure a module multiple times on the SAME page?
@fantasmic78
This is what 2 instances of calendar look like in my carousel setup.
is that what you are trying to do?
-
RE: MMM-NetworkScanner
@sdetweil
Thanks for looking I was afraid of that. I will put a request in for a hopeful change by the maker… -
RE: Default Calendar
@sdetweil
Sorry I do not understand what you mean. “define another calendar module”.
I have the events combined right now I really would like them as two seperate calendars. I use carousel remember. My Calendars cover most of the screen. -
Default Calendar
Re: Default Modules
Is there a way to have 2 calendars I used to have 1 for Birthdays and one for holidays. I simply renamed the default calendar to calendarh and moved it to the moduels folder and in the config.js the config was under calendarh
I also renamed the css and js files for calendarh directory. I had to go in and change a few things in the js and the css. It all worked so nice. now I can not do that for some reason. Any suggestions what I may be doing wrong this time… ?{ module: "calendar", position: "middle_center", header: "Birthdays", config: { fade: false, maximumEntries: 4, timeFormat: "absolute", urgency: 3, getRelative: 24, calendars: [ { symbol: "birthday-cake", url: "https://calendar.google.com } ] } }, { module: "calendarh", position: "middle_center", header: "US Holidays", config: { fade: false, maximumEntries: 4, timeFormat: "absolute", urgency: 3, getRelative: 24, calendars: [ { symbol: "h-square", url:"https://calendar.google.com/calendar/ical/en.usa%23holiday%40group.v.calendar.google.com/public/basic.ics" } ] } },
-
MMM-NetworkScanner
Is there a way to have two columns side by side of output to the screen?
I have more in the module being checked than will fit on the screen in one column.
I have even made the font smaller so I could get the important ones to show. -
RE: Centering Photos on MMM-ImagesPhotos
I use this in the custom.css to center mine:
.MMM-ImagesPhotos {
Horizontal-align: center;
Vertical-align: middle;
}My Config.js :
{
module: “MMM-ImagesPhotos”,
position: “middle_center”,
config: {
opacity: 0.9,
animationSpeed: 500,
updateInterval: 10000,
backgroundColor: “black”,
width: “800px”,
height: “800px”,
fill: false
}
},Works for the screen I use. it did’nt untill I set the width and height though.
Just my 2 cents. Mileage may vary for you though.
-
RE: MagicMirror v2.18 and Modules
@sdetweil
I hear ya, those of us that are coding handicapped, really get stumped when the module we really like doesn’t work for some reason or another…
Thank you again for all you do for us that are not nearly as knowledgeable as you.