-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcatalogue.json
More file actions
1080 lines (1080 loc) · 44 KB
/
catalogue.json
File metadata and controls
1080 lines (1080 loc) · 44 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
{
"me.amankhanna.oacounter": {
"name": "Counter",
"author": "nekename",
"repository": "https://github.com/OpenActionPlugins/counter",
"description": "An OpenAction plugin for incrementing a counter"
},
"me.amankhanna.oadesktopentry": {
"name": "Linux App Launcher",
"author": "nekename",
"repository": "https://github.com/OpenActionPlugins/desktopentry",
"description": "An OpenAction plugin for launching desktop applications on Linux"
},
"me.amankhanna.oadiscord": {
"name": "Discord",
"author": "nekename",
"repository": "https://github.com/OpenActionPlugins/discord",
"description": "An OpenAction plugin for controlling the Discord desktop client"
},
"me.amankhanna.oampris": {
"name": "Linux Media",
"author": "nekename",
"repository": "https://github.com/OpenActionPlugins/mpris",
"description": "An OpenAction plugin for controlling media players on Linux using the MPRIS protocol"
},
"me.amankhanna.oasystem": {
"name": "System Information",
"author": "nekename",
"repository": "https://github.com/OpenActionPlugins/system",
"description": "An OpenAction plugin for displaying system information"
},
"com.sfgrimes.pipewire-audio": {
"name": "PipeWire Audio Control",
"author": "sfgrimes",
"repository": "https://github.com/CronusAK/Pulse-Audio-Stream-Deck-Plugin",
"description": "OpenDeck compatible Stream Deck plugin for controling Pulse Audio."
},
"com.victormarin.graphs": {
"name": "Graphs",
"author": "Victor Marin",
"repository": "https://github.com/mdvictor/opendeck-graphs",
"description": "A configurable OpenDeck plugin that displays real-time hardware sensor data"
},
"st.lynx.plugins.opendeck-akp03": {
"name": "Ajazz AKP03 / Mirabox N3",
"author": "Andrey Viktorov",
"repository": "https://github.com/4ndv/opendeck-akp03",
"description": "An unofficial OpenDeck plugin for Ajazz Akp03 / Mirabox N3-family devices"
},
"st.lynx.plugins.opendeck-akp153": {
"name": "Ajazz AKP153 / Mirabox HSV293S",
"author": "Andrey Viktorov",
"repository": "https://github.com/4ndv/opendeck-akp153",
"description": "An unofficial OpenDeck plugin for Ajazz Akp153 / Mirabox HSV293S-family devices"
},
"com.github.ambiso.opendeck-akp05": {
"name": "Ajazz AKP05 / Mirabox N4",
"author": "ambiso",
"repository": "https://github.com/ambiso/opendeck-akp05",
"description": "An unofficial OpenDeck plugin for Ajazz Akp05 / Mirabox N4-family devices"
},
"com.github.ibanks42.opendeck-m18": {
"name": "VSD Inside M18 / Mirabox M18",
"author": "ibanks42",
"repository": "https://github.com/ibanks42/opendeck-m18",
"description": "An unofficial OpenDeck plugin for Mirabox M18 / VSD Inside M18-family devices"
},
"com.5e.hwinfo-reader": {
"name": "HWiNFO Reader",
"author": "5e",
"repository": "https://github.com/5e/streamdeck-hwinfo-plugin",
"download_url": "https://github.com/5e/streamdeck-hwinfo-plugin/raw/refs/heads/main/com.5e.hwinfo-reader.streamDeckPlugin",
"description": "HWiNFO Reader - A Stream Deck plugin to show HWiNFO sensors without using the time limited 'Shared Memory Support' feature. Only 79KB 🌟"
},
"com.nagopy.streamdeck.tasktimer": {
"name": "Task Timer",
"author": "75py",
"repository": "https://github.com/75py/streamdeck-tasktimer",
"description": null
},
"com.nicoohagedorn.pythonscriptdeck": {
"name": "PythonScriptDeck",
"author": "Nicco Hagedorn",
"repository": "https://github.com/9h03n1x/pythonscriptdeck",
"description": null
},
"com.niccohagedorn.steam-status-update": {
"name": "Steam Status Update",
"author": "Nicco Hagedorn",
"repository": "https://github.com/9h03n1x/steam-status-update",
"download_url": "https://github.com/9h03n1x/steam-status-update/raw/refs/heads/main/com.niccohagedorn.steam-status-update.streamDeckPlugin",
"description": null
},
"com.niccohagedorn.teamsnavigator": {
"name": "TeamsNavigator",
"author": "Nicco Hagedorn",
"repository": "https://github.com/9h03n1x/teams-navigator",
"download_url": "https://github.com/9h03n1x/teams-navigator/raw/refs/heads/main/com.niccohagedorn.teamsnavigator.streamDeckPlugin",
"description": null
},
"com.arkyasmal.windowactions": {
"name": "Window Actions",
"author": "Arky Asmal",
"repository": "https://github.com/aasmal97/Window-Actions",
"description": "A StreamDeck Plugin that allows a user to perform window actions, and navigate virtual desktops, on a windows machine"
},
"com.adamcarballo.unity-integration": {
"name": "Unity Integration",
"author": "Àdam Carballo",
"repository": "https://github.com/AdamCarballo/streamdeck-unity-plugin",
"description": "Stream Deck SDK plugin allowing support for custom Unity actions"
},
"com.adrian-miasik.sdpdota2": {
"name": "SDP - Dota 2",
"author": "Adrian Miasik",
"repository": "https://github.com/adrian-miasik/stream-deck-plugins-dota-2",
"description": "A suite of Stream Deck plugins/actions created for Valve's MOBA: Dota 2 ⚔️"
},
"me.alhazmy13.sensibo": {
"name": "Sensibo",
"author": "Alhazmy13",
"repository": "https://github.com/alhazmy13/streamdeck-sensibo",
"description": "Control your Sensibo air conditioners from stream deck"
},
"dev.aperez.tado": {
"name": "Tado",
"author": "aperez",
"repository": "https://github.com/aperezm85/streamdeck-tado-plugin",
"description": "Basic Stream Deck plugin for manage Tado thermostat"
},
"com.arkkis.nowplaying": {
"name": "Now Playing Command",
"author": "Arkkis",
"repository": "https://github.com/Arkkis/StreamDeckNowPlayingPlugin",
"description": null
},
"de.artus.fileexplorer": {
"name": "FileExplorer",
"author": "Artus",
"repository": "https://github.com/ArtusLama/streamdeck-fileexplorer",
"download_url": "https://github.com/ArtusLama/streamdeck-fileexplorer/raw/refs/heads/main/de.artus.fileexplorer.streamDeckPlugin",
"description": null
},
"fr.arubinu42": {
"name": "Arubinu42",
"author": "Alvin Pergens",
"repository": "https://github.com/Arubinu/streamdeck-plugin",
"description": "This plugin brings together my different tools."
},
"com.ascend.japanesereviews": {
"name": "Japanese Reviews",
"author": "Ascend - Will Eddins",
"repository": "https://github.com/ascendedguard/streamdeck-japanesereviews",
"description": "A collection of review trackers for various Japanese review websites, shown on the Elgato Stream Deck. https://apps.elgato.com/plugins/com.ascend.japanesereviews"
},
"org.xiphis.ohs": {
"name": "OpenHardwareSensor",
"author": "Xiphis",
"repository": "https://github.com/atcurtis/streamdeck-ohs",
"description": "Stream Deck: OpenHardwareMonitor Plugin"
},
"com.zaphop.quickalarm": {
"name": "Quick Alarm",
"author": "Nick Pirocanac",
"repository": "https://github.com/BackTrak/StreamDeckQuickAlarm",
"description": null
},
"com.zaphop.visualizer": {
"name": "Visualizer",
"author": "Nick Pirocanac",
"repository": "https://github.com/BackTrak/StreamDeckVisualizerPlugin",
"description": "A Stream Deck plugin that can visualize input and output audio."
},
"com.baptiewright.nanoleaf": {
"name": "Nanoleaf Controller",
"author": "Baptiewright Designs",
"repository": "https://github.com/Baptiewright/streamdeck-nanoleaf",
"download_url": "https://github.com/Baptiewright/streamdeck-nanoleaf/raw/refs/heads/master/Releases/com.baptiewright.nanoleaf.streamDeckPlugin",
"description": "Plugin for Elgato Stream Deck to allow control of Nanoleaf light panels"
},
"io.bitfocus.companion-plugin": {
"name": "Bitfocus Companion Plugin",
"author": "Bitfocus AS",
"repository": "https://github.com/bitfocus/io.bitfocus.companion-plugin",
"description": "Companion plugin for the native Stream Deck application"
},
"one.blueshift.streamdeck.toggl": {
"name": "Toggl",
"author": "Blueshift",
"repository": "https://github.com/blueshiftone/streamdeck-toggl",
"description": "⏱️ Make time tracking a 🍰 piece of cake, with Toggl Track and Elgato Stream Deck (Toggl Track integration for Stream Deck)"
},
"games.boyne.godot": {
"name": "Godot Utilities",
"author": "Boyne Games",
"repository": "https://github.com/BoyneGames/streamdeck-godot-plugin",
"description": "Various utilities for the Godot Engine"
},
"de.kaleidox.vbandeck": {
"name": "VBANDeck",
"author": "Kaleidox",
"repository": "https://github.com/burdoto/VBANDeck",
"description": "Elgato StreamDeck Plugin supporting VoiceMeeter VBAN remoting"
},
"com.buzzet.azurepipeline": {
"name": "Azure Pipeline",
"author": "Jannik Reinefeld",
"repository": "https://github.com/Buzzet/streamdeck-azure-pipeline",
"download_url": "https://github.com/Buzzet/streamdeck-azure-pipeline/raw/refs/heads/master/Release/com.buzzet.azurepipeline.streamDeckPlugin",
"description": null
},
"com.cael-gomes.bt-controller": {
"name": "Bluetooth LE Controller",
"author": "Cael Gomes",
"repository": "https://github.com/cael-gomes/streamdeck-ble-plugin",
"description": "Control BLE devices from your Stream Deck; scan, select a characteristic, and send commands on keypress."
},
"com.carlesbalsach.waterreminder": {
"name": "Water Reminder",
"author": "Carles Balsach",
"repository": "https://github.com/CarlesBalsach/water-reminder-elgato-plugin",
"download_url": "https://github.com/CarlesBalsach/water-reminder-elgato-plugin/raw/refs/heads/main/Release/com.carlesbalsach.waterreminder.streamDeckPlugin",
"description": "A simple Water Reminder plugin for the El Gato Stream Decks."
},
"dev.cazzar.streamdeck.vtubestudio": {
"name": "VTubeStudio",
"author": "Cazzar",
"repository": "https://github.com/Cazzar/VTubeStudio-StreamDeck",
"description": null
},
"com.ceridwen.audio": {
"name": "Ceridwen Audio Tools",
"author": "M. J. Dovey",
"repository": "https://github.com/ceridwen-com/CeridwenAudioTools",
"description": "StreamDeck+ plugin for changing the default audio device of the foreground application under Windows 10 and later."
},
"de.perdoctus.streamdeck.homeassistant": {
"name": "Home Assistant",
"author": "Christoph Giesche",
"repository": "https://github.com/cgiesche/streamdeck-homeassistant",
"description": "Control your Home Assistant devices from StreamDeck"
},
"sh.cider.streamdeck": {
"name": "CiderDeck",
"author": "Cider Collective",
"repository": "https://github.com/ciderapp/CiderDeck",
"description": "Cider's official Stream Deck implementation for playback management and information."
},
"net.localhost.streamdeck.clipboard-buddy": {
"name": "Clipboard Buddy",
"author": "Commit-La-Grenouille",
"repository": "https://github.com/Commit-La-Grenouille/streamdeck-clipboard-buddy",
"description": null
},
"com.corcules.kmlink": {
"name": "KMLink",
"author": "Corcules",
"repository": "https://github.com/Corcules/KMlink",
"download_url": "https://github.com/Corcules/KMlink/raw/refs/heads/master/com.corcules.kmlink.streamDeckPlugin",
"description": "Streamdeck plugin to drive Keyboard Maestro"
},
"cz.danol.discordmixer": {
"name": "Discord Volume Mixer",
"author": "Danol",
"repository": "https://github.com/CZDanol/StreamDeck-DiscordVolumeMixer2",
"description": "Discord Volume Mixer plugin for StreamDeck"
},
"com.darkdragon14.elgato-docker": {
"name": "elgato-docker",
"author": "darkdragon14",
"repository": "https://github.com/Darkdragon14/streamdeck-docker",
"description": "A Stream Deck plugin that allows you to manage Docker containers directly from your Elgato Stream Deck. Start, stop, and monitor the status of your Docker containers with ease, all from the convenience of your Stream Deck keys."
},
"gg.datagram.web-requests": {
"name": "Web Requests",
"author": "Adrian Mullings",
"repository": "https://github.com/data-enabler/streamdeck-web-requests",
"description": "An Elgato Stream Deck plugin for sending web requests"
},
"com.davidborzek.foobar2000": {
"name": "Foobar2000",
"author": "David Borzek",
"repository": "https://github.com/davidborzek/streamdeck-foobar2000",
"description": "An Elgato Stream Deck foobar2000 integration."
},
"com.davidgolunski.autoclicker": {
"name": "Autoclicker",
"author": "David Golunski",
"repository": "https://github.com/DavidGolunski/Autoclicker",
"download_url": "https://github.com/DavidGolunski/Autoclicker/raw/refs/heads/main/Plugin/com.davidgolunski.autoclicker.streamDeckPlugin",
"description": "An Autoclicker plugin for the Stream Deck"
},
"com.davidgolunski.goveelightcontroller": {
"name": "Govee Light Controller",
"author": "David Golunski",
"repository": "https://github.com/DavidGolunski/GoveeLightController",
"download_url": "https://github.com/DavidGolunski/GoveeLightController/raw/refs/heads/main/Plugin/com.davidgolunski.goveelightcontroller.streamDeckPlugin",
"description": "A C# Application for the Streamdeck. It allows you to control compatible Govee lights using \"LAN Control\", which does not require an API Key"
},
"com.dddice.app": {
"name": "dddice",
"author": "dddice",
"repository": "https://github.com/dddice/dddice-stream-deck-plugin",
"description": null
},
"audio.dhd.s52": {
"name": "DHD Stream Deck",
"author": "DHD audio",
"repository": "https://github.com/DHD-audio/streamdeck-DHD",
"description": "Stream Deck Plugin to work with DHD control API"
},
"audio.dhd.rm1": {
"name": "RM1 Control",
"author": "DHD audio",
"repository": "https://github.com/dhd-audio/streamdeck-rm1",
"description": "RM1 Control plugin for Stream Deck"
},
"com.dim.streamdeck": {
"name": "DIM Stream Deck",
"author": "fcannizzaro",
"repository": "https://github.com/dim-stream-deck/com.dim.streamdeck",
"description": "A Stream Deck plugin to interact with Destiny Item Manager and Destiny 2"
},
"com.dlprows.focusvolumecontrol": {
"name": "Focused Application Volume",
"author": "dlprows",
"repository": "https://github.com/dlprows/FocusVolumeControl",
"description": "Stream Deck+ plugin for controlling the focused application's volume"
},
"me.duncte123.livesplit": {
"name": "LiveSplit",
"author": "Duncan Sterken",
"repository": "https://github.com/duncte123/LiveSplit.StreamDeck",
"description": "I dislike hotkeys :)"
},
"fr.twitchat": {
"name": "Twitchat",
"author": "Durss",
"repository": "https://github.com/Durss/Twitchat",
"download_url": "https://github.com/Durss/Twitchat/raw/refs/heads/main/streamdeck_plugin/fr.twitchat.streamDeckPlugin",
"description": "Full featured Twitch chat alternative to fill gaps from the official one."
},
"com.egg-rp.fxcommands": {
"name": "FxCommands",
"author": "EggRP",
"repository": "https://github.com/EggRP/fxcommands",
"description": "Streamdeck Plugin for FiveM commands"
},
"com.eladavron.litra-glow-commander": {
"name": "Litra Glow Commander",
"author": "Elad Avron",
"repository": "https://github.com/eladavron/litra-glow-commander",
"description": "A Litra Glow plugin for StreamDeck"
},
"com.elgato.analogclock": {
"name": "Analog Clock",
"author": "Elgato",
"repository": "https://github.com/elgatosf/streamdeck-analogclock",
"download_url": "https://github.com/elgatosf/streamdeck-analogclock/raw/master/Release/com.elgato.analogclock.streamDeckPlugin",
"description": "Stream Deck SDK: Analog Clock sample plugin"
},
"com.elgato.applemail": {
"name": "Apple Mail",
"author": "Elgato",
"repository": "https://github.com/elgatosf/streamdeck-applemail",
"download_url": "https://github.com/elgatosf/streamdeck-applemail/raw/master/Release/com.elgato.applemail.streamDeckPlugin",
"description": "Stream Deck SDK: AppleMail sample plugin"
},
"com.elgato.counter": {
"name": "Counter",
"author": "Elgato",
"repository": "https://github.com/elgatosf/streamdeck-counter",
"download_url": "https://github.com/elgatosf/streamdeck-counter/raw/master/Release/com.elgato.counter.streamDeckPlugin",
"description": "Stream Deck SDK: Counter sample plugin"
},
"com.elgato.cpu": {
"name": "CPU",
"author": "Elgato",
"repository": "https://github.com/elgatosf/streamdeck-cpu",
"download_url": "https://github.com/elgatosf/streamdeck-cpu/releases/download/1.2/com.elgato.cpu.streamDeckPlugin",
"description": "Stream Deck SDK: CPU sample plugin"
},
"com.elgato.philips-hue": {
"name": "Philips Hue",
"author": "Elgato",
"repository": "https://github.com/elgatosf/streamdeck-philipshue",
"download_url": "https://github.com/elgatosf/streamdeck-philipshue/raw/master/Release/com.elgato.philips-hue.streamDeckPlugin",
"description": "Stream Deck SDK: Philips Hue sample plugin"
},
"com.github.eliankars.multiple-counters": {
"name": "Multiple Counters",
"author": "Elian Kars",
"repository": "https://github.com/ElianKars/StreamDeck-Multiple-Counters",
"description": "Elgato Stream Deck plugin that lets you group multiple counters and reset them all with a single button press. Perfect for stream sessions, production tracking, quality control counts, or any situation where you need to monitor and reset multiple counts together."
},
"net.ellreka.slack-status": {
"name": "Slack Status",
"author": "ellreka",
"repository": "https://github.com/ellreka/streamdeck-slack-status",
"description": "Stream Deck Plugin. This plugin updates the slack status."
},
"com.f00d4tehg0dz.aipaints": {
"name": "AI Paints",
"author": "f00d4tehg0dz",
"repository": "https://github.com/f00d4tehg0dz/elgato-streamdeck-ai-paints",
"description": null
},
"com.f00d4tehg0dz.cookieclicker": {
"name": "CookieClicker",
"author": "f00d4tehg0dz",
"repository": "https://github.com/f00d4tehg0dz/elgato-streamdeck-cookie-clicker",
"description": "cookie-clicker for elgato"
},
"com.f00d4tehg0dz.star-citizen-status": {
"name": "Star Citizen Status",
"author": "f00d4tehg0dz",
"repository": "https://github.com/f00d4tehg0dz/starcitizen-server-status-plugin-for-elgato-streamdeck",
"description": "A StarCitizen server status plugin for Elgato Streamdeck"
},
"com.f00d4tehg0dz.teslafi": {
"name": "TeslaFi",
"author": "f00d4tehg0dz",
"repository": "https://github.com/f00d4tehg0dz/Teslafi-Status-Plugin-for-Eglato-Streamdeck",
"description": "Streamdeck plugin to show your Tesla Stats via TeslaFI or TeslaMate"
},
"com.f1-tools.mvf1": {
"name": "MVF1",
"author": "F1-Tools",
"repository": "https://github.com/f1-tools/MVF1-Streamdeck",
"description": "A Streamdeck plugin for using Multiviewer for Formula 1"
},
"de.felitendo.feishin": {
"name": "Feishin",
"author": "Felitendo",
"repository": "https://github.com/FeloDeck/Feishin-Plugin",
"description": "An Elgato Stream Deck Plugin for Feishin"
},
"com.feydelight.serialirblaster": {
"name": "Serial IR Blaster",
"author": "FeyDelight",
"repository": "https://github.com/feydelight/StreamDeck-SerialIRBlaster",
"description": "A StreamDeck Plugin to control a serial IR Arduino"
},
"de.flexniko.bakkesmodcommands": {
"name": "BakkesModCommands",
"author": "FlexNiko",
"repository": "https://github.com/FlexXx1212/StreamDeckBakkesPlugin",
"download_url": "https://github.com/FlexXx1212/StreamDeckBakkesPlugin/raw/refs/heads/main/Release/de.flexniko.bakkesmodcommands.streamDeckPlugin",
"description": "Stream Deck Plugin to execute Bakkes mod (Rocket League) commands"
},
"com.fredemmott.micmutetoggle": {
"name": "Audio Mute",
"author": "Fred Emmott",
"repository": "https://github.com/fredemmott/StreamDeck-AudioMute",
"description": "Toggle mute for audio devices with the Elgato StreamDeck"
},
"com.fredemmott.audiooutputswitch": {
"name": "Audio Switcher",
"author": "Fred Emmott",
"repository": "https://github.com/fredemmott/StreamDeck-AudioSwitcher",
"description": "StreamDeck plugin for setting active audio devices"
},
"com.fredemmott.streamingremote": {
"name": "Streaming Remote",
"author": "Fred Emmott",
"repository": "https://github.com/fredemmott/streaming-remote",
"description": "Control OBS Studio or XSplit Broadcaster over a network"
},
"gg.frontpage.streamdeck-stemplayer": {
"name": "Stem Player",
"author": "frontpage e.V.",
"repository": "https://github.com/frontpage-ev/streamdeck-stemplayer-plugin",
"description": null
},
"com.ftt.apimonkey": {
"name": "API Monkey",
"author": "FT-T",
"repository": "https://github.com/ft-t/apimonkey",
"description": "http(s) client for StreamDeck"
},
"com.funky.rokuremotejs": {
"name": "Roku Remote",
"author": "Jasper Cools",
"repository": "https://github.com/FUNKYJASPER2/StreamDeck-Roku-Remote-Plugin",
"download_url": "https://github.com/FUNKYJASPER2/StreamDeck-Roku-Remote-Plugin/raw/refs/heads/main/Release/com.funky.rokuremotejs.streamDeckPlugin",
"description": "Stream Deck Plugin to control your Roku TV"
},
"com.gabe565.stopwatch": {
"name": "Stopwatch Timekeeper",
"author": "gabe565",
"repository": "https://github.com/gabe565/streamdeck-stopwatch",
"description": "⏱️ A stopwatch plugin for the Elgato Stream Deck"
},
"com.gabrielperales.osascript": {
"name": "OSA Script",
"author": "Gabriel Perales",
"repository": "https://github.com/gabrielperales/streamdeck-osascript",
"download_url": "https://github.com/gabrielperales/streamdeck-osascript/raw/refs/heads/master/Release/com.gabrielperales.osascript.streamDeckPlugin",
"description": null
},
"com.gallowaylabs.tomato": {
"name": "Tomato Timer",
"author": "Galloway Labs",
"repository": "https://github.com/gallowaylabs/streamdeck-tomato-timer",
"description": "A configurable timer for balancing work and break times"
},
"com.geekyeggo.goveecontroller": {
"name": "Govee Controller",
"author": "GeekyEggo",
"repository": "https://github.com/GeekyEggo/GoveeController",
"description": "Govee controller for the Elgato Stream Deck."
},
"com.geekyeggo.sounddeck": {
"name": "Sound Deck",
"author": "GeekyEggo",
"repository": "https://github.com/GeekyEggo/SoundDeck",
"description": "Sound Deck is a powerful audio-focused plugin for the Elgato Stream Deck."
},
"com.geekyeggo.windowsdisplaysettings": {
"name": "Windows Display Settings",
"author": "GeekyEggo",
"repository": "https://github.com/GeekyEggo/windows-display-settings",
"description": "Stream Deck plug-in for controlling your Windows display settings."
},
"com.frostycoolslug.goxlr-utility": {
"name": "GoXLR Utility for StreamDeck",
"author": "Craig McLure",
"repository": "https://github.com/GoXLR-on-Linux/goxlr-utility-streamdeck",
"description": "A StreamDeck Plugin for use with the GoXLR Utility"
},
"warudo.streamdeck": {
"name": "Warudo",
"author": "Hakuya Labs",
"repository": "https://github.com/HakuyaLabs/warudo-streamdeck",
"description": "A Elgato Stream Deck plugin for Warudo."
},
"com.simonedenadai.motu-avb": {
"name": "MOTU AVB",
"author": "Hecsa",
"repository": "https://github.com/Hecsall/streamdeck-motu-avb",
"description": "MOTU AVB Audio Interface Plugin for Stream Deck (Unofficial)"
},
"com.hmarr.amphetamine": {
"name": "Amphetamine",
"author": "Harry Marr",
"repository": "https://github.com/hmarr/streamdeck-amphetamine",
"description": "💊 Stream Deck plugin for Amphetamine"
},
"org.smyck.reaper-osc-action": {
"name": "Reaper OSC Action",
"author": "hukl",
"repository": "https://github.com/hukl/reaper_osc_action",
"description": "A Streamdeck Plugin to send OSC Commands to Reaper"
},
"org.danielkennett.xcode-streamdeck-plugin": {
"name": "Xcode",
"author": "Daniel Kennett",
"repository": "https://github.com/iKenndac/xcode-streamdeck-plugin",
"description": "A Stream Deck plugin for Xcode."
},
"dev.jduabe.obsideck": {
"name": "Obsideck",
"author": "Jordan Duabe",
"repository": "https://github.com/j4ckofalltrades/obsideck",
"description": "A Stream Deck plugin that runs commands in Obsidian"
},
"com.jk.weather": {
"name": "Weather",
"author": "Jaouher Kharrat",
"repository": "https://github.com/JaouherK/streamDeck-weatherPlugin",
"description": "Popular Stream Deck plugin for Weather reporting"
},
"me.hckr.airplanemode": {
"name": "Airplane mode",
"author": "Jarno Le Conté",
"repository": "https://github.com/JarnoLeConte/streamdeck-airplanemode",
"description": "Enable airplane mode on macOS directly from your Stream Deck"
},
"me.hckr.appswitcher": {
"name": "App Switcher",
"author": "Jarno Le Conté",
"repository": "https://github.com/JarnoLeConte/streamdeck-appswitcher",
"description": "StreamDeck plugin to easily switch between apps on macOS"
},
"me.hckr.findertags": {
"name": "Finder Tags",
"author": "Jarno Le Conté",
"repository": "https://github.com/JarnoLeConte/streamdeck-findertags",
"description": null
},
"com.javanpoirier.audiomixer": {
"name": "Audio Mixer",
"author": "Javan Poirier",
"repository": "https://github.com/JavanPoirier/AudioMixer",
"description": null
},
"com.jetbrains.ide": {
"name": "JetBrains IDE",
"author": "Jacky Liu",
"repository": "https://github.com/JetBrains/intellij-streamdeck-plugin",
"description": "An IntelliJ IDE plugin and the paired Stream Deck JS plugin to support developing with pleasure using Stream Deck"
},
"com.jetbrains.youtrack": {
"name": "YouTrack Ticket Counter",
"author": "Konstantin Annikov",
"repository": "https://github.com/JetBrains/youtrack-streamdeck-plugin",
"description": null
},
"us.johnholbrook.pihole": {
"name": "Pihole",
"author": "John Holbrook",
"repository": "https://github.com/johnholbrook/streamdeck-pihole",
"description": "Streamdeck plugin for monitoring & controlling Pi-hole"
},
"us.johnholbrook.vextm": {
"name": "VEX Tournament Manager",
"author": "John Holbrook",
"repository": "https://github.com/johnholbrook/streamdeck-vextm",
"description": "Stream Deck plugin for controlling VEX Tournament Manager"
},
"tf.josh.fxcommands": {
"name": "FXCommands",
"author": "josh-tf",
"repository": "https://github.com/josh-tf/fxcommands",
"description": "Streamdeck Plugin for FiveM commands"
},
"com.justpush": {
"name": "JustPush!",
"author": "JustPush! SimRacing",
"repository": "https://github.com/justpush-simracing/JustPush-Plugin",
"description": "Go-based Stream Deck plugin for ultimate simracing button box"
},
"com.kobaltz.wled": {
"name": "WLED",
"author": "Dave Kimura",
"repository": "https://github.com/kobaltz/streamdeck-wled",
"description": null
},
"de.leonmarcel.teamspeak5": {
"name": "TeamSpeak 5",
"author": "LeonMarcel",
"repository": "https://github.com/LeonMarcel-HD/StreamDeck-TeamSpeak5",
"description": "A Stream Deck Plugin to interact with the TeamSpeak 5 Client trough Remote Apps"
},
"com.remote.ytmd": {
"name": "YTMD Encoder Remote",
"author": "Levin Ng",
"repository": "https://github.com/levindecaro/streamdeck-ytmd-remote",
"description": "A Plugin to control YTMD from your StreamDeck Plus"
},
"com.dahnandpartners.ytticker": {
"name": "YouTube Ticker",
"author": "Zevedei & Partner Ltd.",
"repository": "https://github.com/MajMcCloud/Streamdeck-YoutubeTicker",
"description": "Streamdeck-YoutubeTicker is a plugin for Elgato StreamDeck that displays live YouTube channel information on your device. Link any button to a channel, show logos or video thumbnails, and get real-time updates. Compatible with Windows and Mac OS."
},
"com.marlburrow.uptime-kuma": {
"name": "Uptime Kuma",
"author": "Nicolas Varrot MarlburroW",
"repository": "https://github.com/MarlBurroW/Streamdeck-Uptime-Kuma",
"description": "Display your Uptime Kuma monitors on your streamdeck"
},
"com.cdeenen.materialdeck": {
"name": "Material Deck",
"author": "Material Foundry",
"repository": "https://github.com/MaterialFoundry/MaterialDeck_SD",
"description": null
},
"com.matextrem.tickertap": {
"name": "Tickertap",
"author": "Matextrem",
"repository": "https://github.com/matextrem/streamdeck-tickertap",
"description": "A Stream Deck plugin to visualize real-time asset values"
},
"com.mazecreator.udcontrol": {
"name": "Universal Devices Control",
"author": "Greg Peatfield",
"repository": "https://github.com/Mazecreator/udcontrol-streamdeck",
"description": "Universal Devices Stream Deck control actions for Nodes and Programs"
},
"com.mediabounds.streamdeck.jira": {
"name": "Jira",
"author": "Daniel Pfeiffer",
"repository": "https://github.com/mediabounds/streamdeck-jira",
"description": "A Stream Deck plugin for finding issues in Jira or content in Confluence"
},
"com.mitchmckean.mccontrol": {
"name": "McControl",
"author": "Mitch McKean",
"repository": "https://github.com/MitchMcKean/mccontrol",
"download_url": "https://github.com/MitchMcKean/mccontrol/raw/refs/heads/master/Release/com.mitchmckean.mccontrol.streamDeckPlugin",
"description": null
},
"com.github.mjbnz.sd-api-request": {
"name": "API Request",
"author": "Mike Beattie",
"repository": "https://github.com/mjbnz/streamdeck-api-request",
"description": "StreamDeck API Request Plugin"
},
"com.mongeon.mm": {
"name": "MM.StreamDeck",
"author": "Gabriel Mongeon",
"repository": "https://github.com/mongeon/MattermostAPI",
"description": "Simple Mattermost API and Stream Deck Plugin"
},
"com.morphclue.wakatime": {
"name": "Wakatime",
"author": "Morphclue",
"repository": "https://github.com/Morphclue/streamdeck-wakatime",
"description": "WakaTime-Plugin for the Elgato Streamdeck "
},
"com.mosadie.effectmc": {
"name": "EffectMC",
"author": "MoSadie",
"repository": "https://github.com/MoSadie/EffectMC",
"description": "Various effects triggered in Minecraft by a Elgato Stream Deck"
},
"com.neil-enns.trackaudio": {
"name": "TrackAudio",
"author": "Neil Enns",
"repository": "https://github.com/neilenns/streamdeck-trackaudio",
"description": "TrackAudio actions for Stream Deck"
},
"com.neil-enns.vatis": {
"name": "vATIS",
"author": "Neil Enns",
"repository": "https://github.com/neilenns/streamdeck-vatis",
"description": "vATIS actions for Stream Deck"
},
"tech.flighttracker.streamdeck": {
"name": "Flight Tracker",
"author": "Hy, Pieter and rmroc451",
"repository": "https://github.com/nguyenquyhy/Flight-Tracker-StreamDeck",
"description": "A Stream Deck plugin to interact with Microsoft Flight Simulation"
},
"com.nicollasr.streamdeckunity": {
"name": "Unity",
"author": "Nicollas Ricas",
"repository": "https://github.com/nicollasricas/decks-unity",
"description": "Enables Stream Deck integration with Unity."
},
"com.nicollasr.streamdeckvsc": {
"name": "Visual Studio Code",
"author": "Nicollas Ricas",
"repository": "https://github.com/nicollasricas/decks-vscode",
"description": "Enables Stream Deck integration with Visual Studio Code."
},
"com.nicollasr.streamdeckvs": {
"name": "Visual Studio",
"author": "Nicollas Ricas",
"repository": "https://github.com/nicollasricas/streamdeckvs",
"description": "Enables Stream Deck integration with Visual Studio 2017, 2019 & 2022."
},
"com.ntanis.essentials-for-spotify": {
"name": "Essentials for Spotify",
"author": "Ntanis",
"repository": "https://github.com/ntanis-dev/essentials-for-spotify",
"description": "Effortlessly control your Spotify through your Elgato Stream Deck. A Spotify Premium account is required to use the full functionality of this plugin."
},
"com.nuagic.myip": {
"name": "My IP",
"author": "Nuagic",
"repository": "https://github.com/Nuagic/streamdeck-myip",
"description": "My IP is a litle plugin to Display your public IP address on your Elgato Stream Deck"
},
"com.ozgurkececioglu.random-text-generator": {
"name": "Random Text Generator",
"author": "OzgurKececioglu",
"repository": "https://github.com/ozgurkececioglu/random-text-generator-StreamDeck",
"description": "Stream deck plugin for generating random text"
},
"com.vlad-gramuzov.stream-deck-stateful-executor": {
"name": "Stateful Executor",
"author": "Vlad Gramuzov",
"repository": "https://github.com/pandomic/stream-deck-stateful-executor",
"description": "Execute HTTP Requests, Apple Shortcuts, Terminal Commands, and Shell Scripts with dynamic button state updates based on execution results"
},
"net.oksala.azuredevops": {
"name": "AzureDevOps",
"author": "Panu Oksala",
"repository": "https://github.com/panuoksala/streamdeck-azuredevops-plugin",
"description": "AzureDevOps plugin for Stream Deck devices"
},
"com.pedrofuentes.ical": {
"name": "iCal",
"author": "Pedro Fuentes",
"repository": "https://github.com/pedrofuentes/stream-deck-ical",
"description": "An iCal Plugin for elgato Stream Deck"
},
"com.pedropombeiro.streamdeck-busylight": {
"name": "Kuando Busylight",
"author": "Pedro Pombeiro",
"repository": "https://github.com/pedropombeiro/streamdeck-busylight",
"download_url": "https://github.com/pedropombeiro/streamdeck-busylight/raw/refs/heads/main/Release/com.pedropombeiro.streamdeck-busylight.streamDeckPlugin",
"description": "Stream Deck SDK: Philips Hue sample plugin"
},
"com.philipgerke.awake": {
"name": "Awake",
"author": "Philip Gerke",
"repository": "https://github.com/pgerke/streamdeck-awake",
"description": "A plugin for the Elgato Stream Deck designed to prevent your machine from going to stand-by implemented in .NET6"
},
"in.std.streamdeck.workplace": {
"name": "Facebook Workplace",
"author": "pgriess",
"repository": "https://github.com/pgriess/streamdeck-workrooms",
"description": "A Stream Deck plugin for Facebook's Workplace Rooms product."
},
"com.bi0s.mqtt": {
"name": "MQTT",
"author": "Patrick Herting",
"repository": "https://github.com/pherting/streamdeck-mqtt",
"description": "Simple MQTT Client Plugin for Elgato Stream Deck."
},
"gg.rcv.league": {
"name": "League Observer Tool",
"author": "RCVolus",
"repository": "https://github.com/RCVolus/league-observer-tool-sdPlugin",
"download_url": "https://github.com/RCVolus/league-observer-tool-sdPlugin/raw/refs/heads/main/Release/gg.rcv.league.streamDeckPlugin",
"description": "Stream Deck Plugin for RCV League Observer Tool"
},
"com.dms.streamdeck.github": {
"name": "DMS Github Plugin",
"author": "Rafael Dohms",
"repository": "https://github.com/rdohms/com.dms.streamdeck.github",
"download_url": "https://github.com/rdohms/com.dms.streamdeck.github/raw/refs/heads/main/release/com.dms.streamdeck.github.streamDeckPlugin",
"description": "A Stream Deck Plugin for interfacing with Github"
},
"com.reedhaffner.sharex": {
"name": "ShareX",
"author": "Reed Haffner",
"repository": "https://github.com/reedhaffner/ShareX4StreamDeck",
"description": "Stream Deck Plugin for ShareX! No more hotkeys!"
},
"me.reinii.harvest-billables": {
"name": "Billables Status",
"author": "Emma Litwa-Vulcu",
"repository": "https://github.com/reiniiriarios/stream-deck-billables-harvest",
"description": ":stopwatch: Track time in Harvest on StreamDeck and display time tracked compared with billable hours assigned in Forecast."
},
"com.rgpaul.vlc": {
"name": "VLC Remote",
"author": "Ralph-Gordon Paul",
"repository": "https://github.com/RGPaul/streamdeck-vlc",
"description": "Stream Deck Plugin for VLC media player"
},
"com.richardplucker.pvp": {
"name": "PVP",
"author": "Richard Plucker",
"repository": "https://github.com/rplucker/streamdeckpvp",
"download_url": "https://github.com/rplucker/streamdeckpvp/raw/refs/heads/main/release/com.richardplucker.pvp.streamDeckPlugin",
"description": null
},
"com.samhorne.mediamonkey5": {
"name": "Mediamonkey 5",
"author": "Sam Horne",
"repository": "https://github.com/sam-horne/streamdeck-mediamonkey",
"description": "An Elgato Stream Deck - Mediamonkey 5 integration. "
},
"dev.santiagomartin.devops": {
"name": "DevOps for StreamDeck",
"author": "SantiMA10",
"repository": "https://github.com/SantiMA10/devops-streamdeck",
"description": "👀 Check the status of your CI/CD environments using your Stream Deck."
},
"com.sergeytihon.homebridge": {
"name": "Homebridge",
"author": "Sergey Tihon",
"repository": "https://github.com/sergey-tihon/streamdeck-homebridge",
"description": "Control devices connected to your Homebridge server from Elgato Stream Deck"
},
"com.exension.hwinfo": {
"name": "HWiNFO",
"author": "exension",
"repository": "https://github.com/shayne/hwinfo-streamdeck",
"description": "Monitor sensor readings with this HWiNFO64 Stream Deck Plugin"
},
"com.exension.stocks": {
"name": "Stocks",
"author": "exension",
"repository": "https://github.com/shayne/stock-ticker-stream-deck-plugin",
"description": "A stock ticker plugin for Stream Deck"
},
"dude.serveny.tile-rain-matrix": {
"name": "Tile Rain Matrix",
"author": "Serveny",
"repository": "https://github.com/Serveny/streamdeck-matrix",
"description": "Interactive streamdeck matrix code rain animation"
},
"de.shells.totalmix": {
"name": "RME TotalMix FX",
"author": "shells",
"repository": "https://github.com/shells-dw/streamdeck-totalmix",
"description": "Unofficial StreamDeck RME TotalMix FX Plugin - supporting MIDI and OSC"
},
"com.sobolevn.bluetooth": {
"name": "Bluetooth Switcher",
"author": "Nikita Sobolev",
"repository": "https://github.com/sobolevn/bluetooth-streamdeck-plugin",
"description": "Elgato StreamDeck Bluetooth Plugin"
},
"com.mmattdonk.solrock": {
"name": "Solrock TTS",
"author": "SocksTheWolf",
"repository": "https://github.com/SocksTheWolf/streamdeck-solrocktts",
"description": "A plugin for the Elgato Streamdeck to manage your Solrock TTS"
},
"com.start-automating.scriptdeck": {
"name": "ScriptDeck",
"author": "Start-Automating",
"repository": "https://github.com/StartAutomating/ScriptDeck",
"description": "PowerShell Tools for Elgato StreamDeck"
},
"de.sven-wiegand.ultraschall": {
"name": "Ultraschall (Alternative)",
"author": "Sven Wiegand",
"repository": "https://github.com/svenwiegand/streamdeck-ultraschall",
"description": "A plugin for Elgato's Stream Deck which makes recording with the awesome podcast software Ultraschall even more fun."
},
"dev.tattn.streamdeck.switchbot-control": {
"name": "SwitchBot",
"author": "tattn",
"repository": "https://github.com/tattn/streamdeck-switchbot-control",
"description": null
},
"com.tbye.datetime": {
"name": "DateTime Segments",
"author": "Ty Bye",
"repository": "https://github.com/tbye/tbye-sdp-datetime",
"description": "Plugin for the Elgato StreamDeck Family of Devices. Display date, time, and segments of dates and times."
},
"dev.theca11.multiobs": {
"name": "Multi OBS Controller",
"author": "the_ca11",
"repository": "https://github.com/theca11/multi-obs-controller",
"description": "Multi OBS Controller Stream Deck Plugin"
},
"dev.theca11.steam-price-tracker": {
"name": "Steam Price Tracker",
"author": "the_ca11",
"repository": "https://github.com/theca11/steam-price-tracker",
"description": "Steam Price Tracker Plugin for Stream Deck"
},
"dev.theca11.whack-a-mole": {
"name": "Whack-A-Mole",
"author": "the_ca11",
"repository": "https://github.com/theca11/whack-a-mole",
"description": "Whack-A-Mole Stream Deck Plugin"
},
"com.thejoeiaut.bitwarden": {
"name": "Bitwarden Tools",
"author": "TheJoeIaut",
"repository": "https://github.com/TheJoeIaut/Bitwarden-Streamdeck-Plugin",
"description": "Bitwarden Streamdeck Plugin"
},
"com.nthompson.gpu": {
"name": "GPU Metrics",
"author": "Noah Thompson",
"repository": "https://github.com/thompsonnoahe/StreamDeckGpu",
"description": "A plugin for monitoring metrics of your GPU on the Elgato Stream Deck."
},
"dev.timeblaster.leaguedeck": {
"name": "LeagueDeck",
"author": "TimeBlaster",
"repository": "https://github.com/TimeBlaster/LeagueDeck",
"description": "Provides tools to help you keep track of the game."
},
"de.tobimori.streamdeck.ifttt": {
"name": "IFTTT",
"author": "tobimori",
"repository": "https://github.com/tobimori/streamdeck-ifttt",
"description": "💡 Easily integrate Stream Deck in your IFTTT setup and control smart home devices"
},
"co.uk.clarionmusic.midibutton": {
"name": "Midi Button",
"author": "Tom Kelly",
"repository": "https://github.com/tsbkelly/Streamdeck-Midibutton",
"download_url": "https://github.com/tsbkelly/Streamdeck-Midibutton/raw/refs/heads/master/Release/co.uk.clarionmusic.midibutton.streamDeckPlugin",
"description": null
},
"com.courcelle.cryptoticker": {
"name": "Crypto ticker PRO",
"author": "Vincent Courcelle",
"repository": "https://github.com/tubededentifrice/streamdeck-crypto",
"download_url": "https://github.com/tubededentifrice/streamdeck-crypto/raw/refs/heads/master/Release/com.courcelle.cryptoticker.streamDeckPlugin",
"description": "StreamDeck plugin for cryptocurrencies"
},
"com.courcelle.reminder": {
"name": "Reminder",
"author": "Vincent Courcelle",
"repository": "https://github.com/tubededentifrice/streamdeck-reminder",
"download_url": "https://github.com/tubededentifrice/streamdeck-reminder/raw/refs/heads/master/Release/com.courcelle.reminder.streamDeckPlugin",
"description": null
},
"com.unaigonzalez.xbatt.ch": {
"name": "xBatt",
"author": "Unai González",
"repository": "https://github.com/unaigonzalezz/xBatt",
"description": "Display XInput and XBOX controllers battery on Stream Deck!"
},