- Non-X-11 based Linux Desktop might not work.
- This behaviour may severely be dependent on the platform, so in some environment, it might not work.
- When some OTHER application occupies the “most-bottomed position” later, MM might be expelled to the foreground. I’m not sure.
Read the statement by Michael Teeuw here.
Posts made by MMRIZE
-
RE: [HOW_TO] MagicMirror as Desktop Wallpaper (all platform : updated)
-
RE: [HOW_TO] MagicMirror as Desktop Wallpaper (all platform : updated)
@OscarVsp
You can check whether MM is really ‘most-bottomed’. Adjust some CSS to check whether MM is “COVERING but just transparent” against other icons or applications. -
RE: [HOW_TO] MagicMirror as Desktop Wallpaper (all platform : updated)
I’ve tested MacOS and Windows, but not Linux, sorry. But Electron Manual says
type: 'desktop'
options would work on Linux Environment too.
What kind of Linux are you using? -
RE: Does 'weather' module broadcast the forecasting?
@ankonaskiff17
I need weather information (current status or some days forecasting) to be used in my other module. For example, changing the background or colour theme by current weather status. or registering upcoming weather events on the calendar, etc…
It will be more efficient when the existing weather module data could be accessible instead of implementing another new weather parser for that purpose. -
Does 'weather' module broadcast the forecasting?
As title,
Doesweather
module broadcast the notification? Oldcurrentweather
emitted, but not sure of the new module. Does anyone know? -
RE: MMM- Google Photos error install
@demzykster
I think you did ‘npm install’ in wrong directory.(maybe /modules directory instead of /modules/MMM-GooglePhotos , I guess) -
MMM-CalendarExt3
MMM-CalendarExt3
New MagicMirror module for calendar view. (successor of
MMM-CalendarExt2
)Screenshot
Concept
My previous module,
MMM-CalendarExt2
, was always notorious for its difficulty to use. I need a more easy and light one. So I rewrite this from scratch newly.Features
What’s different with
CX2
.- Only focusing on how it shows; Parsing is delegated to original MagicMirror module
calendar
. (It means thecalendar
module is REQUIRED to use this module.) - Only
week
andmonth
views. I found that people are rarely interested in other views onCX2
. So I drop out different views. - Respect to original MM’s hide/show mechanism. Now you can hide/show this module easily with other scheduler or control modules. (By the way, Look at this module also. - MMM-Scenes)
- No dependency on the 3rd party modules (e.g. momentJS or Luxon, etc.). This is built with pure JS and CSS only.
Main Features
week
view ormonth
view- locale-aware calendar
- customizing events: filtering, sorting, transforming
- multi-instance available. You don’t need to copy and rename the module. Just add one more configuration in your
config.js
.
- Only focusing on how it shows; Parsing is delegated to original MagicMirror module
-
RE: MMM-Calendar Ext2 google calendar colors
-
Impossible to inherit Google’s colour setting (The event itself has no information about how it shows in Google calendar)
-
You can
transform
your event to get a different CSS className by the condition of events.
See theSort, Filter, Transform
parts of MMM-CalendarExt2 documents.
-
-
RE: *REQUEST* how to make calendar event colored according to title string found?
@M1st3r-E
You can use transforming inview
configuration.transform: (event) => { if (event.title.search("Birthday") > -1) { // If the event might include "Birthday" in its title, event.className = "BirthdayTitle"; // Assign new CSS class name of that event to "BirthdayTitle" } return event; // Return that event. };
event object could have these properties;
calendarId: 1; calendarName: "Tottenham"; className: "mySoccerClass"; description: "FA Cup, round 3"; duration: 7200; endDate: "1546638300"; endDateJ: "2019-01-04T21:45:00.000Z"; icon: "noto-soccer-ball"; isFullday: false; isMoment: false; isOneday: true; isPassed: false; isRecurring: false; isCancelled: false; location: ""; startDate: "1546631100"; startDateJ: "2019-01-04T19:45:00.000Z"; title: "Team T.B.A. - Tottenham Hotspur"; uid: "1:1546631100:1546638300:op54vk5s1r0ivl8i165ampip88@google.com"; ms_busystatus: "BUSY"; // Only for calendar from MS Outlook. Available : "BUSY", "FREE", "TENTATIVE", "OOF"