Read the statement by Michael Teeuw here.
birthdaylist dont show up
-
I have tried to install BirthdayList, but it’s not appearing. I followed the guide and used the following commands:
cd ~/MagicMirror/modules
git clone https://github.com/sdetweil/birthdaylist
cd birthdaylist
npm installHowever, nothing is showing up on my Magic Mirror.
However, my other modules are showing up on my Magic Mirror.
-
@svoe88 said in birthdaylist dont show up:
currentMonthOnly: true,
change that to false
only showing birthdays for October, and that means ONLY for TODAY (as its the last day)
-
@svoe88 what did you put in config.js?
-
I’ve try both
{ module: "birthdaylist", position: "bottom_left", config: { } },
{ module: "birthdaylist", position:'top_left', config: { language: "de", dimmEntries: false, // true: dims entries and the associated // symbol when the date has expired. // false: dont display entries and the associated // symbol when the date has expired. initialLoadDelay: 0, // How many seconds to wait on a fresh start up. // This is to prevent collision with all other modules also // loading all at the same time. This only happens once, // when the mirror first starts up. updateDelay: 5, // How many seconds after midnight before a refresh // This is to prevent collision with other // modules refreshing at the same time. currentMonthOnly: true, // will show birthdays for the current month only if true maxEntries: 0, // maximum entries to show, default is all dateFormat: '', // date format for birthday (default is none), could be 'Do' for 'Sep 12th' ageFormat:'', // some format string for the persons age, '[ n ]' n will be replace by age value debug:false } }
-
@svoe88 said in birthdaylist dont show up:
currentMonthOnly: true,
change that to false
only showing birthdays for October, and that means ONLY for TODAY (as its the last day)
-
@sdetweil
i works new Thanks