forked from okibcn/ScoopMaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ActiveBuckets
1402 lines (1402 loc) · 58.1 KB
/
ActiveBuckets
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
https://github.com/1349422030/scoop
https://github.com/1nfdev/bucket
https://github.com/2moveit/scoop-bucket
https://github.com/404NetworkError/scoop-bucket
https://github.com/42wim/scoop-bucket
https://github.com/4x0v7/kube-scoop
https://github.com/4x0v7/scoop-bucket-codefresh-cli-v2
https://github.com/82p/scoop-yubico-bucket
https://github.com/a59/quiver
https://github.com/abhimanyu003/scoop-bucket
https://github.com/acdzh/zpt
https://github.com/ackerr/scoop-bucket
https://github.com/ACooper81/scoop-apps
https://github.com/ACooper81/scoop-settings
https://github.com/ACooper81/Scoop-SystemInstalls
https://github.com/actioninja/scoop-bucket
https://github.com/adamrodger/scoop-bucket
https://github.com/AdmnJ/Custom-Bucket
https://github.com/adrianliechti/scoop-bucket
https://github.com/aegoroff/scoop-bucket
https://github.com/aenthill/scoop-bucket
https://github.com/Aetopia/Bucket
https://github.com/agrimrules/scoop-bucket
https://github.com/Airr/scoop-bucket
https://github.com/aisair/scoop
https://github.com/ajihyf/ScoopApps
https://github.com/AkariiinMKII/Scoop4kariiin
https://github.com/AkinoKaede/maple
https://github.com/akirco/aki-apps
https://github.com/Akjir/snsb
https://github.com/aklinovitskiy/scoop-bucket
https://github.com/alanlima/scoop-apps
https://github.com/alchzh/scoop-bucket
https://github.com/Aldebaranoro/scoop-bucket
https://github.com/alealexpro100/ru-school-scoop
https://github.com/alex1313/scoop-bucket
https://github.com/alextwothousand/scoop-bucket
https://github.com/aliesbelik/poldi
https://github.com/aliuq/my-scoop
https://github.com/alkuzad/scoop-bucket
https://github.com/alkuzad/unxutils-separated
https://github.com/allenchou13/scoop-bucket
https://github.com/aloxjp/scoop-edinet
https://github.com/alphagocc/lampyridae
https://github.com/Alveel/scoop-bucket
https://github.com/Alvison/scoop-alvison
https://github.com/Alxandr/scoop-bucket
https://github.com/alyssadev/scoop-bucket
https://github.com/amano41/scoop-bucket
https://github.com/Ambiel127/mth-bucket
https://github.com/amdg/timba
https://github.com/amorphobia/siku
https://github.com/amreus/bucket
https://github.com/anakrish/scoop-test
https://github.com/analogrelay/scoop-bucket
https://github.com/anderlli0053/DEV-tools
https://github.com/AndreasBrostrom/arma3-scoop-bucket
https://github.com/AndreasMReumschuessel/cask
https://github.com/andreysaksonov/scoop-bucket
https://github.com/Animesh-Ghosh/kulfi-scoop
https://github.com/AnotherFoxGuy/scoop-bucket
https://github.com/antonburger/scoop-local
https://github.com/AntoniRokitnicki/scoopy-bucket
https://github.com/AntonOks/scoop-aoks
https://github.com/aoisummer/scoop-bucket
https://github.com/aparkerlue/apl-scoop-bucket
https://github.com/Apocalypsor/My-Scoop-Bucket
https://github.com/apommel/scoop-bucket-apommel
https://github.com/apono-io/scoop-bucket
https://github.com/ArkToria/scoop-bucket
https://github.com/arnos-stuff/arnos-scoop-bucket
https://github.com/arrow2nd/scoop-bucket
https://github.com/arrrgi/scoop-bucket
https://github.com/artifacthub/scoop-cmd
https://github.com/artiga033/Armory
https://github.com/arubyz/scoop-bucket
https://github.com/Arxoto/Scoop-arxBucket
https://github.com/asoluter/Scoop-Asoluter
https://github.com/asterho/my-scoop-bucket
https://github.com/ASTRELION/astrel-bucket
https://github.com/AStupidBear/scoop-bear
https://github.com/athrunsun/scoop-bucket
https://github.com/ati-ozgur/ati-scoop-bucket
https://github.com/atomicptr/scoop-bucket
https://github.com/atomicwrites/bucket
https://github.com/Atrox/scoop-bucket
https://github.com/ats124/scoop-bucket
https://github.com/audientlin/my-scoop-bucket
https://github.com/Augiiz/my-scoops
https://github.com/AuHau/scoop
https://github.com/aukaheng/akh-scoop-bucket
https://github.com/auth0/scoop-auth0-cli
https://github.com/automato-io/scoop-bucket
https://github.com/Autry-Technology/appbucket
https://github.com/ava1ar/ava1ar-scoop-bucket
https://github.com/aviscaerulea/scoop-bucket
https://github.com/axojhf/my_scoop_buckets
https://github.com/aymanbagabas/scoop-bucket
https://github.com/ayoisaiah/scoop-bucket
https://github.com/AyoungDukie/personal_bucket
https://github.com/b-palaniappan/scoop-bala
https://github.com/b1017034/scoop-bucket
https://github.com/b1tg/scoop-bucket-b1tg
https://github.com/ba230t/scoop-bucket
https://github.com/Baavgai/baav-bucket
https://github.com/backd-io/scoop-bucket
https://github.com/BadCodr/scoop-bucket
https://github.com/bandithedoge/scoop-switch
https://github.com/barohatoum/my-scoop-bucket
https://github.com/batkiz/backit
https://github.com/bbkane/scoop-bucket
https://github.com/bbond/scoop-bucket
https://github.com/bdeb1337/bdeb-bucket
https://github.com/BebopBamf/bebopbamfs-bucket
https://github.com/beerpiss/scoop-bucket
https://github.com/Befod/Xeno
https://github.com/BenjaminMichaelis/ScoopBucket
https://github.com/Bennett-Yang/bencket
https://github.com/BESTSELLER/scoop-bucket
https://github.com/bettercallshao/scoop-bucket
https://github.com/BevalZ/mybucket
https://github.com/bigfile/scoop-bucket
https://github.com/billybooth/bucket
https://github.com/Bios-Marcel/scoopbucket
https://github.com/bissli/scoop-bucket
https://github.com/bitmaelum/scoop
https://github.com/bitzertech/scoop
https://github.com/BjoernPetersen/scoop-misc-bucket
https://github.com/bkmeneguello/scoop-bucket
https://github.com/Bl4Cc4t/scoop-bucket
https://github.com/black2rock/scoop
https://github.com/blacktop/scoop-bucket
https://github.com/blue-cloak/cloak
https://github.com/BlueHeaven1969/rsp-scoop
https://github.com/bluereflega/ascella
https://github.com/blutui/bucket-courier
https://github.com/BluYous/ScoopBucket
https://github.com/bn-digital/scoop
https://github.com/bobbytrapz/scoop-bucket
https://github.com/bobo2334/scoop-bucket
https://github.com/bodnarlajos/scoop
https://github.com/bodrick/scoop-bucket
https://github.com/bogdaba/scoop-bucket
https://github.com/book000/scoop-bucket
https://github.com/bookstairs/scoop-bucket
https://github.com/bookyue/scoop-egg
https://github.com/borger/scoop-emulators
https://github.com/borger/scoop-galaxy-integrations
https://github.com/borkdude/scoop-bucket
https://github.com/Br1ght0ne/scoop-bucket
https://github.com/brad-jones/scoop-bucket
https://github.com/brave-simpletons/scoop-the-business
https://github.com/Brawl345/scoop-bucket
https://github.com/brecert/my-bucket
https://github.com/brendanburkhart/scoop-bucket
https://github.com/brian6932/dank-scoop
https://github.com/BrokeThink/ScoopBucket
https://github.com/BruceLee569/my-bucket
https://github.com/brunnels/scoop-bucket
https://github.com/c6p/scoop
https://github.com/Calinou/scoop-games
https://github.com/Callidin/ragnar-scoop
https://github.com/CALMorACT/hola_bucket
https://github.com/CALMorACT/scoop_bucket
https://github.com/canvascat/scoop-bucket
https://github.com/caoli5288/scoop-bucket
https://github.com/carbonetes/jacked-bucket
https://github.com/catusax/scoop-bucket
https://github.com/cc713/ownscoop
https://github.com/ccciyo/ccc-scoop-bucket
https://github.com/ccyykkcyk/scoop
https://github.com/cderv/r-bucket
https://github.com/cdyhelp/scoop-bucket
https://github.com/CebolaBros64/scoop-bucket
https://github.com/ceclin/scoop-bucket-me
https://github.com/cesaryuan/scoop-cesar
https://github.com/ChandlerVer5/scoop-fruit
https://github.com/charmbracelet/scoop-bucket
https://github.com/chatterzhao/Scoop-bucket-cn
https://github.com/chawyehsu/dorado
https://github.com/chengxuncc/Scoop
https://github.com/chenxiangfang/scoop-chenxf
https://github.com/chenxiaohong/scoop-bucket
https://github.com/chikazin/KazinScoopBucket
https://github.com/chimez/chimez-bucket
https://github.com/ChinLong/scoop-customize
https://github.com/cHolzberger/scoop-windows
https://github.com/chrishazfun/bucket
https://github.com/ChuJiani/scoop
https://github.com/ChungZH/peach
https://github.com/chuxubank/scoop-bucket
https://github.com/cidertool/scoop-bucket
https://github.com/ciffelia/ScoopBucket
https://github.com/ClaudiaHeart/scoop-bucket-claudiaheart
https://github.com/cli/scoop-gh
https://github.com/clipd/scoop-buckets
https://github.com/Clownfused/bucket-o-clowns
https://github.com/coatl-dev/scoop-coatl-dev
https://github.com/cocoabreak/scoop-bucket
https://github.com/CodeIdeal/scoop-bucket
https://github.com/CodyAdam/scoop
https://github.com/colkey/scoop-colkey
https://github.com/Cologler/cologler-scoop-bucket
https://github.com/colonel-blimp/scoop-tweego
https://github.com/CometDog/scoop-bucket
https://github.com/command-line-tools/scoop-bucket
https://github.com/comp500/scoop-browser
https://github.com/comp500/scoop-comp500
https://github.com/configcat/scoop-configcat
https://github.com/coredump/scoop_bucket
https://github.com/cprecioso/scoop-lektor
https://github.com/cprieto/my-scoop
https://github.com/criticic/PersonalScoop
https://github.com/crojascampos/personal-bucket
https://github.com/cruzpaulajoanna/my-bucket
https://github.com/cryptogrampus/cuztum-bucket
https://github.com/cuikangyi/scoop-bucket
https://github.com/cupppa/scoop-bucket
https://github.com/cwichel/scoop
https://github.com/cwzero/scoop-bucket
https://github.com/CypherNL/My-Bucket
https://github.com/D3-LucaPiombino/scoop-bucket
https://github.com/daekma/scoop-bucket
https://github.com/Dagwbl/scoop
https://github.com/DamianReeves/scoop-tools
https://github.com/dandymi/scoop-devops
https://github.com/daniel-scholz/my-bucket
https://github.com/danielgatis/scoop-imgcat
https://github.com/danielpauldd/scoop-bucket
https://github.com/danielulloa/scoop-vhdl
https://github.com/danyow/my-bucket
https://github.com/darabuchi/scoop
https://github.com/Darkatse/Scoop-Darkatse
https://github.com/Darkatse/Scoop-KanColle
https://github.com/darkbloodx/scoop-bucket
https://github.com/darkliquid/bucket
https://github.com/darrikonn/scoop-bucket
https://github.com/dasbaumwolltier/scoop-bucket
https://github.com/David-theScriptkid/Baulk-Scooplized-Bucket
https://github.com/DavidBrockmeier/bucket
https://github.com/davidjericho/davidstools
https://github.com/davidxuang/scoop-type
https://github.com/dbarbuzzi/scoop-bucket
https://github.com/ddavness/scoop-roblox
https://github.com/ddddddO/scoop-bucket
https://github.com/dduan/scoop-bucket
https://github.com/dearrrfish/scoop-bucket
https://github.com/DEEP-IMPACT-AG/scoop-hyperdrive
https://github.com/deevus/scoop-games
https://github.com/DeezCashews/tilt-bucket
https://github.com/Deide/deide-bucket
https://github.com/deliciousgohan/gohan-bucket
https://github.com/DelineaXPM/scoop-bucket
https://github.com/dem2k/scoop-bucket
https://github.com/demesne/dev-extras
https://github.com/den-mentiei/scoop-bucket
https://github.com/denismestres/my-bucket
https://github.com/dennislloydjr/scoop-bucket-devbox
https://github.com/derkoe/scoop-bucket
https://github.com/derKrischan/scoop-bucket
https://github.com/Desdaemon/scoop-repo
https://github.com/DessertArbiter/dessertarbiter-shovel
https://github.com/detain/scoop-emulators
https://github.com/devcsrj/scoop-bucket
https://github.com/deverte/scoop-shell
https://github.com/devilishcherub/scoop-app-bucket
https://github.com/devwolf75/RandomAppBucket
https://github.com/dflock/duncs-scoop-bucket
https://github.com/digrouz/scoop-digrouz
https://github.com/diklios5768/diklios-scoop-bucket
https://github.com/dimdimych/scoop-bucket
https://github.com/DimiG/dgBucket
https://github.com/DinVolodka/my-bucket
https://github.com/divanvisagie/scoop-bucket
https://github.com/DiXN/scoop
https://github.com/dmeiners88/my-scoops
https://github.com/dmrasf/scoop-dmr
https://github.com/doamatto/scoop-bucket
https://github.com/dodorz/scoop
https://github.com/doetlingerlukas/scoop
https://github.com/dohr-michael/scoop-bucket
https://github.com/DoingGitStuff/mybucket
https://github.com/Dolvem/scoop-bucket
https://github.com/dooteeen/scoop-for-jp
https://github.com/DopplerHQ/scoop-doppler
https://github.com/dora38/scoop-bucket
https://github.com/dosco/graphjin-scoop
https://github.com/dotenv-linter/scoop
https://github.com/doughyjohnny/my-bucket
https://github.com/douglasamcintosh/dougbucket
https://github.com/douglaslassance/scoop-bucket
https://github.com/doujia/jbucket
https://github.com/DoveBoy/Apps
https://github.com/DoveBoy/Scoop-Bucket
https://github.com/dppereyra/scoop-bucket
https://github.com/dpurge/jdp-scoop
https://github.com/DragonightFury/DragonightFuryScoopBucket
https://github.com/dschaefer/scoop-tools816
https://github.com/dsrev/scoop-bucket
https://github.com/DStalkerBR/stalkerbucket
https://github.com/dtger/custom-scoop-bucket
https://github.com/Duckle29/duckles_bucket
https://github.com/ducpm1310/scoop-bucket
https://github.com/Dumpinground/emulator-tools
https://github.com/Dumpinground/simulator-tools
https://github.com/Dumpinground/themes
https://github.com/dungsil/scoop-apache-archive
https://github.com/dustinblackman/scoop-bucket
https://github.com/DustinVenegas/scoop-bucket
https://github.com/duzyn/scoop-cn
https://github.com/eamat-dot/scoop
https://github.com/earnestma/scoop-earne
https://github.com/echizenryoma/Scoop
https://github.com/echoiron/echo-scoop
https://github.com/ecsdeployer/scoop-bucket
https://github.com/edavidaja/scoop-bucket
https://github.com/edgardmessias/scoop-pentaho
https://github.com/EgonKlax/scoop-egonklax
https://github.com/emilefraser/PyroScoop
https://github.com/endowdly/endo-scoop
https://github.com/enfantreble/scoop
https://github.com/enndubyu/scoop-zig
https://github.com/eonward/eons-bucket
https://github.com/epoweripione/scoop-bucket
https://github.com/erayaydin/bucket
https://github.com/ereborstudios/scoop-bucket
https://github.com/ericzong/ericzone
https://github.com/ErnWong/scoop-bucket
https://github.com/escaletech/scoop-escale
https://github.com/EscWasTaken/scoop-special
https://github.com/ethersphere/scoop
https://github.com/Etsinshao/my-scoop-bucket
https://github.com/Etsinshao/scoop-bucket
https://github.com/eugenesvk/scoop-bucket
https://github.com/everyx/scoop-bucket
https://github.com/evg4b/scoop-bucket
https://github.com/excitoon/scoop-user
https://github.com/f-cramer/scoop-bucket
https://github.com/fakedon/scoop
https://github.com/fal-works/fal-scoop-bucket
https://github.com/fangchunxi1999/fcx19-bucket
https://github.com/Faustvii/scoop-bucket
https://github.com/FDUZS/spoon
https://github.com/Featyre/Scoop-Apps
https://github.com/ffurrer2/scoop-bucket
https://github.com/fhaifler/scoop-bucket
https://github.com/filippobuletto/pot-pourri
https://github.com/FilmaBem2/applications
https://github.com/fioepq9/scoop-aqua
https://github.com/fire/scoop-fire
https://github.com/Fireforge/my-bucket
https://github.com/fleimgruber/scoop-bucket
https://github.com/florianholzapfel/scoop-bucket
https://github.com/fluffynuts/scoop-bucket
https://github.com/follnoob/follnoob-bucket
https://github.com/foosel/scoop-bucket
https://github.com/forbjok/scoop-bucket
https://github.com/forensicanalysis/homebrew-tap
https://github.com/forgetone1/scoopstore
https://github.com/foxydevloper/fox-bucket
https://github.com/freak-lang/scoop
https://github.com/fredjoseph/scoop-bucket
https://github.com/freeflyer-team/scoop-bucket
https://github.com/Freshly/scoops
https://github.com/fretelweb/scoop-bucket
https://github.com/FrontasticGmbH/scoop-bucket
https://github.com/frostming/scoop-frostming
https://github.com/fspacek/app-servers-bucket
https://github.com/fujimitra/scoop-bucket
https://github.com/furyfire/my-bucket
https://github.com/fx5171/scoop-bucket
https://github.com/gabrielrobert/scoop-bucket
https://github.com/galbro/my-bucket
https://github.com/gaojr/MyScoopBucket
https://github.com/garyng/scoop-garyng
https://github.com/gauravkanoongo/scoop
https://github.com/georgezachos/scoop-bucket
https://github.com/get-woke/scoop-bucket
https://github.com/getclipshift/bucket
https://github.com/gexclaude/scoop-bucket
https://github.com/gfieldGG/bucket
https://github.com/GGP1/scoop-bucket
https://github.com/ghchinoy/scoop-ce
https://github.com/ghchinoy/scoop-roguewave
https://github.com/ghishadow/scoop-shadow
https://github.com/GianPDev/scoop-bucket
https://github.com/giantswarm/scoop-bucket
https://github.com/git-town/scoop
https://github.com/gitolicious/scoopy-doo
https://github.com/gkantsidis/scoop-public-bucket
https://github.com/Gladtbam/Bucket
https://github.com/glassechidna/scoop-bucket
https://github.com/gldraphael/scoop-bucket
https://github.com/glucas/scoop-bucket
https://github.com/GNQG/scoop-bucket
https://github.com/go-cli-tool-workshop-2022/scoop-bucket
https://github.com/go2sun/Scoop-bucket
https://github.com/goark/scoop-bucket
https://github.com/goreleaser/scoop-bucket
https://github.com/gorup/scoop-bucket
https://github.com/gospahdu/scoop-bucket
https://github.com/GotAnAccount/scoopBucket
https://github.com/gotidy/scoop-bucket
https://github.com/gpailler/scoop-apps
https://github.com/graaaaaaa/scoop-bucket
https://github.com/GreatGodApollo/trough
https://github.com/GreenTF/nsbucket
https://github.com/gregwen/grewen-scoop
https://github.com/Greydus/weeb-bucket
https://github.com/grigoryvp/scoop-grigoryvp
https://github.com/grrushy/scoop-bucket
https://github.com/gsminek/dtm-scoop-bucket
https://github.com/guardrailsio/scoop-bucket-guardrails
https://github.com/guitarrapc/scoop-bucket
https://github.com/GunMoe/scoop-bucket
https://github.com/gurkansahinn/scoops
https://github.com/gustoliv/scoop-bucket-devopstools
https://github.com/gwimm/scoop_bucket
https://github.com/h-takesg/h-takesg_bucket
https://github.com/h2ws/scoop-bucket
https://github.com/habetuz/HabetuzApps
https://github.com/hadley31/scoop-frc
https://github.com/hajeekn-backup/my-bucket
https://github.com/hanabi-bro/bucket4nw
https://github.com/HandOfGod94/scoop-bucket
https://github.com/hannesdorn/scoop-dorn
https://github.com/hanyang-97/scoop
https://github.com/Harakku/harakkus-scoop-bucket
https://github.com/haunt98/scoop-bucket
https://github.com/Hayxi/Soap
https://github.com/HCLonely/my-scoop-bucket
https://github.com/helbing/scoop-bucket
https://github.com/hermanjustnu/scoop-emulators
https://github.com/HeroBrine1st/ScoopBucket
https://github.com/heroku-miraheze/scoop-bucket
https://github.com/heropoo/my-bucket
https://github.com/hetingde/Meta
https://github.com/hettysoft/scoop-bucket
https://github.com/hibikine/scoop-bucket
https://github.com/Hikshood/my-bucket
https://github.com/hiroyuki-taka/scoop-bucket
https://github.com/hitrikrtek/scoop-mole
https://github.com/hjjhjj/doraemon-bucket
https://github.com/hmerritt/scoop-bucket
https://github.com/hoilc/scoop-lemon
https://github.com/holehan/scoop-bucket
https://github.com/homburg/scoop-bucket
https://github.com/hors-org/w-bucket
https://github.com/Hou-Rui/scoop-kde
https://github.com/howieyuen/scoop-bucket
https://github.com/hpifys/scoop-pocket
https://github.com/hrshtst/scoop-bucket
https://github.com/Hsins/yogurt
https://github.com/htsign/my-scoop-bucket
https://github.com/hu3rror/scoop-muggle
https://github.com/huangnauh/carrot
https://github.com/huleiak47/scoop-apps
https://github.com/hulucc/bucket
https://github.com/HUMORCE/nuke
https://github.com/hupe1980/awsrecon-bucket
https://github.com/hupe1980/fakedns-bucket
https://github.com/hupe1980/fileserve-bucket
https://github.com/hupe1980/gotoaws-bucket
https://github.com/hupe1980/notifier-bucket
https://github.com/hupe1980/scan4log4shell-bucket
https://github.com/hupe1980/zipbomb-bucket
https://github.com/huruka/scoop-bucket-momo
https://github.com/hydra1983/scoop-bucket
https://github.com/hymkor/make-scoop-bucket-index
https://github.com/hymkor/make-scoop-manifest
https://github.com/hymkor/scoop-bucket
https://github.com/hyonsoku/scoop-bucket
https://github.com/hyrious/scoop-hyrious
https://github.com/HYY-yu/scoop-bucket
https://github.com/iainsgillis/isg-bucket
https://github.com/iamsilvio/scoop-bucket-deleteonerror
https://github.com/icalder/scoop-bucket
https://github.com/icarus-consulting/promptly-bucket
https://github.com/icecreamZeng/scoop-bucket
https://github.com/icedream/scoop-bucket
https://github.com/icetee/icetee-bucket
https://github.com/idleberg/scoop-playdate-sdk
https://github.com/idonec/scoop-bucket
https://github.com/idyllim/scoop-bucket
https://github.com/ifacrylic/scoop-bucket
https://github.com/Ignorantal/ScoopApp
https://github.com/IHaveNoZpu/zpu-buckets
https://github.com/iipom/sake
https://github.com/ilhamepri/uni-verse
https://github.com/ilkka/scoop-bucket
https://github.com/ImMakSpy/scoop-bucket-iammakspy
https://github.com/imwithye/scoop
https://github.com/Inari-Whitebear/scoopBucket
https://github.com/inetcp/scoop-bucket
https://github.com/infernaldunker/administry
https://github.com/Infisical/scoop-infisical
https://github.com/infrahq/scoop
https://github.com/ink0rr/scoop-bucket
https://github.com/insomnimus/scoop-bucket
https://github.com/installdoc/scoops
https://github.com/instinctualjealousy/holes
https://github.com/instrumenta/scoop-instrumenta
https://github.com/ionos-cloud/scoop-bucket
https://github.com/ioridazo/scoop-bucket-ioridazo
https://github.com/ippsio/scoop_bucket
https://github.com/iquiw/scoop-bucket
https://github.com/iranika/iranika-tools
https://github.com/irishgreencitrus/scoop_bucket_irishgreencitrus
https://github.com/issaclin32/scoop-bucket
https://github.com/issaclin32/scoop-private
https://github.com/issaclin32/scoop-systemtweaks
https://github.com/isso-719/gaming-scoop
https://github.com/isso-719/lit-webs-scoop
https://github.com/itschip/scoop-bucket
https://github.com/itshayu/pandora
https://github.com/ItsPizzaTime1501/bad-scoop-bucket
https://github.com/itzg/scoop-bucket
https://github.com/ivaquero/scoopet
https://github.com/iwa4/scoop-bucket
https://github.com/ixofoundation/ixo-bucket
https://github.com/Izzxt/scoop-bucket
https://github.com/j178/scoop-bucket
https://github.com/j1g5awi/scoop-jigsaw
https://github.com/jack-mil/scoop-bucket
https://github.com/JackMordaunt/scoop-bucket
https://github.com/Jackymancs4/scoop-bucket
https://github.com/jackzzs/scoop-bucket
https://github.com/jakobhviid/scoop-specialized
https://github.com/jakuboskera/scoop-bucket
https://github.com/JalonWong/scoop-bucket
https://github.com/jamesgecko/scoop-packages
https://github.com/jamestansx/scoop-freecad
https://github.com/JamesWoolfenden/scoop
https://github.com/janet-lang/scoop
https://github.com/janlindblom/scoops
https://github.com/JanydChang/bucket
https://github.com/jat001/scoop-ox
https://github.com/javageek/scoop-bucket
https://github.com/javanile/scoop-bucket
https://github.com/JaxRaffnix/Powershell-scoop-bucket
https://github.com/jaxxstorm/scoop-bucket
https://github.com/JayTwoLab/j2doll-scoop-bucket
https://github.com/jazzwang/scoop-bucket
https://github.com/jbangdev/scoop-bucket
https://github.com/jbvovau/vovau
https://github.com/jcwillox/scoop-bucket
https://github.com/jcwillox/scoop-python
https://github.com/jdev082/ctlyst-bucket
https://github.com/jdevora/my_scoop_bucket
https://github.com/Jeddunk/scoop-bucket
https://github.com/jelmansouri/scoop-bucket
https://github.com/jerson/scoop-bucket
https://github.com/JesseRacine/myscoop
https://github.com/JeWeizhong/mybucket
https://github.com/jfut/scoop-dell-xps-8920
https://github.com/jfut/scoop-jfut
https://github.com/jfut/scoop-pleiades
https://github.com/jgoof91/scoop-bucket-emu
https://github.com/jiangbo0216/bucket
https://github.com/jimbrig/jimsbucket
https://github.com/jingyu9575/scoop-jingyu9575
https://github.com/JKorbelRA/scoop-for-lazy-admins
https://github.com/jku1995/Jbucket
https://github.com/jlaasonen/scoop-bucket
https://github.com/jm0477/bucket
https://github.com/JManch/scoop-bucket
https://github.com/jmcarbo/scoopbucket
https://github.com/joaoricarte/jr-bucket
https://github.com/Jojo4GH/scoop-JojoIV
https://github.com/Jokler/scoop-bucket
https://github.com/jonaskje/scoops
https://github.com/jonisb/Misc-scoops
https://github.com/jonz94/scoop-personal
https://github.com/jonz94/scoop-sarasa-nerd-fonts
https://github.com/jorqensen/vessel
https://github.com/JorundMartinsen/scoop-buckets
https://github.com/joserebelo/scoop-bucket
https://github.com/JourneyOver/scoop-buckets
https://github.com/jovercao/scoop-bucket-jover
https://github.com/jrhawley/scoop-bucket
https://github.com/jsorah/jsorah-scoop-bucket
https://github.com/JTBrinkmann/scoop-bucket
https://github.com/jtmg/ScoopDCS
https://github.com/jumitaka/scoop-jum-bucket
https://github.com/jumpchat/scoop-bucket
https://github.com/justsh/scoop-bucket
https://github.com/Jvcon/werkzeuge
https://github.com/Jvcon/werkzeugeold
https://github.com/jxxkvs/flowerKitty
https://github.com/jyf-111/scoop-self
https://github.com/k-awata/scoop-bucket
https://github.com/K-JW/scoop-science-tools
https://github.com/kai2nenobu/scoop-bucket
https://github.com/Kantouzin/scoop-bucketouzin
https://github.com/KarasuShin/scoop-bucket
https://github.com/kaweezle/scoop-bucket
https://github.com/Kazanami/zeus-bucket
https://github.com/kazzarin/bucket
https://github.com/kcl-lang/scoop-bucket
https://github.com/kdash-rs/scoop-kdash
https://github.com/kdpuvvadi/scoop-bucket
https://github.com/keboola/scoop-keboola-cli
https://github.com/keith-xiong/my-bucket
https://github.com/kemokemo/scoop-bucket
https://github.com/kentork/scoop-leaky-bucket
https://github.com/kevinboss/maple
https://github.com/keyansheng/my-bucket
https://github.com/keyiyin/scoop-keyiyin
https://github.com/keys-pub/scoop-bucket
https://github.com/KeySpot/scoop-bucket
https://github.com/kha7iq/scoop-bucket
https://github.com/kidonng/sushi
https://github.com/kiennq/scoop-misc
https://github.com/killsen/scoop-dev
https://github.com/kimotu4632uz/kimotuBucket
https://github.com/kingchang/scoop-buckets
https://github.com/Kiskadee-dev/bucket
https://github.com/kissiy179/scoop-bucket
https://github.com/kkkykin/Personal-Scoop-Bucket
https://github.com/kkum/my-scoop-bucket
https://github.com/kkwpsv/ScoopBucket
https://github.com/kkzzhizhou/scoop-zapps
https://github.com/klaidliadon/scoop-buckets
https://github.com/klauern/trackello-bucket
https://github.com/kltk/scoop-bucket
https://github.com/KnotUntied/scoop-fonts
https://github.com/KnotUntied/scoop-knotuntied
https://github.com/KNOXDEV/wsl
https://github.com/knsugit/mybucket
https://github.com/kodybrown/scoop-nirsoft
https://github.com/kols/my-scoop-bucket
https://github.com/kopia/scoop-bucket
https://github.com/Kore-Development/scoop-bucket
https://github.com/kriswilk/scoop-personal
https://github.com/krokofant/scoop-powershell-bucket
https://github.com/krproject/qi-windows
https://github.com/Krzysztof-Cieslak/scoop-fsharp-extras
https://github.com/ksawerykarwacki/scoop-bucket
https://github.com/ktos/scoop
https://github.com/kurame-yotsuba/scoop-kurame
https://github.com/KusionStack/scoop-bucket
https://github.com/kznagamori/scoop-kz-jp
https://github.com/L-Trump/scoop-raresoft
https://github.com/lambdaself/lambda-bucket
https://github.com/lasagnaphil/scoop
https://github.com/LasseJensen213/ScoopTest
https://github.com/latestgo/scoop-bucket
https://github.com/lawrencegripper/scoop-bucket
https://github.com/LazyGeniusMan/Scoop-Bucket
https://github.com/LazyGeniusMan/Scoop-Genshin
https://github.com/lcomrade/ScoopBucket
https://github.com/ld3z/my-bucket
https://github.com/ldez/scoop-bucket
https://github.com/leafgarland/scoop-bucket
https://github.com/LeagueJinx/moli-scoop-bucket
https://github.com/lefevrep/scoop
https://github.com/legion-labs/scoop-bucket
https://github.com/LengSword/scoop-yls
https://github.com/lenicyl/Kettle
https://github.com/leochl1/scoop-shed
https://github.com/leonidboykov/scoop-bucket
https://github.com/lesstif/scoop-bucket-for-korean
https://github.com/lettucrisp/scoop_bucket
https://github.com/lewis-yeung/scoop-bucket
https://github.com/lexisother/bukkit
https://github.com/li-ruijie/scoop
https://github.com/liaoya/scoop-bucket
https://github.com/liarchgh/ArchBucket
https://github.com/libnare/scoop-bucket
https://github.com/lifansama/scoop_bucket
https://github.com/lihuu/my-scoop-bucket
https://github.com/lingrino/scoop-cami
https://github.com/lingrino/scoop-glen
https://github.com/lingrino/scoop-vaku
https://github.com/LisGlitchrain/glitchsys-bucket
https://github.com/litp/my-scoop-bucket
https://github.com/littleli/Scoop-AtariEmulators
https://github.com/littleli/scoop-clojure
https://github.com/littleli/scoop-garage
https://github.com/littleli/Scoop-littleli
https://github.com/litzh/scoop-bucket
https://github.com/liuhongxuan23/scoop-bucket
https://github.com/liuwentao/scoop-bucket
https://github.com/livin2/ScoopApps
https://github.com/lkhrs/eve-tools
https://github.com/LKI/scoop-bucket
https://github.com/loadaspasaspas/scoop-bucket
https://github.com/Locietta/sniffer
https://github.com/log-linear/scoop_bucket
https://github.com/Logiase/scoop-embedded
https://github.com/Logiase/scoop-esp-bucket
https://github.com/Lomeli12/ScoopBucket
https://github.com/lptstr/lptstr-scoop
https://github.com/LstHeart/scoop-soft
https://github.com/lsyhm/scoop-bucket
https://github.com/lucagrulla/cw-scoop-bucket
https://github.com/LucasOe/scoop-lucasoe
https://github.com/Lumaeris/scoop-bucket
https://github.com/LumaKernel/my-scoop-buckets
https://github.com/lunarwhite/scoop-lunar
https://github.com/LuoHuiRu/ScoopBucket
https://github.com/lurdan/scoop-bucket
https://github.com/Lutra-Fs/scoop-bucket
https://github.com/LydiaAgute/my-bucket
https://github.com/lyineee/scoop-bucket
https://github.com/lzimd/lzimd-scoop-bucket
https://github.com/lzwme/scoop-proxy-cn
https://github.com/m4k070/my-bucket
https://github.com/m75c/scoop-heap
https://github.com/madosuki/the-my-scoop-bucket
https://github.com/maiashi/scoop-maiashi-bucket
https://github.com/mailchain/scoop-bucket
https://github.com/majokko/scoop-bucket
https://github.com/making/scoop-bucket
https://github.com/maman/scoop-bucket
https://github.com/ManchesterMachineMakers/neopolitan
https://github.com/MANICX100/scoop
https://github.com/manikmagar/scoop-bucket
https://github.com/maoizm/scoopBucket
https://github.com/maokwen/scoop-bucket
https://github.com/Maoyeedy/Scoop-Yeedy
https://github.com/mapleafgo/scoop-bucket
https://github.com/marcosbozzani/scoop
https://github.com/mariocapellari/my-scoop-bucket
https://github.com/MarkMichaelis/ScoopBucket
https://github.com/MarksonHon/repo
https://github.com/markustveter/my_bucket
https://github.com/MaroBytes/ScoopBucket
https://github.com/maroider/scoop-bucket
https://github.com/marshfolx/scoop-avr-toolchain
https://github.com/masaeedu/scoop-bucket
https://github.com/masaeedu/scoop-growlnotify
https://github.com/masonm12/scoop-personal
https://github.com/Master-Hash/bucket
https://github.com/mat0354/scoop-bucket
https://github.com/mateuszdrab/scoop-bucket
https://github.com/mathieucarbou/scoop-bucket
https://github.com/matijabozic/scoop-bucket
https://github.com/matthewjberger/scoop-nerd-fonts
https://github.com/matthiasng/scoop-bucket
https://github.com/mattia72/scoop
https://github.com/MattKang/scoop-bucket
https://github.com/mattkang/scoop-bucket
https://github.com/maver1ck/scoop-bucket
https://github.com/mberwanger/scoop-bucket
https://github.com/mbl-35/scoop-srsrns
https://github.com/mcico/scoop-bucket
https://github.com/MCOfficer/scoop-bucket
https://github.com/mcornick/scoop-bucket
https://github.com/mcserverhosting-net/scoop
https://github.com/mcwarman/scoop-bucket
https://github.com/mdekstrand/ekstrand-bucket
https://github.com/mdpadberg/scoop-bucket
https://github.com/meenzen/scoop
https://github.com/Megasware128/scoop-terraformer
https://github.com/mertd/shovel
https://github.com/meshery/scoop-bucket
https://github.com/MetalDevOps/scoop-bucket
https://github.com/metta-systems/scoop-for-ci
https://github.com/meyermarcel/scoop-bucket
https://github.com/mfandcc/scoop-bucket
https://github.com/mgarbvs/scoop-bucket
https://github.com/mgziminsky/scoop-bucket
https://github.com/mhatta/scoop-bucket
https://github.com/mherwig/scoop-bucket
https://github.com/micnncim/scoop-bucket
https://github.com/mihaichris/atelier
https://github.com/mike-macmullin/vm-bucket
https://github.com/mikefarmer01/my-scoops
https://github.com/mikepruett3/scoop-cyberduck
https://github.com/miln-eu/scoop-miln-eu
https://github.com/Milo123459/cone
https://github.com/mine211/my-bucket
https://github.com/minorgod/scoop-minorgod
https://github.com/mirror-kt/ScoopBucket
https://github.com/misumisumi/scoop-bucket
https://github.com/mjaroszek/scoop-bucket
https://github.com/mmccormick2211/personal
https://github.com/mmguero/scoop-bucket
https://github.com/mmichaelis/scoop-bucket
https://github.com/mo-san/scoop-bucket
https://github.com/modelfoxdotdev/scoop
https://github.com/ModerRAS/yasb
https://github.com/mogeko/scoop-bucket
https://github.com/mogeko/scoop-sysinternals
https://github.com/moheng233/MoHengBucket
https://github.com/monotykamary/toms-scoop-bucket
https://github.com/moonjh-gru/local-scoop-bucket
https://github.com/moposx/lava-bucket
https://github.com/morapet/scoop-bucket
https://github.com/motty-mio2/mio2_bucket
https://github.com/motty-mio2/scoop_hdl
https://github.com/mozza86/scoop-bucket
https://github.com/mr-childers/scoop-bucket
https://github.com/mr-dlrow/misc-scoop-bucket
https://github.com/mr-south-guo/my-scoop
https://github.com/MrAwesomeRocks/scoop-bucket
https://github.com/mrg0lden/my-bucket
https://github.com/MrMikeandike/MAIScoopBucket
https://github.com/MrWillCom/auto-mirroring-bucket
https://github.com/mundusnine/audio-bucket
https://github.com/Mushus/scoop-bucket
https://github.com/Mutants-X/Bearman-Bucket
https://github.com/Muulsh/scoop-bucket
https://github.com/muxinxy/scoop-bucket
https://github.com/mvietri/scoop-hela
https://github.com/mvisonneau/scoops
https://github.com/myksmstk/scoop-myks-public
https://github.com/mynerva-io/scoop-bucket
https://github.com/myomi/scoop-bucket
https://github.com/myty/scoop-mytydev
https://github.com/Naboris/nab-scoop
https://github.com/naderi/scoop-bucket
https://github.com/nais/scoop-bucket
https://github.com/nanbowaner/scoop
https://github.com/naodara/my-bucket
https://github.com/narnaud/scoop-bucket
https://github.com/natecohen/scoop-av
https://github.com/naveed-patel/NScooP
https://github.com/navrudh/scoop
https://github.com/nazo6/nzbucket
https://github.com/ncruces/scoop
https://github.com/neatorobito/scoop-crystal
https://github.com/nexuswho/ascent
https://github.com/niaojin0407/scoop-niaojin
https://github.com/nicerloop/scoop-nicerloop
https://github.com/nicholaswilde/scoop-bucket
https://github.com/nickbudi/scoop-bucket
https://github.com/nickers/scoop-bucket
https://github.com/nickhericks/scoop-bucket
https://github.com/niheaven/scoop-nih
https://github.com/niheaven/scoop-sysinternals
https://github.com/nikkoura/scoop-bucket
https://github.com/nikkoura/scoop-bucket-elitedangerous
https://github.com/nikkoura/scoop-bucket-vkb
https://github.com/niklaskorz/scoop-bucket
https://github.com/nikoksr/scoop-bucket
https://github.com/nikolasd/scoop-bucket
https://github.com/nimzo6689/Scoop-nimzo6689
https://github.com/ninjaoxygen/scoop-bucket
https://github.com/Nirose/node
https://github.com/nitishm/scoop-bucket-engarde
https://github.com/nitrictech/scoop-bucket
https://github.com/nixxo/nixxo-scoop-bucket
https://github.com/nonwhale/whale-bucket
https://github.com/nopsak/scoop-nopsak1
https://github.com/noquierouser/nqu-scoop
https://github.com/nordou/scoop-bucket
https://github.com/nosoop/this-is-a-bucket
https://github.com/Notenoughusernames/bluemoon
https://github.com/novaclip/scoop-bucket
https://github.com/nrakochy/leiningen_bucket
https://github.com/nrakochy/scoop-solidity
https://github.com/nridwan/scoop-bucket
https://github.com/Nriver/Scoop-Nriver
https://github.com/ns-mkusper/scoop-bucket
https://github.com/ns0m/scoop-bucket
https://github.com/NSIS-Dev/scoop-nsis
https://github.com/NSP-0123456/nspp-TC-scoop
https://github.com/ntabee/scoop-personal-bucket
https://github.com/nueko/php-ext-bucket
https://github.com/nueko/scoop-php
https://github.com/nueko/scoop-php-ext
https://github.com/nvm9/scoop-bucket
https://github.com/nyable/mirai-bucket
https://github.com/nyamairi/scoop-bucket
https://github.com/NyaMisty/scoop_bucket_misty
https://github.com/obay/scoop-bucket
https://github.com/ocdc/scoop-bucket
https://github.com/odpf/scoop-bucket
https://github.com/oduboevi/scoop-bucket
https://github.com/okibcn/Bucket
https://github.com/okibcn/ScoopMaster
https://github.com/omerakgoz34/scoop-bucket
https://github.com/ondr3j/scoop-misc
https://github.com/ondrejsika/scoop-bucket
https://github.com/ondrejsv/scoop-bucket
https://github.com/onlyice/scoop-bucket
https://github.com/onsamyj/dipper
https://github.com/onuzbee/scoop-twilio-cli
https://github.com/OpenIoTHub/scoop-bucket
https://github.com/OpenJNY/my-scoop-bucket
https://github.com/opsani/scoop-bucket
https://github.com/OrigamiKing/xxx
https://github.com/OsirisTerje/bucket
https://github.com/otterize/scoop-otterize-cli
https://github.com/ous50/ous50-bucket
https://github.com/OverflowCat/neko-scoop-bucket
https://github.com/Ovyerus/bucket
https://github.com/owenvoke/scoop-bucket
https://github.com/p-rs/scoop-eschargo
https://github.com/p8rdev/scoop-portableapps
https://github.com/palindrom615/scoop-bucket
https://github.com/parallel-domain/scoop-pd-bucket
https://github.com/parasquid/parasquid-scoop-bucket
https://github.com/parbo/personal-scoop-bucket
https://github.com/pardahlman/scoop-bucket
https://github.com/pasoevi/more-scoops
https://github.com/pastleo/scoop-bucket
https://github.com/pathbird/scoop-bucket
https://github.com/patrick330602/pkscbk
https://github.com/paulvarache/scoop-bucket
https://github.com/Paxxs/Cluttered-bucket
https://github.com/pcrama/scoop-buckets
https://github.com/PEMessage/PEM-ScoopBucket
https://github.com/Pengxn/xn
https://github.com/PeronGH/scooperon
https://github.com/pessoalzy/pannus
https://github.com/petlyh/scoop-bucket
https://github.com/pfmoore/scoop-enk
https://github.com/pgollangi/scoop-bucket
https://github.com/phanirithvij/scop
https://github.com/philippgille/scoop-bucket
https://github.com/phoenix106/my-scoop-bucket
https://github.com/PhyX-Meow/ScoopBucket
https://github.com/pigsflew/scoop-arbitrariae
https://github.com/pinebright/scoop-bucket
https://github.com/pipekit/scoop
https://github.com/planetscale/scoop-bucket
https://github.com/plentico/scoop-plenti
https://github.com/plicit/scoop-search-multisource
https://github.com/plombard/scoop-bucket
https://github.com/pm-duc/scoop
https://github.com/podhmo/scoop-buckets
https://github.com/poloniusDergath/polobucket
https://github.com/pomberger/pom
https://github.com/ponta555/scoop-bucket
https://github.com/PorridgePi/scoop-bucket
https://github.com/portalbox-app/scoop-bucket
https://github.com/porti/scoop-bucket
https://github.com/ppkozlowski/scoop-apps
https://github.com/ppyv/scoop-jp-fonts
https://github.com/prantlf/scoop-bucket
https://github.com/prezesp/prezesp-bucket
https://github.com/prezesp/scoop-viewer-bucket
https://github.com/princemaple/tmp-bucket
https://github.com/printableinc/scoop
https://github.com/profclems/scoop-bucket
https://github.com/ProfElements/EmulatorBucket
https://github.com/prog-dude/my-bucket
https://github.com/prometheusresearch/scoop-public
https://github.com/protron/scoop-bucket
https://github.com/proudzhu/scoop-bucket
https://github.com/ptbwu/dango
https://github.com/pumbaEO/oscript-scoop
https://github.com/purpleclay/scoop-bucket
https://github.com/pvarentsov/scoop-iola
https://github.com/pyspa/pyspa-bucket
https://github.com/qcts33/scoop_bucket
https://github.com/qoomon/scoop-bucket
https://github.com/quantuumsnot/qtools
https://github.com/quawy/stash-bucket
https://github.com/quickfixgo/scoop-qf
https://github.com/quinn-brittain/lava
https://github.com/quotidian-ennui/personal-scoop-bucket
https://github.com/Qv2ray/mochi
https://github.com/qwerty12/scoop-alts
https://github.com/qwjyh/scoop_bucket
https://github.com/qyurila/scoop-bucket
https://github.com/r12f/scoop-bucket
https://github.com/radusuciu/scoop-bucket
https://github.com/rahulmr/rbucket
https://github.com/railwayapp/scoop-railway
https://github.com/rainbowtp/Scoop_bucket
https://github.com/raisercostin/raiser-scoop-bucket
https://github.com/rajasoun/dev-box-bucket
https://github.com/rakutentech/scoop-bucket
https://github.com/raoxiaoman/raohui-scoop-bucket
https://github.com/rasa/scoops
https://github.com/raulfpl/scoop-raulfpl
https://github.com/RavenMacDaddy/scoop-apps
https://github.com/rcoliveira2016/bucket
https://github.com/rcqls/scoop-extras
https://github.com/rdmcgregor/scoop-bucket
https://github.com/re3turn/scoop-bucket
https://github.com/red/scoop-bucket
https://github.com/redis-developer/scoop
https://github.com/Rekhyt2901/scoop-bucket
https://github.com/replit/scoop-bucket
https://github.com/Retia-Adolf/scoop-amd
https://github.com/rfc3092/scoop
https://github.com/rgroszewski/scoop-bucket
https://github.com/rhylso/scoop-bucket
https://github.com/richardkng/ScoopBucket
https://github.com/Rigellute/scoop-bucket
https://github.com/rinetd/scoop-bucket
https://github.com/riscorpian/my-bucket
https://github.com/rivy/scoop-bucket
https://github.com/riweston/scoop-bucket
https://github.com/rkbk60/scoop-for-jp
https://github.com/rkolka/scoop-manifold
https://github.com/rmaimen/scoop_bucket_rm
https://github.com/robertkg/scoop-bucket
https://github.com/robewald/scoop-bucket
https://github.com/rodicerep/scoop-personal
https://github.com/rodrigost23/scoop-bucket
https://github.com/roelofvkr/scoop-bucket
https://github.com/rohitnarayanan/scoop-apps
https://github.com/roma-glushko/scoop-tango
https://github.com/romainalpes/alpes-bucket