config.js 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. let config = {
  2. port: 8080,
  3. language: "de",
  4. locale: "de-DE",
  5. timeFormat: 24,
  6. units: "metric",
  7. modules: [
  8. /**====================== Definiton des Carousels ========================**/
  9. {
  10. module: 'MMM-Carousel',
  11. position: 'bottom_bar',
  12. config: {
  13. transitionInterval: 30000,
  14. showPageIndicators: true,
  15. showPageControls: false,
  16. ignoreModules: [],
  17. mode: 'slides',
  18. slides: {
  19. Main: [
  20. {
  21. name: 'clock',
  22. position: "top_left",
  23. carouselId: "1"
  24. },
  25. {
  26. name: 'calendar',
  27. position: "middle_center"
  28. }
  29. ],
  30. }
  31. }
  32. },
  33. /**====================== Definitonen der Uhren ========================**/
  34. {
  35. module: "clock",
  36. position: "top_left",
  37. config: {
  38. timeFormat: 24,
  39. carouselId: "1"
  40. }
  41. },
  42. /**====================== Definitonen der Kalender ========================**/
  43. {
  44. module: "calendar",
  45. position: "middle_center",
  46. config: {
  47. tableClass: "large wachenaufgaben",
  48. fetchInterval: 600000,
  49. maxTitleLength: 50,
  50. displaySymbol: true,
  51. showLocation: false,
  52. maxTitleLines: 1,
  53. maximumEntries: 9,
  54. calendars: [
  55. {
  56. url: 'https://nc.x0p.it/remote.php/dav/public-calendars/ZMGgBLGn52oATzDw/?export',
  57. symbolClass: 'todo-symbol',
  58. titleClass: 'todo-title',
  59. timeClass: 'todotime',
  60. symbol: 'clipboard-list-check',
  61. maximumNumberOfDays: 1
  62. },
  63. {
  64. url: 'https://nc.x0p.it/remote.php/dav/public-calendars/WW49cKGiiZyy95q8/?export',
  65. symbolClass: 'clean-symbol',
  66. titleClass: 'clean-title',
  67. timeClass: 'clean-time',
  68. symbol: 'vacuum',
  69. maximumNumberOfDays: 1
  70. },
  71. {
  72. url: 'https://nc.x0p.it/remote.php/dav/public-calendars/eMQW6HmyjfgS8bXq?export',
  73. symbolClass: 'info-symbol',
  74. titleClass: 'info-title',
  75. timeClass: 'info-time',
  76. symbol: 'circle-info',
  77. maximumNumberOfDays: 7
  78. }
  79. ]
  80. }
  81. }
  82. ]
  83. }