Advertisement
Guest User

Untitled

a guest
Jan 7th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. /* Magic Mirror Config Sample
  2. *
  3. * By Michael Teeuw http://michaelteeuw.nl
  4. * MIT Licensed.
  5. */
  6.  
  7. var config = {
  8. port: 8080,
  9.  
  10. language: 'nl',
  11. timeFormat: 24,
  12. units: 'metric',
  13.  
  14. modules: [
  15. {
  16. module: 'alert',
  17. },
  18. {
  19. module: 'clock',
  20. position: 'top_left'
  21. },
  22. {
  23. module: 'calendar',
  24. header: 'Agenda',
  25. position: 'top_left',
  26. config: {
  27. calendars: [
  28. {
  29. symbol: 'calendar-check-o ',
  30. url: 'webcal://p05-calendarws.icloud.com/ca/subscribe/1/bqpfoUY2kBG4FC7P7SJj5FOBtFqlvu8beQV8QuAjHZzG3h-e3XQ_j2U9sEtVwTnX'
  31. }
  32. ]
  33. }
  34. },
  35. {
  36. module: 'compliments',
  37. position: 'lower_third'
  38. },
  39. {
  40. module: 'currentweather',
  41. position: 'top_right',
  42. config: {
  43. location: 'Hasselt,Belgium',
  44. locationID: '2796491', //ID from http://www.openweathermap.org
  45. appid: 'f4a230ccfe331931a2ee30ee4ee4c85a'
  46. }
  47. },
  48. {
  49. module: 'weatherforecast',
  50. position: 'top_right',
  51. header: 'Weather Forecast',
  52. config: {
  53. location: 'Hasselt,Belgium',
  54. locationID: '2796491', //ID from http://www.openweathermap.org
  55. appid: 'f4a230ccfe331931a2ee30ee4ee4c85a'
  56. }
  57. },
  58. {
  59. module: 'newsfeed',
  60. position: 'bottom_bar',
  61. config: {
  62. feeds: [
  63. {
  64. title: "Buitenland",
  65. url: "http://www.standaard.be/rss/section/e70ccf13-a2f0-42b0-8bd3-e32d424a0aa0"
  66. },
  67. { title: "Binnenland",
  68. url: "http://www.standaard.be/rss/section/1f2838d4-99ea-49f0-9102-138784c7ea7c"
  69. },
  70. { title: "Reizen",
  71. url: "http://www.standaard.be/rss/section/eed96e23-ed90-4818-83ab-adabf8caf0f4"
  72. }
  73. ],
  74. showPublishDate: true
  75. }
  76. },
  77. {
  78. module: 'email',
  79. position: 'bottom_left',
  80. header: 'Email',
  81. config:{
  82. user: '11402269@student.pxl.be',
  83. password: '4Xp9&zO&',
  84. host: 'outlook.office365.com',
  85. port: 993,
  86. tls: true,
  87. authTimeout: 10000,
  88. numberOfEmails: 5,
  89. fade: true
  90. },
  91. },
  92. ]
  93.  
  94. };
  95.  
  96. /*************** DO NOT EDIT THE LINE BELOW ***************/
  97. if (typeof module !== 'undefined') {module.exports = config;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement