-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathprogram-list
2521 lines (2521 loc) · 31.2 KB
/
program-list
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
a52dec
aalib
abseil-cpp
acl
acpi
adobe-source-code-pro-fonts
adwaita-cursors
adwaita-icon-theme
aic94xx-firmware
alacritty
alembic
alsa-card-profiles
alsa-lib
alsa-topology-conf
alsa-ucm-conf
alsa-utils
alure
amd-ucode
amdvlk
android-sdk-platform-tools
android-tools
android-udev
ani-cli-git
anydesk-bin
aom
appflowy-bin
appstream
appstream-glib
arandr
arc-gtk-theme
archlinux-keyring
archlinux-xdg-menu
argon2
aria2
arm-none-eabi-binutils
arm-none-eabi-gcc
arm-none-eabi-newlib
arp-scan
asar
asciidoc
at-spi2-core
atkmm
atool
atop
attica
attr
audacity
audiofile
audit
autoconf
autoconf-archive
automake
avahi
avr-binutils
avr-gcc
avr-libc
avrdude
aws-c-auth
aws-c-cal
aws-c-common
aws-c-compression
aws-c-event-stream
aws-c-http
aws-c-io
aws-c-mqtt
aws-c-s3
aws-c-sdkutils
aws-checksums
aws-crt-cpp
aws-iam-authenticator
aws-sdk-cpp
axel
ayatana-ido
backdown-git
bacon
baloo
baloo-widgets
bandwhich
base
bash
bat
battop
bc
beep
betterdiscord-installer-bin
bind
binutils
bison
blender
blosc
blueberry
blueprint-compiler
bluetooth-autoconnect
bluez
bluez-hid2hci
bluez-libs
bluez-tools
bluez-utils
bonnie++
boost
boost-libs
bottles
bottom
box2d
bpytop
brave-bin
bridge-utils
brightnessctl
brotli
bspwm
btop
btrfs-progs
btscanner
bubblewrap
bucklespring
bzip2
c-ares
ca-certificates
ca-certificates-mozilla
ca-certificates-utils
cabextract
cairo
cairomm
calcurse
calibre
cantarell-fonts
capitaine-cursors
capstone
catgirl
cava
cavalier
cblas
cblas64
ccache
cdparanoia
celt
chafa
chibios
chmlib
chromaprint
chromium
chrono-date
chrpath
cifs-utils
clang
clang13
clipmenu
clipnotify
clisp
cloudflare-warp-bin
cloudflared-bin
clucene
cmake
cocogitto
colord
colorpicker
compiler-rt
confuse
connman
containerd
convertlit
coreutils
cowsay
cpio
cpu-x
cracklib
crictl
critest
crypto++
cryptsetup
ctags
curl
curlie
cython
cython2
dart
dash
dav1d
db
db5.3
dbeaver
dbus
dbus-glib
dbus-python
dconf
debuginfod
default-cursors
deluge
deluge-gtk
deno
desktop-file-utils
device-mapper
devour
dex
dfu-programmer
dfu-util
dhclient
dhcpcd
dialog
diffutils
discord-chat-exporter-cli
discord-ptb
discord-ptb-update-skip-git
discord-rpc-extension-bin
djvulibre
dkms
dmd
dmenu2
dmraid
dnsmasq
dnssec-anchors
docbook-xml
docbook-xsl
docker
docker-compose
doctl
dolphin
dosfstools
dotnet-host
dotnet-runtime
dotnet-runtime-6.0-bin
dotnet-sdk-6.0
dotnet-targeting-pack-6.0
double-conversion
downgrade
doxygen
draco
dragon-drop
droidcam
dtc
duf
duktape
dumb
dunst
dust
e2fsprogs
ebook-tools
editline
edk2-aarch64
edk2-arm
edk2-ovmf
efibootmgr
efivar
eksctl
electron
electron18
electron21
elementary-icon-theme
elfutils
embree
embree3
enchant
endeavouros-theming
entr
eos-translations
ethtool
exa
exercism-bin
exiv2
exo
expat
faad2
faba-icon-theme-git
fakeroot
faudio
fcft
fd
feem
feh
ffcall
ffmpeg
ffmpeg4.4
fftw
figlet
figma-linux-font-helper
file
filesystem
findutils
firefox
flac
flake8
flameshot
flatpak
flatpak-docs
flex
fluidsynth
fmt
focalboard-bin
fontconfig
fontforge
foot
fragments
freecad-appimage
freeglut
freeimage
freetype2
fribidi
fsrx
fuse-common
fuse2
fuse3
fvs
fzf
fzf-tab-git
galculator
garcon
gawk
gc
gcab
gcc
gcc-fortran
gcc-libs
gcr
gcr-4
gd
gdb
gdb-common
gdbm
gdk-pixbuf2
gdu
geany
gendesk
gengetopt
geoclue
geocode-glib
geocode-glib-common
geoip
geoip-database
gestures
gettext
ghc
ghc-libs
ghcid
ghostscript
giflib
girara
git
git-delta
git-lfs
github-cli
gjs
gl2ps
glew
glfw-x11
glib-networking
glib2
glib2-docs
glibc
glibmm
glibmm-2.68
glm
glow
glslang
glu
gmp
gn
gn-m87
gnome-bluetooth
gnome-keyring
gnome-online-accounts
gnome-power-manager
gnome-themes-extra
gnu-netcat
gnupg
gnustep-base
gnutls
go
gobject-introspection
gobject-introspection-runtime
google-chrome
googler
gparted
gperf
gperftools
gpgme
gping
gpm
gptfdisk
graphene
graphicsmagick
graphite
graphviz
grep
grim
groff
grpcurl
grub
grub-customizer
gsettings-desktop-schemas
gsfonts
gsl
gsm
gspell
gssdp
gst-libav
gst-plugins-bad-libs
gst-plugins-base
gst-plugins-base-libs
gst-plugins-good
gstreamer
gtest
gtk-doc
gtk-engine-murrine
gtk-layer-shell
gtk-sharp-2
gtk-sharp-3
gtk-update-icon-cache
gtk-vnc
gtk2
gtk3
gtk4
gtkglext
gtkmm
gtkmm3
gtksourceview3
gtksourceview4
gtksourceview5
gts
guile
gum-git
gumbo-parser
gupnp
gupnp-igd
gvfs
gvfs-afc
gvfs-goa
gvfs-google
gvfs-gphoto2
gvfs-mtp
gvfs-nfs
gvfs-smb
gzip
harfbuzz
harfbuzz-icu
haskell-adjunctions
haskell-aeson
haskell-aeson-pretty
haskell-algebraic-graphs
haskell-annotated-wl-pprint
haskell-ansi-terminal
haskell-ansi-wl-pprint
haskell-appar
haskell-asn1-encoding
haskell-asn1-parse
haskell-asn1-types
haskell-assoc
haskell-async
haskell-attoparsec
haskell-attoparsec-iso8601
haskell-auto-update
haskell-base-compat
haskell-base-compat-batteries
haskell-base-orphans
haskell-base16-bytestring
haskell-base64-bytestring
haskell-basement
haskell-bifunctors
haskell-bitvec
haskell-blaze-builder
haskell-blaze-html
haskell-blaze-markup
haskell-blaze-textual
haskell-byteable
haskell-byteorder
haskell-bytestring-encoding
haskell-call-stack
haskell-casa-client
haskell-casa-types
haskell-case-insensitive
haskell-cereal
haskell-charset
haskell-clock
haskell-cmdargs
haskell-co-log-core
haskell-colour
haskell-commutative-semigroups
haskell-comonad
haskell-conduit
haskell-conduit-extra
haskell-conduit-parse
haskell-connection
haskell-constraints
haskell-constraints-extras
haskell-contravariant
haskell-cookie
haskell-cryptohash-md5
haskell-cryptohash-sha1
haskell-cryptohash-sha256
haskell-cryptonite
haskell-cryptonite-conduit
haskell-data-array-byte
haskell-data-default
haskell-data-default-class
haskell-data-default-instances-containers
haskell-data-default-instances-dlist
haskell-data-default-instances-old-locale
haskell-data-fix
haskell-deferred-folds
haskell-dependent-map
haskell-dependent-sum
haskell-dependent-sum-template
haskell-diff
haskell-digest
haskell-direct-sqlite
haskell-distributive
haskell-dlist
haskell-easy-file
haskell-echo
haskell-ed25519
haskell-enclosed-exceptions
haskell-entropy
haskell-enummapset
haskell-erf
haskell-extra
haskell-fast-logger
haskell-file-embed
haskell-filelock
haskell-filepattern
haskell-fingertree
haskell-focus
haskell-foldl
haskell-free
haskell-fsnotify
haskell-fsnotify0.3
haskell-fuzzy
haskell-generic-deriving
haskell-generically
haskell-ghc-api-compat
haskell-ghc-bignum-orphans
haskell-ghc-check
haskell-ghc-exactprint
haskell-ghc-paths
haskell-ghc-trace-events
haskell-ghcide
haskell-githash
haskell-gitrev
haskell-glob
haskell-hackage-security
haskell-haddock-library
haskell-hashable
haskell-hashtables
haskell-heaps
haskell-heapsize
haskell-hi-file-parser
haskell-hie-bios
haskell-hie-compat
haskell-hiedb
haskell-hinotify
haskell-hls-graph
haskell-hls-plugin-api
haskell-hourglass
haskell-hpack
haskell-hslogger
haskell-http-api-data
haskell-http-client
haskell-http-client-tls
haskell-http-conduit
haskell-http-download
haskell-http-types
haskell-hw-fingertree
haskell-hw-prim
haskell-implicit-hie
haskell-implicit-hie-cradle
haskell-indexed-traversable
haskell-indexed-traversable-instances
haskell-infer-license
haskell-integer-logarithms
haskell-invariant
haskell-iproute
haskell-js-dgtable
haskell-js-flot
haskell-js-jquery
haskell-kan-extensions
haskell-lens
haskell-lens-aeson
haskell-libyaml
haskell-lift-type
haskell-lifted-async
haskell-lifted-base
haskell-list-t
haskell-logict
haskell-lsp
haskell-lsp-test
haskell-lsp-types
haskell-lucid
haskell-lukko
haskell-megaparsec
haskell-memory
haskell-microlens
haskell-microlens-mtl
haskell-microlens-th
haskell-mime-types
haskell-mintty
haskell-mmap
haskell-mmorph
haskell-mod
haskell-monad-control
haskell-monad-logger
haskell-monad-loops
haskell-monadrandom
haskell-mono-traversable
haskell-monoid-subclasses
haskell-mustache
haskell-neat-interpolation
haskell-network
haskell-network-bsd
haskell-network-info
haskell-network-uri
haskell-old-locale
haskell-old-time
haskell-onetuple
haskell-only
haskell-open-browser
haskell-opentelemetry
haskell-optparse-applicative
haskell-optparse-generic
haskell-optparse-simple
haskell-pantry
haskell-parallel
haskell-parser-combinators
haskell-parsers
haskell-path
haskell-path-io
haskell-path-pieces
haskell-pem
haskell-persistent
haskell-persistent-sqlite
haskell-prettyprinter
haskell-prettyprinter-ansi-terminal
haskell-primes
haskell-primitive
haskell-primitive-extras
haskell-primitive-unlifted
haskell-profunctors
haskell-project-template
haskell-quickcheck
haskell-random
haskell-random-shuffle
haskell-reflection
haskell-regex-base
haskell-regex-tdfa
haskell-resource-pool
haskell-resourcet
haskell-retrie
haskell-retry
haskell-rio
haskell-rio-orphans
haskell-rio-prettyprint
haskell-rope-utf16-splay
haskell-safe
haskell-safe-exceptions
haskell-scientific
haskell-semialign
haskell-semigroupoids
haskell-semirings
haskell-shake
haskell-shelly
haskell-silently
haskell-socks
haskell-some
haskell-sorted-list
haskell-split
haskell-splitmix
haskell-sqlite-simple
haskell-src-exts
haskell-statevar
haskell-stm-chans
haskell-stm-containers
haskell-stm-hamt
haskell-streaming-commons
haskell-strict
haskell-syb
haskell-system-filepath
haskell-tagged
haskell-tar
haskell-tar-conduit
haskell-tasty
haskell-tasty-hunit
haskell-temporary
haskell-terminal-size
haskell-text-metrics
haskell-text-rope
haskell-text-short
haskell-th-abstraction
haskell-th-compat
haskell-th-expand-syns
haskell-th-extras
haskell-th-lift
haskell-th-lift-instances
haskell-th-reify-many
haskell-these
haskell-time-compat
haskell-tls
haskell-transformers-base
haskell-transformers-compat
haskell-type-equality
haskell-typed-process
haskell-unbounded-delays
haskell-unicode-data
haskell-unicode-transforms
haskell-unix-compat
haskell-unix-time
haskell-unliftio
haskell-unliftio-core
haskell-unordered-containers
haskell-utf8-string
haskell-uuid
haskell-uuid-types
haskell-vault
haskell-vector
haskell-vector-algorithms
haskell-vector-stream
haskell-void
haskell-wcwidth
haskell-witherable
haskell-x509
haskell-x509-store
haskell-x509-system
haskell-x509-validation
haskell-yaml
haskell-zip-archive
haskell-zlib
haveged
hdf5
hdparm
helix
helm
herbstluftwm
hicolor-icon-theme
hidapi
hideit.sh-git
highway
hiredis
htop
http-parser
httpie
hunspell
hwdata
hwloc
hyperfine
hyphen
hyprland-bin
hyprpaper-git
i3-wm
i3lock-color
i8086emu-git
iana-etc
icoextract
icu
ijs
imagemagick
imath
imlib2
indicator-kdeconnect-git
inetutils
inframap
iniparser
inkscape
inotify-tools
insect
insomnia-bin
intel-oneapi-common
intel-oneapi-compiler-dpcpp-cpp-runtime
intel-oneapi-compiler-dpcpp-cpp-runtime-libs
intel-oneapi-compiler-shared-opencl-cpu
intel-oneapi-compiler-shared-runtime
intel-oneapi-compiler-shared-runtime-libs
intel-oneapi-openmp
intel-oneapi-tbb
intltool
inxi
iproute2
ipscan
iptables
iputils
ipython
iso-codes
iw
jack2
jansson
jasper
java-environment-common
java-runtime-common
jbig2dec
jdk-openjdk
jdk8-openjdk
jemalloc
jless
jq
jre-openjdk
jre-openjdk-headless
jre17-openjdk
jre17-openjdk-headless
jre8-openjdk
jre8-openjdk-headless
js102
js78
js91
json-c
json-glib
jsoncpp
judy
julia
just
jxrlib
k6
k8sh-git
k9s
kactivities
kalker
karchive
kauth
kbd
kbookmarks
kcmutils
kcodecs
kcompletion
kconfig
kconfigwidgets
kcontacts
kcoreaddons
kcrash
kdbusaddons
kdeclarative
kdeconnect
kded
kdnssd
kdsoap
kdsoap-ws-discovery-client
keyring
keystone
keyutils
kfilemetadata
kglobalaccel
kguiaddons
ki18n
kicad
kicad-library-3d
kiconthemes
kidletime
kind-bin
kio
kio-extras
kirigami-addons
kirigami2
kitemviews
kitty
kitty-shell-integration
kitty-terminfo
kjobwidgets
kmod
kmonad-bin
knewstuff
knotifications
kodelife
kompose
kpackage
kparts
kpeople
kpeoplevcard
krb5
kservice
ktextwidgets
kubeadm
kubectl
kubectx
kubenav-bin
kubeval
kuserfeedback
kustomize
kwallet
kwayland
kwidgetsaddons
kwindowsystem
kxmlgui
l-smash
lame
lapack
lapack64
lavat-git
lazygit
lcms2
ldb
ldns
leptonica
less
level-zero-loader
lhasa
lib2geom
lib32-acl
lib32-attr
lib32-brotli
lib32-bzip2
lib32-curl
lib32-dbus
lib32-e2fsprogs
lib32-expat
lib32-faudio
lib32-fontconfig
lib32-freetype2
lib32-gcc-libs
lib32-gettext
lib32-glib2
lib32-glibc
lib32-glu
lib32-gmp
lib32-gnutls
lib32-harfbuzz
lib32-icu
lib32-keyutils
lib32-krb5
lib32-lcms2
lib32-libcap
lib32-libdrm
lib32-libelf
lib32-libffi
lib32-libgcrypt
lib32-libglvnd
lib32-libgpg-error
lib32-libice
lib32-libidn2
lib32-libjpeg-turbo
lib32-libldap
lib32-libnl
lib32-libpcap
lib32-libpciaccess
lib32-libpng
lib32-libpsl
lib32-libsm
lib32-libssh2
lib32-libstdc++5
lib32-libtasn1
lib32-libtiff
lib32-libtirpc
lib32-libunistring
lib32-libunwind
lib32-libx11
lib32-libxau
lib32-libxcb
lib32-libxcrypt
lib32-libxcursor
lib32-libxdamage
lib32-libxdmcp
lib32-libxext
lib32-libxfixes
lib32-libxi
lib32-libxml2
lib32-libxrandr
lib32-libxrender
lib32-libxshmfence
lib32-libxxf86vm
lib32-llvm-libs
lib32-lm_sensors
lib32-mesa
lib32-ncurses
lib32-nettle
lib32-nspr
lib32-nss
lib32-openssl
lib32-openssl-1.0
lib32-p11-kit
lib32-pam
lib32-pcre
lib32-pcre2
lib32-readline
lib32-sdl2
lib32-sqlite
lib32-systemd
lib32-util-linux
lib32-vulkan-icd-loader
lib32-wayland
lib32-xz
lib32-zlib
lib32-zstd
lib3mf-1
libabw
libadwaita
libaec
libaio
libao
libappindicator-gtk3
libarchive
libass
libassuan
libasyncns
libatasmart
libatomic_ops
libavc1394
libavif
libayatana-appindicator
libayatana-indicator
libb2
libb64
libblastrampoline
libblockdev
libbluray
libbpf
libbs2b
libbsd
libburn