@toktias you are running node v4.2.6 the current version is v10.4.1 https://nodejs.org/en/
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-NOAA - Another Weather Module
-
RE: Error during installation of MM2
@rudibarani the command you used to install MM is deprecated.
Use
bash -c "$(curl -sL https://raw.githubusercontent.com/MichMich/MagicMirror/master/installers/raspberry.sh)"
instead. -
RE: Different Calendars in different colors
@amanzimdwini in the upcoming version there will be color support https://github.com/MichMich/MagicMirror/tree/develop/modules/default/calendar#calendar-configuration
-
RE: Can somebody with permissions rename my posting bc I have renamed my module...
i think it will be handy if the creator of a topic can edit the first post unlimited to add updates, at least in the showcase section
-
RE: Alert font size
@Varguit the problem is that there are some inline styles, some css ninja should get you going
.ns-alert span.light[style], .ns-alert span.thin[style] { font-size: 60px !important; }
-
MMM-TTS
An offline text-to-speech module
[card:fewieden/MMM-TTS]
For developers:
this.sendNotification('MMM-TTS', 'This is a text to read. Hello World!');
-
RE: Basic configuration issues with compliments & calendar modules
@mh77 you have to type booleans without quotes
disabled: true
,fade: false
anddisplaySymbol: false
-
RE: MMM-Fuel
Changelog:
4 new config options
- shortenText: shorten name and address after certain characters
- showAddress: show address of gas station or not
- showOpenOnly: show only gas stations that are open or all
- iconHeader: display icon in header
[card:fewieden/MMM-Fuel]
-
RE: NOOB needs an assist with basic module configuration
cd ~/MagicMirror nano config/config.js //insert your appid for the weather app ctrl+x //confim npm start
-
RE: change current weather colors - time and wind
@karde I’m assuming you’re using this module https://github.com/RedNax67/MMM-WunderGround
due to the sunset and sunrise time is a span element and the following sibling of the icon you can apply this css rule in custom.css
.wi.dimmed.wi-sunrise + span, .wi.dimmed.wi-sunset + span { color: orange; }