Whilst the config.js now loads, it’s not showing the new, replacement compliments.
I’ve restarted NPM, no change.
I’ve powered Pi off & on, no change.
Whilst the config.js now loads, it’s not showing the new, replacement compliments.
I’ve restarted NPM, no change.
I’ve powered Pi off & on, no change.
Thanks, it was that, and a missing } close curly bracket.
In config.js
{
module: 'compliments',
position: 'lower_third'
config: {
anytime: [
"Compliment 1",
"Compliment 2",
"Compliment 3"
]
},
{
module: 'currentweather',
Gives the “Please create a config file” error
Take out the. . .
config: {
anytime: [
"Compliment 1",
"Compliment 2",
"Compliment 3"
]
. . .lines, and it’s OK.

What’s it not liking in there?
And suddenly it come back into life! :)
Powered off & on, default config OK, and mine too.
But, cannot see Mirror from PC, despite full whitelisting in config.
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.1/120",],
Just tried the default sample config.js, and that doesn’t work either!
@strawberry-3.141 I’ve no idea what I’m looking for, sorry…
Ok, like this?
modules: [
{
module: 'alert', # Module 0
},
{
module: "MMM-MyTemps", # Module 1
header: "Home Sensors",
position: "bottom_right",
config: {
host: "192.168.1.41",
path: "/temp2mcf.php?format=json",
reloadInterval: 2 * 1000 //2 seconds
}
},
{
module: "updatenotification", # Module 2
position: "top_bar"
},
{
module: 'clock', # Module 3
position: 'top_left'
},
{
module: 'calendar', # Module 4
. … …And second calendar = # Module 5
making the custom.css look like this:
#module_4_calendar .fa.fa-calendar-check-o {
color: #00d2FF /* 55=Green FF=Blue*/
}
#module_5_calendar .fa.fa-trash-o {
color: #C97F7F; /* Brown */
}
module: 'calendar',
header: 'Calendar',
module: 'calendar',
header: 'Binday',
With two calendars, how do I get different icons / icon colours again in custom.css?
.calendar .fa.fa-calendar-check-o {
color: #00d2FF /* 55=Green FF=Blue*/
}
.calendar .fa.fa-trash-o {
color: #C97F7F; /* Brown */
}