@angeliKITTYx you missed a step
cd ~/MagicMirror
npm run install-mm
Forum wide moderators
@angeliKITTYx you missed a step
cd ~/MagicMirror
npm run install-mm
@evroom what folder to be in??
@rkorell their idea of notifications is not the same as MagicMirror’s usage
you can use MMM-ViewNotifications. it presents a window( config change to leave them there for awhile, as default clears them too fast during development use)
@rkorell i think framelight can also listen and act on other ‘system’ (any) notification
as these two are from another module, not the core ‘system’.
therefore you can setup for ANY notification
@anonymous321 look at the messages at startu
if using pm2 then
pm2 logs --lines=xxx
xxx is number of most recent lines, default 15
or look inside the package.json file
@anonymous321 2 things
what MagicMirror version is this? latest?
@Chunnel414 i looked thru the code, and don’t see any impact of not having a position
@Chunnel414 you can do the same thing with MMM-pages…
make everything classes:“fixed” (using the simplified naming config)
except those modules
they will be classes:“page1”, “page2”… etc
and pages will have 5 pages defines
{
module: "MMM-pages",
disabled: false,
config: {
modules: [
[
"page1"
],
[
"page2"
],
[
"page3"
],
[
"page4"
],
[
"page5"
]
],
fixed: [
"fixed"
],
animationTime: 10000,
hiddenPages: {
}
},
order: "*"
},
the 5 modules are all configured top_right
only one will show at a time
{
module:"clock",
position:"top_right",
classes:"page1",
config:{
...
...
}
}
etc