@slooquie take away the position
item in the config. It should default to none, but run in the background.
Read the statement by Michael Teeuw here.

Posts
-
RE: Trying to hide EXT-Spotify from showing
-
RE: update the raspberry os needed?
@bdream No need, I’ve been running on old OSes for a while now - mostly because I want to keep using OMXPlayer.
-
RE: MMM-CalendarExt3 - use hidden calendar and remote weather locale?
@eqpaisley here’s what I would do. Install MMM-CalendarExt3Agenda and use it instead of the default calendar module to display events. You’ll still use calendar, just not use it with the position indicator. CE3A gives you a ton more control over the calendars displayed and used, is prettier, and more functional, IMO.
-
RE: Flickering in portrait mode
@dazza120 Course, I can report the opposite, with my setup. While I don’t have exact figures the one thing that seems to have happened is that my system isn’t triggering the temp. icon anymore now that I’m back on the normal driver.
That being said, I’ve got a fan+heatsink on the way for the final setup, there’s no reason not to protect the pi.
-
RE: Not updating at midnight...
@sdetweil yeah, doing it that way just throws headers with “Undefined” until it triggers. I’m not gonna go down that rabbit hole. It seems to work as is, so I’m gonna release for now.
-
RE: Magic mirror dual screen
Here’s the answer for @1a2a3a (Edited to show below changes)
Here’s how to do it cleanly: (replace
<username>
with your pi login name., with width of first monitor)- create two starting scripts:
First,
mm.sh
is as follows:cd /home/<username>/MagicMirror DISPLAY=:0 npm start
Second,
mm2.sh
is as follows:cd /home/<username>/MagicMirror export MM_CONFIG_FILE=${pwd}/config/config2.js DISPLAY=:0 npm start
- Two config files in magicmirror/config next:
First,
config.js
(this is your second monitor):var config = { electronOptions: { x: <width> }, address: "0.0.0.0", port: 8080, ipWhitelist: [], language: "en", timeFormat: 12, units: "imperial", //logLevel: ["INFO", "LOG", "WARN", "ERROR", "DEBUG"], modules: [ ...
Second
config2.js
(this is your first monitor):var config = { address: "0.0.0.0", port: 8081, ipWhitelist: [], language: "en", timeFormat: 12, units: "imperial", //logLevel: ["INFO", "LOG", "WARN", "ERROR", "DEBUG"], modules: [ ...
electronOptions will only work in the file that isn’t redirected to a new config - so use that in the
config.js
only. -
RE: MMM-CalendarExt3Agenda
@luisestrada said in MMM-CalendarExt3Agenda:
Show the days only which has event on the day.
.CX3A .agenda .cell[data-events-counts=“0”] {
display: none;
}Perfect. Thank you.
-
RE: MMM-RTSPStream not showing video
I suspect you’re not addressing the video correctly.
https://www.ispyconnect.com/sources.aspx - check your camera model for full URLs.
-
RE: MMM-Multimonth
@george I honestly don’t know. Let’s summon some help here - @sdetweil - can you explain this situation above?
start: function (){ var timer = setInterval(()=>{ this.updateDom() }, moment().add(1, 'days').hours(0).minutes(0).seconds(0)-moment()) },
it seems to me this would work to reset at midnight, but according to George here, it’s not working - can you help me figure it out, or summon in someone that can?
Thanks.
-
RE: Magic mirror dual screen
@sdetweil I figured I might as well make it as clear as possible…