-
Notifications
You must be signed in to change notification settings - Fork 272
Expand file tree
/
Copy pathregistry.json
More file actions
2225 lines (2225 loc) · 66.9 KB
/
Copy pathregistry.json
File metadata and controls
2225 lines (2225 loc) · 66.9 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
{
"version": 1,
"plugins": [
{
"id": "activate-linux",
"name": "Activate Linux Watermark",
"version": "1.1.0",
"official": false,
"author": "Preston Corless (pgattic)",
"description": "Adds a watermark to the bottom-right of the screen similar to the one found on unactivated Windows 10/11",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"license": "MIT",
"tags": [
"Desktop",
"Fun"
],
"lastUpdated": "2026-02-04T23:08:01-07:00"
},
{
"id": "agent-session-status",
"name": "Agent Session Status",
"version": "1.0.0",
"official": false,
"author": "nzlov",
"description": "Runs a local MCP HTTP service for agents to report session status and shows active sessions in the bar.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.6.6",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"Development",
"Indicator",
"AI"
],
"lastUpdated": "2026-05-11T13:17:35+08:00"
},
{
"id": "air-quality",
"name": "Air Quality",
"version": "1.1.2",
"official": false,
"author": "adriamartin91",
"description": "Displays real-time air quality data with EPA color coding. Supports Open-Meteo and AQICN data sources. Shows AQI index and pollutant breakdown.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "MIT",
"tags": [
"Bar",
"Desktop",
"Panel",
"System",
"Utility"
],
"lastUpdated": "2026-05-19T04:42:13+03:00"
},
{
"id": "arch-updater",
"name": "Arch Updater",
"version": "2.1.10",
"official": false,
"author": "Ast",
"description": "A plugin to manage updates on Arch",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "MIT",
"tags": [
"Bar",
"Desktop",
"Panel",
"Launcher",
"System",
"Utility"
],
"lastUpdated": "2026-05-14T12:51:01+03:00"
},
{
"id": "assistant-panel",
"name": "Assistant Panel",
"version": "2.1.6",
"official": false,
"author": "j-1in",
"description": "AI Chat and Translation panel",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.1.2",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"AI",
"Productivity",
"Network"
],
"lastUpdated": "2026-03-29T19:05:12-04:00"
},
{
"id": "asus-um5606-fan-state",
"name": "ASUS UM5606 Fan State",
"version": "1.1.7",
"official": false,
"author": "ThatOneCalculator",
"description": "Set the fan state on the ZenBook S 16 UM5606",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "MIT",
"tags": [
"Bar",
"System"
],
"lastUpdated": "2026-04-21T17:30:13+02:00"
},
{
"id": "battery-actions",
"name": "Battery Actions",
"version": "1.0.3",
"official": false,
"author": "itscrystalline",
"description": "A plugin that allows you to run custom actions when battery state changes.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.4.0",
"license": "MIT",
"tags": [
"System"
],
"lastUpdated": "2026-04-25T13:10:34+02:00"
},
{
"id": "battery-and-power-management",
"name": "Battery & Power Management Plugin",
"version": "1.1.0",
"official": false,
"author": "Piero-93",
"description": "A lightweight, efficient battery status bar widget and interactive control popup. This plugin displays real-time battery diagnostics (including dynamic power draw in Watts) and provides desktop controls to switch system power profiles or adjust hardware battery charge thresholds safely without needing root privileges.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.0.0",
"license": "GPLv3",
"tags": [
"Bar",
"System",
"Indicator",
"Utility"
],
"lastUpdated": "2026-06-13T21:56:57+02:00"
},
{
"id": "battery-monitor-plus",
"name": "Battery Monitor Plus",
"version": "1.0.0",
"official": false,
"author": "krteke",
"description": "Extended battery monitor with current power draw, remaining time, battery health, and current power profile.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.6.6",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"Indicator",
"System"
],
"lastUpdated": "2026-05-09T09:04:16+08:00"
},
{
"id": "battery-threshold",
"name": "Battery Threshold Control",
"version": "1.2.5",
"official": false,
"author": "Wilfred Mallawa",
"description": "Set the battery threshold for laptop batteries to extend battery lifespan",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"System"
],
"lastUpdated": "2026-06-12T22:50:59+02:00"
},
{
"id": "calendar-widget",
"name": "Desktop Calendar",
"version": "1.0.10",
"official": false,
"author": "Simon",
"description": "Monthly calendar with today highlighted.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.5.0",
"license": "MIT",
"tags": [
"Desktop",
"Utility"
],
"lastUpdated": "2026-04-25T13:17:01+02:00"
},
{
"id": "calibre-provider",
"name": "Calibre Provider",
"version": "1.3.3",
"official": false,
"author": "Krendil",
"description": "Search for books in your Calibre library",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.6.1",
"license": "MIT",
"tags": [
"Launcher"
],
"lastUpdated": "2026-04-25T13:24:07+02:00"
},
{
"id": "catwalk",
"name": "Catwalk",
"version": "1.1.7",
"official": false,
"author": "MannuVilasara",
"description": "A cute animated cat for your bar.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "MIT",
"tags": [
"Bar",
"Desktop",
"Panel",
"Fun"
],
"lastUpdated": "2026-03-29T19:05:12-04:00"
},
{
"id": "claude-code-panel",
"name": "Claude Code Panel",
"version": "0.2.0",
"official": false,
"author": "d7om",
"description": "Claude Code (Anthropic agentic CLI) with full tool access, permission controls, session management, MCP servers, and device integration",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.1.2",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"AI",
"Productivity"
],
"lastUpdated": "2026-04-25T02:40:15+03:00"
},
{
"id": "clipboard",
"name": "Clipboard",
"version": "1.0.3",
"official": false,
"author": "yanekyuk",
"description": "Clipboard history panel with search, pinning, and image previews.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.1.2",
"license": "MIT",
"tags": [
"Utility",
"Bar",
"Panel"
],
"lastUpdated": "2026-04-22T18:29:07+03:00"
},
{
"id": "clipper",
"name": "Clipper",
"version": "2.4.4",
"official": false,
"author": "blackbartblues",
"description": "Advanced clipboard manager with history, search, keyboard navigation, ToDo integration, pinned items, notecards/sticky notes, and selection-to-notecard feature. Fully translated with comprehensive i18n support.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.1.2",
"license": "MIT",
"tags": [
"Utility",
"Bar",
"Panel"
],
"lastUpdated": "2026-04-26T19:41:25+02:00"
},
{
"id": "cloudflare-warp",
"name": "Cloudflare WARP",
"version": "1.0.1",
"official": false,
"author": "ToRvaLDz",
"description": "Toggle Cloudflare WARP from the bar. Shows connection status and mode.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.0.0",
"license": "MIT",
"tags": [
"Bar",
"Network",
"Panel"
],
"lastUpdated": "2026-04-11T18:01:28+07:00"
},
{
"id": "coin-flip",
"name": "Coin Flipper",
"version": "1.2.2",
"official": false,
"author": "DanisDeveloper",
"description": "Simple bar widget with notification about result",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"license": "MIT",
"tags": [
"Bar"
],
"lastUpdated": "2026-06-12T22:45:13+02:00"
},
{
"id": "color-scheme-creator",
"name": "Color Scheme Creator",
"version": "1.0.5",
"official": true,
"author": "Noctalia Team",
"description": "Create and manage custom predefined color schemes with a visual color editor.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.5.1",
"license": "MIT",
"tags": [
"Theming",
"Utility"
],
"lastUpdated": "2026-04-25T13:28:18+02:00"
},
{
"id": "cookie-clock",
"name": "Cookie Clock",
"version": "1.0.1",
"official": false,
"author": "elrondforwin",
"description": "An analog cookie-shaped clock desktop widget. Features a sine-wave cookie background, hour/minute/second hands, dial marks and date bubbless.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "GPLv3",
"tags": [
"Desktop",
"Fun"
],
"lastUpdated": "2026-04-23T21:39:21+02:00"
},
{
"id": "currency-exchange",
"name": "Currency Exchange",
"version": "1.0.4",
"official": false,
"author": "balor",
"description": "Currency conversion utility via launcher and bar widget",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.4.1",
"license": "MIT",
"tags": [
"Launcher",
"Utility"
],
"lastUpdated": "2026-05-04T14:10:38+09:00"
},
{
"id": "custom-commands",
"name": "Custom Commands",
"version": "1.0.5",
"official": true,
"author": "Noctalia Team",
"description": "Define and run custom shell commands from the launcher",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.4.1",
"license": "MIT",
"tags": [
"Launcher"
],
"lastUpdated": "2026-03-27T20:43:49+07:00"
},
{
"id": "custom-sticker",
"name": "Custom Stickers",
"version": "1.0.3",
"official": false,
"author": "spiros132",
"description": "Custom stickers (images) that you can put on the desktop as desktop widgets.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.6.6",
"license": "MIT",
"tags": [
"Desktop",
"Fun"
],
"lastUpdated": "2026-05-01T21:07:15+02:00"
},
{
"id": "daily-wallpaper",
"name": "Daily Wallpaper",
"version": "1.0.3",
"official": false,
"author": "DigitallyRefined",
"description": "Fetches a new daily wallpaper from Bing or NASA",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.6.6",
"license": "MIT",
"tags": [
"Desktop",
"Fun",
"Utility"
],
"lastUpdated": "2026-06-12T23:02:02+02:00"
},
{
"id": "deskvis",
"name": "DeskVis",
"version": "2.0.2",
"official": false,
"author": "HAVEKziad",
"description": "Audio visualizer desktop widget — bars, wave, or mirror. Supports all directions. Transparent, follows color scheme.",
"minNoctaliaVersion": "4.6.6",
"license": "MIT",
"tags": [
"Desktop",
"Audio"
],
"lastUpdated": "2026-03-20T22:21:12+01:00"
},
{
"id": "display-settings",
"name": "Display Settings",
"version": "1.0.0",
"official": false,
"author": "fstanis",
"description": "View live display settings from wlr-randr and permanent niri KDL output configuration",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"System",
"Utility"
],
"lastUpdated": "2026-05-09T00:32:20+01:00"
},
{
"id": "dmenu",
"name": "Dmenu Provider",
"version": "1.0.0",
"official": false,
"author": "Ben Hilton",
"description": "An IPC-driven dmenu replacement that lets external scripts present choices through a Noctalia panel.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.9.0",
"license": "MIT",
"tags": [
"Panel",
"Productivity",
"Developer",
"System",
"Utility"
],
"lastUpdated": "2026-04-13T17:24:58-06:00"
},
{
"id": "dns-switcher",
"name": "DNS Switcher",
"version": "1.2.1",
"official": false,
"author": "Ronin-CK",
"description": "DNS Manager with custom server support for Noctalia.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.0.0",
"license": "MIT",
"tags": [
"Bar",
"Network"
],
"lastUpdated": "2026-03-29T19:05:12-04:00"
},
{
"id": "ds4-colors",
"name": "DS4 Colors",
"version": "1.0.0",
"official": false,
"author": "Hy4ri",
"description": "Change the lightbar color of your DualShock 4 or DualSense controller with a color picker and recent color history.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.6.6",
"license": "MIT",
"tags": [
"Hardware",
"Gaming",
"Bar"
],
"lastUpdated": "2026-04-29T14:11:25+03:00"
},
{
"id": "fancy-audiovisualizer",
"name": "Fancy Audiovisualizer",
"version": "1.1.2",
"official": true,
"author": "Noctalia Team",
"description": "Lemmy's fancy circular audio visualizer.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.6.6",
"license": "MIT",
"tags": [
"Desktop",
"Audio"
],
"lastUpdated": "2026-03-27T20:43:49+07:00"
},
{
"id": "file-search",
"name": "File Search",
"version": "1.0.4",
"official": false,
"author": "ericbreh",
"description": "File search from the launcher.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.1.2",
"license": "MIT",
"tags": [
"Launcher",
"Productivity"
],
"lastUpdated": "2026-04-29T19:24:11+08:00"
},
{
"id": "giphy-search",
"name": "Giphy Search",
"version": "1.0.1",
"official": false,
"author": "Sergio Mendolia",
"description": "Search for GIFs on Giphy from the Launcher.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.9.0",
"license": "MIT",
"tags": [
"Launcher",
"Utility",
"Fun"
],
"lastUpdated": "2026-06-12T23:11:05+02:00"
},
{
"id": "git-companion",
"name": "Git Companion",
"version": "1.0.0",
"official": false,
"author": "Thomas Philippo",
"description": "Monitor your git repositories from the Noctalia bar. See open issues and pull requests at a glance, without leaving your desktop.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.6.6",
"license": "MIT",
"tags": [
"Development",
"Bar",
"Panel",
"Productivity"
],
"lastUpdated": "2026-05-08T18:40:34+02:00"
},
{
"id": "github-feed",
"name": "GitHub Feed",
"version": "1.3.1",
"official": false,
"author": "linuxmobile",
"description": "Display GitHub activity from users you follow and activity on your repos",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"Development",
"Network"
],
"lastUpdated": "2026-04-28T17:48:46+02:00"
},
{
"id": "habitica",
"name": "Habitica for Noctalia",
"version": "1.0.0",
"official": false,
"author": "vasqs",
"description": "Habitica dashboard and task scorer for Noctalia Shell with official avatar sprite rendering.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.7.1",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"Productivity",
"Network"
],
"lastUpdated": "2026-06-03T18:12:31-03:00"
},
{
"id": "hassio",
"name": "Home Assistant",
"version": "1.1.1",
"official": false,
"author": "Pozzoo",
"description": "Monitor and control Home Assistant entities from the bar. Requires qt6-websockets.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"Utility"
],
"lastUpdated": "2026-06-12T23:19:35+02:00"
},
{
"id": "hello-world",
"name": "Hello World",
"version": "1.2.4",
"official": true,
"author": "Noctalia Team",
"description": "A simple Hello World plugin demonstrating functionalities. For developers only.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.6.6",
"license": "MIT",
"tags": [
"Development"
],
"lastUpdated": "2026-03-30T17:33:26+02:00"
},
{
"id": "hot-corners",
"name": "Hot Corners",
"version": "0.0.2",
"official": false,
"author": "sapjax",
"description": "A macOS-style hot corners plugin for Noctalia Shell.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "MIT",
"tags": [
"Desktop",
"Productivity"
],
"lastUpdated": "2026-03-18T17:51:21+01:00"
},
{
"id": "hyprland-steam-overlay",
"name": "Steam Overlay (Hyprland)",
"version": "2.2.0",
"official": false,
"author": "blacku",
"description": "[DEPRECATED — not maintained from Hyprland 0.55+] Steam overlay with automatic window management for Hyprland. Due to Hyprland 0.55 deprecating hyprlang in favour of Lua (changing hyprctl dispatch parsing and popup/xdg handling), this plugin is no longer actively maintained. The 2.2.0 release adds a best-effort dual-mode dispatch fix and an optional custom Lua layout, but no further updates are planned. Automatically moves all Steam windows (except fullscreen games) to an overlay workspace; main 3 windows (Friends, Client, Chat) positioned in a row, fully responsive percentage-based layout. Requires Hyprland window manager.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.1.2",
"license": "MIT",
"tags": [],
"lastUpdated": "2026-05-17T18:16:30+02:00"
},
{
"id": "hyprland-visual-editor",
"name": "Hyprland Visual Editor",
"version": "1.0.3",
"official": false,
"author": "XimoCP",
"description": "Elevate your Hyprland experience. A modular plugin to safely inject custom animations, borders, and visual effects on the fly.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.4.1",
"license": "MIT",
"tags": [
"Panel",
"Bar",
"System",
"Fun",
"Theming",
"Utility",
"Hyprland"
],
"lastUpdated": "2026-04-20T15:07:05+02:00"
},
{
"id": "ideapad-battery-health",
"name": "Ideapad Battery Health",
"version": "1.0.1",
"official": false,
"author": "Christophe Branchereau",
"description": "Set the battery charging mode for ideapad laptop batteries, to extend battery lifespan",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"System"
],
"lastUpdated": "2026-03-29T19:05:12-04:00"
},
{
"id": "ip-monitor",
"name": "IP Monitor",
"version": "0.1.2",
"official": false,
"author": "deepalpha",
"description": "Plugin showing current external IP",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.4.3",
"license": "MIT",
"tags": [
"Development"
],
"lastUpdated": "2026-04-14T20:44:12+07:00"
},
{
"id": "kagi-quick-search",
"name": "Kagi Quick Search",
"version": "1.0.2",
"official": false,
"author": "Kainoa Kanter",
"description": "Get AI answers from Kagi in your launcher",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.4.1",
"license": "MIT",
"tags": [
"Launcher",
"Productivity"
],
"lastUpdated": "2026-03-10T11:27:20-04:00"
},
{
"id": "kaomoji-provider",
"name": "Kaomoji Provider",
"version": "1.0.3",
"official": true,
"author": "Noctalia Team",
"description": "Browse and search kaomoji emoticons from the launcher",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.4.1",
"license": "MIT",
"tags": [
"Launcher",
"Fun"
],
"lastUpdated": "2026-02-10T10:12:36-05:00"
},
{
"id": "kde-connect",
"name": "KDE Connect",
"version": "1.2.1",
"official": false,
"author": "WerWolv",
"description": "A Plugin integrating your mobile devices into a panel using KDEConnect",
"repository": "https://github.com/WerWolv/noctalia-kde-connect",
"minNoctaliaVersion": "4.4.0",
"license": "GPLv2",
"tags": [
"Bar",
"Panel",
"Utility",
"System"
],
"lastUpdated": "2026-03-29T19:05:12-04:00"
},
{
"id": "keep-awake-plus",
"name": "Keep Awake+",
"version": "0.3.0",
"official": false,
"author": "Noam Stolero",
"description": "Duration+scope Keep Awake with persistent last-choice and partial/full inhibit modes.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"System"
],
"lastUpdated": "2026-05-11T13:11:48+03:00"
},
{
"id": "keybind-cheatsheet",
"name": "Keybind Cheatsheet",
"version": "3.7.3",
"official": false,
"author": "blacku",
"description": "Universal keyboard shortcuts keymap that automatically detects and displays keybindings for Hyprland, Niri, or MangoWC compositors.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"System",
"Indicator",
"Hyprland",
"Niri",
"MangoWC"
],
"lastUpdated": "2026-05-25T18:50:01+02:00"
},
{
"id": "khal-agenda-widget",
"name": "Khal Agenda Info",
"version": "1.0.3",
"official": false,
"author": "Simon",
"description": "Shows khal agenda.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.6.6",
"license": "MIT",
"tags": [
"Desktop",
"System"
],
"lastUpdated": "2026-06-12T23:29:19+02:00"
},
{
"id": "kubectl-ctx",
"name": "Kubectl Context",
"version": "1.0.4",
"official": false,
"author": "ultherego",
"description": "Kubernetes context and namespace switcher with resource browser powered by kubectl.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.6.6",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"Utility",
"Development"
],
"lastUpdated": "2026-04-23T23:03:50+02:00"
},
{
"id": "latency-monitor",
"name": "Latency Monitor",
"version": "1.0.2",
"official": false,
"author": "Borhaneddine GUEMIDI <guemidiborhane@gmail.com>",
"description": "Network latency monitor — multi-host, windowed averages, sparkline graphs",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.1.0",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"Network"
],
"lastUpdated": "2026-04-23T21:41:29+02:00"
},
{
"id": "launcher-pass",
"name": "Launcher pass",
"version": "1.0.0",
"official": false,
"author": "Marco Melletti",
"description": "Noctalia Launcher gnu pass provider",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.7.7",
"license": "MIT",
"tags": [
"Launcher"
],
"lastUpdated": "2026-05-22T12:20:30+02:00"
},
{
"id": "linux-wallpaperengine-controller",
"name": "Linux WallpaperEngine Controller",
"version": "1.3.1",
"official": false,
"author": "PaloMiku",
"description": "Control linux-wallpaperengine from Noctalia with per-screen wallpaper selection.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.6.6",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"Theming"
],
"lastUpdated": "2026-05-20T19:18:19+08:00"
},
{
"id": "lyrics-fetch",
"name": "Lyrics Fetch/Bar Display",
"version": "1.1.1",
"official": false,
"author": "Pever3ll",
"description": "Uses MPRIS data to fetch song lyrics from lrclib.net and displays it in the bar.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "GPLv3",
"tags": [
"Bar",
"Music"
],
"lastUpdated": "2026-04-25T13:09:06+02:00"
},
{
"id": "mangowc-layout-switcher",
"name": "mango layout switcher",
"version": "3.1.0",
"official": false,
"author": "atheeq-rhxn",
"description": "Switch between different mangowc layouts",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.1.2",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"MangoWC"
],
"lastUpdated": "2026-06-01T10:45:53+05:30"
},
{
"id": "mawaqit",
"name": "Mawaqit",
"version": "1.3.7",
"official": false,
"author": "User",
"description": "Shows prayer times with a live countdown and a Hijri calendar with Islamic events.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.1.0",
"license": "MIT",
"tags": [
"Bar",
"Panel"
],
"lastUpdated": "2026-04-15T16:35:10+02:00"
},
{
"id": "mimeapp-gui",
"name": "MimeApp GUI",
"version": "1.0.4",
"official": false,
"author": "Mathew-D",
"description": "GUI for inspecting MIME handlers and updating default applications in mimeapps.list (requires python3).",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "4.1.2",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"Utility",
"System"
],
"lastUpdated": "2026-04-20T21:30:27+02:00"
},
{
"id": "mini-docker",
"name": "Mini Docker",
"version": "2.2.0",
"official": false,
"author": "MannuVilasara",
"description": "Manage Docker containers, images, volumes & networks",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"Development"
],
"lastUpdated": "2026-06-10T21:22:14+05:00"
},
{
"id": "mirror-mirror",
"name": "Mirror Mirror",
"version": "0.1.4",
"official": false,
"author": "Mathew-D",
"description": "Mirror one monitor to another using wl-mirror.",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "MIT",
"tags": [
"Bar",
"Panel",
"Utility",
"System"
],
"lastUpdated": "2026-06-06T11:14:18+02:00"
},
{
"id": "model-usage",
"name": "Model Usage",
"version": "0.3.1",
"official": false,
"author": "cmptr",
"description": "Shows AI coding assistant usage stats in the bar with detail panel (Claude Code, Codex, Copilot, Gemini, OpenRouter, Zen)",
"repository": "https://github.com/noctalia-dev/noctalia-plugins",
"minNoctaliaVersion": "3.6.0",
"license": "MIT",
"tags": [
"Bar",
"Productivity",
"AI"
],
"lastUpdated": "2026-05-27T21:02:20-05:00"
},
{