@redux703 see this post
Read the statement by Michael Teeuw here.
Posts
-
RE: Default Calendar Symbols
@almightyyoshi you can always use css
.CX3 .symbol { display: none !important; } -
RE: Need "correct" version of node-libgpiod ....
@rkorell yes, you edit the wiki page, and then the 3rd party list will pick up those changes on the next refresh (once a day)
-
RE: Cant exit auto running MM
@_V_ pm2’s JOB is to start the app AND KEEP IT RUNNING, so if it fails (you do a ctrl-q) pm2 restarts it
pm2 has lots of command options
in linux by convention commands don’t return any message when successful (as they were built when tty was VERY SLOW)
also, each command has help
pm2 --helpand a manual page
man pm2SO, to stop MM with pm2, minimize MM, ctrl-m, (or alt-spacebar, n) open a terminal window, ctrl-alt-v, and type
pm2 statusthen
pm2 stop xxwhere xx is the name or the number of the row with the app on it…
one can create MULTIPLE managed apps with the SAME name, so sometimes the number matters -
RE: CalendarEXT3 questions
@_V_ said in CalendarEXT3 questions:
The CW counting not
try this
minimalDaysOfNewYear: "1",I posted somewhere before (a month ago I think) , but can’t find it…
-
RE: 2.32.0 Calendar module limitDays and excludedEvents stopped working
@AndyHazz these fixes are in the next release Oct 1
-
RE: Non-Typical Setup, MM Stops Showing New Pictures (ImagesPhotos module)
@ember1205 great feedback, thank you
Glad it’s working again -
RE: update package list
@pat59 show the output of npm start
But when you change the os under an app, it’s recommended to reset it too
Stop MagicMirror
cd ~/MagicMirror rm -rf node_modules npm installStart MagicMirror
-
RE: Calendar Fetch Error
@WallysWellies in the next release (Oct 1), there is a new field in the top part of the config.js
userAgent:"......" -
RE: 32 bit Trixie
@musson haven’t tried 32 bit trixie
Will check It out later this afternoon , eye doctor appt shortly
-
RE: 32 bit Trixie
@musson 1st test was bookworm 32 on pi2w… all ok with script…
flashing trixie now
-
RE: 32 bit Trixie
@musson 32 bit trixie is a mess…
can’t change swap without a reboot…
electron takes 20 minutes to start
firefox puts up a web prompt, shouldn’t do this on less than 1 gig, have to click , came up but did not use the parms to go to the MM web page
midori won’t go fullscreen via commandline, like it says it does…installing surf to see if it works
surf crashesuse bookworm 32 bit.
-
RE: Calendar Module and Google Private ical URL - Invalid UNTIL value
@benhmin can you download the ics data
In a terminal window do
curl -sL the_calendar_url > somefile.txt
Then you can edit/examine somefile.txt to locate that event
BEGIN:VEVENT….END:VEVENTAs MagicMirror hasn’t received the parsed data yet our debug won’t help
The value should be 20230108
We parse millions of calendar entries a day over all the implementations, this is the first I have of this problemhere is an example RRULE clause with until
RRULE:FREQ=weekly;UNTIL=20260504T230000Z;INTERVAL=1 -
RE: MMM-ISS-Live error 153
@RonR did you do this step in the README
https://github.com/KristjanESPERANTO/MMM-ISS-Live?tab=readme-ov-file#preparing-electron
Preparing Electron MagicMirror² disables the <webview> tag by default. Enable it by adding the following snippet to your config/config.js: let config = { ... electronOptions: { webPreferences: { webviewTag: true; } }, ... } -
RE: MMM-RAIN-MAP covers part of the module above it
@RonR ctrl-+. Should zoom in
-
RE: Cannot access MM2 across the network - localhost ok
@dangerousden glad you got it working again!!
-
RE: MMM-Traffic stuck on loading
@Keithj edit MMM-Traffic.js
change these lines (79/80)
self.errorMessage = payload.error.message; self.errorDescription = payload.error.description;to
self.errorMessage = e.message; self.errorDescription = e.description;and restart MM
let me know… -
RE: Magic Mirror Scripts - "Unable to determine upstream"
@BKeyport I fixed my script to handle that
-
RE: Dimming of a module
@chrga I don’t see any module in the 3rd party list that provides that function directly on a per module basis via notifications
this would be a great addition to MMM-RemoteControl
@kristjanesperanto -
RE: How to Troubleshoot
@BiaGen the latest 2 releases run config check as part of startup, and fail if there is an error like that
I always recommend using manual start whenever changing config, for this very purpose
Stop pm2 mgmt if managing the app
Then
cd ~/MagicMirror
npm startIf any problems they are right there
Once good, ctrl-q MagicMirror
And then use pm2 to launch