generated from ScoopInstaller/BucketTemplate
-
Notifications
You must be signed in to change notification settings - Fork 8
/
DeprecatedBuckets
951 lines (951 loc) · 40 KB
/
DeprecatedBuckets
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
https://github.com/0xfdfd/scoop-store
https://github.com/1343467272/scoop-bucket
https://github.com/1349422030/scoop
https://github.com/2moveit/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/a1311910148/scoop-bucket
https://github.com/a59/quiver
https://github.com/abgox/ownBucket
https://github.com/ackerr/scoop-bucket
https://github.com/ACooper81/scoop-settings
https://github.com/actioninja/scoop-bucket
https://github.com/AdmnJ/Custom-Bucket
https://github.com/adrianliechti/scoop-bucket
https://github.com/Aetopia/Bucket
https://github.com/agrimrules/scoop-bucket
https://github.com/aidanaden/scoop-bucket
https://github.com/ajihyf/ScoopApps
https://github.com/Akjir/snsb
https://github.com/alealexpro100/ru-school-scoop
https://github.com/alex1313/scoop-bucket
https://github.com/alinote/wm-scoop
https://github.com/aliuq/my-scoop
https://github.com/alkuzad/unxutils-separated
https://github.com/allenchou13/scoop-bucket
https://github.com/aloxjp/scoop-edinet
https://github.com/Alvison/scoop-alvison
https://github.com/Alxandr/scoop-bucket
https://github.com/alyssadev/scoop-bucket
https://github.com/Ambiel127/mth-bucket
https://github.com/amdg/timba
https://github.com/amumu2000/AmumuScoopBucket
https://github.com/anakrish/scoop-test
https://github.com/analogrelay/scoop-bucket
https://github.com/anderlli0053/AppArchive
https://github.com/anderlli0053/DEV-tools
https://github.com/AndisGrossteins/scoop-apache-mods
https://github.com/AndreasBrostrom/arma3-scoop-bucket
https://github.com/AndreasMReumschuessel/cask
https://github.com/andreysaksonov/scoop-bucket
https://github.com/anoth3RZ/graalvm
https://github.com/AntoniRokitnicki/scoopy-bucket
https://github.com/anybive/AppsBucket
https://github.com/aparkerlue/apl-scoop-bucket
https://github.com/apecloud/kbcli-bucket
https://github.com/apecloud/scoop-bucket
https://github.com/applejag/applejag-bucket
https://github.com/aquaproj/scoop-bucket
https://github.com/arch3rPro/scoop-bucket
https://github.com/ArcticYouko/MainlandScoopBucket
https://github.com/ArcticYouko/YoukoScoopBucket
https://github.com/Arian-D/my-scoop-bucket
https://github.com/arrrgi/scoop-bucket
https://github.com/artifacthub/scoop-cmd
https://github.com/arubyz/scoop-bucket
https://github.com/Arxoto/Scoop-arxBucket
https://github.com/asfuyao/scoop-bucket
https://github.com/Ash258/GenericBucket
https://github.com/asterho/my-scoop-bucket
https://github.com/ASTRELION/astrel-bucket
https://github.com/ati-ozgur/ati-scoop-bucket
https://github.com/atomiccity/scoop-portable
https://github.com/AtomiCloud/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/AuHau/scoop
https://github.com/aukaheng/akh-scoop-bucket
https://github.com/Autry-Technology/appbucket
https://github.com/ava1ar/ava1ar-scoop-bucket
https://github.com/axojhf/my_scoop_buckets
https://github.com/AzureZeng/azw-scoop-bucket-main
https://github.com/b1017034/scoop-bucket
https://github.com/b1tg/scoop-bucket-b1tg
https://github.com/ba230t/scoop-bucket-sysinternals
https://github.com/Baavgai/baav-bucket
https://github.com/babo4d/xrtools
https://github.com/BadCodr/scoop-bucket
https://github.com/baiyuking/scoop-bucket
https://github.com/baiyuking/sp
https://github.com/bandithedoge/scoop-switch
https://github.com/barohatoum/my-scoop-bucket
https://github.com/BasixKOR/scoop-bucket
https://github.com/bdeb1337/bdeb-bucket
https://github.com/BebopBamf/bebopbamfs-bucket
https://github.com/beemdm/beemdmbucket
https://github.com/beerpiss/scoop-bucket
https://github.com/BenjaminMichaelis/ScoopBucket
https://github.com/BESTSELLER/scoop-bucket
https://github.com/betasuppe/scoop-bucket
https://github.com/bigfile/scoop-bucket
https://github.com/billybooth/bucket
https://github.com/bissli/scoop-bucket
https://github.com/bitfrickler/scoop-bucket
https://github.com/bitoolean/scoop-bucket-experiment
https://github.com/bitzertech/scoop
https://github.com/Bl4Cc4t/scoop-bucket
https://github.com/black2rock/scoop
https://github.com/blue-cloak/cloak
https://github.com/bluereflega/ascella
https://github.com/bluereflega/scoop
https://github.com/blutui/bucket-courier
https://github.com/bn-digital/scoop
https://github.com/bobbytrapz/scoop-bucket
https://github.com/bodnarlajos/scoop
https://github.com/bogdaba/scoop-bucket
https://github.com/bookstairs/scoop-bucket
https://github.com/bookyue/scoop-egg
https://github.com/brecert/my-bucket
https://github.com/brotherbui/scoop-bucket
https://github.com/BruceLee569/my-bucket
https://github.com/BruceZhang1993/scoop-azusa
https://github.com/c6p/scoop
https://github.com/caixiaomao/scoop-bucket
https://github.com/CalesvolChen/scoop
https://github.com/Callidin/ragnar-scoop
https://github.com/canvascat/scoop-bucket
https://github.com/Capella87/scoop-bucket
https://github.com/Ccccraz/myScoopBucket
https://github.com/ccciyo/ccc-scoop-bucket
https://github.com/ccyykkcyk/scoop
https://github.com/ceclin/scoop-bucket-me
https://github.com/ChandlerVer5/scoop-fruit
https://github.com/chang196700/ScoopFyuzh
https://github.com/charon-strix/suzuran-bucket
https://github.com/chenxiangfang/scoop-chenxf
https://github.com/chikazin/KazinScoopBucket
https://github.com/chrisfls/scoop-bucket
https://github.com/chrishazfun/bucket
https://github.com/ChuJiani/scoop
https://github.com/chuxubank/scoop-bucket
https://github.com/cigh033/burgrBucket
https://github.com/cigh033/scoopBucket
https://github.com/cli/scoop-gh
https://github.com/clipd/scoop-buckets
https://github.com/Clownfused/bucket-o-clowns
https://github.com/cocoabreak/scoop-bucket
https://github.com/CodeIdeal/scoop-bucket
https://github.com/coder-user/self-scoop-bucket
https://github.com/CodyAdam/scoop
https://github.com/colkey/scoop-colkey
https://github.com/command-line-tools/scoop-bucket
https://github.com/comp500/scoop-browser
https://github.com/coredump/scoop_bucket
https://github.com/cprecioso/scoop-lektor
https://github.com/cprieto/my-scoop
https://github.com/Crisypa/scoopbucket
https://github.com/crojascampos/personal-bucket
https://github.com/cross-language-cpp/djinni-bucket
https://github.com/cruzpaulajoanna/my-bucket
https://github.com/cryptogrampus/cuztum-bucket
https://github.com/cwzero/scoop-bucket
https://github.com/CypherNL/My-Bucket
https://github.com/D3-LucaPiombino/scoop-bucket
https://github.com/Dagwbl/scoop
https://github.com/DamianReeves/scoop-tools
https://github.com/dandymi/scoop-devops
https://github.com/danielgatis/scoop-imgcat
https://github.com/danielulloa/scoop-vhdl
https://github.com/danikun/scoop
https://github.com/danyow/my-bucket
https://github.com/darabuchi/scoop
https://github.com/darkbloodx/scoop-bucket
https://github.com/dasbaumwolltier/scoop-bucket
https://github.com/DataliftHQ/scoop-bucket
https://github.com/David-theScriptkid/Baulk-Scooplized-Bucket
https://github.com/davidjericho/davidstools
https://github.com/dazoyee/scoop-bucket-ioridazo
https://github.com/dbarbuzzi/scoop-bucket
https://github.com/dbtedman/scoop-bucket
https://github.com/ddddddO/scoop-bucket
https://github.com/dduan/scoop-bucket
https://github.com/DEEP-IMPACT-AG/scoop-hyperdrive
https://github.com/deevus/scoop-games
https://github.com/dein0s/scoop-bucket
https://github.com/demesne/dev-extras
https://github.com/denismestres/my-bucket
https://github.com/dennislloydjr/scoop-bucket-devbox
https://github.com/deploifai/scoop-deploifai
https://github.com/derKrischan/scoop-bucket
https://github.com/Deskehs/ownApps
https://github.com/detain/scoop-emulators
https://github.com/developing-today-forks/scoop-charmbracelet
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/dg0072/scoop-missing-packages
https://github.com/didong/self-bucket
https://github.com/digrouz/scoop-digrouz
https://github.com/dimdimych/scoop-bucket
https://github.com/DinVolodka/my-bucket
https://github.com/Direct-A/sakane
https://github.com/diseq/scoopbucket
https://github.com/divanvisagie/scoop-bucket
https://github.com/doamatto/scoop-bucket
https://github.com/doetlingerlukas/scoop
https://github.com/DoingGitStuff/mybucket
https://github.com/dora38/scoop-bucket
https://github.com/Doraevon/my-bucket
https://github.com/Doraevon/my-scoop-bucket
https://github.com/Doraevon/scoop-bucket
https://github.com/dosco/graphjin-scoop
https://github.com/doughyjohnny/my-bucket
https://github.com/douglaslassance/scoop-bucket
https://github.com/doujia/jbucket
https://github.com/dppereyra/scoop-bucket
https://github.com/dpurge/jdp-scoop
https://github.com/DragonightFury/DragonightFuryScoopBucket
https://github.com/dreamncn/scoop
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/ducpm1310/scoop-bucket
https://github.com/dungsil/scoop-apache-archive
https://github.com/dustinblackman/scoop-bucket
https://github.com/duzyn/scoop-cn
https://github.com/echizenryoma/Scoop.Backup
https://github.com/emilefraser/PyroScoop
https://github.com/EndlesslyFlowering/my-scoop-bucket
https://github.com/eonward/eons-bucket
https://github.com/epoweripione/scoop-bucket
https://github.com/ereborstudios/scoop-bucket
https://github.com/ErnWong/scoop-bucket
https://github.com/escaletech/scoop-escale
https://github.com/etnsid/etn-bucket
https://github.com/Etsinshao/my-scoop-bucket
https://github.com/eugenesvk/scoop-bucket
https://github.com/fa0311/bucket-init-web
https://github.com/fa0311/essential-bucket-bulk-installer
https://github.com/fabhianArkantos/arkantos-bucket
https://github.com/fal-works/fal-scoop-bucket
https://github.com/Faustvii/scoop-bucket
https://github.com/Featyre/Scoop-Apps
https://github.com/ffurrer2/scoop-bucket
https://github.com/fhaifler/scoop-bucket
https://github.com/FilmaBem2/applications
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/forensicanalysis/homebrew-tap
https://github.com/foxxorcat/ipfs-scoop
https://github.com/foxydevloper/fox-bucket
https://github.com/freak-lang/scoop
https://github.com/Freshly/scoops
https://github.com/fretelweb/scoop-bucket
https://github.com/FrontasticGmbH/scoop-bucket
https://github.com/fspacek/app-servers-bucket
https://github.com/furyfire/my-bucket
https://github.com/fx5171/scoop-bucket
https://github.com/galbro/my-bucket
https://github.com/gauravkanoongo/scoop
https://github.com/gdzhht/scoop-bucket
https://github.com/georgezachos/scoop-bucket
https://github.com/gexclaude/scoop-bucket
https://github.com/GGP1/scoop-bucket
https://github.com/ghchinoy/scoop-ce
https://github.com/ghchinoy/scoop-roguewave
https://github.com/giantswarm/scoop-bucket
https://github.com/git-town/scoop
https://github.com/githcc/bucket_scoop
https://github.com/gitolicious/scoopy-doo
https://github.com/glassechidna/scoop-bucket
https://github.com/gldraphael/scoop-bucket
https://github.com/glloyd0314/scoop-bucket
https://github.com/go-feature-flag/scoop
https://github.com/go2sun/scoop-bucket-1
https://github.com/gorup/scoop-bucket
https://github.com/GotAnAccount/scoopBucket
https://github.com/graaaaaaa/scoop-bucket
https://github.com/grave0x/gravebucket
https://github.com/GreenTF/nsbucket
https://github.com/Greydus/weeb-bucket
https://github.com/grigoryvp/scoop-grigoryvp
https://github.com/guardrailsio/scoop-bucket-guardrails
https://github.com/gurkansahinn/scoops
https://github.com/gustoliv/scoop-bucket-devopstools
https://github.com/habetuz/HabetuzApps
https://github.com/hadley31/scoop-frc
https://github.com/haiksgithub/soup
https://github.com/hajeekn-backup/my-bucket
https://github.com/HandOfGod94/scoop-bucket
https://github.com/hanyang-97/scoop
https://github.com/haunt98/scoop-bucket
https://github.com/HCLonely/my-scoop-bucket
https://github.com/HeroBrine1st/ScoopBucket
https://github.com/herouu/herouu-scoop
https://github.com/herouu/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/holehan/scoop-bucket
https://github.com/homburg/scoop-bucket
https://github.com/Homeland-Community/scoop
https://github.com/Hou-Rui/scoop-kde
https://github.com/howieyuen/scoop-bucket
https://github.com/hpifys/scoop-pocket
https://github.com/Hsins/yogurt
https://github.com/htsign/my-scoop-bucket
https://github.com/hudy9x/scoop-buckets
https://github.com/huleiak47/scoop-apps
https://github.com/huruka/scoop-bucket-momo
https://github.com/hydra1983/scoop-bucket
https://github.com/hymkor/make-scoop-bucket-index
https://github.com/hyonsoku/scoop-bucket
https://github.com/HYY-yu/scoop-bucket
https://github.com/Hzbeta/scoop-nautilus
https://github.com/i6asic/scoop
https://github.com/icalder/scoop-bucket
https://github.com/icarus-consulting/promptly-bucket
https://github.com/icarus-consulting/tmxtools-bucket
https://github.com/icemioi/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/ilkka/scoop-bucket
https://github.com/imiwakanai/scoop-bucket
https://github.com/imwithye/scoop
https://github.com/infernaldunker/administry
https://github.com/infrahq/scoop
https://github.com/ink0rr/scoop-bucket
https://github.com/installdoc/scoops
https://github.com/instinctualjealousy/holes
https://github.com/instrumenta/scoop-instrumenta
https://github.com/integer2bit/ScoopBucket
https://github.com/ioridazo/scoop-bucket-ioridazo
https://github.com/ippsio/scoop_bucket
https://github.com/iranika/iranika-tools
https://github.com/irishgreencitrus/scoop_bucket_irishgreencitrus
https://github.com/is-whale/my_bucket
https://github.com/ismailshak/scoop-bucket
https://github.com/issaclin32/scoop-private
https://github.com/issaclin32/scoop-systemtweaks
https://github.com/isso-719/lit-webs-scoop
https://github.com/itschip/scoop-bucket
https://github.com/ItsPizzaTime1501/bad-scoop-bucket
https://github.com/itzg/scoop-bucket
https://github.com/ivysnow/scoop-bucket
https://github.com/iwa4/scoop-bucket
https://github.com/ixofoundation/ixo-bucket
https://github.com/Izzxt/scoop-bucket
https://github.com/jack-mil/scoop-bucket
https://github.com/JackMordaunt/scoop-bucket
https://github.com/JackTheMico/jackpack
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/jamesgecko/scoop-packages
https://github.com/jamestansx/scoop-freecad
https://github.com/jannick0/scoop-bucket
https://github.com/javageek/scoop-bucket
https://github.com/Jawfish/scoop
https://github.com/JaxRaffnix/Powershell-scoop-bucket
https://github.com/jaxxstorm/scoop-bucket
https://github.com/JayTwoLab/j2doll-scoop-bucket
https://github.com/jbvovau/vovau
https://github.com/jdev082/ctlyst-bucket
https://github.com/jdevora/my_scoop_bucket
https://github.com/JeanMGirard/Scoop
https://github.com/jelmansouri/scoop-bucket
https://github.com/Jeremy-Hibiki/FrpScoopBucket
https://github.com/jericjan/scoop-bucket
https://github.com/jfut/scoop-dell-xps-8920
https://github.com/jfut/scoop-pleiades
https://github.com/jgoof91/scoop-bucket-emu
https://github.com/jiangbo0216/bucket
https://github.com/jippi/scoop-bucket
https://github.com/JKorbelRA/scoop-for-lazy-admins
https://github.com/jlaasonen/scoop-bucket
https://github.com/jm0477/bucket
https://github.com/jmcarbo/scoopbucket
https://github.com/Jokler/scoop-bucket
https://github.com/jonaskje/scoops
https://github.com/jorqensen/vessel
https://github.com/JorundMartinsen/scoop-buckets
https://github.com/joserebelo/scoop-bucket
https://github.com/jrhawley/scoop-bucket
https://github.com/js-beaulieu/scoop-bucket
https://github.com/jsorah/jsorah-scoop-bucket
https://github.com/juliomaranhao/personal-scoop-bucket
https://github.com/jumitaka/scoop-jum-bucket
https://github.com/jumpchat/scoop-bucket
https://github.com/justsh/scoop-bucket
https://github.com/jxxkvs/flowerKitty
https://github.com/jyf-111/scoop-self
https://github.com/K-JW/scoop-science-tools
https://github.com/kai2nenobu/scoop-bucket
https://github.com/kaleidpixel/scoop-bucket
https://github.com/Kantouzin/scoop-bucketouzin
https://github.com/KarasuShin/scoop-bucket
https://github.com/kcl-lang/scoop-bucket
https://github.com/keboola/scoop-keboola-cli
https://github.com/kentork/scoop-leaky-bucket
https://github.com/KevinSilvester/scoop-bucket
https://github.com/keyiyin/scoop-keyiyin
https://github.com/keys-pub/scoop-bucket
https://github.com/kiffveef/scoop-bucket
https://github.com/kiksilog/scoop-bucket-test
https://github.com/kingchang/scoop-buckets
https://github.com/kissiy179/scoop-bucket
https://github.com/kkum/my-scoop-bucket
https://github.com/kkzzhizhou/scoop-apps
https://github.com/klaidliadon/scoop-buckets
https://github.com/klauern/trackello-bucket
https://github.com/kols/my-scoop-bucket
https://github.com/Kore-Development/scoop-bucket
https://github.com/Korosys/ScoopBucket
https://github.com/kou-JP/kou-scoop-bucket
https://github.com/kpine/scoop-earthly
https://github.com/kress95/scoop-bucket
https://github.com/krisfail/kris-scoop
https://github.com/krokofant/scoop-powershell-bucket
https://github.com/Krzysztof-Cieslak/scoop-fsharp-extras
https://github.com/ksawerykarwacki/scoop-bucket
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/lazuee/scoop-bucket
https://github.com/LazyGeniusMan/Scoop-Bucket
https://github.com/lcomrade/ScoopBucket
https://github.com/ld3z/my-bucket
https://github.com/leafgarland/scoop-bucket
https://github.com/LeagueJinx/moli-scoop-bucket
https://github.com/lefevrep/scoop
https://github.com/Lemorz56/scoop-bucket
https://github.com/lenicyl/Kettle
https://github.com/leochl1/scoop-shed
https://github.com/lesscodex/scoop-bucket
https://github.com/lesstif/scoop-bucket-for-korean
https://github.com/lettucrisp/scoop_bucket
https://github.com/leviosa42/scoop-bucket
https://github.com/LexSong/my-scoop-bucket
https://github.com/liarchgh/ArchBucket
https://github.com/libnare/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/linq8261/my-scoop-bucket
https://github.com/lintnet/scoop-bucket
https://github.com/LisGlitchrain/glitchsys-bucket
https://github.com/litzh/scoop-bucket
https://github.com/loadaspasaspas/scoop-bucket
https://github.com/log-linear/scoop_bucket
https://github.com/Logiase/scoop-esp-bucket
https://github.com/Lorenzo0111/scoop-utils-bucket
https://github.com/lsilencej/scoop-bucket
https://github.com/lsyhm/scoop-bucket
https://github.com/lucagrulla/cw-scoop-bucket
https://github.com/luckyframework/scoop-bucket
https://github.com/Lumaeris/scoop-bucket
https://github.com/LumaKernel/my-scoop-buckets
https://github.com/lunarwhite/scoop-lunar
https://github.com/lurdan/scoop-bucket
https://github.com/LydiaAgute/my-bucket
https://github.com/LydiaAgute/scoop-compass
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/magoocas/scoop-main-bucket
https://github.com/maiashi/scoop-maiashi-bucket
https://github.com/maman/scoop-bucket
https://github.com/ManchesterMachineMakers/neopolitan
https://github.com/manikmagar/scoop-bucket
https://github.com/maoizm/scoopBucket
https://github.com/Maoyeedy/Scoop-Yeedy
https://github.com/marcosbozzani/scoop
https://github.com/mariocapellari/my-scoop-bucket
https://github.com/markustveter/my_bucket
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/mat0354/scoop-bucket
https://github.com/mateuszdrab/scoop-bucket
https://github.com/mathieucarbou/scoop-bucket
https://github.com/matijabozic/scoop-bucket
https://github.com/matthiasng/scoop-bucket
https://github.com/MattKang/scoop-bucket
https://github.com/maver1ck/scoop-bucket
https://github.com/mberwanger/scoop-bucket
https://github.com/mcserverhosting-net/scoop
https://github.com/mcwarman/scoop-bucket
https://github.com/mdekstrand/ekstrand-bucket
https://github.com/Megasware128/scoop-terraformer
https://github.com/meihanai/jikoscoop
https://github.com/mertd/shovel
https://github.com/meyermarcel/scoop-bucket
https://github.com/mgarbvs/scoop-bucket
https://github.com/mifuyne/mifscoop
https://github.com/mihaichris/atelier
https://github.com/mikepruett3/scoop-cyberduck
https://github.com/miketvo/scoop-miketvo
https://github.com/minorgod/scoop-minorgod
https://github.com/mirror-kt/ScoopBucket
https://github.com/mirtlecn/scoop-bucket
https://github.com/mjaroszek/scoop-bucket
https://github.com/mmguero/scoop-bucket
https://github.com/mmichaelis/scoop-bucket
https://github.com/moheng233/MoHengBucket
https://github.com/momingqimiao326/MoScoopBucket
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-dlrow/misc-scoop-bucket
https://github.com/MrAwesomeRocks/scoop-bucket
https://github.com/mrg0lden/my-bucket
https://github.com/MrWillCom/auto-mirroring-bucket
https://github.com/mumudm/scoop-bucket
https://github.com/mundusnine/audio-bucket
https://github.com/Muulsh/scoop-bucket
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/nagromc/scoop-bucket
https://github.com/naodara/my-bucket
https://github.com/narnaud/scoop-bucket
https://github.com/navrudh/scoop
https://github.com/nazo6/nzbucket
https://github.com/nerditation/scoop-bucket
https://github.com/NetNinjaCorp/InstallerBucket
https://github.com/nexuswho/ascent
https://github.com/ngotuananh101/scoop-bucket
https://github.com/niaojin0407/scoop-niaojin
https://github.com/nickers/scoop-bucket
https://github.com/nickhericks/scoop-bucket
https://github.com/niheaven/scoop-nih
https://github.com/nikkoura/scoop-bucket
https://github.com/nikkoura/scoop-bucket-elitedangerous
https://github.com/nikkoura/scoop-bucket-vkb
https://github.com/nikolasd/scoop-bucket
https://github.com/ninjaoxygen/scoop-bucket
https://github.com/nitincodery/exe
https://github.com/nitishm/scoop-bucket-engarde
https://github.com/nixxo/nixxo-scoop-bucket
https://github.com/nonwhale/whale-bucket
https://github.com/NoPlagiarism/scoop_own_test
https://github.com/NoPlagiarism/TestScoopBucket
https://github.com/nopsak/scoop-nopsak1
https://github.com/nordou/scoop-bucket
https://github.com/norduo/scoop-bucket
https://github.com/Norgate-AV-Solutions-Ltd/scoop-norgateav
https://github.com/Norgate-AV/scoop-norgateav
https://github.com/nosanek/scoop-bucket
https://github.com/nosoop/this-is-a-bucket
https://github.com/novaclip/scoop-bucket
https://github.com/nrakochy/leiningen_bucket
https://github.com/nrakochy/scoop-solidity
https://github.com/nrdave/scoop-custom-manifests
https://github.com/ns-mkusper/scoop-bucket
https://github.com/NSIS-Dev/scoop-nsis
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/nunago/my-scoop-bucket
https://github.com/nvm9/scoop-bucket
https://github.com/nyamairi/scoop-bucket
https://github.com/ocdc/scoop-bucket
https://github.com/odpf/scoop-bucket
https://github.com/okibcn/ScoopMaster
https://github.com/ondr3j/scoop-misc
https://github.com/ondrejsv/scoop-bucket
https://github.com/onlyice/scoop-bucket
https://github.com/onuzbee/scoop-twilio-cli
https://github.com/openaq/scoop-bucket
https://github.com/OpenIoTHub/scoop-bucket
https://github.com/OpenJNY/my-scoop-bucket
https://github.com/opsani/scoop-bucket
https://github.com/OsirisTerje/bucket
https://github.com/othimm/scoop-apps
https://github.com/OverflowCat/neko-scoop-bucket
https://github.com/oxygen-dioxide/scoop-musician
https://github.com/p-rs/scoop-eschargo
https://github.com/padd1er/scoop-bucket
https://github.com/pagusupu/bucket
https://github.com/parasquid/parasquid-scoop-bucket
https://github.com/parbo/personal-scoop-bucket
https://github.com/pastleo/scoop-bucket
https://github.com/pathbird/scoop-bucket
https://github.com/paulvarache/scoop-bucket
https://github.com/pavanbijja/scoop-bucket
https://github.com/peanut996/scoop-bucket
https://github.com/PEMessage/PEM-ScoopBucket
https://github.com/PeronGH/scooperon
https://github.com/pessoalzy/pannus
https://github.com/philippgille/scoop-bucket
https://github.com/phoenix106/my-scoop-bucket
https://github.com/phuwit/scoop
https://github.com/pipekit/scoop
https://github.com/PIPIPIG233666/scoop_bucket_pppig
https://github.com/Pivot-Studio/scoop
https://github.com/pixelcola/scoop-bucket
https://github.com/platformplane/scoop-bucket
https://github.com/plentico/scoop-plenti
https://github.com/plombard/scoop-bucket
https://github.com/pm-duc/scoop
https://github.com/poloniusDergath/polobucket
https://github.com/ponta555/scoop-bucket
https://github.com/prezesp/prezesp-bucket
https://github.com/prezesp/scoop-viewer-bucket
https://github.com/princemaple/tmp-bucket
https://github.com/prog-dude/my-bucket
https://github.com/prometheusresearch/scoop-public
https://github.com/proudzhu/scoop-bucket
https://github.com/provision-pc/scoops
https://github.com/psychech/scoop-my-bucket
https://github.com/purpleclay/scoop-bucket
https://github.com/qcts33/scoop_bucket
https://github.com/qeaml/scoop
https://github.com/qgymib/scoop-store
https://github.com/QiE2035/ScoopQiE2035
https://github.com/qiuyk314/scoop-bucket
https://github.com/qiuykv/scoop-bucket
https://github.com/qiuyky/scoop-bucket
https://github.com/qoomon/scoop-bucket
https://github.com/quantonganh/scoop-bucket
https://github.com/quantuumsnot/qtools
https://github.com/quickfixgo/scoop-qf
https://github.com/quinn-brittain/lava
https://github.com/quotidian-ennui/personal-scoop-bucket
https://github.com/r12f/scoop-bucket
https://github.com/radusuciu/scoop-bucket
https://github.com/rahulmr/rbucket
https://github.com/rainbowtp/Scoop_bucket
https://github.com/raoxiaoman/raohui-scoop-bucket
https://github.com/raulfpl/scoop-raulfpl
https://github.com/rcoliveira2016/bucket
https://github.com/rcqls/scoop-extras
https://github.com/re3turn/scoop-bucket
https://github.com/real-jame/realjame-scoop-bucket
https://github.com/red/scoop-bucket
https://github.com/Rekhyt2901/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/ricardomatias/rkrd-scoop-bucket
https://github.com/Ridbowt/ridbowt-scoop-bucket
https://github.com/riscorpian/my-bucket
https://github.com/rissoter/scoop-bucket-incn
https://github.com/rissoter/scoop-bucket-used-in-cn
https://github.com/rivy/scoop.bucket.scoop-main
https://github.com/rizwan-r-r/redesigned-fiesta
https://github.com/robertkg/scoop-bucket
https://github.com/robinrehbein/scoop
https://github.com/roelofvkr/scoop-bucket
https://github.com/rohitnarayanan/scoop-apps
https://github.com/romainalpes/alpes-bucket
https://github.com/royalwang/scoop-bucket-royalwang
https://github.com/rswch/scoop-bucket
https://github.com/rxbit/scoop-bucket
https://github.com/Ryanaka/scoopBucket
https://github.com/S0methingWicked/scoop-bucket
https://github.com/s0racat/scoop-bucket
https://github.com/sambsawsdev/sambs-scoop
https://github.com/SamTherapy/scoop-bucket
https://github.com/SamuNatsu/rainiar-scoop-bucket
https://github.com/Sandeep-Bansal/scooped
https://github.com/Sandex/scoop-supernova
https://github.com/sangeethvarma/my-scoop-bucket
https://github.com/sangeethvarma/scoop-bucket
https://github.com/sankaku-deltalab/sankaku-app-bucket
https://github.com/sargunv/scoop-sargunv
https://github.com/sarvex/scoop
https://github.com/SaschaJohn/DellDisplayManager
https://github.com/sauterp/sauterp-scoop-test-bucket
https://github.com/SayCV/scoop-scv
https://github.com/scarzdz/kubi
https://github.com/Schatteneis/schatts-scoop
https://github.com/scmn-dev/scoop
https://github.com/ScoopInstaller/BucketTemplate
https://github.com/ScoopInstaller/Excavator
https://github.com/ScoopInstaller/GithubActions
https://github.com/ScoopInstaller/PHP
https://github.com/ScoopInstaller/Tests
https://github.com/scottsquatch/scoop-squatch-misc-bucket
https://github.com/scyv/meteor-scoop-bucket
https://github.com/sdevnoor/my-scoop-bucket
https://github.com/sebakri/scoop-bucket
https://github.com/selitalov/my-bucket
https://github.com/semisoft0072/scoop-apps
https://github.com/shana/scoop-bucket
https://github.com/sheepnaniganz/scoop-bucket
https://github.com/SheldonNico/echoBucket
https://github.com/shelmangroup/scoops
https://github.com/shivaduke28/my-scoop-bucket
https://github.com/shmishtopher/cudnn-versions
https://github.com/shotah/scoop-bucket
https://github.com/shutaozhenzhen/my-bucket
https://github.com/shyun3/my-bucket
https://github.com/siddarthasagar/scoopbucket
https://github.com/silver886/scoop
https://github.com/sinamobashery/Bucket
https://github.com/singlekeycap/scoop-bucket
https://github.com/sinister-kid/sinister-bucket
https://github.com/sivertsenstian/my-bucket
https://github.com/SiyuChen/scoop-bucket
https://github.com/skpcalex/skpc-test
https://github.com/skyhoshi/scoop-skyhoshi
https://github.com/slaxor/scoop-bucket
https://github.com/slbb/personalScoopBucket
https://github.com/slbb/slbbBucket
https://github.com/Sliots/scoop-bucket
https://github.com/snaphat/alias-additions
https://github.com/sncwt/apps
https://github.com/sncwt/scoop-bucket
https://github.com/Snowfly-T/Snowflyt-s-Scoop-Bucket
https://github.com/solelychloe/bucket
https://github.com/sotcit/scoop
https://github.com/specter119/scoop-dsms
https://github.com/speechly/scoop-bucket
https://github.com/speratus/scoop-ruby-versions
https://github.com/sqliuchang/portable_bucket
https://github.com/sqliuchang/strnghrs_bucket
https://github.com/srcML/scoop
https://github.com/sriramjiyer/PsModuleBucket
https://github.com/sssir/scoop-bucket
https://github.com/ssuf1998/bad-idea-right-scoop-bucket
https://github.com/stanislas/scoop-grt
https://github.com/starise/scoop-starise
https://github.com/StarsbySea/ocean
https://github.com/stateful/scoop-bucket
https://github.com/stevennight/scoop-bucket-nyatori
https://github.com/Steveplays28/scoop-steve
https://github.com/stillnova/scoop-bucket
https://github.com/StructSeeker/gadget
https://github.com/StudentWeis/Nightly
https://github.com/su-u/scoop-bucket
https://github.com/Sumi-Sumi/scoop-bucket
https://github.com/superudo/scoop-bucket
https://github.com/suzuki-shunsuke/scoop-bucket
https://github.com/suzume17/my-scoop-bucket
https://github.com/svbgabriel/my-scoop-bucket
https://github.com/sveco/my-bucket
https://github.com/svkoh/scoop-bucket
https://github.com/sweethenbit/scoop-henbit
https://github.com/sytone/sytone-scoop-bucket
https://github.com/sytone/sytones-scoop-bucket
https://github.com/t-kash/tkbucket
https://github.com/t-mart/t-mart-scoop-bucket
https://github.com/t0n3/scoop-bucket
https://github.com/tabris17/scoop
https://github.com/taiki-e/scoop-bucket
https://github.com/takasi-tech/scoop-bucket-for-me
https://github.com/taletalesarb/custom-scoop-bucket
https://github.com/TamamoNoMae13/TamamoNoMae13-Personal-Scoop-Bucket
https://github.com/TangentFoxy/ScoopBucket
https://github.com/TangentFoxy/ScoopBucket-ThirdParty
https://github.com/tanzl/scoop-bucket
https://github.com/Taosenai/scoop
https://github.com/tapannallan/scoop-personal
https://github.com/tatesuke/scoop
https://github.com/tbckr/scoop-bucket
https://github.com/tbung/scoop-bucket
https://github.com/tddschn/scoop-bucket
https://github.com/te9yie/scoop-bucket
https://github.com/techboyharry/scoop-bucket
https://github.com/tehbilly/scoop-bucket
https://github.com/TehMightyPotato/scoop-bucket
https://github.com/terroirman/terroirman-scoop-bucket
https://github.com/tetradice/scoop-iyokan-jp
https://github.com/tfournier/scoop-bucket
https://github.com/TheLastZombie/scoop-bucket
https://github.com/themql/themqlSB
https://github.com/themrhead/scoop-bucket-apps
https://github.com/thesilvercraft/SilverCraftBucket
https://github.com/thomaspoignant/scoop
https://github.com/thong-pvn/local_bucket
https://github.com/tianzhijiexian/scoop-bucket
https://github.com/tilt-dev/scoop-bucket
https://github.com/timeday1102/mybucket
https://github.com/timeday1102/scoop-timeday
https://github.com/timotofcourse/applications
https://github.com/tk-watanabe-tch/scoop-bucket
https://github.com/tkishiro/ScoopBucket
https://github.com/tksoftware/tks-scoop-bucket
https://github.com/tmt96/tmt-bucket
https://github.com/TMUniversal/scoop-bucket
https://github.com/tmxkn1/AnthonyScoopBucket
https://github.com/tnessy/scoop-bucket
https://github.com/todashuta/scoop-bucket-blender-lts
https://github.com/TokunaKimochi/scoop-bucket
https://github.com/tomasaschan/taschan-scoops
https://github.com/tomba-io/scoop-bucket
https://github.com/topstone/scoop-bucket-t_misc
https://github.com/topstone/scoop-bucket-t_shogi
https://github.com/toSvenson/my-bucket
https://github.com/Tree-Roots/ulidz-scoop-bucket
https://github.com/trim21/scoop-bucket
https://github.com/Trisk3lion/trisk-bucket
https://github.com/trizau/scoop-bucket
https://github.com/tsq1990/my-bucket
https://github.com/tsukashu/ts-bucket
https://github.com/tukanos/missing-software
https://github.com/twsihan/scoop-bucket
https://github.com/twxs/scoop-buckets
https://github.com/txorion/scoop-bucket
https://github.com/typhoon51280/scoop
https://github.com/typhoon51280/scoop-bucket
https://github.com/Tyrubias/fluffy-scoop-bucket
https://github.com/ubclaunchpad/scoop-bucket
https://github.com/unjello/scoop
https://github.com/unravela/scoop-bucket
https://github.com/unwillinglyawesome/scoop-bucket
https://github.com/utkuozdemir/scoop_nvidia_gpu_exporter
https://github.com/utkuozdemir/scoop-pv-migrate
https://github.com/vanbang9710/scoop-apps
https://github.com/vandot/scoop
https://github.com/Vedabahu/mybucket
https://github.com/Vedabahu/Scoop-Bucket
https://github.com/vejmartin/scoop_bucket
https://github.com/verdana/scorpion
https://github.com/Vicenzo-Giuseppe/bucket
https://github.com/Vicenzo-Giuseppe/scoop-bucket
https://github.com/vicjax/holdVersion
https://github.com/vickunwu/scoop-bucket
https://github.com/vidarkongsli/vidars-scoop-bucket
https://github.com/Virakal/Scoop-Bucket
https://github.com/visbot/scoop
https://github.com/vitorinux/vmscoop-bucket
https://github.com/vladhietala/scoop-bucket
https://github.com/vnet48/scoop-bucket
https://github.com/volllly/scoop-bucket
https://github.com/vozkych/scoop-bucket-devops
https://github.com/vxna/scoop
https://github.com/w0rkr42o/miner-bucket
https://github.com/wahyudibo/scoop-bucket-goreleaser-poc
https://github.com/wallacewinfrey/scoop-emacs
https://github.com/wamich/scoop-bucket-nerdctl
https://github.com/wangcheng/scoop-bucket-dogfight360
https://github.com/wangfeishine/adds
https://github.com/wannadoing/ownBucket
https://github.com/wareismymind/wareismy-scoop
https://github.com/warpdl/scoop-bucket
https://github.com/wasdjkl/my-scoop-bucket
https://github.com/watanabe1115/my-scoop-bucket
https://github.com/watchmen-test/scoop-bucket
https://github.com/watermelonpizza/melon-bucket
https://github.com/wateroader/my-bucket
https://github.com/wawakakakyakya/scoop-buckets
https://github.com/way-huang/scoop-bucket
https://github.com/wcxiao/scoop-bucket
https://github.com/webframp/scoop-bucket
https://github.com/weichengx/scoop-bucket
https://github.com/weson23/scoop-bucket
https://github.com/wfhtony/self_scoop-bucket
https://github.com/whizbangpop/scoop-bucket
https://github.com/wholegale39/onetab
https://github.com/whqwert/scoop-bucket
https://github.com/whurt4C/ScoopArchWSL2
https://github.com/wickles/scoop-bucket
https://github.com/willvsmvp/scoop-buckets
https://github.com/wm26hua/ScoopBucket
https://github.com/wmredmon/Scooperino
https://github.com/wo0d/scoop-buckets
https://github.com/wolfyu1991/scoop-ctf
https://github.com/wordijp/scoop-bucket
https://github.com/workingtom/wt-scoop-bucket
https://github.com/worldthestrength/my-bucket
https://github.com/wortoxs/scoop
https://github.com/wowthur/scoop-bucket
https://github.com/Wowu/scoop
https://github.com/wrbmh/scoop
https://github.com/wroge/scoop-bucket
https://github.com/wsbhacker/scoop_bucket
https://github.com/wshirow/scoop-bucket
https://github.com/WuwuZiQWQ/March7th
https://github.com/wwwDayDream/SPZ2ModBucket
https://github.com/x-magic/scoop-bucket
https://github.com/xalagor/windows-gists
https://github.com/xbhel/scoop-app
https://github.com/xbo2018/scoop-bucket
https://github.com/xeijin/propositum-bucket
https://github.com/xfqwdsj/BucketDev
https://github.com/xiaochengxch/scoop-bucket
https://github.com/xiyaowong/my-scoop-bucket
https://github.com/XmXm/scoop-bucket
https://github.com/xoofx/scoop-kalk
https://github.com/xtonousou/xbucket
https://github.com/Xtreme-Light/light-scoop-bucket
https://github.com/xuzikuan12/my-bucket
https://github.com/xxy1991/scoop-bucket
https://github.com/yahord/scoop-bucket
https://github.com/YangHanlin/OrihimeFirst
https://github.com/YanjunLee/scoop-bucket
https://github.com/yanshibin/scoop
https://github.com/yaohappiness/scoop-yao
https://github.com/yaoie-loop/bucket
https://github.com/yibum/scoop-buckets-web-netlify
https://github.com/yibum/scoop-buckets-web-unofficial
https://github.com/yoshiokun/scoop_bucket
https://github.com/yotiky/scoop-bucket
https://github.com/yqhr/personal-scoop-buckets
https://github.com/yt3r/test-bucket
https://github.com/yuenwk/scoop-bucket
https://github.com/yukihane/scoop-bucket-yukihane-games
https://github.com/yuma140902/yuma-scoop-bucket
https://github.com/yutahaga/scoop-bucket
https://github.com/yuuki76/kris-scoop
https://github.com/yywr/MyScoopBucket
https://github.com/yzctzl/tools-bucket
https://github.com/Z0main/ScoopBucket
https://github.com/Z146/mybucket
https://github.com/zackijack/scoop-bucket
https://github.com/zaixi/liyj-scoop-bucket
https://github.com/ZaLiTHkA/dev-apps-bucket
https://github.com/ZaLiTHkA/dev-scoops
https://github.com/zaquestion/scoop-bucket
https://github.com/zcq15/scoop
https://github.com/zeero/scoop-my-bucket
https://github.com/zerda/scoop-bucket-extra
https://github.com/zerodegress/zerobucket
https://github.com/zhangzhishan/scoop-bucket
https://github.com/zhemima/Scoop-Hass
https://github.com/zhshch2002/scoop
https://github.com/zhuchentong/scoop-bucket
https://github.com/zhuerba918/my-bucket
https://github.com/zinek/scoop
https://github.com/zjuyk/scoop-zjuyk
https://github.com/Zliced13/MyScoop
https://github.com/zmloong/lotus-scoop
https://github.com/Zottelchen/scoop-bucket
https://github.com/zouyq/scoop-bucket
https://github.com/zStruCat/zStruCat_Scoop_Bucket
https://github.com/zt-luo/bucket-luo
https://github.com/zuisong/scoop-bucket
https://github.com/zurucbbdc/scoop-apps
https://github.com/ZvonimirSun/scoop-iszy
https://github.com/zyqpkg/scoop-bucket