A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Mmm-Wunderlist can't show individual lists
-
{ module: 'MMM-Wunderlist', position: 'bottom_left',// This can be any of the regions. Best$ header: 'Matinköp', // This is optional config: {// See 'Configuration options' for more information. accessToken: '******************', clientID: '****************', //example clientID lists: ['Att göra', 'Matinköp'], interval: 3500, ShowDeadline: true, fade: true, } }, :::
-
-
Hi,
One way around this might be to put two modules in your config, as shown below. That way you can have a separate header for each.
Hope this works.{ module: 'MMM-Wunderlist', position: 'bottom_left',// This can be any of the regions. Best$ header: 'Att göra', // This is optional config: {// See 'Configuration options' for more information. accessToken: '******************', clientID: '****************', //example clientID lists: ['Att göra'], interval: 3500, ShowDeadline: true, fade: true, } }, { module: 'MMM-Wunderlist', position: 'bottom_left',// This can be any of the regions. Best$ header: 'Matinköp', // This is optional config: {// See 'Configuration options' for more information. accessToken: '******************', clientID: '****************', //example clientID lists: ['Matinköp'], interval: 3500, ShowDeadline: true, fade: true, } },
-
@joela85 hi, thanks for replying!
i had the same thought so i tried to copy paste the same information but MM told me there was an error in the config.js and did not boot when i tried that method. Since i am still a beginner at this i might have screwed up somewhere, so i am going to try to paste your code instead tonight and try it.
-
@joela85 this worked like a charm, I must have screwed up the code. I only have to figure out how to place them to not grow upwards when I add items but have a fixed height. Thanks