forked from Jopyth/MMM-Remote-Control
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodules.json.template
More file actions
25291 lines (25291 loc) · 811 KB
/
modules.json.template
File metadata and controls
25291 lines (25291 loc) · 811 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"category": "Transport / Travel",
"defaultSortWeight": 8,
"description": "Displays current flights in a defined area with a map containing the plane positions.",
"hasGithubIssues": false,
"id": "khassel/MMM-Flights",
"image": "MMM-Flights---khassel.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2026-01-05T22:37:53.000+01:00",
"license": "MIT",
"maintainer": "karsten13",
"maintainerURL": "https://gitlab.com/khassel",
"name": "MMM-Flights",
"stars": 2,
"tags": [
"flight",
"tracking",
"radar"
],
"url": "https://gitlab.com/khassel/MMM-Flights"
},
{
"category": "Transport / Travel",
"defaultSortWeight": 12,
"description": "Displays bus information for the Nottingham bus company, NCT.",
"hasGithubIssues": false,
"id": "dnmmrdr1/MMM-NCTtimes",
"image": "MMM-NCTtimes---dnmmrdr1.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2022-08-07T11:24:59.000+00:00",
"license": "MIT",
"maintainer": "dnmmrdr",
"maintainerURL": "https://gitlab.com/dnmmrdr1",
"name": "MMM-NCTtimes",
"stars": 1,
"tags": [
"nct",
"buses"
],
"url": "https://gitlab.com/dnmmrdr1/MMM-NCTtimes"
},
{
"category": "Transport / Travel",
"defaultSortWeight": 11,
"description": "Display next passing times and traffic information from the RATP for Metros, RERs, and Tramways of Paris, France. Fully featured.",
"hasGithubIssues": false,
"id": "closingin/mmm-ratp",
"isArchived": false,
"issues": true,
"lastCommit": "2021-05-27T13:07:01.000+00:00",
"license": "GPLv3",
"maintainer": "closingin",
"maintainerURL": "https://gitlab.com/closingin",
"name": "MMM-RATP",
"stars": 2,
"url": "https://gitlab.com/closingin/mmm-ratp"
},
{
"category": "Weather",
"defaultSortWeight": 10,
"description": "Displays snow reports from bergfex.at. Countries provided by bergfex.at can be configured and set.<br>This is a fork of [the unmaintained module from nebulux](https://github.com/nebulx29/MMM-bergfex).",
"hasGithubIssues": false,
"id": "MajorChris1983/MMM-bergfex",
"image": "MMM-bergfex---MajorChris1983.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2021-08-25T21:58:19.000+02:00",
"license": "Apache-2.0",
"maintainer": "MajorChris1983",
"maintainerURL": "https://gitlab.com/MajorChris1983",
"name": "MMM-bergfex",
"stars": 2,
"tags": [
"bergfex",
"weather",
"forecast",
"snow",
"skiing",
"snowboarding"
],
"url": "https://gitlab.com/MajorChris1983/MMM-bergfex"
},
{
"category": "Weather",
"defaultSortWeight": 14,
"description": "Displays the current and forecasted UV Index for a given location given its longitude and latitude. It requires a free API token from <https://www.openuv.io/>.",
"hasGithubIssues": false,
"id": "rsperezn/mmm-uvindex",
"isArchived": false,
"issues": true,
"lastCommit": "2019-12-14T21:46:27+11:00",
"maintainer": "rsperezn",
"maintainerURL": "https://bitbucket.org/rsperezn",
"name": "MMM-UVIndex",
"stars": 1,
"url": "https://bitbucket.org/rsperezn/mmm-uvindex"
},
{
"category": "Weather",
"defaultSortWeight": 7,
"description": "Uses the default weather module as data provider with own njk templates and animated weather icons.",
"hasGithubIssues": false,
"id": "khassel/MMM-WeatherBridge",
"isArchived": false,
"issues": true,
"lastCommit": "2026-01-03T19:01:42.000+00:00",
"maintainer": "karsten13",
"maintainerURL": "https://gitlab.com/khassel",
"name": "MMM-WeatherBridge",
"stars": 1,
"url": "https://gitlab.com/khassel/MMM-WeatherBridge"
},
{
"category": "Utility / IoT / 3rd Party / Integration",
"defaultSortWeight": 9,
"description": "Simplifies module installation in MagicMirror.",
"hasGithubIssues": false,
"id": "khassel/MMM-ModInstall",
"isArchived": false,
"issues": true,
"lastCommit": "2026-01-03T19:02:32.000+00:00",
"maintainer": "karsten13",
"maintainerURL": "https://gitlab.com/khassel",
"name": "MMM-ModInstall",
"stars": 1,
"url": "https://gitlab.com/khassel/MMM-ModInstall"
},
{
"category": "Utility / IoT / 3rd Party / Integration",
"defaultSortWeight": 6,
"description": "Shows repository statistics for DockerHub, GitHub and GitLab.",
"hasGithubIssues": false,
"id": "khassel/MMM-RepoStats",
"image": "MMM-RepoStats---khassel.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2025-04-07T21:52:07.000+02:00",
"license": "MIT",
"maintainer": "karsten13",
"maintainerURL": "https://gitlab.com/khassel",
"name": "MMM-RepoStats",
"stars": 2,
"tags": [
"dockerhub",
"docker",
"images",
"github",
"gitlab",
"repository",
"statistics",
"media"
],
"url": "https://gitlab.com/khassel/MMM-RepoStats"
},
{
"category": "Utility / IoT / 3rd Party / Integration",
"defaultSortWeight": 6,
"description": "Shows output of commands executed on the host.",
"hasGithubIssues": false,
"id": "khassel/MMM-Shell-Output",
"image": "MMM-Shell-Output---khassel.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2026-01-03T19:00:46.000+00:00",
"license": "MIT",
"maintainer": "karsten13",
"maintainerURL": "https://gitlab.com/khassel",
"name": "MMM-Shell-Output",
"stars": 1,
"tags": [
"shell"
],
"url": "https://gitlab.com/khassel/MMM-Shell-Output"
},
{
"category": "Utility / IoT / 3rd Party / Integration",
"defaultSortWeight": 6,
"description": "A simple PIR motion sensor module where you can specify your own commands for controlling gpio and screen.",
"hasGithubIssues": false,
"id": "khassel/MMM-Universal-Pir",
"isArchived": false,
"issues": true,
"lastCommit": "2025-10-15T22:13:49.000+02:00",
"maintainer": "karsten13",
"maintainerURL": "https://gitlab.com/khassel",
"name": "MMM-Universal-Pir",
"stars": 4,
"url": "https://gitlab.com/khassel/MMM-Universal-Pir"
},
{
"category": "Utility / IoT / 3rd Party / Integration",
"defaultSortWeight": 8,
"description": "Embed YouTube videos and playlists using the Electron webview tag rather than an iframe. May assist access to YouTube videos blocked in an iframe.",
"hasGithubIssues": false,
"id": "doctorfree/MMM-YouTubeWebView",
"image": "MMM-YouTubeWebView---doctorfree.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2021-11-09T07:36:17.000-08:00",
"license": "MIT",
"maintainer": "doctorfree",
"maintainerURL": "https://gitlab.com/doctorfree",
"name": "MMM-YouTubeWebView",
"stars": 1,
"tags": [
"webview"
],
"url": "https://gitlab.com/doctorfree/MMM-YouTubeWebView"
},
{
"category": "Entertainment / Misc",
"defaultSortWeight": 8,
"description": "Displays current position of the International Space Station on a map.",
"hasGithubIssues": false,
"id": "khassel/MMM-ISS-Map",
"image": "MMM-ISS-Map---khassel.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2025-11-09T14:45:47.000+00:00",
"license": "MIT",
"maintainer": "karsten13",
"maintainerURL": "https://gitlab.com/khassel",
"name": "MMM-ISS-Map",
"stars": 1,
"tags": [
"iss",
"tracking",
"map"
],
"url": "https://gitlab.com/khassel/MMM-ISS-Map"
},
{
"category": "Entertainment / Misc",
"defaultSortWeight": 14,
"description": "Display your Instagram photos, videos, multiple media postings, and post description. Makes use of the Facebook Instagram Graph API.",
"hasGithubIssues": false,
"id": "doctorfree/MMM-InstagramView",
"image": "MMM-InstagramView---doctorfree.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2021-11-10T11:17:46.000-08:00",
"license": "MIT",
"maintainer": "doctorfree",
"maintainerURL": "https://gitlab.com/doctorfree",
"name": "MMM-InstagramView",
"stars": 1,
"tags": [
"instagram",
"entertainment"
],
"url": "https://gitlab.com/doctorfree/MMM-InstagramView"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": -4,
"description": "An unofficial MagicMirror² 3rd Party Package Manager. Automates searching, installation, removal, updating, and upgrading of MagicMirror² modules.",
"hasGithubIssues": true,
"id": "Bee-Mar/mmpm",
"image": "mmpm---Bee-Mar.jpg",
"isArchived": false,
"issues": true,
"keywords": [
"package manager",
"module installer"
],
"lastCommit": "2026-01-03T23:12:08Z",
"license": "MIT",
"maintainer": "Bee-Mar",
"maintainerURL": "https://github.com/Bee-Mar",
"name": "mmpm",
"stars": 235,
"url": "https://github.com/Bee-Mar/mmpm"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 5,
"description": "A template for creating new MagicMirror² modules.",
"hasGithubIssues": true,
"id": "Dennis-Rosenbaum/MMM-Template",
"image": "MMM-Template---Dennis-Rosenbaum.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2025-07-07T12:43:25Z",
"license": "MIT",
"maintainer": "Dennis-Rosenbaum",
"maintainerURL": "https://github.com/Dennis-Rosenbaum",
"name": "MMM-Template",
"stars": 12,
"tags": [
"template"
],
"url": "https://github.com/Dennis-Rosenbaum/MMM-Template"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 4,
"description": "Alternative programmable alert/notification presenter.",
"hasGithubIssues": true,
"id": "MMRIZE/MMM-AlertExt",
"image": "MMM-AlertExt---MMRIZE.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2024-03-06T15:03:02Z",
"license": "MIT",
"maintainer": "MMRIZE",
"maintainerURL": "https://github.com/MMRIZE",
"name": "MMM-AlertExt",
"stars": 6,
"tags": [
"alert"
],
"url": "https://github.com/MMRIZE/MMM-AlertExt"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 6,
"description": "Set 1 or more schedules to dim and brighten your screen at specific times.",
"hasGithubIssues": true,
"id": "Fifteen15Studios/MMM-AutoDimmer",
"isArchived": false,
"issues": true,
"lastCommit": "2025-11-06T12:52:58Z",
"license": "MIT",
"maintainer": "Fifteen15Studios",
"maintainerURL": "https://github.com/Fifteen15Studios",
"name": "MMM-AutoDimmer",
"stars": 29,
"url": "https://github.com/Fifteen15Studios/MMM-AutoDimmer"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 11,
"description": "A simple module to run a bash/terminal command on a loop, displaying stdout/stderr to screen.",
"hasGithubIssues": true,
"id": "mathew-fleisch/MMM-Bash",
"isArchived": false,
"issues": true,
"lastCommit": "2024-06-19T12:45:35Z",
"license": "MIT",
"maintainer": "draxiom",
"maintainerURL": "https://github.com/mathew-fleisch",
"name": "MMM-Bash",
"stars": 3,
"url": "https://github.com/mathew-fleisch/MMM-Bash"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 7,
"description": "Flicker the whole screen to prevent a burn-in effect on your display.",
"hasGithubIssues": true,
"id": "werthdavid/MMM-BurnIn",
"image": "MMM-BurnIn---werthdavid.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2021-06-21T07:30:30Z",
"license": "MIT",
"maintainer": "werthdavid",
"maintainerURL": "https://github.com/werthdavid",
"name": "MMM-BurnIn",
"stars": 33,
"tags": [
"lcd",
"amoled",
"burn-in",
"burn",
"screensaver"
],
"url": "https://github.com/werthdavid/MMM-BurnIn"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 16,
"description": "Use a button to hide or show different modules via a broadcast message.",
"hasGithubIssues": true,
"id": "ptrbld/MMM-Button",
"isArchived": false,
"issues": true,
"lastCommit": "2019-02-25T08:40:47Z",
"license": "MIT",
"maintainer": "PtrBld",
"maintainerURL": "https://github.com/ptrbld",
"name": "MMM-Button",
"stars": 19,
"tags": [
"button"
],
"url": "https://github.com/ptrbld/MMM-Button"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 1,
"description": "Allows you to enhance your setup by integrating physical buttons via GPIO. This module supports multiple buttons, each of which can be individually configured to perform different actions based on short or long presses. With configurable notifications and versatile functionality, MMM-Buttons provides a powerful way to interact with your MagicMirror².",
"hasGithubIssues": true,
"id": "KristjanESPERANTO/MMM-Buttons",
"image": "MMM-Buttons---KristjanESPERANTO.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2025-12-15T15:50:20Z",
"license": "MIT",
"maintainer": "KristjanESPERANTO",
"maintainerURL": "https://github.com/KristjanESPERANTO",
"name": "MMM-Buttons",
"stars": 3,
"tags": [
"buttons",
"gpio",
"notifications"
],
"url": "https://github.com/KristjanESPERANTO/MMM-Buttons"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": -1,
"description": "Create dynamic slideshows of your modules. Switch between different screens automatically or manually, organize modules by position, or build custom slide layouts. Great for small screens or information-rich setups.",
"hasGithubIssues": true,
"id": "shbatm/MMM-Carousel",
"image": "MMM-Carousel---shbatm.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2026-01-01T23:37:10Z",
"license": "MIT",
"maintainer": "shbatm",
"maintainerURL": "https://github.com/shbatm",
"name": "MMM-Carousel",
"stars": 53,
"tags": [
"carousel",
"navigation",
"move",
"resize modules",
"slides",
"tabs",
"pages"
],
"url": "https://github.com/shbatm/MMM-Carousel"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 6,
"description": "Make clickable text to navigate to different pages.",
"hasGithubIssues": true,
"id": "Aws505/MMM-ClickToNavigate",
"image": "MMM-ClickToNavigate---Aws505.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2025-11-29T19:28:10Z",
"license": "MIT",
"maintainer": "Aws505",
"maintainerURL": "https://github.com/Aws505",
"name": "MMM-ClickToNavigate",
"stars": 1,
"tags": [
"navigation",
"click",
"pages",
"touch",
"interactive"
],
"url": "https://github.com/Aws505/MMM-ClickToNavigate"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 12,
"description": "Display internet connection status.",
"hasGithubIssues": true,
"id": "sheyabernstein/MMM-connection-status",
"image": "MMM-connection-status---sheyabernstein.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2023-08-22T23:39:14Z",
"license": "MIT",
"maintainer": "SheyaBernstein",
"maintainerURL": "https://github.com/sheyabernstein",
"name": "MMM-connection-status",
"stars": 30,
"tags": [
"magicmirror internet connection"
],
"url": "https://github.com/sheyabernstein/MMM-connection-status"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 15,
"description": "CookieCutter template for generating MagicMirror² modules.",
"hasGithubIssues": true,
"id": "xadamxk/cookiecutter-magic-mirror-module",
"isArchived": false,
"issues": true,
"lastCommit": "2022-07-26T04:06:15Z",
"maintainer": "xadamxk",
"maintainerURL": "https://github.com/xadamxk",
"name": "cookiecutter-magic-mirror-module",
"stars": 4,
"url": "https://github.com/xadamxk/cookiecutter-magic-mirror-module"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 7,
"description": "Custom element `mm-time` launcher.",
"hasGithubIssues": true,
"id": "MMRIZE/MMM-CustomElementTime",
"isArchived": false,
"issues": true,
"lastCommit": "2024-07-31T13:50:31Z",
"license": "MIT",
"maintainer": "MMRIZE",
"maintainerURL": "https://github.com/MMRIZE",
"name": "MMM-CustomElementTime",
"stars": 3,
"url": "https://github.com/MMRIZE/MMM-CustomElementTime"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 9,
"description": "Change positions of modules.",
"hasGithubIssues": false,
"id": "gonzonia/MMM-Dynamic-Modules",
"isArchived": false,
"issues": true,
"lastCommit": "2025-03-13T17:20:19Z",
"maintainer": "gonzonia",
"maintainerURL": "https://github.com/gonzonia",
"name": "MMM-Dynamic-Modules",
"stars": 2,
"url": "https://github.com/gonzonia/MMM-Dynamic-Modules"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 9,
"description": "Multi purpose module to inject code and mess around with your mirror without developing a complete new module.",
"hasGithubIssues": true,
"id": "shin10/MMM-FF-code-injector",
"isArchived": false,
"issues": true,
"lastCommit": "2022-08-01T17:22:30Z",
"license": "ISC",
"maintainer": "shin10",
"maintainerURL": "https://github.com/shin10",
"name": "MMM-FF-code-injector",
"stars": 2,
"url": "https://github.com/shin10/MMM-FF-code-injector"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 11,
"description": "Detecting 3D gesture with GestIC Sensor (MGC3130).",
"hasGithubIssues": true,
"id": "jancalve/MMM-flick-gestures",
"isArchived": false,
"issues": true,
"lastCommit": "2020-01-17T21:00:03Z",
"license": "MIT",
"maintainer": "jancalve",
"maintainerURL": "https://github.com/jancalve",
"name": "MMM-Flick-Gestures",
"stars": 6,
"tags": [
"flick",
"board",
"python"
],
"url": "https://github.com/jancalve/MMM-flick-gestures"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 2,
"description": "Displays information from the MagicMirror² forum. Like latest posts, unread posts, etc. The module should also work for other NodeBB forums, but it is not tested.",
"hasGithubIssues": true,
"id": "KristjanESPERANTO/MMM-Forum",
"image": "MMM-Forum---KristjanESPERANTO.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2025-10-08T20:33:36Z",
"license": "ISC",
"maintainer": "KristjanESPERANTO",
"maintainerURL": "https://github.com/KristjanESPERANTO",
"name": "MMM-Forum",
"stars": 3,
"tags": [
"forum",
"nodebb"
],
"url": "https://github.com/KristjanESPERANTO/MMM-Forum"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 15,
"description": "Allows gesture control of compliments (only show when stepping in front of mirror), newsfeed (wave left / right, up for full-screen) and pages with two types of infrared sensors. Gestures can be up, down, left, right, far and close movements of the hand in front of a gesture sensor (APDS-9960) and present and away gestures in front of an IR distance sensor (GP2Y0A21YK).",
"hasGithubIssues": true,
"id": "thobach/MMM-Gestures",
"isArchived": false,
"issues": true,
"lastCommit": "2022-12-17T15:40:29Z",
"license": "MIT",
"maintainer": "thobach",
"maintainerURL": "https://github.com/thobach",
"name": "MMM-Gestures",
"stars": 46,
"tags": [
"gesture",
"gestures"
],
"url": "https://github.com/thobach/MMM-Gestures"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 13,
"description": "Displays merge requests from gitlab and their status.",
"hasGithubIssues": true,
"id": "jkschoen/MMM-Gitlab-MergeRequests",
"image": "MMM-Gitlab-MergeRequests---jkschoen.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2020-12-22T04:33:40Z",
"license": "MIT",
"maintainer": "jkschoen",
"maintainerURL": "https://github.com/jkschoen",
"name": "MMM-Gitlab-MergeRequests",
"stars": 1,
"url": "https://github.com/jkschoen/MMM-Gitlab-MergeRequests"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 7,
"description": "Displays GitHub repository information.",
"hasGithubIssues": true,
"id": "fpfuetsch/MMM-GitHub-Monitor",
"image": "MMM-GitHub-Monitor---fpfuetsch.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2025-01-04T12:09:56Z",
"license": "MIT",
"maintainer": "fpfuetsch",
"maintainerURL": "https://github.com/fpfuetsch",
"name": "MMM-GitHub-Monitor",
"stars": 10,
"url": "https://github.com/fpfuetsch/MMM-GitHub-Monitor"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 15,
"description": "Displays clickable GitHub notifications.",
"hasGithubIssues": true,
"id": "ByteExceptionM/MMM-GitHub-Notifications",
"isArchived": false,
"issues": true,
"lastCommit": "2023-01-06T23:45:21Z",
"maintainer": "ByteException_",
"maintainerURL": "https://github.com/ByteExceptionM",
"name": "MMM-GitHub-Notifications",
"stars": 1,
"url": "https://github.com/ByteExceptionM/MMM-GitHub-Notifications"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 13,
"description": "Handle GPIO, Inputs (Buttons, PIR, Other) and Outputs (including PWM), with notifications from and to other modules.",
"hasGithubIssues": true,
"id": "Sjohn21/MMM-GPIO-HANDLER",
"isArchived": false,
"issues": true,
"lastCommit": "2024-01-16T20:54:37Z",
"license": "MIT",
"maintainer": "Sjohn21",
"maintainerURL": "https://github.com/Sjohn21",
"name": "MMM-GPIO-HANDLER",
"stars": 4,
"tags": [
"gpio",
"input",
"output",
"pigpio-client",
"buttons",
"pir",
"pwm"
],
"url": "https://github.com/Sjohn21/MMM-GPIO-HANDLER"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 2,
"description": "Detecting 3D gesture with GroveGesture Sensor(PAJ7620u2).",
"hasGithubIssues": true,
"id": "MMRIZE/MMM-GroveGestures",
"image": "MMM-GroveGestures---MMRIZE.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2025-07-22T20:21:03Z",
"license": "MIT",
"maintainer": "MMRIZE",
"maintainerURL": "https://github.com/MMRIZE",
"name": "MMM-GroveGestures",
"stars": 44,
"tags": [
"grove gesture",
"gesture",
"paj7620u2"
],
"url": "https://github.com/MMRIZE/MMM-GroveGestures"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 8,
"description": "Include arbitrary HTML snippets in an iframe (script tags work).",
"hasGithubIssues": true,
"id": "ulrichwisser/MMM-HTMLSnippet",
"image": "MMM-HTMLSnippet---ulrichwisser.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2025-04-25T08:37:20Z",
"license": "GPL-3.0",
"maintainer": "ulrichwisser",
"maintainerURL": "https://github.com/ulrichwisser",
"name": "MMM-HTMLSnippet",
"stars": 19,
"url": "https://github.com/ulrichwisser/MMM-HTMLSnippet"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 12,
"description": "Show jokes from the JokeAPI.",
"hasGithubIssues": true,
"id": "Kreshnik/MMM-JokeAPI",
"isArchived": false,
"issues": true,
"lastCommit": "2020-09-25T09:29:55Z",
"maintainer": "Kreshnik",
"maintainerURL": "https://github.com/Kreshnik",
"name": "MMM-JokeAPI",
"stars": 13,
"url": "https://github.com/Kreshnik/MMM-JokeAPI"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 6,
"description": "Let your MagicMirror² launch a browser on top of itself. Contains control bar to return to MagicMirror².",
"hasGithubIssues": true,
"id": "Aws505/MMM-LaunchBrowser",
"isArchived": false,
"issues": true,
"lastCommit": "2025-11-29T19:23:32Z",
"license": "MIT",
"maintainer": "Aws505",
"maintainerURL": "https://github.com/Aws505",
"name": "MMM-LaunchBrowser",
"stars": 1,
"tags": [
"browser",
"launcher",
"kiosk",
"firefox",
"chromium"
],
"url": "https://github.com/Aws505/MMM-LaunchBrowser"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 4,
"description": "Deliver the logs from frontend to backend and more features.",
"hasGithubIssues": true,
"id": "MMRIZE/MMM-LogExt",
"image": "MMM-LogExt---MMRIZE.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2025-08-07T10:34:54Z",
"license": "MIT",
"maintainer": "MMRIZE",
"maintainerURL": "https://github.com/MMRIZE",
"name": "MMM-LogExt",
"stars": 3,
"tags": [
"logging",
"logs",
"debug"
],
"url": "https://github.com/MMRIZE/MMM-LogExt"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 4,
"description": "Monitor your system logs, application logs, or any text file with live updates and beautiful log-level color coding.",
"hasGithubIssues": true,
"id": "schlomm/MMM-LogfileViewer",
"image": "MMM-LogfileViewer---schlomm.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2025-10-27T14:36:13Z",
"license": "MIT",
"maintainer": "schlomm",
"maintainerURL": "https://github.com/schlomm",
"name": "MMM-LogfileViewer",
"stars": 1,
"tags": [
"log",
"monitoring"
],
"url": "https://github.com/schlomm/MMM-LogfileViewer"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 2,
"description": "More details and customization for MM's Node.js console logs.",
"hasGithubIssues": true,
"id": "shbatm/MMM-Logging",
"image": "MMM-Logging---shbatm.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2025-08-06T22:17:34Z",
"license": "MIT",
"maintainer": "shbatm",
"maintainerURL": "https://github.com/shbatm",
"name": "MMM-Logging",
"stars": 5,
"tags": [
"logging",
"logs"
],
"url": "https://github.com/shbatm/MMM-Logging"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 5,
"description": "Prevent screen burn-in on your display.",
"hasGithubIssues": true,
"id": "Lavve/MMM-MagicMover",
"image": "MMM-MagicMover---Lavve.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2025-11-15T10:45:01Z",
"license": "MIT",
"maintainer": "Lavve",
"maintainerURL": "https://github.com/Lavve",
"name": "MMM-MagicMover",
"stars": 66,
"tags": [
"screensaver",
"burn-in",
"mover"
],
"url": "https://github.com/Lavve/MMM-MagicMover"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 9,
"description": "Render markdown files on your mirror.",
"hasGithubIssues": true,
"id": "wilfullyapt/MMM-Markdown",
"isArchived": false,
"issues": true,
"lastCommit": "2023-09-28T04:31:09Z",
"license": "MIT",
"maintainer": "wilfullyapt",
"maintainerURL": "https://github.com/wilfullyapt",
"name": "MMM-Markdown",
"stars": 6,
"tags": [
"markdown",
"productivity"
],
"url": "https://github.com/wilfullyapt/MMM-Markdown"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 6,
"description": "On running-time monkey patch for other module.",
"hasGithubIssues": true,
"id": "MMRIZE/MMM-ModuleMonkeyPatch",
"isArchived": false,
"issues": true,
"lastCommit": "2023-08-04T08:42:07Z",
"license": "MIT",
"maintainer": "MMRIZE",
"maintainerURL": "https://github.com/MMRIZE",
"name": "MMM-ModuleMonkeyPatch",
"stars": 3,
"tags": [
"monkeypatch"
],
"url": "https://github.com/MMRIZE/MMM-ModuleMonkeyPatch"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 8,
"description": "Create schedules to control when other modules are shown, hidden or dimmed and to send notifications to other modules.",
"hasGithubIssues": true,
"id": "ianperrin/MMM-ModuleScheduler",
"image": "MMM-ModuleScheduler---ianperrin.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2025-04-28T04:50:43Z",
"license": "MIT",
"maintainer": "ianperrin",
"maintainerURL": "https://github.com/ianperrin",
"name": "MMM-ModuleScheduler",
"stars": 115,
"tags": [
"scheduler"
],
"url": "https://github.com/ianperrin/MMM-ModuleScheduler"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 15,
"description": "Shows or hides other modules when a momentary push button is pressed. Useful for development and maintenance after the module is deployed.",
"hasGithubIssues": true,
"id": "balassy/MMM-ModuleToggleButton",
"isArchived": false,
"issues": true,
"lastCommit": "2024-03-11T03:14:54Z",
"license": "MIT",
"maintainer": "balassy",
"maintainerURL": "https://github.com/balassy",
"name": "MMM-ModuleToggleButton",
"stars": 7,
"tags": [
"button",
"raspberry"
],
"url": "https://github.com/balassy/MMM-ModuleToggleButton"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 4,
"description": "Unhappy with your overall module alignment? Scale the MagicMirror UI globally or by screen position.",
"hasGithubIssues": true,
"id": "st3v0rr/MMM-ModuleZoom",
"isArchived": false,
"issues": true,
"lastCommit": "2025-12-26T10:49:57Z",
"license": "MIT",
"maintainer": "st3v0rr",
"maintainerURL": "https://github.com/st3v0rr",
"name": "MMM-ModuleZoom",
"stars": 0,
"tags": [
"zoom"
],
"url": "https://github.com/st3v0rr/MMM-ModuleZoom"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 9,
"description": "Connect a rotary encoder to MagicMirror² and use it for navigation inside of MagicMirror².",
"hasGithubIssues": true,
"id": "Ax-LED/MMM-Navigate",
"image": "MMM-Navigate---Ax-LED.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2023-05-02T19:02:39Z",
"license": "MIT",
"maintainer": "AxLED",
"maintainerURL": "https://github.com/Ax-LED",
"name": "MMM-Navigate",
"stars": 11,
"url": "https://github.com/Ax-LED/MMM-Navigate"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 11,
"description": "Display network connection status (ping, download speed, upload speed).",
"hasGithubIssues": true,
"id": "slametps/MMM-NetworkConnection",
"image": "MMM-NetworkConnection---slametps.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2018-05-12T10:14:36Z",
"license": "MIT",
"maintainer": "Slamet PS",
"maintainerURL": "https://github.com/slametps",
"name": "MMM-NetworkConnection",
"stars": 35,
"tags": [
"networkconnection",
"network",
"connection",
"speedtest"
],
"url": "https://github.com/slametps/MMM-NetworkConnection"
},
{
"category": "Development / Core MagicMirror²",
"defaultSortWeight": 8,
"description": "Display a solid wifi logo as network signal based on ping speed.",
"hasGithubIssues": true,
"id": "PoOwAa/MMM-network-signal",
"image": "MMM-network-signal---PoOwAa.jpg",
"isArchived": false,
"issues": true,
"lastCommit": "2022-04-25T09:18:00Z",
"license": "MIT",
"maintainer": "PoOwAa",
"maintainerURL": "https://github.com/PoOwAa",
"name": "MMM-network-signal",
"stars": 42,
"tags": [
"network"
],