@ChrisLeduex Never use sudo to install anything on your mirror. Ideally you want to be in the module folder that requires request, i…e cd ~/MagicMirror/modules/MMM-PetFinder/. Once in the folder you want to then install request , npm i request. You can ignore the funding stuff.
Read the statement by Michael Teeuw here.
Posts
-
RE: Has anyone been able to get MMM-PetFinder to work?
-
RE: cron job hdmi on and off
@Sam-0 Can you run the following from the command line and she your results:
wlr-randr
ls -als /run/user/1000/wayland*Share your results. Either the
wayland-1is different as indicated by @evroom orHDMI-A-1is actually a different version on your system.Share the results from the above and we take it from there. Also, @evroom has indicated the there is supposed to be a space before
/homeon the crontab. -
RE: MMM-Carousel Pagination Icons
@sdetweil And just to note, MMM-pages is zero based. This will need to be updated as well. If I understand MMM-Carousel correct, it is also zero based.
-
RE: MMM-Carousel Pagination Icons
@sdetweil Yes, that is correct. I added a classname
page-${i}. But the standard code was always zero based and I do not want to update that. It is tied in with MMM-pages and seems like it works with others as well.start() { this.curPage = 0; this.mmmPagesDetected = false; }, -
RE: Need help for a module who give advice because of the weather
@Xx_Codeur_xX You could have a look at some of the modules that already does this. They get the weather from the default weather module, no need to redo this as it is already available.
See either of the below.
https://github.com/fruestueck/MMM-WeatherDependentClothes
or
https://github.com/Lavve/MMM-WeatherOutfit/tree/main -
RE: MMM-Carousel Pagination Icons
@sdetweil Yeah, i would agree. Changing that logic now may have some repercussions for users already using the module.
-
RE: MMM-Carousel Pagination Icons
@sdetweil Correct. Although, MMM-page-indicator is 0 based, same as MMM-pages, so page-0 would be page 1 etc.
-
RE: MMM-Carousel Pagination Icons
@sdetweil Not sure if I understand you properly but the other pages would default to the standard circle. The changes I made allows you to target specific pages if you want to change the icon, add animations etc. A little easier to target individuals.
-
RE: MMM-Carousel Pagination Icons
@com1cedric I have submitted a PR for MMM-page-indicator which should give more flexibility per page. See example below:
.MMM-page-indicator .fa.indicator.page-2::before { content:"\f005"; color: orange !important; } .MMM-page-indicator .indicator.active-page { animation: pulse 1.2s ease-in-out infinite; }If PR is accepted you should be able to target specific page indicators as shown in example above from custom.css.
You could use this fork in the meanwhile:
MMM-page-indicator