-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathurls.txt
1150 lines (1150 loc) · 45.5 KB
/
urls.txt
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/lewagon/dotfiles"
"https://github.com/mathiasbynens/dotfiles"
"https://github.com/holman/dotfiles"
"https://github.com/thoughtbot/dotfiles"
"https://github.com/skwp/dotfiles"
"https://github.com/paulirish/dotfiles"
"https://github.com/ryanb/dotfiles"
"https://github.com/driesvints/dotfiles"
"https://github.com/jessfraz/dotfiles"
"https://github.com/cowboy/dotfiles"
"https://github.com/CoreyMSchafer/dotfiles"
"https://github.com/startup-class/dotfiles"
"https://github.com/nicknisi/dotfiles"
"https://github.com/atomantic/dotfiles"
"https://github.com/garybernhardt/dotfiles"
"https://github.com/alrra/dotfiles"
"https://github.com/gh0stzk/dotfiles"
"https://github.com/wesbos/dotfiles"
"https://github.com/ChristianLempa/dotfiles"
"https://github.com/elenapan/dotfiles"
"https://github.com/geerlingguy/dotfiles"
"https://github.com/anishathalye/dotfiles"
"https://github.com/dikiaap/dotfiles"
"https://github.com/webpro/dotfiles"
"https://github.com/owl4ce/dotfiles"
"https://github.com/paulmillr/dotfiles"
"https://github.com/Aylur/dotfiles"
"https://github.com/Parth/dotfiles"
"https://github.com/nickjj/dotfiles"
"https://github.com/antoniosarosi/dotfiles"
"https://github.com/holman/dotfiles"
"https://github.com/mathiasbynens/dotfiles"
"https://github.com/jessfraz/dotfiles"
"https://github.com/driesvints/dotfiles"
"https://github.com/webpro/awesome-dotfiles"
"https://github.com/twpayne/chezmoi"
"https://github.com/TheLocehiliosan/yadm"
"https://github.com/alrra/dotfiles"
"https://github.com/webpro/dotfiles"
"https://github.com/freekmurze/dotfiles"
"https://github.com/paulirish/dotfiles"
"https://github.com/fatih/dotfiles"
"https://github.com/linuxmobile/hyprland-dots"
"https://github.com/freshshell/fresh"
"https://github.com/daniruiz/dotfiles"
"https://github.com/lokesh-krishna/dotfiles"
"https://github.com/caarlos0/dotfiles.fish"
"https://github.com/rasendubi/dotfiles"
"https://github.com/rxyhn/tokyo"
"https://github.com/deadc0de6/dotdrop"
"https://github.com/flick0/dotfiles"
"https://github.com/tangledhelix/dotfiles"
"https://github.com/nicknisi/dotfiles"
"https://github.com/siduck/dotfiles"
"https://github.com/atomantic/dotfiles"
"https://github.com/1amSimp1e/dots"
"https://github.com/CodelyTV/dotly"
"https://github.com/ChristianChiarulli/machfiles"
"https://github.com/hamvocke/dotfiles"
"https://github.com/wookayin/dotfiles"
"https://github.com/gh0stzk/dotfiles"
"https://github.com/ChristianLempa/dotfiles"
"https://github.com/geerlingguy/dotfiles"
"https://github.com/tankywoo/dotfiles"
"https://github.com/dikiaap/dotfiles"
"https://github.com/darekkay/config-files"
"https://github.com/JDevlieghere/dotfiles"
"https://github.com/comtrya/comtrya"
"https://github.com/jayharris/dotfiles-windows"
"https://github.com/owl4ce/dotfiles"
"https://github.com/WillPower3309/awesome-dotfiles"
"https://github.com/Aylur/dotfiles"
"https://github.com/paulmillr/dotfiles"
"https://github.com/dylanaraps/dotfiles"
"https://github.com/nicksp/dotfiles"
"https://github.com/nickjj/dotfiles"
"https://github.com/antoniosarosi/dotfiles"
"https://github.com/mislav/dotfiles"
"https://github.com/mscoutermarsh/dotfiles"
"https://github.com/Lissy93/dotfiles"
"https://github.com/b4skyx/dotfiles"
"https://github.com/xero/dotfiles"
"https://github.com/sloria/dotfiles"
"https://github.com/denisse-dev/dotfiles"
"https://github.com/cypher/dotfiles"
"https://github.com/rgomezcasas/dotfiles"
"https://github.com/hlissner/dotfiles"
"https://github.com/sainnhe/dotfiles"
"https://github.com/gf3/dotfiles"
"https://github.com/sdushantha/dotfiles"
"https://github.com/fnando/dotfiles"
"https://github.com/JaKooLit/Hyprland-Dots"
"https://github.com/ayamir/dotfiles"
"https://github.com/statico/dotfiles"
"https://github.com/linkfrg/dotfiles"
"https://github.com/zoddDev/dotfiles"
"https://github.com/maximbaz/dotfiles"
"https://github.com/fatso83/dotfiles"
"https://github.com/FelixKratz/dotfiles"
"https://github.com/ALT-F4-LLC/dotfiles"
"https://github.com/Kharacternyk/dotcommon"
"https://github.com/babarot/dotfiles"
"https://github.com/namishh/crystal"
"https://github.com/redyf/nixdots"
"https://github.com/MikeMcQuaid/dotfiles"
"https://github.com/Keyitdev/dotfiles"
"https://github.com/ctaylo21/jarvis"
"https://github.com/k-vernooy/dotfiles"
"https://github.com/hackorum/.dotfiles"
"https://github.com/whatsthatsmell/dots"
"https://github.com/mehedirm6244/Miserable_Xfce"
"https://github.com/SwiftyChicken/dotfiles"
"https://github.com/slydragonn/dotfiles"
"https://github.com/sobolevn/dotfiles"
"https://github.com/hrs/dotfiles"
"https://github.com/eromatiya/the-glorious-dotfiles"
"https://github.com/liuchengxu/dotfiles"
"https://github.com/colbycheeze/dotfiles"
"https://github.com/Stratus3D/dotfiles"
"https://github.com/Phantas0s/.dotfiles"
"https://github.com/caarlos0/dotfiles.zsh"
"https://github.com/joshmedeski/dotfiles"
"https://github.com/ellipsis/ellipsis"
"https://github.com/yqrashawn/yqdotfiles"
"https://github.com/Axarva/dotfiles-2.0"
"https://github.com/ayamir/bspwm-dotfiles"
"https://github.com/ilham25/dotfiles-openbox"
"https://github.com/sheerun/dotfiles"
"https://github.com/psamim/dotfiles"
"https://github.com/mswell/dotfiles"
"https://github.com/mokevnin/dotfiles"
"https://github.com/scottmckendry/Windots"
"https://github.com/saimoomedits/dotfiles"
"https://github.com/akinsho/dotfiles"
"https://github.com/matthewmccullough/dotfiles"
"https://github.com/yutkat/dotfiles"
"https://github.com/denysdovhan/dotfiles"
"https://github.com/whiteinge/dotfiles"
"https://github.com/mhinz/dotfiles"
"https://github.com/avivace/dotfiles"
"https://github.com/sapegin/dotfiles"
"https://github.com/alex35mil/dotfiles"
"https://github.com/d12frosted/environment"
"https://github.com/vEnhance/dotfiles"
"https://github.com/rmm5t/dotfiles"
"https://github.com/fufexan/dotfiles"
"https://github.com/rkalis/dotfiles"
"https://github.com/twpayne/dotfiles"
"https://github.com/janleigh/dotfiles"
"https://github.com/maxhu08/dotfiles-old"
"https://github.com/yurihikari/garuda-sway-config"
"https://github.com/theCode-Breaker/riverwm"
"https://github.com/Olical/dotfiles"
"https://github.com/MrPickles/dotfiles"
"https://github.com/natelandau/dotfiles"
"https://github.com/kazhala/dotbare"
"https://github.com/DanielThomas/oh-your-dotfiles"
"https://github.com/shawncplus/dotfiles"
"https://github.com/denisidoro/dotfiles"
"https://github.com/camspiers/dotfiles"
"https://github.com/CodelyTV/dotfiles"
"https://github.com/masasam/dotfiles"
"https://github.com/kdeldycke/dotfiles"
"https://github.com/tcmmichaelb139/.dotfiles"
"https://github.com/sheharyarn/dotfiles"
"https://github.com/FilipeMCruz/dotfiles"
"https://github.com/OzzyCzech/dotfiles"
"https://github.com/Siilwyn/my-dotfiles"
"https://github.com/AlphaTechnolog/dotfiles"
"https://github.com/jesseleite/dotfiles"
"https://github.com/petobens/dotfiles"
"https://github.com/joshukraine/dotfiles"
"https://github.com/doron-cohen/antidot"
"https://github.com/juminai/dotfiles"
"https://github.com/tdy/dots"
"https://github.com/geerlingguy/ansible-role-dotfiles"
"https://github.com/TechDufus/dotfiles"
"https://github.com/jamestomasino/dotfiles"
"https://github.com/Jxck/dotfiles"
"https://github.com/JazzyGrim/dotfiles"
"https://github.com/Haruno19/dotfiles"
"https://github.com/pengwynn/dotfiles"
"https://github.com/numToStr/dotfiles"
"https://github.com/robb/dotfiles"
"https://github.com/felipecrs/dotfiles"
"https://github.com/heapbytes/dotfiles"
"https://github.com/WillPower3309/dotfiles"
"https://github.com/sioodmy/dotfiles"
"https://github.com/nix-community/home-manager"
"https://github.com/evanpurkhiser/dots"
"https://github.com/ricbra/dotfiles"
"https://github.com/ashishb/dotfiles"
"https://github.com/ubnt-intrepid/dot"
"https://github.com/Snaipe/dot-git"
"https://github.com/zDyanTB/HyprNova"
"https://github.com/keith/dotfiles"
"https://github.com/SuboptimalEng/dotfiles"
"https://github.com/kespinola/dotfiles"
"https://github.com/issmirnov/dotfiles"
"https://github.com/tsjazil/dotfiles"
"https://github.com/einverne/dotfiles"
"https://github.com/xypnox/dotfiles"
"https://github.com/gitpod-samples/demo-dotfiles-with-gitpod"
"https://github.com/kamilchm/.nixpkgs"
"https://github.com/mmsaeed509/bspwm-dots"
"https://github.com/kiliwarmuth/dotfiles"
"https://github.com/SidOfc/dotfiles"
"https://github.com/totoro-ghost/dotfiles"
"https://github.com/rhysd/dogfiles"
"https://github.com/kracejic/dotfiles"
"https://github.com/bradp/dotfiles"
"https://github.com/rhysd/dotfiles"
"https://github.com/cloudlena/dotfiles"
"https://github.com/sodiumjoe/dotfiles"
"https://github.com/excid3/dotfiles"
"https://github.com/Drapegnik/env"
"https://github.com/alexpearce/dotfiles"
"https://github.com/semanser/dotfiles"
"https://github.com/LKI/LKI"
"https://github.com/shapeshed/dotfiles"
"https://github.com/JMOrbegoso/Dotfiles-for-Windows-11"
"https://github.com/lee-dohm/dotfiles"
"https://github.com/Barbaross93/Nebula"
"https://github.com/kobus-v-schoor/dotgit"
"https://github.com/wfxr/dotfiles"
"https://github.com/HynDuf/dotfiles"
"https://github.com/joshukraine/mac-bootstrap"
"https://github.com/PROxZIMA/.dotfiles"
"https://github.com/casey/dotfiles"
"https://github.com/lyrixx/dotfiles"
"https://github.com/Alex-D/dotfiles"
"https://github.com/copy/dotfiles"
"https://github.com/renemarc/dotfiles"
"https://github.com/LnL7/nix-darwin"
"https://github.com/alfunx/.dotfiles"
"https://github.com/khaneliman/dotfiles"
"https://github.com/anmoljagetia/dotfiles"
"https://github.com/m4xshen/dotfiles"
"https://github.com/davidosomething/dotfiles"
"https://github.com/addy-dclxvi/i3-starterpack"
"https://github.com/gabebw/dotfiles"
"https://github.com/grawity/dotfiles"
"https://github.com/mihaliak/dotfiles"
"https://github.com/samuelramox/wsl-setup"
"https://github.com/yedhink/dotfiles_ikigai"
"https://github.com/staroselskii/dotfiles"
"https://github.com/jcouyang/dotfiles"
"https://github.com/oknozor/toml-bombadil"
"https://github.com/zhaohongxuan/dotfiles"
"https://github.com/Battlesquid/dotfiles"
"https://github.com/Stardust-kyun/dotfiles"
"https://github.com/kutsan/dotfiles"
"https://github.com/gggritso/dotfiles"
"https://github.com/Haardispro/Arch_Rice"
"https://github.com/migueravila/Dotfiles"
"https://github.com/kriswill/dotfiles"
"https://github.com/Xyene/wsl-dotfiles"
"https://github.com/changkun/dotfiles"
"https://github.com/Kraymer/F-dotfiles"
"https://github.com/MaskRay/Config"
"https://github.com/Mastermindzh/dotfiles"
"https://github.com/Manas140/dotfiles"
"https://github.com/bkuhlmann/dotfiles"
"https://github.com/helderberto/dotfiles"
"https://github.com/notusknot/dotfiles-nix"
"https://github.com/seagle0128/dotfiles"
"https://github.com/Deathemonic/SweetDots"
"https://github.com/colonelpanic8/dotfiles"
"https://github.com/ElectricRCAircraftGuy/eRCaGuy_dotfiles"
"https://github.com/lime-desu/dootsfile"
"https://github.com/stsewd/dotfiles"
"https://github.com/ninrod/dotfiles"
"https://github.com/trishume/dotfiles"
"https://github.com/nuxshed/dotfiles"
"https://github.com/Bhupesh-V/dotman"
"https://github.com/gibfahn/dot"
"https://github.com/ahmedelgabri/dotfiles"
"https://github.com/nabakdev/dotfiles"
"https://github.com/maxhu08/dotfiles"
"https://github.com/posquit0/dotfiles"
"https://github.com/4lgn/dotfiles"
"https://github.com/wyntau/dotfiles"
"https://github.com/dmadisetti/.dots"
"https://github.com/jasonmorganson/dotfiles"
"https://github.com/vinitkumar/.vim"
"https://github.com/MoOx/setup"
"https://github.com/vic3lord/dotfiles"
"https://github.com/daynin/dotfiles"
"https://github.com/knightfallxz/Hyprland-config"
"https://github.com/badele/nix-homelab"
"https://github.com/wicksipedia/dotfiles"
"https://github.com/alias-mac/dotfiles"
"https://github.com/narze/dotfiles"
"https://github.com/unixporn-dots/unixporn-dots.github.io"
"https://github.com/nikitavoloboev/config"
"https://github.com/jez/dotfiles"
"https://github.com/Mangeshrex/dotfiles"
"https://github.com/rajikaimal/dotfiles"
"https://github.com/bjeanes/dotfiles"
"https://github.com/pongstr/dotfiles"
"https://github.com/PoSayDone/.dotfiles_new"
"https://github.com/YaN-3k/dots"
"https://github.com/Jguer/dotfiles"
"https://github.com/PeterDaveHello/Unitial"
"https://github.com/LucasLarson/dotfiles"
"https://github.com/jieverson/dotfiles-win"
"https://github.com/BrunoKrugel/dotfiles"
"https://github.com/christophersjchow/dotfiles"
"https://github.com/codeaholicguy/dotfiles"
"https://github.com/BachoSeven/dotfiles"
"https://github.com/protesilaos/dotfiles"
"https://github.com/deepzz0/dotfiles"
"https://github.com/ssh0/dotfiles"
"https://github.com/iain/dotfiles"
"https://github.com/johndbritton/dotfiles"
"https://github.com/ginatrapani/dotfiles"
"https://github.com/lukas-reineke/dotfiles"
"https://github.com/7KIR7/dots"
"https://github.com/gretzky/dotfiles"
"https://github.com/bag-man/dotfiles"
"https://github.com/fangwentong/dotfiles"
"https://github.com/ceuk/mutt_dotfiles"
"https://github.com/oppiliappan/dotfiles"
"https://github.com/bluz71/dotfiles"
"https://github.com/nqnm/Colorful"
"https://github.com/ivoarch/.dot-org-files"
"https://github.com/alexanderdickson/dotfiles"
"https://github.com/meain/dotfiles"
"https://github.com/crispgm/dotfiles"
"https://github.com/cristianpb/dotfiles"
"https://github.com/GR3YH4TT3R93/dotfiles"
"https://github.com/samoshkin/tmux-config"
"https://github.com/ojroques/dotfiles"
"https://github.com/kalkayan/dotfiles"
"https://github.com/colemickens/nixcfg"
"https://github.com/c02y/dotfiles"
"https://github.com/kiddae/dotfiles"
"https://github.com/nikolalsvk/dotfiles"
"https://github.com/sameemul-haque/dotfiles"
"https://github.com/NNBnh/superb-bootstrap"
"https://github.com/mdmrk/policromia"
"https://github.com/AmitGolden/dotfiles"
"https://github.com/jayywolff/dotfiles"
"https://github.com/mavam/dotfiles"
"https://github.com/hit9/dotfiles"
"https://github.com/zjuyk/archlinuxcn-dotfiles-collection"
"https://github.com/wkentaro/dotfiles"
"https://github.com/metakermit/dotfiles"
"https://github.com/gfontenot/dotfiles"
"https://github.com/simonvic/dotfiles"
"https://github.com/AlexvZyl/.dotfiles"
"https://github.com/alexlafroscia/dotfiles"
"https://github.com/rockyzhang24/dotfiles"
"https://github.com/elithrar/dotfiles"
"https://github.com/SukkaW/dotfiles"
"https://github.com/davidarrieta/dotfiles"
"https://github.com/sameer1612/.dotfiles"
"https://github.com/rv178/.dotfiles"
"https://github.com/nelsonmestevao/dotfiles"
"https://github.com/ZachiNachshon/dotfiles-example"
"https://github.com/ericdallo/dotfiles"
"https://github.com/solidiquis/dotfiles"
"https://github.com/elianiva/dotfiles"
"https://github.com/rawkode/dotfiles"
"https://github.com/beyond9thousand/dotfiles"
"https://github.com/midchildan/dotfiles"
"https://github.com/crissNb/dotfiles"
"https://github.com/arcticicestudio/snowsaw"
"https://github.com/briancain/dotfiles"
"https://github.com/thiagokokada/dotfiles"
"https://github.com/anandpiyer/.dotfiles"
"https://github.com/agross/dotfiles"
"https://github.com/junnunkarim/dotfiles_home"
"https://github.com/rjshkhr/dotfiles"
"https://github.com/umgbhalla/dotstow"
"https://github.com/peel/dotfiles"
"https://github.com/marlonrichert/zsh-launchpad"
"https://github.com/ralish/dotfiles"
"https://github.com/alejandro-isaza/dotfiles"
"https://github.com/agarrharr/settings"
"https://github.com/MarcelRobitaille/dotfiles"
"https://github.com/gokulkrishh/dotfiles"
"https://github.com/DemonCloud/dotfile"
"https://github.com/hardselius/dotfiles"
"https://github.com/benmezger/dotfiles"
"https://github.com/davidmytton/dotfiles"
"https://github.com/ralish/PSDotFiles"
"https://github.com/willnorris/dotfiles"
"https://github.com/electro7/dot_debian"
"https://github.com/giggio/dotfiles"
"https://github.com/peterpme/dotfiles"
"https://github.com/ajmalsiddiqui/dotfiles"
"https://github.com/mfussenegger/dotfiles"
"https://github.com/geodimm/dotfiles"
"https://github.com/purhan/dotfiles"
"https://github.com/benmatselby/dotfiles"
"https://github.com/simnalamburt/.dotfiles"
"https://github.com/ZhongXiLu/dotfiles"
"https://github.com/vimhack/dotfiles"
"https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles"
"https://github.com/JoosepAlviste/dotfiles"
"https://github.com/axonasif/dotsh"
"https://github.com/Axenide/Dotfiles"
"https://github.com/ryanoasis/dotfiles"
"https://github.com/jieverson/dotfiles"
"https://github.com/edbizarro/dotfiles"
"https://github.com/ahmad9059/dotfiles"
"https://github.com/oryband/dotfiles"
"https://github.com/jpalardy/dotfiles"
"https://github.com/hidayry/dotfiles-bspwm"
"https://github.com/2nthony/dotfiles"
"https://github.com/cloverinteractive/dotfiles"
"https://github.com/gbrlsnchs/pilgo"
"https://github.com/filiparag/dotfiles"
"https://github.com/make-github-pseudonymous-again/dotfiles"
"https://github.com/ches/dotfiles"
"https://github.com/jleclanche/dotfiles"
"https://github.com/mathletedev/dotfiles"
"https://github.com/adalessa/dotfiles"
"https://github.com/mvpopuk/dotfiles"
"https://github.com/xxh/xxh-plugin-prerun-dotfiles"
"https://github.com/zhuravel/dotfiles"
"https://github.com/mrusme/dotfiles"
"https://github.com/NycRat/dotfiles"
"https://github.com/addy-dclxvi/debian-openbox-fluxbox-dotfiles"
"https://github.com/szorfein/dots"
"https://github.com/br3ndonland/dotfiles"
"https://github.com/safinsingh/dots"
"https://github.com/s3rvac/dotfiles"
"https://github.com/vicentebolea/dotfiles"
"https://github.com/epilande/dotfiles"
"https://github.com/seeingangelz/dotfiles"
"https://github.com/mmphego/dot-files"
"https://github.com/ckipp01/dots"
"https://github.com/breuerfelix/dotfiles"
"https://github.com/frangkli/dotfiles"
"https://github.com/Misterio77/nix-config"
"https://github.com/gufranco/dotfiles"
"https://github.com/szymonkaliski/dotfiles"
"https://github.com/Matt-FTW/dotfiles"
"https://github.com/aesophor/dotfiles"
"https://github.com/joshuah345/linux-dotfiles"
"https://github.com/gigo6000/dotfiles"
"https://github.com/milomouse/dotfiles"
"https://github.com/HaCk3Dq/dotfiles"
"https://github.com/justleoo/dotfiles"
"https://github.com/abiosoft/dotfiles"
"https://github.com/Shemnei/punktf"
"https://github.com/getantibody/antibody"
"https://github.com/mrzool/dotfiles"
"https://github.com/korolr/dotfiles"
"https://github.com/aaronbates/dotfiles"
"https://github.com/himanshub16/dotfiles"
"https://github.com/Martins3/My-Linux-Config"
"https://github.com/EC2854/Hyprland-Dots"
"https://github.com/deathbeam/dotfiles"
"https://github.com/parazeeknova/pistachio-dotfiles"
"https://github.com/rafamadriz/dotfiles"
"https://github.com/Zerodya/dots"
"https://github.com/kidp2h/dotfiles"
"https://github.com/luisdavim/dotfiles"
"https://github.com/CodeHeister/dotfiles"
"https://github.com/Blacksuan19/Dotfiles"
"https://github.com/miguelmota/dotfiles"
"https://github.com/sebastienrousseau/dotfiles"
"https://github.com/duncanmcclean/dotfiles"
"https://github.com/khuedoan/dotfiles"
"https://github.com/tudurom/dotfiles"
"https://github.com/megalithic/dotfiles"
"https://github.com/maxpou/dotfiles"
"https://github.com/t3chnoboy/dotfiles"
"https://github.com/maniac-en/dotfiles"
"https://github.com/pstadler/dotfiles"
"https://github.com/ericlovesmath/dotfiles"
"https://github.com/huyvohcmc/dotfiles"
"https://github.com/anufrievroman/dotfiles"
"https://github.com/chris-martin/home"
"https://github.com/cytopia/dotfiles"
"https://github.com/mgechev/dotfiles"
"https://github.com/jqr/dotfiles"
"https://github.com/Spelljinxer/dotfiles"
"https://github.com/disrupted/dotfiles"
"https://github.com/keelerm84/dotfiles"
"https://github.com/kenorb/dotfiles"
"https://github.com/kevinSuttle/dotfiles"
"https://github.com/csivanich/dotfiles"
"https://github.com/oddlama/nix-config"
"https://github.com/ahmadawais/dotfiles"
"https://github.com/Optixal/dotfiles"
"https://github.com/arcticicestudio/igloo"
"https://github.com/potamides/dotfiles"
"https://github.com/jogendra/dotfiles"
"https://github.com/captbaritone/dotfiles"
"https://github.com/anasrar/.dotfiles"
"https://github.com/creativenull/dotfiles"
"https://github.com/jetersen/dotfiles"
"https://github.com/kaushalmodi/dotfiles"
"https://github.com/technicalpickles/dotfiles"
"https://github.com/oalders/dot-files"
"https://github.com/Mikaela/shell-things"
"https://github.com/sfc-gh-eraigosa/dotfiles"
"https://github.com/primalkz/bspwm-dots"
"https://github.com/tomsquest/dotfiles"
"https://github.com/suzuken/dotfiles"
"https://github.com/mxstbr/dotfiles"
"https://github.com/myTerminal/dotfiles"
"https://github.com/mohabaks/dotfiles"
"https://github.com/bfontaine/Dotfiles"
"https://github.com/w0ng/dotfiles"
"https://github.com/eualexandrerrr/dotfiles"
"https://github.com/protiumx/.dotfiles"
"https://github.com/ohyecloudy/dotfiles"
"https://github.com/knpwrs/dotfiles"
"https://github.com/himmAllRight/dotfiles"
"https://github.com/xudongzheng/dotfiles"
"https://github.com/Qeatrix/UnixRises"
"https://github.com/r17x/.dotifiles"
"https://github.com/xu-cheng/dotfiles"
"https://github.com/sicktastic/dotfiles"
"https://github.com/Conni2461/dotfiles"
"https://github.com/gquittet/dotfiles"
"https://github.com/Fxzzi/.dots"
"https://github.com/forno/dotfiles"
"https://github.com/andersevenrud/dotfiles"
"https://github.com/dguo/dotfiles"
"https://github.com/mom0tomo/dotfiles"
"https://github.com/lambdalisue/dotfiles"
"https://github.com/cvuorinen/dotfiles"
"https://github.com/cloudhead/dotfiles"
"https://github.com/Mte90/dotfiles"
"https://github.com/alker0/chezmoi.vim"
"https://github.com/adamhollett/dotfiles"
"https://github.com/YazdanZ/dotfiles"
"https://github.com/benc-uk/dotfiles"
"https://github.com/krmbzds/dotfiles"
"https://github.com/joshjohanning/dotfiles"
"https://github.com/isair/dotfiles"
"https://github.com/Sup3r-Us3r/MyDotfiles"
"https://github.com/Ambrevar/dotfiles"
"https://github.com/arusahni/dotfiles"
"https://github.com/FrenzyExists/dotfiles"
"https://github.com/cristianzsh/dotfiles"
"https://github.com/dlvhdr/dotfiles"
"https://github.com/nosvagor/dotfiles"
"https://github.com/caarlos0/dotfiles"
"https://github.com/lararosekelley/dotfiles"
"https://github.com/bergie/dotfiles"
"https://github.com/adamyonk/dotfiles"
"https://github.com/jeffwidman/dotfiles"
"https://github.com/hrs/sensible-defaults.el"
"https://github.com/someoneinjd/dotfiles"
"https://github.com/wlh320/wlh-dotfiles"
"https://github.com/lucascaton/dotfiles"
"https://github.com/qiaohao9/dotfiles"
"https://github.com/z0rc/dotfiles"
"https://github.com/cherrynoize/dotfiles"
"https://github.com/waffle87/dots"
"https://github.com/mxdevmanuel/dotfiles"
"https://github.com/liskin/dotfiles"
"https://github.com/g6ai/dotfiles"
"https://github.com/adilhyz/dotfiles-v1"
"https://github.com/fortes/dotfiles"
"https://github.com/channel-42/dotfiles"
"https://github.com/Lenivaya/dotfiles"
"https://github.com/lanej/dotfiles"
"https://github.com/twe4ked/dotfiles"
"https://github.com/diessica/dotfiles"
"https://github.com/nikolovlazar/dotfiles"
"https://github.com/sdball/dotfiles"
"https://github.com/frankroeder/dotfiles"
"https://github.com/yous/dotfiles"
"https://github.com/herrbischoff/dotpr0n"
"https://github.com/maxbrunet/dotfiles"
"https://github.com/evantravers/dotfiles"
"https://github.com/Awan/cfg"
"https://github.com/olimorris/dotfiles"
"https://github.com/dpetka2001/dotfiles"
"https://github.com/fliiiix/dotfiles"
"https://github.com/ajmalsiddiqui/autodot"
"https://github.com/metakirby5/.dots"
"https://github.com/CuB3y0nd/1llusion"
"https://github.com/Remedan/dotfiles"
"https://github.com/mutewinter/dot_vim"
"https://github.com/danirod/dotfiles"
"https://github.com/tony/tmux-config"
"https://github.com/leohxj/Arsenal"
"https://github.com/SebastienElet/dotfiles"
"https://github.com/ronakg/dotfiles"
"https://github.com/appleboy/dotfiles"
"https://github.com/palcu/dotfiles"
"https://github.com/t0thkr1s/dotfiles"
"https://github.com/sspaeti/dotfiles"
"https://github.com/codenameyau/dotfiles"
"https://github.com/simonsmith/dotfiles"
"https://github.com/livibetter/dotfiles"
"https://github.com/overmighty/dotfiles"
"https://github.com/ahmubashshir/dotfiles"
"https://github.com/aerosol/dotfiles"
"https://github.com/A/.dotfiles"
"https://github.com/realestninja/Dotfiles"
"https://github.com/itaysharir/Dotfiles"
"https://github.com/engstrand-config/guix-dotfiles"
"https://github.com/AN3223/dotfiles"
"https://github.com/StefanScherer/dotfiles"
"https://github.com/gslin/config"
"https://github.com/deepjyoti30/dots"
"https://github.com/lvntcnylmz/dotfiles"
"https://github.com/pgilad/dotfiles"
"https://github.com/ithinkihaveacat/dotfiles"
"https://github.com/spywhere/dotfiles"
"https://github.com/daolou/book"
"https://github.com/oknozor/dotfiles"
"https://github.com/emu-sh/.oh-my-comma"
"https://github.com/shivapoudel/dotfiles"
"https://github.com/petemcw/dotfiles"
"https://github.com/ultimatedotfiles/strap"
"https://github.com/woefe/dotfiles"
"https://github.com/kotontrion/dotfiles"
"https://github.com/bchiang7/dotfiles"
"https://github.com/jan-warchol/sensible-dotfiles"
"https://github.com/dpgraham4401/.dotfiles"
"https://github.com/EvanHahn/dotfiles"
"https://github.com/ikenox/dotfiles"
"https://github.com/soffes/dotfiles"
"https://github.com/enindu/dotfiles"
"https://github.com/gmr458/.dotfiles"
"https://github.com/coffebar/dotfiles"
"https://github.com/lencioni/dotfiles"
"https://github.com/CamilleScholtz/dotfiles"
"https://github.com/kesslern/dot-templater"
"https://github.com/Diablo-D3/dotfiles"
"https://github.com/fehawen/dotfiles"
"https://github.com/daneden/dotfiles"
"https://github.com/K4zoku/dotfiles"
"https://github.com/lonetwin/pythonrc"
"https://github.com/hanxi/dotfiles"
"https://github.com/MahdiMirzade/Dotfiles"
"https://github.com/nycksw/ocd"
"https://github.com/lvancrayelynghe/dotfiles"
"https://github.com/alexanderjeurissen/dotfiles"
"https://github.com/meribold/dotfiles"
"https://github.com/jpbruinsslot/dotfiles"
"https://github.com/apemost/dotfiles"
"https://github.com/jaseemabid/dotfiles"
"https://github.com/xajler/voidlinux-i3"
"https://github.com/jwflory/swiss-army"
"https://github.com/hmajid2301/dotfiles"
"https://github.com/julian-heng/yabai-config"
"https://github.com/fastily/autobots"
"https://github.com/martinbaillie/dotfiles"
"https://github.com/remi/dotfiles"
"https://github.com/kevinjalbert/dotfiles"
"https://github.com/x-zvf/dotfiles"
"https://github.com/beauwilliams/Dotfiles"
"https://github.com/johackim/dotfiles"
"https://github.com/ghostx31/dotfiles"
"https://github.com/artur-shaik/vimmer-dotfiles"
"https://github.com/aaronjanse/dotfiles"
"https://github.com/vilhalmer/System"
"https://github.com/mrjones2014/dotfiles"
"https://github.com/Lindenk/dotfiles"
"https://github.com/heypoom/dotfiles"
"https://github.com/acornejo/dotfiles"
"https://github.com/donniebishop/dotfiles"
"https://github.com/ErikBjare/dotfiles"
"https://github.com/briancain/starter-dotfiles"
"https://github.com/Speyll/dotfiles"
"https://github.com/jacobwgillespie/dotfiles"
"https://github.com/Sad-Soul-Eater/dotfiles"
"https://github.com/gasech/hyprland-dots"
"https://github.com/joelazar/dotfiles"
"https://github.com/aartaka/nyxt-config"
"https://github.com/franciscoj/dotfiles"
"https://github.com/the0demiurge/CharlesScripts"
"https://github.com/Sairyss/dev-setup"
"https://github.com/lepisma/rogue"
"https://github.com/lauroro/dots"
"https://github.com/ttsoncs/Dotfiles-AxylOS-bspwm-2022"
"https://github.com/Leandros/dotfiles"
"https://github.com/ecosse3/nvim"
"https://github.com/jussapaavo/dotfiles"
"https://github.com/giggio/poshfiles"
"https://github.com/simrat39/dotfiles"
"https://github.com/utdemir/dotfiles-nix"
"https://github.com/JonathanReeve/dotfiles"
"https://github.com/noib3/dotfiles"
"https://github.com/brainfucksec/dotfiles"
"https://github.com/jivoi/dotfiles"
"https://github.com/mdeff/dotfiles"
"https://github.com/deybhayden/dotfiles"
"https://github.com/axsuul/dotfiles-archived"
"https://github.com/laurentkempe/dotfiles"
"https://github.com/Amar1729/dotfiles"
"https://github.com/nothingButSyntaxError/dotfiles"
"https://github.com/relaxdiego/dotfiles"
"https://github.com/ufUNnxagpM/unix-dotfiles"
"https://github.com/eddiejaoude/dotfiles"
"https://github.com/ridhwaans/dotfiles"
"https://github.com/markets/dotfiles"
"https://github.com/mahmoudk1000/dotfiles"
"https://github.com/tay1orjones/dotfiles"
"https://github.com/crispgm/arch-linux-dotfiles"
"https://github.com/CodyReichert/dotfiles"
"https://github.com/diimdeep/dotfiles"
"https://github.com/atidyshirt/MacOS-Dotfiles"
"https://github.com/zeorin/dotfiles"
"https://github.com/mpourismaiel/dotfiles"
"https://github.com/larrylv/dotfiles"
"https://github.com/amarshall/dotfiles"
"https://github.com/ayoisaiah/dotfiles"
"https://github.com/shakeelmohamed/stow-dotfiles"
"https://github.com/theglitchh/dotfiles"
"https://github.com/jthegedus/dotfiles"
"https://github.com/nmasur/dotfiles"
"https://github.com/frioux/dotfiles"
"https://github.com/alessiocelentano/dotfiles"
"https://github.com/jackharrisonsherlock/dotfiles"
"https://github.com/Rishabh672003/dotfiles"
"https://github.com/ecly/dotfiles"
"https://github.com/mimame/.dotfiles"
"https://github.com/alhassy/emacs.d"
"https://github.com/scottstanfield/dotfiles"
"https://github.com/0xAX/dotfiles"
"https://github.com/HerXayah/egirl-dotfiles"
"https://github.com/wimstefan/dotfiles"
"https://github.com/deiwin/i3-dotfiles"
"https://github.com/Comamoca/dotfiles"
"https://github.com/indiesquidge/squidgefiles"
"https://github.com/giggio/bashscripts"
"https://github.com/shelldandy/dotfiles"
"https://github.com/Ruturajn/Dotfiles"
"https://github.com/pearl-core/pearl"
"https://github.com/Rashad-707/dotfiles"
"https://github.com/jaredpalmer/dotfiles"
"https://github.com/ipatch/dotfiles"
"https://github.com/kornicameister/dotfiles"
"https://github.com/mzlogin/config-files"
"https://github.com/wincent/wincent"
"https://github.com/x3ric/usr"
"https://github.com/csuhta/environment"
"https://github.com/randomphrase/dotfiles"
"https://github.com/UtkarshVerma/dotfiles"
"https://github.com/msanders/cider"
"https://github.com/ashfinal/vimrc-config"
"https://github.com/pavanjadhaw/dotfiles-old"
"https://github.com/unwiredfromreality/dots-and-stuff"
"https://github.com/fhilipecrash/dotfiles"
"https://github.com/zortax/dotfiles-old"
"https://github.com/Tmw/dotfiles"
"https://github.com/grawity/code"
"https://github.com/rejarevaldy/dotfiles"
"https://github.com/LoneWolf4713/new-wave"
"https://github.com/polybar/polybar-scripts"
"https://github.com/Xyene/chrome-os-i3-dotfiles"
"https://github.com/jorgeloopzz/dotfiles"
"https://github.com/itchyny/dotfiles"
"https://github.com/felixpackard/dotfiles"
"https://github.com/AllJavi/tartarus-dotfiles"
"https://github.com/vsouza/dotfiles"
"https://github.com/NikiforovAll/dotfiles"
"https://github.com/mmalohlava/gradle-visteg"
"https://github.com/curiouslychase/dotfiles"
"https://github.com/schmeekygeek/dotfiles"
"https://github.com/madnight/dotfiles"
"https://github.com/asottile/scratch"
"https://github.com/Misterio77/nix-starter-configs"
"https://github.com/bennetthardwick/dotfiles"
"https://github.com/isabelroses/dotfiles"
"https://github.com/yasinuslu/dotfiles"
"https://github.com/ashfinal/awesome-hammerspoon"
"https://github.com/hisasann/dotfile"
"https://github.com/1995parham/dotfiles"
"https://github.com/hbthen3rd/dotfiles"
"https://github.com/af/dotfiles"
"https://github.com/Tail-R/xmonad_eww_dotfiles"
"https://github.com/denolfe/dotfiles"
"https://github.com/luismayta/dotfiles"
"https://github.com/wunki/dotfiles"
"https://github.com/Voronenko/dotfiles"
"https://github.com/creasty/dotfiles"
"https://github.com/oxyc/dotfiles"
"https://github.com/mrlesmithjr/dotfiles"
"https://github.com/Gl00ria/dotfiles"
"https://github.com/gwarf/dotfiles"
"https://github.com/mfin/dotfiles"
"https://github.com/chauncey-garrett/dotfiles"
"https://github.com/peter-mcconnell/.dotfiles"
"https://github.com/liuerfire/dotfiles"
"https://github.com/jakehamilton/dotfiles"
"https://github.com/jonatack/dotfiles"
"https://github.com/sora6kq/sway-dots"
"https://github.com/mattduck/dotfiles"
"https://github.com/th1nhhdk/dotfiles"
"https://github.com/RUNFUNRUN/dotfiles"
"https://github.com/taniarascia/dotfiles"
"https://github.com/adelowo/dotfiles"
"https://github.com/carloscuesta/dotfiles"
"https://github.com/tracyone/dotfiles"
"https://github.com/viperML/dotfiles"
"https://github.com/chaneyzorn/dotfiles"
"https://github.com/yurrriq/dotfiles"
"https://github.com/pooyavahidi/dotfiles"
"https://github.com/Soneji/dotfiles"
"https://github.com/SuperCuber/dotfiles"
"https://github.com/agkozak/dotfiles"
"https://github.com/druskus20/dots"
"https://github.com/asimpson/dotfiles"
"https://github.com/benbalter/dotfiles"
"https://github.com/TLATER/dotfiles"
"https://github.com/timmybytes/dotfiles"
"https://github.com/sei40kr/dotfiles"
"https://github.com/umutsevdi/dotfiles"
"https://github.com/lf-/dotfiles"
"https://github.com/slashedzer0/nobara-dotfiles"
"https://github.com/birjj/dotfiles"
"https://github.com/yoannfleurydev/dotfiles"
"https://github.com/addy-dclxvi/debian-bspwm-dotfiles"
"https://github.com/volllly/rotz"
"https://github.com/albertyw/dotfiles"
"https://github.com/Nelyah/dotfiles"
"https://github.com/dhilipsiva/.files"
"https://github.com/Innei/dotfiles"
"https://github.com/mloskot/archlinux-config"
"https://github.com/LuRsT/Setup"
"https://github.com/exAspArk/dotfiles"
"https://github.com/nwaywood/dotfiles"
"https://github.com/newmanls/dotfiles"
"https://github.com/igorvisi/dotfiles"
"https://github.com/shagohead/dotfiles"
"https://github.com/briandoll/dotfiles"
"https://github.com/charliesbot/dotfiles"
"https://github.com/salif/dotfiles"
"https://github.com/xlucn/dotfiles"
"https://github.com/ianthehenry/dotfiles"
"https://github.com/gumieri/dotfiles"
"https://github.com/pwittchen/dotfiles"
"https://github.com/McSinyx/dotfiles"
"https://github.com/evanpurkhiser/dots-personal"
"https://github.com/grassdog/dotfiles"
"https://github.com/josh-/dotfiles"
"https://github.com/LukeChannings/dotfiles"
"https://github.com/rossmacarthur/dotfiles"
"https://github.com/hgup/nvim"
"https://github.com/xsota/dotfiles"
"https://github.com/asyncedd/dots.nvim"
"https://github.com/proycon/dotfiles"
"https://github.com/DanielFGray/dotfiles"
"https://github.com/SalomonSmeke/dotfiles"
"https://github.com/yakkun/dotfiles"
"https://github.com/joshdick/dotfiles"
"https://github.com/rinx/dotfiles"
"https://github.com/schickling/dotfiles"
"https://github.com/nunorafaelrocha/dotfiles"
"https://github.com/h1tarxeth/dots"
"https://github.com/NathanFirmo/dotfiles"
"https://github.com/gbraad/dotfiles"
"https://github.com/PoSayDone/.dotfiles_wayland"
"https://github.com/sunaku/home"
"https://github.com/edmundmiller/dotfiles"
"https://github.com/aniketpant/dotfiles"
"https://github.com/jakubgs/dotfiles"
"https://github.com/neoryans/dotfiles-bspwm"
"https://github.com/bradleyfrank/ansible"
"https://github.com/IOAyman/conf"
"https://github.com/jcayzac/dotfiles"
"https://github.com/max-lobur/dotfiles"
"https://github.com/rakshans1/dotfiles"
"https://github.com/lgaggini/dotfiles"
"https://github.com/erikw/dotfiles"
"https://github.com/Roknor/hyprland-dots"
"https://github.com/watilde/chest"
"https://github.com/shmileee/dotfiles"
"https://github.com/fluix-dev/dotfiles"
"https://github.com/szymonmaszke/dotfiles"
"https://github.com/0xmachos/dotfiles"
"https://github.com/meinside/rpi-configs"
"https://github.com/aonemd/aaku"
"https://github.com/angelofallars/dotfiles"
"https://github.com/Twor/dotfiles"
"https://github.com/epwalsh/dotfiles"
"https://github.com/theskumar/dotfiles"
"https://github.com/Freed-Wu/Freed-Wu"
"https://github.com/sudosubin/nixos-config"
"https://github.com/mattmc3/zdotdir"
"https://github.com/getantidote/zdotdir"
"https://github.com/davidvuong/dotfiles"
"https://github.com/jzelinskie/dotfiles"
"https://github.com/davidcelis/dotfiles"
"https://github.com/Godin/dotfiles"
"https://github.com/n4vermind/dotfiles"
"https://github.com/grepsedawk/.dotfiles"
"https://github.com/crissNb/Dynamic-Island-Sketchybar"
"https://github.com/BlueTufa/dotfiles"
"https://github.com/anveo/dotfiles"
"https://github.com/clayrisser/dotfiles"
"https://github.com/BarbUk/dotfiles"
"https://github.com/elentok/dotfiles"
"https://github.com/yordis/.dotfiles"
"https://github.com/tshu-w/dotfiles"
"https://github.com/jakejarvis/dotfiles"
"https://github.com/SixArm/zsh-config"
"https://github.com/owpk/dotfiles-sway"
"https://github.com/daneah/dotfiles"
"https://github.com/msfjarvis/dotfiles"
"https://github.com/xealea/dotbaka"
"https://github.com/jsatk/dotfiles"
"https://github.com/shunk031/dotfiles"
"https://github.com/Babkock/Dotfiles"
"https://github.com/ibab/dotfiles"
"https://github.com/Tass0sm/dotfiles"
"https://github.com/22a/dotfiles"
"https://github.com/wmayner/dotfiles"
"https://github.com/i4pg/dotfiles"
"https://github.com/adipopbv/dotfiles"
"https://github.com/jpadilla/dotfiles"
"https://github.com/miikanissi/dotfiles"
"https://github.com/CaddyDz/dotfiles"
"https://github.com/PezCoder/dotfiles"
"https://github.com/excalith/.dotfiles"
"https://github.com/command-z-z/dotfiles"
"https://github.com/alperhankendi/dotfiles"
"https://github.com/dieggsy/dotfiles"
"https://github.com/Gerschtli/nix-config"
"https://github.com/christianromney/dotfiles2"
"https://github.com/UltiRequiem/dotfiles"
"https://github.com/benknoble/Dotfiles"
"https://github.com/zjeffer/dotfiles"
"https://github.com/NicholasFeldman/dotfiles"
"https://github.com/Murzchnvok/dotfiles"
"https://github.com/maydayv7/dotfiles"
"https://github.com/Mofiqul/awesome-shell"
"https://github.com/toupeira/dotfiles"
"https://github.com/2giosangmitom/dotfiles"
"https://github.com/stefanzweifel/dotfiles"
"https://github.com/InioX/dotfiles"
"https://github.com/zacanger/dotfiles"
"https://github.com/electro7/dot_arch"
"https://github.com/LoLei/dotfiles"
"https://github.com/kevinsawicki/dotfiles"
"https://github.com/therubymug/dotfiles"
"https://github.com/MatthiasBenaets/nix-config"
"https://github.com/HrushikeshK/dotfiles"
"https://github.com/melekes/dotfiles"
"https://github.com/RomaniukVadim/dotfiles_i3wm"
"https://github.com/chezmoi/dotfiles"
"https://github.com/cadadr/configuration"
"https://github.com/AhmedSaadi0/my-hyprland-config"
"https://github.com/BirkhoffLee/dotfiles"
"https://github.com/qingshan/dotfiles"
"https://github.com/bobwhitelock/dotfiles"
"https://github.com/Allaman/dotfiles"
"https://github.com/naibaf0/dotfiles"
"https://github.com/ifd3f/infra"
"https://github.com/xusiai/dotfiles"
"https://github.com/LunarWatcher/dotfiles"
"https://github.com/andromedarabbit/dotfiles"
"https://github.com/MaybeAnonymous/mad"
"https://github.com/richin13/dotfiles"
"https://github.com/pndurette/mac-setup"
"https://github.com/p1xelHer0/dotfiles"
"https://github.com/mwilliammyers/dotfiles"
"https://github.com/jbh/ibmi-dotfiles"
"https://github.com/dpc/dotr"
"https://github.com/kraftwerk28/dotfiles"
"https://github.com/Pierstoval/dotfiles"
"https://github.com/mbrav/dotfiles"
"https://github.com/cristianmiranda/dotfiles"
"https://github.com/prakhar1989/dotfiles"
"https://github.com/hongsii/dotfiles"
"https://github.com/timss/dotfiles"
"https://github.com/nurrony/dotfiles"
"https://github.com/PetarKirov/dotfiles"
"https://github.com/justincampbell/.dotfiles"
"https://github.com/mjturt/dotfiles"
"https://github.com/josacar/dotfiles"
"https://github.com/eliihen/dotfiles"
"https://github.com/Kyczan/.cfg"
"https://github.com/daGrevis/Dotfiles"
"https://github.com/evesdropper/dotfiles"
"https://github.com/nkouevda/dotfiles"
"https://github.com/TsekNet/dotfiles"
"https://github.com/codfish/dotfiles"
"https://github.com/cgsdev0/dotfiles"
"https://github.com/alextercete/dotfiles"
"https://github.com/peikk0/dotfiles"
"https://github.com/MetaStag/awesome-dots"
"https://github.com/bswinnerton/dotfiles"
"https://github.com/marfanr/dotfiles"
"https://github.com/bbkane/dotfiles"
"https://github.com/jibreil/dotfiles"
"https://github.com/mkjmdski/.dotfiles"
"https://github.com/QuiiBz/dotfiles"
"https://github.com/lmammino/dotfiles"
"https://github.com/aswathkk/dotfiles"
"https://github.com/tombruijn/dotfiles"
"https://github.com/reitermarkus/dotfiles"
"https://github.com/CoelacanthusHex/dotfiles"
"https://github.com/FichteFoll/dotfiles"
"https://github.com/szclsya/dotfiles"
"https://github.com/ok100/dotfiles"