Sorry if I shouldn’t put this here, but I wanted to show a quick tutorial to link up a google calendar to your mirror. So, here it is…
How to link up a google calendar account
- 
Access google calendars and go to settings 
- 
At the top go to the Calendars tab 
- 
Select the calendar with your google name on it 
- 
On the new page find the Calendar Address tab 
- 
Click on ICAL to the right 
- 
Copy the link 
 7.Find your Config.js file under /MagicMirror/config
- 
Scroll down to your calendar module or make a new calendar module by copying and pasting the old module or making changes to the current calendar module 
- 
Side note: the modules will display in the order you put them in so whatever module you want displayed first will have to go before the other calendar modules 
- 
Input the link and make your new module look like this 
 {
 module: ‘calendar’,
 header: ‘Personal Calender’,
 position: ‘top_left’,
 config: {
 calendars: [
 {
 symbol: 'calendar-check-o ',
 url: ‘insert link here’
 }
 ]
 }
 },
- 
Then save and exit and now you have a google calendar linked to your mirror 
Again a small side not make sure that the spacing is correct else you might make an irreparable error. But, as always make a copy of the config before you change it. Hope you guys have fun with this.