-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
.gitmodules
1164 lines (1164 loc) Β· 36.3 KB
/
.gitmodules
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
[submodule "ableton-live"]
path = themes/ableton-live
url = https://github.com/dracula/ableton-live
[submodule "adobe"]
path = themes/adobe
url = https://github.com/dracula/adobe
[submodule "alacritty"]
path = themes/alacritty
url = https://github.com/dracula/alacritty
[submodule "alfred"]
path = themes/alfred
url = https://github.com/dracula/alfred
[submodule "arduino-ide"]
path = themes/arduino-ide
url = https://github.com/dracula/arduino-ide
[submodule "aseprite"]
path = themes/aseprite
url = https://github.com/dracula/aseprite
[submodule "atom"]
path = themes/atom
url = https://github.com/dracula/atom
[submodule "b4x"]
path = themes/b4x
url = https://github.com/dracula/b4x
[submodule "base16"]
path = themes/base16
url = https://github.com/dracula/base16
[submodule "bbedit"]
path = themes/bbedit
url = https://github.com/dracula/bbedit
[submodule "blender"]
path = themes/blender
url = https://github.com/dracula/blender
[submodule "brackets"]
path = themes/brackets
url = https://github.com/dracula/brackets
[submodule "bspwm"]
path = themes/bspwm
url = https://github.com/dracula/bspwm
[submodule "chrome-devtools"]
path = themes/chrome-devtools
url = https://github.com/dracula/chrome-devtools
[submodule "cmder"]
path = themes/cmder
url = https://github.com/dracula/cmder
[submodule "coda"]
path = themes/coda
url = https://github.com/dracula/coda
[submodule "conemu"]
path = themes/conemu
url = https://github.com/dracula/conemu
[submodule "coteditor"]
path = themes/coteditor
url = https://github.com/dracula/coteditor
[submodule "couscous"]
path = themes/couscous
url = https://github.com/dracula/couscous
[submodule "discourse"]
path = themes/discourse
url = https://github.com/dracula/discourse
[submodule "doom-emacs"]
path = themes/doom-emacs
url = https://github.com/dracula/doom-emacs
[submodule "duckduckgo"]
path = themes/duckduckgo
url = https://github.com/dracula/duckduckgo
[submodule "eclipse"]
path = themes/eclipse
url = https://github.com/dracula/eclipse
[submodule "editplus"]
path = themes/editplus
url = https://github.com/dracula/editplus
[submodule "emacs"]
path = themes/emacs
url = https://github.com/dracula/emacs
[submodule "fb-messenger"]
path = themes/fb-messenger
url = https://github.com/dracula/fb-messenger
[submodule "figma"]
path = themes/figma
url = https://github.com/dracula/figma
[submodule "fish"]
path = themes/fish
url = https://github.com/dracula/fish
[submodule "gamemaker-studio"]
path = themes/gamemaker-studio
url = https://github.com/dracula/gamemaker-studio
[submodule "geany"]
path = themes/geany
url = https://github.com/dracula/geany
[submodule "gedit"]
path = themes/gedit
url = https://github.com/dracula/gedit
[submodule "gh-pages"]
path = themes/gh-pages
url = https://github.com/dracula/gh-pages
[submodule "gitk"]
path = themes/gitk
url = https://github.com/dracula/gitk
[submodule "gmk"]
path = themes/gmk
url = https://github.com/dracula/gmk
[submodule "gnome-terminal"]
path = themes/gnome-terminal
url = https://github.com/dracula/gnome-terminal
[submodule "godot"]
path = themes/godot
url = https://github.com/dracula/godot
[submodule "gtk"]
path = themes/gtk
url = https://github.com/dracula/gtk
[submodule "highlightjs"]
path = themes/highlightjs
url = https://github.com/dracula/highlightjs
[submodule "hyper"]
path = themes/hyper
url = https://github.com/dracula/hyper
[submodule "i3"]
path = themes/i3
url = https://github.com/dracula/i3
[submodule "insomnia"]
path = themes/insomnia
url = https://github.com/dracula/insomnia
[submodule "iterm"]
path = themes/iterm
url = https://github.com/dracula/iterm
[submodule "javadoc"]
path = themes/javadoc
url = https://github.com/dracula/javadoc
[submodule "jetbrains"]
path = themes/jetbrains
url = https://github.com/dracula/jetbrains
[submodule "jgrasp"]
path = themes/jgrasp
url = https://github.com/dracula/jgrasp
[submodule "kakoune"]
path = themes/kakoune
url = https://github.com/dracula/kakoune
[submodule "kate"]
path = themes/kate
url = https://github.com/dracula/kate
[submodule "kitty"]
path = themes/kitty
url = https://github.com/dracula/kitty
[submodule "konsole"]
path = themes/konsole
url = https://github.com/dracula/konsole
[submodule "light-table"]
path = themes/light-table
url = https://github.com/dracula/light-table
[submodule "lightpaper"]
path = themes/lightpaper
url = https://github.com/dracula/lightpaper
[submodule "limechat"]
path = themes/limechat
url = https://github.com/dracula/limechat
[submodule "macdown"]
path = themes/macdown
url = https://github.com/dracula/macdown
[submodule "mailspring"]
path = themes/mailspring
url = https://github.com/dracula/mailspring
[submodule "marp"]
path = themes/marp
url = https://github.com/dracula/marp
[submodule "matlab"]
path = themes/matlab
url = https://github.com/dracula/matlab
[submodule "mattermost"]
path = themes/mattermost
url = https://github.com/dracula/mattermost
[submodule "mindnode"]
path = themes/mindnode
url = https://github.com/dracula/mindnode
[submodule "mintty"]
path = themes/mintty
url = https://github.com/dracula/mintty
[submodule "mobaxterm"]
path = themes/mobaxterm
url = https://github.com/dracula/mobaxterm
[submodule "monodevelop"]
path = themes/monodevelop
url = https://github.com/dracula/monodevelop
[submodule "musicbee"]
path = themes/musicbee
url = https://github.com/dracula/musicbee
[submodule "mutt"]
path = themes/mutt
url = https://github.com/dracula/mutt
[submodule "notepad-plus-plus"]
path = themes/notepad-plus-plus
url = https://github.com/dracula/notepad-plus-plus
[submodule "nylas-n1"]
path = themes/nylas-n1
url = https://github.com/dracula/nylas-n1
[submodule "powershell"]
path = themes/powershell
url = https://github.com/dracula/powershell
[submodule "prism"]
path = themes/prism
url = https://github.com/dracula/prism
[submodule "pygments"]
path = themes/pygments
url = https://github.com/dracula/pygments
[submodule "pythonista"]
path = themes/pythonista
url = https://github.com/dracula/pythonista
[submodule "qtcreator"]
path = themes/qtcreator
url = https://github.com/dracula/qtcreator
[submodule "quassel"]
path = themes/quassel
url = https://github.com/dracula/quassel
[submodule "quiver"]
path = themes/quiver
url = https://github.com/dracula/quiver
[submodule "sketch"]
path = themes/sketch
url = https://github.com/dracula/sketch
[submodule "sequel-pro"]
path = themes/sequel-pro
url = https://github.com/dracula/sequel-pro
[submodule "slack"]
path = themes/slack
url = https://github.com/dracula/slack
[submodule "spacemacs"]
path = themes/spacemacs
url = https://github.com/dracula/spacemacs
[submodule "steam"]
path = themes/steam
url = https://github.com/dracula/steam
[submodule "sublime"]
path = themes/sublime
url = https://github.com/dracula/sublime
[submodule "tabletop-simulator"]
path = themes/tabletop-simulator
url = https://github.com/dracula/tabletop-simulator
[submodule "telegram"]
path = themes/telegram
url = https://github.com/dracula/telegram
[submodule "telegram-android"]
path = themes/telegram-android
url = https://github.com/dracula/telegram-android
[submodule "terminal-app"]
path = themes/terminal-app
url = https://github.com/dracula/terminal.app
[submodule "termite"]
path = themes/termite
url = https://github.com/dracula/termite
[submodule "termux"]
path = themes/termux
url = https://github.com/dracula/termux
[submodule "textmate"]
path = themes/textmate
url = https://github.com/dracula/textmate
[submodule "textual"]
path = themes/textual
url = https://github.com/dracula/textual
[submodule "thonny"]
path = themes/thonny
url = https://github.com/dracula/thonny
[submodule "tilix"]
path = themes/tilix
url = https://github.com/dracula/tilix
[submodule "tmux"]
path = themes/tmux
url = https://github.com/dracula/tmux
[submodule "total-commander"]
path = themes/total-commander
url = https://github.com/dracula/total-commander
[submodule "tower"]
path = themes/tower
url = https://github.com/dracula/tower
[submodule "typora"]
path = themes/typora
url = https://github.com/dracula/typora
[submodule "ulysses"]
path = themes/ulysses
url = https://github.com/dracula/ulysses
[submodule "vim"]
path = themes/vim
url = https://github.com/dracula/vim
[submodule "vimium"]
path = themes/vimium
url = https://github.com/dracula/vimium
[submodule "visual-studio"]
path = themes/visual-studio
url = https://github.com/dracula/visual-studio
[submodule "visual-studio-code"]
path = themes/visual-studio-code
url = https://github.com/dracula/visual-studio-code
[submodule "vivaldi"]
path = themes/vivaldi
url = https://github.com/dracula/vivaldi
[submodule "windows-terminal"]
path = themes/windows-terminal
url = https://github.com/dracula/windows-terminal
[submodule "wing"]
path = themes/wing
url = https://github.com/dracula/wing
[submodule "wordpress"]
path = themes/wordpress
url = https://github.com/dracula/wordpress
[submodule "wox"]
path = themes/wox
url = https://github.com/dracula/wox
[submodule "xchat"]
path = themes/xchat
url = https://github.com/dracula/xchat
[submodule "xcode"]
path = themes/xcode
url = https://github.com/dracula/xcode
[submodule "xresources"]
path = themes/xresources
url = https://github.com/dracula/xresources
[submodule "zsh"]
path = themes/zsh
url = https://github.com/dracula/zsh
[submodule "pywal"]
path = themes/pywal
url = https://github.com/dracula/pywal
[submodule "idle"]
path = themes/idle
url = https://github.com/dracula/idle
[submodule "zathura"]
path = themes/zathura
url = https://github.com/dracula/zathura
[submodule "tiddlywiki"]
path = themes/tiddlywiki
url = https://github.com/dracula/tiddlywiki
[submodule "plank"]
path = themes/plank
url = https://github.com/dracula/plank
[submodule "betterdiscord"]
path = themes/betterdiscord
url = https://github.com/dracula/betterdiscord
[submodule "thelounge"]
path = themes/thelounge
url = https://github.com/dracula/thelounge
[submodule "colorls"]
path = themes/colorls
url = https://github.com/dracula/colorls
[submodule "roam-research"]
path = themes/roam-research
url = https://github.com/dracula/roam-research
[submodule "obsidian"]
path = themes/obsidian
url = https://github.com/dracula/obsidian
[submodule "adminer"]
path = themes/adminer
url = https://github.com/dracula/adminer
[submodule "micro"]
path = themes/micro
url = https://github.com/dracula/micro
[submodule "renoise"]
path = themes/renoise
url = https://github.com/dracula/renoise
[submodule "fman"]
path = themes/fman
url = https://github.com/dracula/fman
[submodule "copyq"]
path = themes/copyq
url = https://github.com/dracula/copyq
[submodule "cryptowatch"]
path = themes/cryptowatch
url = https://github.com/dracula/cryptowatch
[submodule "midnight-commander"]
path = themes/midnight-commander
url = https://github.com/dracula/midnight-commander
[submodule "keypirinha"]
path = themes/keypirinha
url = https://github.com/dracula/keypirinha.git
[submodule "mousepad"]
path = themes/mousepad
url = https://github.com/dracula/mousepad
[submodule "linear"]
path = themes/linear
url = https://github.com/dracula/linear
[submodule "albert"]
path = themes/albert
url = https://github.com/dracula/albert
[submodule "arduino-pro-ide"]
path = themes/arduino-pro-ide
url = https://github.com/dracula/arduino-pro-ide
[submodule "kicad"]
path = themes/kicad
url = https://github.com/dracula/kicad
[submodule "standard-notes"]
path = themes/standard-notes
url = https://github.com/dracula/standard-notes
[submodule "thunderbird"]
path = themes/thunderbird
url = https://github.com/dracula/thunderbird
[submodule "liteide"]
path = themes/liteide
url = https://github.com/dracula/liteide
[submodule "bashtop"]
path = themes/bashtop
url = https://github.com/dracula/bashtop
[submodule "logseq"]
path = themes/logseq
url = https://github.com/dracula/logseq
[submodule "qt5"]
path = themes/qt5
url = https://github.com/dracula/qt5
[submodule "terminator"]
path = themes/terminator
url = https://github.com/dracula/terminator
[submodule "telegram-ios"]
path = themes/telegram-ios
url = https://github.com/dracula/telegram-ios
[submodule "ida"]
path = themes/ida
url = https://github.com/dracula/ida
[submodule "netbeans"]
path = themes/netbeans
url = https://github.com/dracula/netbeans
[submodule "xournalpp"]
path = themes/xournalpp
url = https://github.com/dracula/xournalpp
[submodule "ditto"]
path = themes/ditto
url = https://github.com/dracula/ditto
[submodule "matplotlib"]
path = themes/matplotlib
url = https://github.com/dracula/matplotlib
[submodule "nova"]
path = themes/nova
url = https://github.com/dracula/nova
[submodule "tty"]
path = themes/tty
url = https://github.com/dracula/tty
[submodule "libreoffice"]
path = themes/libreoffice
url = https://github.com/dracula/libreoffice
[submodule "vivado"]
path = themes/vivado
url = https://github.com/dracula/vivado
[submodule "everythingtoolbar"]
path = themes/everythingtoolbar
url = https://github.com/dracula/everythingtoolbar
[submodule "xfce4-terminal"]
path = themes/xfce4-terminal
url = https://github.com/dracula/xfce4-terminal
[submodule "spotify-tui"]
path = themes/spotify-tui
url = https://github.com/dracula/spotify-tui
[submodule "inkscape"]
path = themes/inkscape
url = https://github.com/dracula/inkscape
[submodule "dunst"]
path = themes/dunst
url = https://github.com/dracula/dunst
[submodule "ncspot"]
path = themes/ncspot
url = https://github.com/dracula/ncspot
[submodule "themes/ltspice"]
path = themes/ltspice
url = https://github.com/dracula/ltspice
[submodule "themes/bemenu"]
path = themes/bemenu
url = https://github.com/dracula/bemenu
[submodule "themes/abricotine"]
path = themes/abricotine
url = https://github.com/dracula/abricotine
[submodule "themes/latex"]
path = themes/latex
url = https://github.com/dracula/latex
[submodule "themes/unigram"]
path = themes/unigram
url = https://github.com/dracula/unigram
[submodule "themes/grub"]
path = themes/grub
url = https://github.com/dracula/grub
[submodule "themes/pandoc"]
path = themes/pandoc
url = https://github.com/dracula/pandoc
[submodule "themes/abap"]
path = themes/abap
url = https://github.com/dracula/abap
[submodule "themes/sumatra-pdf"]
path = themes/sumatra-pdf
url = https://github.com/dracula/sumatra-pdf
[submodule "themes/visual-spigot"]
path = themes/visual-spigot
url = https://github.com/dracula/visual-spigot
[submodule "themes/freecad"]
path = themes/freecad
url = https://github.com/dracula/freecad
[submodule "themes/ghostwriter"]
path = themes/ghostwriter
url = https://github.com/dracula/ghostwriter
[submodule "themes/beamer"]
path = themes/beamer
url = https://github.com/dracula/beamer
[submodule "themes/kdiff3"]
path = themes/kdiff3
url = https://github.com/dracula/kdiff3
[submodule "themes/tailwind"]
path = themes/tailwind
url = https://github.com/dracula/tailwind
[submodule "themes/metaeditor"]
path = themes/metaeditor
url = https://github.com/dracula/metaeditor
[submodule "themes/files"]
path = themes/files
url = https://github.com/dracula/files
[submodule "themes/discordbotmaker"]
path = themes/discordbotmaker
url = https://github.com/dracula/discordbotmaker
[submodule "themes/qbittorrent"]
path = themes/qbittorrent
url = https://github.com/dracula/qbittorrent
[submodule "themes/streamlit"]
path = themes/streamlit
url = https://github.com/dracula/streamlit
[submodule "themes/imageglass"]
path = themes/imageglass
url = https://github.com/dracula/imageglass
[submodule "themes/mako"]
path = themes/mako
url = https://github.com/dracula/mako
[submodule "themes/fzf"]
path = themes/fzf
url = https://github.com/dracula/fzf
[submodule "themes/swiftui"]
path = themes/swiftui
url = https://github.com/dracula/swiftui
[submodule "themes/solidworks"]
path = themes/solidworks
url = https://github.com/dracula/solidworks
[submodule "themes/zsh-syntax-highlighting"]
path = themes/zsh-syntax-highlighting
url = https://github.com/dracula/zsh-syntax-highlighting
[submodule "themes/flarum"]
path = themes/flarum
url = https://github.com/dracula/flarum
[submodule "themes/beyond-compare-4"]
path = themes/beyond-compare-4
url = https://github.com/dracula/beyond-compare-4
[submodule "themes/texstudio"]
path = themes/texstudio
url = https://github.com/dracula/texstudio
[submodule "themes/dwarf-fortress"]
path = themes/dwarf-fortress
url = https://github.com/dracula/dwarf-fortress
[submodule "themes/lxterminal"]
path = themes/lxterminal
url = https://github.com/dracula/lxterminal
[submodule "themes/ripcord"]
path = themes/ripcord
url = https://github.com/dracula/ripcord
[submodule "themes/nyxt"]
path = themes/nyxt
url = https://github.com/dracula/nyxt
[submodule "themes/node-console"]
path = themes/node-console
url = [email protected]:dracula/node-console
[submodule "themes/krita"]
path = themes/krita
url = [email protected]:dracula/krita
[submodule "themes/funkwhale"]
path = themes/funkwhale
url = [email protected]:dracula/funkwhale
[submodule "themes/sidenotes"]
path = themes/sidenotes
url = [email protected]:dracula/sidenotes
[submodule "themes/ueli"]
path = themes/ueli
url = [email protected]:dracula/ueli
[submodule "themes/btcpay-server"]
path = themes/btcpay-server
url = [email protected]:dracula/btcpay-server
[submodule "themes/caprine-messenger"]
path = themes/caprine-messenger
url = [email protected]:dracula/caprine-messenger
[submodule "themes/em-client"]
path = themes/em-client
url = [email protected]:dracula/em-client
[submodule "themes/fig"]
path = themes/fig
url = [email protected]:dracula/fig
[submodule "themes/amfora"]
path = themes/amfora
url = [email protected]:dracula/amfora
[submodule "themes/passky"]
path = themes/passky
url = [email protected]:dracula/passky
[submodule "themes/rstudio"]
path = themes/rstudio
url = [email protected]:dracula/rstudio
[submodule "themes/pantheon-terminal"]
path = themes/pantheon-terminal
url = [email protected]:dracula/pantheon-terminal
[submodule "themes/rofi"]
path = themes/rofi
url = [email protected]:dracula/rofi
[submodule "themes/tym"]
path = themes/tym
url = [email protected]:dracula/tym
[submodule "themes/gamepad-viewer"]
path = themes/gamepad-viewer
url = [email protected]:dracula/gamepad-viewer
[submodule "themes/mixplorer"]
path = themes/mixplorer
url = [email protected]:dracula/mixplorer
[submodule "themes/dev-cpp"]
path = themes/dev-cpp
url = [email protected]:dracula/dev-cpp
[submodule "themes/revolt"]
path = themes/revolt
url = [email protected]:dracula/revolt
[submodule "themes/ranger"]
path = themes/ranger
url = [email protected]:dracula/ranger
[submodule "themes/texshop"]
path = themes/texshop
url = [email protected]:dracula/texshop
[submodule "themes/aliucord"]
path = themes/aliucord
url = [email protected]:dracula/aliucord
[submodule "themes/metatrader5"]
path = themes/metatrader5
url = [email protected]:dracula/metatrader5
[submodule "themes/sequel-ace"]
path = themes/sequel-ace
url = [email protected]:dracula/sequel-ace
[submodule "themes/nova-launcher"]
path = themes/nova-launcher
url = [email protected]:dracula/nova-launcher
[submodule "themes/textastic"]
path = themes/textastic
url = [email protected]:dracula/textastic
[submodule "themes/revolution-irc"]
path = themes/revolution-irc
url = [email protected]:dracula/revolution-irc
[submodule "themes/powerlevel10k"]
path = themes/powerlevel10k
url = [email protected]:dracula/powerlevel10k
[submodule "themes/unreal-engine"]
path = themes/unreal-engine
url = [email protected]:dracula/unreal-engine
[submodule "themes/ggplot2"]
path = themes/ggplot2
url = [email protected]:dracula/ggplot2
[submodule "themes/windterm"]
path = themes/windterm
url = [email protected]:dracula/windterm
[submodule "themes/musikcube"]
path = themes/musikcube
url = [email protected]:dracula/musikcube
[submodule "themes/florisboard"]
path = themes/florisboard
url = [email protected]:dracula/florisboard
[submodule "themes/delphi"]
path = themes/delphi
url = [email protected]:dracula/delphi
[submodule "themes/gitkraken"]
path = themes/gitkraken
url = [email protected]:dracula/gitkraken
[submodule "themes/apollo"]
path = themes/apollo
url = [email protected]:dracula/apollo
[submodule "themes/mysql-workbench"]
path = themes/mysql-workbench
url = [email protected]:dracula/mysql-workbench
[submodule "themes/bear"]
path = themes/bear
url = [email protected]:dracula/bear
[submodule "themes/chrome"]
path = themes/chrome
url = [email protected]:dracula/chrome
[submodule "themes/firefox"]
path = themes/firefox
url = [email protected]:dracula/firefox
[submodule "themes/fluent-terminal"]
path = themes/fluent-terminal
url = [email protected]:dracula/fluent-terminal
[submodule "themes/jupyterlab"]
path = themes/jupyterlab
url = [email protected]:dracula/jupyterlab
[submodule "themes/oracle-sql-developer"]
path = themes/oracle-sql-developer
url = [email protected]:dracula/oracle-sql-developer
[submodule "themes/qutebrowser"]
path = themes/qutebrowser
url = [email protected]:dracula/qutebrowser
[submodule "themes/ulauncher"]
path = themes/ulauncher
url = [email protected]:dracula/ulauncher
[submodule "themes/wallpaper"]
path = themes/wallpaper
url = [email protected]:dracula/wallpaper
[submodule "themes/wofi"]
path = themes/wofi
url = [email protected]:dracula/wofi
[submodule "themes/wolfram-notebooks"]
path = themes/wolfram-notebooks
url = [email protected]:dracula/wolfram-notebooks
[submodule "themes/bobthefish"]
path = themes/bobthefish
url = [email protected]:dracula/bobthefish
[submodule "themes/warp"]
path = themes/warp
url = https://github.com/dracula/warp.git
[submodule "themes/gajim"]
path = themes/gajim
url = [email protected]:dracula/gajim
[submodule "themes/github"]
path = themes/github
url = [email protected]:dracula/github
[submodule "themes/foot"]
path = themes/foot
url = [email protected]:dracula/foot
[submodule "themes/spyder-ide"]
path = themes/spyder-ide
url = [email protected]:dracula/spyder-ide
[submodule "themes/monkeytype"]
path = themes/monkeytype
url = https://github.com/dracula/monkeytype.git
[submodule "themes/joplin"]
path = themes/joplin
url = https://github.com/dracula/joplin.git
[submodule "themes/codeblocks"]
path = themes/codeblocks
url = https://github.com/dracula/codeblocks.git
[submodule "themes/starship"]
path = themes/starship
url = https://github.com/dracula/starship.git
[submodule "themes/serenityos"]
path = themes/serenityos
url = [email protected]:dracula/serenityos
[submodule "themes/gitlab"]
path = themes/gitlab
url = [email protected]:dracula/gitlab
[submodule "themes/tig"]
path = themes/tig
url = [email protected]:dracula/tig
[submodule "themes/openbox"]
path = themes/openbox
url = https://github.com/dracula/openbox.git
[submodule "themes/wezterm"]
path = themes/wezterm
url = https://github.com/dracula/wezterm.git
[submodule "themes/postbox"]
path = themes/postbox
url = https://github.com/dracula/postbox.git
[submodule "themes/coderunner"]
path = themes/coderunner
url = [email protected]:dracula/coderunner
[submodule "themes/cider"]
path = themes/cider
url = [email protected]:dracula/cider
[submodule "themes/git"]
path = themes/git
url = [email protected]:dracula/git
[submodule "themes/jdownloader2"]
path = themes/jdownloader2
url = [email protected]:dracula/jdownloader2
[submodule "themes/stackoverflow"]
path = themes/stackoverflow
url = [email protected]:dracula/stackoverflow
[submodule "themes/flowlab"]
path = themes/flowlab
url = [email protected]:dracula/flowlab
[submodule "themes/archive-of-our-own"]
path = themes/archive-of-our-own
url = [email protected]:dracula/archive-of-our-own
[submodule "themes/zellij"]
path = themes/zellij
url = [email protected]:dracula/zellij
[submodule "themes/visual-basic-6"]
path = themes/visual-basic-6
url = [email protected]:dracula/visual-basic-6
[submodule "themes/noir"]
path = themes/noir
url = [email protected]:dracula/noir
[submodule "themes/oh-my-posh"]
path = themes/oh-my-posh
url = [email protected]:dracula/oh-my-posh
[submodule "themes/dircolors"]
path = themes/dircolors
url = [email protected]:dracula/dircolors
[submodule "themes/itfy"]
path = themes/itfy
url = [email protected]:dracula/itfy
[submodule "themes/vortex-mod-manager"]
path = themes/vortex-mod-manager
url = https://github.com/dracula/vortex-mod-manager.git
[submodule "themes/clone-hero"]
path = themes/clone-hero
url = https://github.com/dracula/clone-hero.git
[submodule "themes/ngenuity"]
path = themes/ngenuity
url = https://github.com/dracula/ngenuity.git
[submodule "themes/codepen"]
path = themes/codepen
url = https://github.com/dracula/codepen.git
[submodule "themes/macos-color-picker"]
path = themes/macos-color-picker
url = https://github.com/dracula/macos-color-picker.git
[submodule "themes/psychopy"]
path = themes/psychopy
url = https://github.com/dracula/psychopy.git
[submodule "themes/gimp"]
path = themes/gimp
url = [email protected]:dracula/gimp
[submodule "themes/drafts"]
path = themes/drafts
url = [email protected]:dracula/drafts
[submodule "themes/tint2"]
path = themes/tint2
url = [email protected]:dracula/tint2
[submodule "themes/snippetslab"]
path = themes/snippetslab
url = [email protected]:dracula/snippetslab
[submodule "themes/homer"]
path = themes/homer
url = [email protected]:dracula/homer
[submodule "themes/sandpack"]
path = themes/sandpack
url = https://github.com/dracula/sandpack.git
[submodule "themes/nextcloud"]
path = themes/nextcloud
url = https://github.com/dracula/nextcloud.git
[submodule "themes/hacker-news"]
path = themes/hacker-news
url = https://github.com/dracula/hacker-news.git
[submodule "themes/youtube"]
path = themes/youtube
url = https://github.com/dracula/youtube.git
[submodule "themes/blink-shell"]
path = themes/blink-shell
url = https://github.com/dracula/blink-shell.git
[submodule "themes/auto-ao3-app"]
path = themes/auto-ao3-app
url = https://github.com/dracula/auto-ao3-app.git
[submodule "themes/youtube-music-desktop"]
path = themes/youtube-music-desktop
url = https://github.com/dracula/youtube-music-desktop.git
[submodule "themes/polymc"]
path = themes/polymc
url = https://github.com/dracula/polymc.git
[submodule "themes/yunohost"]
path = themes/yunohost
url = https://github.com/dracula/yunohost.git
[submodule "themes/atom-ui"]
path = themes/atom-ui
url = https://github.com/dracula/atom-ui.git
[submodule "themes/sioyek"]
path = themes/sioyek
url = https://github.com/dracula/sioyek.git
[submodule "themes/cava"]
path = themes/cava
url = https://github.com/dracula/cava.git
[submodule "themes/minecraft"]
path = themes/minecraft
url = https://github.com/dracula/minecraft.git
[submodule "themes/wp"]
path = themes/wp
url = https://github.com/dracula/wp.git
[submodule "themes/vital"]
path = themes/vital
url = https://github.com/dracula/vital.git
[submodule "themes/i3lock-color"]
path = themes/i3lock-color
url = https://github.com/dracula/i3lock-color.git
[submodule "themes/color-slurp"]
path = themes/color-slurp
url = https://github.com/dracula/color-slurp.git
[submodule "themes/kanbanflow"]
path = themes/kanbanflow
url = https://github.com/dracula/kanbanflow.git
[submodule "themes/scrivener"]
path = themes/scrivener
url = https://github.com/dracula/scrivener.git
[submodule "themes/leftwm"]
path = themes/leftwm
url = https://github.com/dracula/leftwm.git
[submodule "themes/dmenu"]
path = themes/dmenu
url = https://github.com/dracula/dmenu.git
[submodule "themes/dwm"]
path = themes/dwm
url = https://github.com/dracula/dwm.git
[submodule "themes/dyalog"]
path = themes/dyalog
url = https://github.com/dracula/dyalog.git
[submodule "themes/spicetify"]
path = themes/spicetify
url = https://github.com/dracula/spicetify.git
[submodule "themes/novel-writer"]
path = themes/novel-writer
url = https://github.com/dracula/novel-writer.git
[submodule "themes/campfire"]
path = themes/campfire
url = https://github.com/dracula/campfire.git
[submodule "themes/omglol"]
path = themes/omglol
url = https://github.com/dracula/omglol.git
[submodule "themes/fl-studio-21"]
path = themes/fl-studio-21
url = https://github.com/dracula/fl-studio-21.git
[submodule "themes/runjs"]
path = themes/runjs
url = https://github.com/dracula/runjs.git
[submodule "themes/suckless-tabbed"]
path = themes/suckless-tabbed
url = https://github.com/dracula/suckless-tabbed.git
[submodule "themes/peacock-extension"]
path = themes/peacock-extension
url = https://github.com/dracula/peacock-extension.git
[submodule "themes/tridactyl"]
path = themes/tridactyl
url = https://github.com/dracula/tridactyl.git
[submodule "themes/plsql-developer"]
path = themes/plsql-developer
url = https://github.com/dracula/plsql-developer.git
[submodule "themes/new-tabs"]
path = themes/new-tabs
url = https://github.com/dracula/new-tabs.git
[submodule "themes/infinity-for-reddit"]
path = themes/infinity-for-reddit
url = https://github.com/dracula/infinity-for-reddit.git
[submodule "themes/fedilab"]
path = themes/fedilab
url = https://github.com/dracula/fedilab.git
[submodule "themes/harpy-for-twitter"]
path = themes/harpy-for-twitter
url = https://github.com/dracula/harpy-for-twitter.git
[submodule "themes/nitter"]
path = themes/nitter
url = https://github.com/dracula/nitter.git
[submodule "themes/libreddit"]
path = themes/libreddit
url = https://github.com/dracula/libreddit.git
[submodule "themes/todoist"]
path = themes/todoist
url = https://github.com/dracula/todoist.git
[submodule "themes/misskey"]
path = themes/misskey
url = https://github.com/dracula/misskey.git
[submodule "themes/cli-visualizer"]
path = themes/cli-visualizer
url = https://github.com/dracula/cli-visualizer.git
[submodule "themes/replugged"]
path = themes/replugged
url = https://github.com/dracula/replugged.git
[submodule "themes/uptime-kuma"]
path = themes/uptime-kuma
url = https://github.com/dracula/uptime-kuma.git
[submodule "themes/yakuake"]
path = themes/yakuake
url = https://github.com/dracula/yakuake.git
[submodule "themes/aerc"]
path = themes/aerc
url = https://github.com/dracula/aerc.git
[submodule "themes/newsboat"]
path = themes/newsboat
url = https://github.com/dracula/newsboat.git
[submodule "themes/jabref"]
path = themes/jabref
url = https://github.com/dracula/jabref.git
[submodule "themes/makehuman"]
path = themes/makehuman
url = https://github.com/dracula/makehuman.git
[submodule "themes/plymouth"]
path = themes/plymouth
url = https://github.com/dracula/plymouth.git
[submodule "themes/fuzzel"]
path = themes/fuzzel
url = https://github.com/dracula/fuzzel.git
[submodule "themes/hyprland"]
path = themes/hyprland
url = https://github.com/dracula/hyprland.git
[submodule "themes/st"]
path = themes/st
url = https://github.com/dracula/st.git
[submodule "themes/swaylock"]
path = themes/swaylock
url = https://github.com/dracula/swaylock.git
[submodule "themes/waybar"]
path = themes/waybar
url = https://github.com/dracula/waybar.git
[submodule "themes/kristall"]
path = themes/kristall
url = https://github.com/dracula/kristall.git
[submodule "themes/freetube"]
path = themes/freetube
url = https://github.com/dracula/freetube.git
[submodule "themes/bandcamp"]
path = themes/bandcamp
url = https://github.com/dracula/bandcamp.git
[submodule "themes/mkdocs"]
path = themes/mkdocs
url = https://github.com/dracula/mkdocs.git
[submodule "themes/vis"]
path = themes/vis
url = https://github.com/dracula/vis.git
[submodule "themes/jupyter-notebook"]