-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapps.md
2649 lines (2622 loc) · 921 KB
/
apps.md
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
# APPLICATIONS
| [Home](index.md) |
| --- |
#### Here are listed all **2514** unique applications, AppImage packages and command line utilities managed by [AM](https://github.com/ivan-hc/AM) and [AppMan](https://github.com/ivan-hc/AppMan) for the x86_64 architecture, plus **79** more entries and items to help you install apps more easily.
*Use your browser's built-in search tool to easily navigate to this page or use the tags below.*
#### *Categories*
***[AppImages](appimages.md)*** - ***[android](android.md)*** - ***[audio](audio.md)*** - ***[comic](comic.md)*** - ***[command-line](command-line.md)*** - ***[communication](communication.md)*** - ***[disk](disk.md)*** - ***[education](education.md)*** - ***[file-manager](file-manager.md)*** - ***[finance](finance.md)*** - ***[game](game.md)*** - ***[gnome](gnome.md)*** - ***[graphic](graphic.md)*** - ***[internet](internet.md)*** - ***[kde](kde.md)*** - ***[office](office.md)*** - ***[password](password.md)*** - ***[steam](steam.md)*** - ***[system-monitor](system-monitor.md)*** - ***[video](video.md)*** - ***[web-app](web-app.md)*** - ***[web-browser](web-browser.md)*** - ***[wine](wine.md)***
-----------------
*NOTE, the installer scripts in the "INSTALLER" column are intended for use via "AM", and are therefore dedicated to a system-wide installation of applications (in /opt), and all that "AppMan" does is convert those scripts for local installation, changing the paths. **They are listed here for reading purposes only**!*
*Should you decide to run them manually, the only way to remove the application is to run the command "`sudo /opt/appname/remove`", where "appname" is the name of the application directory containing the "remove" script. Likewise, you can also update applications by running the "AM-updater" script in the same directory.*
*The "AM" project allow the autonomy of installed apps, regardless of the presence of "AM" itself in the system. However, it is strongly recommended to use "AM" and "AppMan" to take full advantage of all the benefits you could get from an application installed in this way.*
*If you are here just to download apps manually, click on the program name and check the URL(s) on the application page. This site does not provide direct links, for security reasons, but it does provide the exact sources and references where you can find them!*
*Transparency and credibility are the focus of this catalog. Happy exploring!*
-----------------
| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER |
| --- | --- | --- | --- |
| <img src="icons/0ad-latest.png" width="48" height="48"> | [***0ad-latest***](apps/0ad-latest.md) | *Unofficial. Real Time Strategy game of ancient warfare, development branch.*..[ *read more* ](apps/0ad-latest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/0ad-latest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/0ad-latest) |
| <img src="icons/0ad.png" width="48" height="48"> | [***0ad***](apps/0ad.md) | *Unofficial. FOSS historical Real Time Strategy, RTS game of ancient warfare.*..[ *read more* ](apps/0ad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/0ad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/0ad) |
| <img src="icons/3d-puzzles.png" width="48" height="48"> | [***3d-puzzles***](apps/3d-puzzles.md) | *3D-Puzzles are Rubik, Dogic and Dogic12.*..[ *read more* ](apps/3d-puzzles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/3d-puzzles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/3d-puzzles) |
| <img src="icons/432hz-player.png" width="48" height="48"> | [***432hz-player***](apps/432hz-player.md) | *Because most music is recorded in 440hz, Audio Player.*..[ *read more* ](apps/432hz-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/432hz-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/432hz-player) |
| <img src="icons/7zip.png" width="48" height="48"> | [***7zip***](apps/7zip.md) | *7-Zip is a file archiver with a high compression ratio.*..[ *read more* ](apps/7zip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/7zip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/7zip) |
| <img src="icons/86box.png" width="48" height="48"> | [***86box***](apps/86box.md) | *Emulator of x86-based machines based on PCem.*..[ *read more* ](apps/86box.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/86box) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/86box) |
| <img src="icons/9launcher.png" width="48" height="48"> | [***9launcher***](apps/9launcher.md) | *An actively maintained and cross platform remake of Touhou Relauncher.*..[ *read more* ](apps/9launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/9launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/9launcher) |
| <img src="icons/aaaaxy.png" width="48" height="48"> | [***aaaaxy***](apps/aaaaxy.md) | *A nonlinear puzzle platformer, game.*..[ *read more* ](apps/aaaaxy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aaaaxy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aaaaxy) |
| <img src="icons/abiword.png" width="48" height="48"> | [***abiword***](apps/abiword.md) | *Unofficial. A light and free word processing software.*..[ *read more* ](apps/abiword.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/abiword) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/abiword) |
| <img src="icons/accessimap-lecteur-der.png" width="48" height="48"> | [***accessimap-lecteur-der***](apps/accessimap-lecteur-der.md) | *Accessimap Lecteur DER.*..[ *read more* ](apps/accessimap-lecteur-der.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/accessimap-lecteur-der) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/accessimap-lecteur-der) |
| <img src="icons/acreom.png" width="48" height="48"> | [***acreom***](apps/acreom.md) | *Acreom desktop app releases.*..[ *read more* ](apps/acreom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/acreom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/acreom) |
| <img src="icons/actual.png" width="48" height="48"> | [***actual***](apps/actual.md) | *A super fast privacy-focused app for managing your finances.*..[ *read more* ](apps/actual.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/actual) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/actual) |
| <img src="icons/adb.png" width="48" height="48"> | [***adb***](apps/adb.md) | *Android Debug Bridge, a command line utility to handle Android devices. This script installs the full "platform-tools" suite.*..[ *read more* ](apps/adb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/adb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/adb) |
| <img src="icons/admin-tools.png" width="48" height="48"> | [***admin-tools***](apps/admin-tools.md) | *Administrative tools.*..[ *read more* ](apps/admin-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/admin-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/admin-tools) |
| <img src="icons/advanced-passgen.png" width="48" height="48"> | [***advanced-passgen***](apps/advanced-passgen.md) | *Advanced Password Generator.*..[ *read more* ](apps/advanced-passgen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/advanced-passgen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/advanced-passgen) |
| <img src="icons/advanced-rest-client.png" width="48" height="48"> | [***advanced-rest-client***](apps/advanced-rest-client.md) | *Advanced REST Client and API console, by Mulesoft.*..[ *read more* ](apps/advanced-rest-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/advanced-rest-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/advanced-rest-client) |
| <img src="icons/afetch.png" width="48" height="48"> | [***afetch***](apps/afetch.md) | *A CLI system information tool written in Rust.*..[ *read more* ](apps/afetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/afetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/afetch) |
| <img src="icons/affine-beta.png" width="48" height="48"> | [***affine-beta***](apps/affine-beta.md) | *Next-gen knowledge base that brings planning, sorting and creating.*..[ *read more* ](apps/affine-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/affine-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/affine-beta) |
| <img src="icons/affine-canary.png" width="48" height="48"> | [***affine-canary***](apps/affine-canary.md) | *Next-gen knowledge base that brings planning/sorting/creating.*..[ *read more* ](apps/affine-canary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/affine-canary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/affine-canary) |
| <img src="icons/affine.png" width="48" height="48"> | [***affine***](apps/affine.md) | *Next-gen knowledge base that brings planning, sorting and creating.*..[ *read more* ](apps/affine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/affine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/affine) |
| <img src="icons/agregore.png" width="48" height="48"> | [***agregore***](apps/agregore.md) | *A minimal browser for the distributed web, Desktop version.*..[ *read more* ](apps/agregore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/agregore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/agregore) |
| <img src="icons/ai-bot-workspace.png" width="48" height="48"> | [***ai-bot-workspace***](apps/ai-bot-workspace.md) | *Electron app including testing workspaces.*..[ *read more* ](apps/ai-bot-workspace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ai-bot-workspace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ai-bot-workspace) |
| <img src="icons/aichat.png" width="48" height="48"> | [***aichat***](apps/aichat.md) | *AIO AI CLI tool integrating 20+ AI platforms, including OpenAI.*..[ *read more* ](apps/aichat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aichat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aichat) |
| <img src="icons/aidm.png" width="48" height="48"> | [***aidm***](apps/aidm.md) | *AppImage Desktop Maker.*..[ *read more* ](apps/aidm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aidm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aidm) |
| <img src="icons/aillio-ts.png" width="48" height="48"> | [***aillio-ts***](apps/aillio-ts.md) | *The desktop application for Aillio Bullet R1.*..[ *read more* ](apps/aillio-ts.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aillio-ts) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aillio-ts) |
| <img src="icons/aim.png" width="48" height="48"> | [***aim***](apps/aim.md) | *A command line download/upload tool with resume.*..[ *read more* ](apps/aim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aim) |
| <img src="icons/aiming-pro.png" width="48" height="48"> | [***aiming-pro***](apps/aiming-pro.md) | *Aim trainer to practice, train and improve their FPS aim skills.*..[ *read more* ](apps/aiming-pro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aiming-pro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aiming-pro) |
| <img src="icons/air-controller-desktop.png" width="48" height="48"> | [***air-controller-desktop***](apps/air-controller-desktop.md) | *Android phone assistant,powered by Flutter.*..[ *read more* ](apps/air-controller-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/air-controller-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/air-controller-desktop) |
| <img src="icons/airspaces.png" width="48" height="48"> | [***airspaces***](apps/airspaces.md) | *An online map for your X-Plane flight sessions.*..[ *read more* ](apps/airspaces.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/airspaces) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/airspaces) |
| <img src="icons/aisap.png" width="48" height="48"> | [***aisap***](apps/aisap.md) | *Tool to make sandboxing AppImages easy through bwrap/bubblewrap.*..[ *read more* ](apps/aisap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aisap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aisap) |
| <img src="icons/aisleriot.png" width="48" height="48"> | [***aisleriot***](apps/aisleriot.md) | *Unofficial. A card game featuring over 80 different solitaire-type card games.*..[ *read more* ](apps/aisleriot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aisleriot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aisleriot) |
| <img src="icons/akasha.png" width="48" height="48"> | [***akasha***](apps/akasha.md) | *AKASHA community client.*..[ *read more* ](apps/akasha.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/akasha) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/akasha) |
| <img src="icons/akuse.png" width="48" height="48"> | [***akuse***](apps/akuse.md) | *Simple and easy to use anime streaming desktop app without ads.*..[ *read more* ](apps/akuse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/akuse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/akuse) |
| <img src="icons/albafetch.png" width="48" height="48"> | [***albafetch***](apps/albafetch.md) | *CLI, faster neofetch alternative, written in C. Still improving.*..[ *read more* ](apps/albafetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/albafetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/albafetch) |
| <img src="icons/alduin.png" width="48" height="48"> | [***alduin***](apps/alduin.md) | *An Atom and RSS feed aggregator.*..[ *read more* ](apps/alduin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alduin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alduin) |
| <img src="icons/alephium-wallet.png" width="48" height="48"> | [***alephium-wallet***](apps/alephium-wallet.md) | *The official Alephium wallet for desktop.*..[ *read more* ](apps/alephium-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alephium-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alephium-wallet) |
| <img src="icons/alexandria.png" width="48" height="48"> | [***alexandria***](apps/alexandria.md) | *eBook reader built with Tauri, Epub.js, and Typescript.*..[ *read more* ](apps/alexandria.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alexandria) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alexandria) |
| <img src="icons/alien-tec-ui.png" width="48" height="48"> | [***alien-tec-ui***](apps/alien-tec-ui.md) | *Alien-Tec Tron Matrix Like Shell Terminal User Interface.*..[ *read more* ](apps/alien-tec-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alien-tec-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alien-tec-ui) |
| <img src="icons/allusion.png" width="48" height="48"> | [***allusion***](apps/allusion.md) | *A desktop application for managing your visual library.*..[ *read more* ](apps/allusion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/allusion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/allusion) |
| <img src="icons/alpine-flatimage.png" width="48" height="48"> | [***alpine-flatimage***](apps/alpine-flatimage.md) | *A hybrid of Flatpak sandboxing with AppImage portability.*..[ *read more* ](apps/alpine-flatimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alpine-flatimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alpine-flatimage) |
| <img src="icons/altair.png" width="48" height="48"> | [***altair***](apps/altair.md) | *The best graphQL client you will ever need.*..[ *read more* ](apps/altair.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altair) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altair) |
| <img src="icons/altitude.png" width="48" height="48"> | [***altitude***](apps/altitude.md) | *The Altitude wallet by Linda Project Inc.*..[ *read more* ](apps/altitude.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altitude) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altitude) |
| <img src="icons/altus.png" width="48" height="48"> | [***altus***](apps/altus.md) | *Client for WhatsApp Web with themes & multiple account support.*..[ *read more* ](apps/altus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altus) |
| <img src="icons/alvr.png" width="48" height="48"> | [***alvr***](apps/alvr.md) | *Stream VR games from your PC to your headset via Wi-Fi.*..[ *read more* ](apps/alvr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alvr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alvr) |
| <img src="icons/amazingmarvin.png" width="48" height="48"> | [***amazingmarvin***](apps/amazingmarvin.md) | *Incorporates principles from behavioral psychology.*..[ *read more* ](apps/amazingmarvin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amazingmarvin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amazingmarvin) |
| <img src="icons/ambermoon.net.png" width="48" height="48"> | [***ambermoon.net***](apps/ambermoon.net.md) | *Ambermoon rewrite in C#.*..[ *read more* ](apps/ambermoon.net.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ambermoon.net) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ambermoon.net) |
| <img src="icons/amdgpu_top.png" width="48" height="48"> | [***amdgpu_top***](apps/amdgpu_top.md) | *Tool to display AMDGPU usage.*..[ *read more* ](apps/amdgpu_top.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amdgpu_top) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amdgpu_top) |
| <img src="icons/amfora.png" width="48" height="48"> | [***amfora***](apps/amfora.md) | *A fancy terminal browser for the Gemini protocol.*..[ *read more* ](apps/amfora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amfora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amfora) |
| <img src="icons/amusiz.png" width="48" height="48"> | [***amusiz***](apps/amusiz.md) | *Unofficial and unpretentious Amazon Music client.*..[ *read more* ](apps/amusiz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amusiz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amusiz) |
| <img src="icons/anavis.png" width="48" height="48"> | [***anavis***](apps/anavis.md) | *Tool to visualize musical form.*..[ *read more* ](apps/anavis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anavis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anavis) |
| <img src="icons/anchor.png" width="48" height="48"> | [***anchor***](apps/anchor.md) | *An EOSIO Light Wallet with simple and advanced tools.*..[ *read more* ](apps/anchor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anchor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anchor) |
| <img src="icons/android-knot.png" width="48" height="48"> | [***android-knot***](apps/android-knot.md) | *An Android gadget integrating Todo, Notes, Reader and more.*..[ *read more* ](apps/android-knot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-knot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-knot) |
| <img src="icons/android-messages-desktop.png" width="48" height="48"> | [***android-messages-desktop***](apps/android-messages-desktop.md) | *Messages for web, as a desktop app.*..[ *read more* ](apps/android-messages-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-messages-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-messages-desktop) |
| <img src="icons/android-studio-latest.png" width="48" height="48"> | [***android-studio-latest***](apps/android-studio-latest.md) | *Unofficial. Android Studio as AppImages, release.*..[ *read more* ](apps/android-studio-latest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-studio-latest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-studio-latest) |
| <img src="icons/android-studio.png" width="48" height="48"> | [***android-studio***](apps/android-studio.md) | *Unofficial. Android Studio as AppImages, stable.*..[ *read more* ](apps/android-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-studio) |
| <img src="icons/android-tools.png" width="48" height="48"> | [***android-tools***](apps/android-tools.md) | *Unofficial AppImage for the Android Platform tools, adb, fastboot, etc.*..[ *read more* ](apps/android-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-tools) |
| <img src="icons/ani-cli.png" width="48" height="48"> | [***ani-cli***](apps/ani-cli.md) | *A cli tool to browse and play anime.*..[ *read more* ](apps/ani-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ani-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ani-cli) |
| <img src="icons/animashooter-junior.png" width="48" height="48"> | [***animashooter-junior***](apps/animashooter-junior.md) | *User-friendly Stop-Motion Animation Software, FREE.*..[ *read more* ](apps/animashooter-junior.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animashooter-junior) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animashooter-junior) |
| <img src="icons/animashooter-pioneer.png" width="48" height="48"> | [***animashooter-pioneer***](apps/animashooter-pioneer.md) | *User-friendly Stop-Motion Animation Software, PRO.*..[ *read more* ](apps/animashooter-pioneer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animashooter-pioneer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animashooter-pioneer) |
| <img src="icons/animos.png" width="48" height="48"> | [***animos***](apps/animos.md) | *Anime-streaming desktop application without any ads.*..[ *read more* ](apps/animos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animos) |
| <img src="icons/aniship.png" width="48" height="48"> | [***aniship***](apps/aniship.md) | *Allows for easy viewing of anime on PCs and laptops.*..[ *read more* ](apps/aniship.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aniship) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aniship) |
| <img src="icons/ankama-launcher.png" width="48" height="48"> | [***ankama-launcher***](apps/ankama-launcher.md) | *Ankama is an entertainment and digital creation group.*..[ *read more* ](apps/ankama-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ankama-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ankama-launcher) |
| <img src="icons/anki.png" width="48" height="48"> | [***anki***](apps/anki.md) | *Anki's shared backend and web components, and the Qt frontend.*..[ *read more* ](apps/anki.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anki) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anki) |
| <img src="icons/anklang.png" width="48" height="48"> | [***anklang***](apps/anklang.md) | *MIDI and Audio Synthesizer and Composer.*..[ *read more* ](apps/anklang.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anklang) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anklang) |
| <img src="icons/another-redis-desktop-manager.png" width="48" height="48"> | [***another-redis-desktop-manager***](apps/another-redis-desktop-manager.md) | *Faster and better redis desktop manager.*..[ *read more* ](apps/another-redis-desktop-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/another-redis-desktop-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/another-redis-desktop-manager) |
| <img src="icons/antares.png" width="48" height="48"> | [***antares***](apps/antares.md) | *An useful SQL client based on Electron.js and Vue.js.*..[ *read more* ](apps/antares.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antares) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antares) |
| <img src="icons/ant-downloader.png" width="48" height="48"> | [***ant-downloader***](apps/ant-downloader.md) | *BitTorrent Client developed by golang, angular, electron.*..[ *read more* ](apps/ant-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ant-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ant-downloader) |
| <img src="icons/antidot.png" width="48" height="48"> | [***antidot***](apps/antidot.md) | *Cleans up your $HOME from those pesky dotfiles.*..[ *read more* ](apps/antidot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antidot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antidot) |
| <img src="icons/antimicrox.png" width="48" height="48"> | [***antimicrox***](apps/antimicrox.md) | *Use a gamepad to control a variety of programs.*..[ *read more* ](apps/antimicrox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antimicrox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antimicrox) |
| <img src="icons/anydesk.png" width="48" height="48"> | [***anydesk***](apps/anydesk.md) | *Unofficial. Remote desktop application distributed.*..[ *read more* ](apps/anydesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anydesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anydesk) |
| <img src="icons/anything-llm.png" width="48" height="48"> | [***anything-llm***](apps/anything-llm.md) | *AI business intelligence tool. Any LLM, any document.*..[ *read more* ](apps/anything-llm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anything-llm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anything-llm) |
| <img src="icons/anytype.png" width="48" height="48"> | [***anytype***](apps/anytype.md) | *The everything app for those who celebrate trust & autonomy.*..[ *read more* ](apps/anytype.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anytype) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anytype) |
| <img src="icons/anzeigenchef.png" width="48" height="48"> | [***anzeigenchef***](apps/anzeigenchef.md) | *AdsChef manages your classified ads.*..[ *read more* ](apps/anzeigenchef.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anzeigenchef) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anzeigenchef) |
| <img src="icons/aphelion-wallet.png" width="48" height="48"> | [***aphelion-wallet***](apps/aphelion-wallet.md) | *Aphelion desktop wallet application built with Electron.*..[ *read more* ](apps/aphelion-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aphelion-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aphelion-wallet) |
| <img src="icons/aphototoollibre.png" width="48" height="48"> | [***aphototoollibre***](apps/aphototoollibre.md) | *Photo editing app for GNU/Linux.*..[ *read more* ](apps/aphototoollibre.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aphototoollibre) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aphototoollibre) |
| <img src="icons/apifox.png" width="48" height="48"> | [***apifox***](apps/apifox.md) | *API manager, in chinese. 文档、API 调试、API Mock、API 自动化测试*..[ *read more* ](apps/apifox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apifox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apifox) |
| <img src="icons/apk-editor-studio.png" width="48" height="48"> | [***apk-editor-studio***](apps/apk-editor-studio.md) | *Easy to use APK, Android reverse-engineering tool.*..[ *read more* ](apps/apk-editor-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apk-editor-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apk-editor-studio) |
| <img src="icons/apla.png" width="48" height="48"> | [***apla***](apps/apla.md) | *Project was bootstrapped with Create React App.*..[ *read more* ](apps/apla.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apla) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apla) |
| <img src="icons/appflowy.png" width="48" height="48"> | [***appflowy***](apps/appflowy.md) | *Bring projects, wikis, and teams together with AI. Alternative to Notion.*..[ *read more* ](apps/appflowy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appflowy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appflowy) |
| <img src="icons/apphub.png" width="48" height="48"> | [***apphub***](apps/apphub.md) | *App that simplifies installation/management of .appImage packages.*..[ *read more* ](apps/apphub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apphub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apphub) |
| <img src="icons/appimage-builder.png" width="48" height="48"> | [***appimage-builder***](apps/appimage-builder.md) | *GNU/Linux packaging solution using the AppImage format.*..[ *read more* ](apps/appimage-builder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimage-builder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimage-builder) |
| <img src="icons/appimagecraft.png" width="48" height="48"> | [***appimagecraft***](apps/appimagecraft.md) | *Powerful build script generator with a focus on AppImages.*..[ *read more* ](apps/appimagecraft.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagecraft) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagecraft) |
| <img src="icons/appimagehelper.png" width="48" height="48"> | [***appimagehelper***](apps/appimagehelper.md) | *Create and organize shortcuts for AppImages.*..[ *read more* ](apps/appimagehelper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagehelper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagehelper) |
| <img src="icons/appimagelauncher.png" width="48" height="48"> | [***appimagelauncher***](apps/appimagelauncher.md) | *CLI helper for running and integrating AppImages.*..[ *read more* ](apps/appimagelauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagelauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagelauncher) |
| <img src="icons/appimagelint.png" width="48" height="48"> | [***appimagelint***](apps/appimagelint.md) | *Check AppImages for compatibility, best practices etc.*..[ *read more* ](apps/appimagelint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagelint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagelint) |
| <img src="icons/appimagen.png" width="48" height="48"> | [***appimagen***](apps/appimagen.md) | *A script that generates a custom AppImage from a PPA.*..[ *read more* ](apps/appimagen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagen) |
| <img src="icons/appimagepool.png" width="48" height="48"> | [***appimagepool***](apps/appimagepool.md) | *A simple, modern AppImageHub Client, powered by flutter.*..[ *read more* ](apps/appimagepool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagepool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagepool) |
| <img src="icons/appimagetool.png" width="48" height="48"> | [***appimagetool***](apps/appimagetool.md) | *Tool to generate an AppImage from an existing AppDir.*..[ *read more* ](apps/appimagetool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagetool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagetool) |
| <img src="icons/appimageupdater.png" width="48" height="48"> | [***appimageupdater***](apps/appimageupdater.md) | *AppImage Updater for Humans built with QML/C++ with Qt5.*..[ *read more* ](apps/appimageupdater.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimageupdater) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimageupdater) |
| <img src="icons/appimageupdatetool.png" width="48" height="48"> | [***appimageupdatetool***](apps/appimageupdatetool.md) | *Tool to update an AppImage using embedded information.*..[ *read more* ](apps/appimageupdatetool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimageupdatetool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimageupdatetool) |
| <img src="icons/appimageupdate.png" width="48" height="48"> | [***appimageupdate***](apps/appimageupdate.md) | *Tool to update an AppImage using embedded information.*..[ *read more* ](apps/appimageupdate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimageupdate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimageupdate) |
| <img src="icons/appinstall.png" width="48" height="48"> | [***appinstall***](apps/appinstall.md) | *AppImage Installer, a tool integrate AppImages to a linux desktop environment.*..[ *read more* ](apps/appinstall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appinstall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appinstall) |
| <img src="icons/appium-desktop.png" width="48" height="48"> | [***appium-desktop***](apps/appium-desktop.md) | *Graphical interface for the Appium server.*..[ *read more* ](apps/appium-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appium-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appium-desktop) |
| <img src="icons/app-outlet.png" width="48" height="48"> | [***app-outlet***](apps/app-outlet.md) | *A Universal linux app store for Flatpak/Snap/AppImage.*..[ *read more* ](apps/app-outlet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/app-outlet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/app-outlet) |
| <img src="icons/aptakube.png" width="48" height="48"> | [***aptakube***](apps/aptakube.md) | *A modern and lightweight Kubernetes desktop client.*..[ *read more* ](apps/aptakube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aptakube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aptakube) |
| <img src="icons/aptly.png" width="48" height="48"> | [***aptly***](apps/aptly.md) | *Debian repository management CLI tool.*..[ *read more* ](apps/aptly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aptly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aptly) |
| <img src="icons/apx-gcs.png" width="48" height="48"> | [***apx-gcs***](apps/apx-gcs.md) | *APX Ground Control.*..[ *read more* ](apps/apx-gcs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apx-gcs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apx-gcs) |
| <img src="icons/aranym.png" width="48" height="48"> | [***aranym***](apps/aranym.md) | *Virtual Machine for Atari 32-bit applications.*..[ *read more* ](apps/aranym.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aranym) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aranym) |
| <img src="icons/arcade-manager.png" width="48" height="48"> | [***arcade-manager***](apps/arcade-manager.md) | *Manage your rom collection, Games/Retropie & Recalbox.*..[ *read more* ](apps/arcade-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arcade-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arcade-manager) |
| <img src="icons/arch-deployer.png" width="48" height="48"> | [***arch-deployer***](apps/arch-deployer.md) | *Script to convert Arch Linux packages to AppDir/AppImage.*..[ *read more* ](apps/arch-deployer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arch-deployer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arch-deployer) |
| <img src="icons/arch-flatimage.png" width="48" height="48"> | [***arch-flatimage***](apps/arch-flatimage.md) | *A hybrid of Flatpak sandboxing with AppImage portability.*..[ *read more* ](apps/arch-flatimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arch-flatimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arch-flatimage) |
| <img src="icons/archimage-cli.png" width="48" height="48"> | [***archimage-cli***](apps/archimage-cli.md) | *Build AppImage packages using JuNest, Arch Linux.*..[ *read more* ](apps/archimage-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archimage-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archimage-cli) |
| <img src="icons/archimede.png" width="48" height="48"> | [***archimede***](apps/archimede.md) | *Unobtrusive directory information fetcher.*..[ *read more* ](apps/archimede.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archimede) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archimede) |
| <img src="icons/archipelago.png" width="48" height="48"> | [***archipelago***](apps/archipelago.md) | *Archipelago Multi-Game Randomizer and Server.*..[ *read more* ](apps/archipelago.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archipelago) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archipelago) |
| <img src="icons/archipel.png" width="48" height="48"> | [***archipel***](apps/archipel.md) | *Decentralized archiving and media library system.*..[ *read more* ](apps/archipel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archipel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archipel) |
| <img src="icons/archisteamfarm.png" width="48" height="48"> | [***archisteamfarm***](apps/archisteamfarm.md) | *C# application with primary purpose of farming Steam cards from multiple accounts simultaneously.*..[ *read more* ](apps/archisteamfarm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archisteamfarm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archisteamfarm) |
| <img src="icons/arduino-ide.png" width="48" height="48"> | [***arduino-ide***](apps/arduino-ide.md) | *Open-source electronics platform.*..[ *read more* ](apps/arduino-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arduino-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arduino-ide) |
| <img src="icons/arena-tracker.png" width="48" height="48"> | [***arena-tracker***](apps/arena-tracker.md) | *Deck Tracker for Hearthstone game with arena in focus.*..[ *read more* ](apps/arena-tracker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arena-tracker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arena-tracker) |
| <img src="icons/aretext.png" width="48" height="48"> | [***aretext***](apps/aretext.md) | *Minimalist text editor with vim-compatible key bindings.*..[ *read more* ](apps/aretext.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aretext) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aretext) |
| <img src="icons/arkaway.png" width="48" height="48"> | [***arkaway***](apps/arkaway.md) | *Another Arkanoid clone and make with Pyxel.*..[ *read more* ](apps/arkaway.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arkaway) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arkaway) |
| <img src="icons/ark.desktop.wallet.png" width="48" height="48"> | [***ark.desktop.wallet***](apps/ark.desktop.wallet.md) | *Ark Ecosystem Desktop Wallet.*..[ *read more* ](apps/ark.desktop.wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ark.desktop.wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ark.desktop.wallet) |
| <img src="icons/ark.png" width="48" height="48"> | [***ark***](apps/ark.md) | *Unofficial. Archiving tool for .zip/.tar/.rar and more. This script installs the full "kdeutils" suite.*..[ *read more* ](apps/ark.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ark) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ark) |
| <img src="icons/arma3-unix-launcher.png" width="48" height="48"> | [***arma3-unix-launcher***](apps/arma3-unix-launcher.md) | *ArmA 3 Unix Launcher, game.*..[ *read more* ](apps/arma3-unix-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arma3-unix-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arma3-unix-launcher) |
| <img src="icons/armagetronad.png" width="48" height="48"> | [***armagetronad***](apps/armagetronad.md) | *Multiplayer game in 3d that emulates the movie "Tron".*..[ *read more* ](apps/armagetronad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/armagetronad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/armagetronad) |
| <img src="icons/armcord.png" width="48" height="48"> | [***armcord***](apps/armcord.md) | *Custom client designed to enhance your Discord experience.*..[ *read more* ](apps/armcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/armcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/armcord) |
| <img src="icons/around.png" width="48" height="48"> | [***around***](apps/around.md) | *Video calls designed for energy, ideas and action.*..[ *read more* ](apps/around.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/around) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/around) |
| <img src="icons/artifact.png" width="48" height="48"> | [***artifact***](apps/artifact.md) | *Win 40 levels of mayhem without getting destroyed, game.*..[ *read more* ](apps/artifact.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/artifact) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/artifact) |
| <img src="icons/artisan.png" width="48" height="48"> | [***artisan***](apps/artisan.md) | *Visualizes the coffee roasting process.*..[ *read more* ](apps/artisan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/artisan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/artisan) |
| <img src="icons/artix.png" width="48" height="48"> | [***artix***](apps/artix.md) | *One app. All your favorite Artix games.*..[ *read more* ](apps/artix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/artix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/artix) |
| <img src="icons/asarui.png" width="48" height="48"> | [***asarui***](apps/asarui.md) | *UI for Asar.*..[ *read more* ](apps/asarui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/asarui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/asarui) |
| <img src="icons/asgardex.png" width="48" height="48"> | [***asgardex***](apps/asgardex.md) | *Thorchain wallet desktop app.*..[ *read more* ](apps/asgardex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/asgardex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/asgardex) |
| <img src="icons/astroffers.png" width="48" height="48"> | [***astroffers***](apps/astroffers.md) | *Take offers to watch at given nights by the NGC2000 catalog.*..[ *read more* ](apps/astroffers.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/astroffers) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/astroffers) |
| <img src="icons/astrofox.png" width="48" height="48"> | [***astrofox***](apps/astrofox.md) | *Audio reactive motion graphics program.*..[ *read more* ](apps/astrofox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/astrofox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/astrofox) |
| <img src="icons/astroshutter.png" width="48" height="48"> | [***astroshutter***](apps/astroshutter.md) | *Ui to control your camera for astrophotography.*..[ *read more* ](apps/astroshutter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/astroshutter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/astroshutter) |
| <img src="icons/asunder.png" width="48" height="48"> | [***asunder***](apps/asunder.md) | *Unofficial. Audio CD ripper and encoder, WAV, MP3, OGG, FLAC, Opus, AAC....*..[ *read more* ](apps/asunder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/asunder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/asunder) |
| <img src="icons/atomicwallet.png" width="48" height="48"> | [***atomicwallet***](apps/atomicwallet.md) | *Atomic vue-electron.*..[ *read more* ](apps/atomicwallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/atomicwallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/atomicwallet) |
| <img src="icons/atuin.png" width="48" height="48"> | [***atuin***](apps/atuin.md) | *Magical shell history.*..[ *read more* ](apps/atuin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/atuin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/atuin) |
| <img src="icons/audacious.png" width="48" height="48"> | [***audacious***](apps/audacious.md) | *Unofficial. An open source audio and music player, descendant of XMMS.*..[ *read more* ](apps/audacious.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audacious) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audacious) |
| <img src="icons/audacity.png" width="48" height="48"> | [***audacity***](apps/audacity.md) | *Multiplatform Audio Editor.*..[ *read more* ](apps/audacity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audacity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audacity) |
| <img src="icons/audapolis.png" width="48" height="48"> | [***audapolis***](apps/audapolis.md) | *An editor for spoken-word audio with automatic transcription.*..[ *read more* ](apps/audapolis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audapolis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audapolis) |
| <img src="icons/audiomoth.png" width="48" height="48"> | [***audiomoth***](apps/audiomoth.md) | *Configuration app for the AudioMoth acoustic monitoring device.*..[ *read more* ](apps/audiomoth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth) |
| <img src="icons/audiorelay.png" width="48" height="48"> | [***audiorelay***](apps/audiorelay.md) | *Stream audio between your devices. Turn your phone into a microphone or speakers for PC.*..[ *read more* ](apps/audiorelay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiorelay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiorelay) |
| <img src="icons/augur.png" width="48" height="48"> | [***augur***](apps/augur.md) | *Augur Desktop Application.*..[ *read more* ](apps/augur.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/augur) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/augur) |
| <img src="icons/auryo.png" width="48" height="48"> | [***auryo***](apps/auryo.md) | *An audio/music desktop client for SoundCloud.*..[ *read more* ](apps/auryo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/auryo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/auryo) |
| <img src="icons/authme.png" width="48" height="48"> | [***authme***](apps/authme.md) | *Simple cross-platform two-factor authenticator app for desktop.*..[ *read more* ](apps/authme.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/authme) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/authme) |
| <img src="icons/authy.png" width="48" height="48"> | [***authy***](apps/authy.md) | *Unofficial, Protect all your accounts with 2FA.*..[ *read more* ](apps/authy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/authy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/authy) |
| <img src="icons/autoedit2.png" width="48" height="48"> | [***autoedit2***](apps/autoedit2.md) | *autoEdit2 Desktop Client for Linux.*..[ *read more* ](apps/autoedit2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/autoedit2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/autoedit2) |
| <img src="icons/avantgarde.png" width="48" height="48"> | [***avantgarde***](apps/avantgarde.md) | *Avalonia XAML Preview.*..[ *read more* ](apps/avantgarde.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avantgarde) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avantgarde) |
| <img src="icons/avidemux.png" width="48" height="48"> | [***avidemux***](apps/avidemux.md) | *Multiplatform Video Editor.*..[ *read more* ](apps/avidemux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avidemux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avidemux) |
| <img src="icons/avidemux-nightly.png" width="48" height="48"> | [***avidemux-nightly***](apps/avidemux-nightly.md) | *Multiplatform Video Editor, nightly build.*..[ *read more* ](apps/avidemux-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avidemux-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avidemux-nightly) |
| <img src="icons/avocado.png" width="48" height="48"> | [***avocado***](apps/avocado.md) | *PlayStation 1 emulator, games.*..[ *read more* ](apps/avocado.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avocado) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avocado) |
| <img src="icons/avogadro2.png" width="48" height="48"> | [***avogadro2***](apps/avogadro2.md) | *Molecular editor for computational chemistry, bioinformatics.*..[ *read more* ](apps/avogadro2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avogadro2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avogadro2) |
| <img src="icons/awakened-poe-trade.png" width="48" height="48"> | [***awakened-poe-trade***](apps/awakened-poe-trade.md) | *Path of Exile trading app for price checking.*..[ *read more* ](apps/awakened-poe-trade.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/awakened-poe-trade) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/awakened-poe-trade) |
| <img src="icons/axe-electrum.png" width="48" height="48"> | [***axe-electrum***](apps/axe-electrum.md) | *Axe Electrum Wallet.*..[ *read more* ](apps/axe-electrum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/axe-electrum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/axe-electrum) |
| <img src="icons/axolotl.png" width="48" height="48"> | [***axolotl***](apps/axolotl.md) | *A Signal compatible cross plattform client written in Go and Vuejs.*..[ *read more* ](apps/axolotl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/axolotl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/axolotl) |
| <img src="icons/badlion.png" width="48" height="48"> | [***badlion***](apps/badlion.md) | *Most Complete All-In-One Mod Library for Minecraft with 100+ Mods.*..[ *read more* ](apps/badlion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/badlion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/badlion) |
| <img src="icons/baijimangaviewer.png" width="48" height="48"> | [***baijimangaviewer***](apps/baijimangaviewer.md) | *Manga viewer that uses Material Design.*..[ *read more* ](apps/baijimangaviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/baijimangaviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/baijimangaviewer) |
| <img src="icons/bambustudio.png" width="48" height="48"> | [***bambustudio***](apps/bambustudio.md) | *PC Software for BambuLab's 3D printers.*..[ *read more* ](apps/bambustudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bambustudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bambustudio) |
| <img src="icons/banban.png" width="48" height="48"> | [***banban***](apps/banban.md) | *A productivity app inspired by GitHub Projects Kanban.*..[ *read more* ](apps/banban.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/banban) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/banban) |
| <img src="icons/bandwhich.png" width="48" height="48"> | [***bandwhich***](apps/bandwhich.md) | *Terminal bandwidth utilization tool.*..[ *read more* ](apps/bandwhich.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bandwhich) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bandwhich) |
| <img src="icons/baobab-gtk3.png" width="48" height="48"> | [***baobab-gtk3***](apps/baobab-gtk3.md) | *Unofficial. Disk Usage Analyser, version 3.38, for all GNOME4+ haters.*..[ *read more* ](apps/baobab-gtk3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/baobab-gtk3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/baobab-gtk3) |
| <img src="icons/barnacal.png" width="48" height="48"> | [***barnacal***](apps/barnacal.md) | *A simple menu bar app for viewing a calendar*..[ *read more* ](apps/barnacal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/barnacal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/barnacal) |
| <img src="icons/bastyon.png" width="48" height="48"> | [***bastyon***](apps/bastyon.md) | *Decentralized social network based on the blockchain.*..[ *read more* ](apps/bastyon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bastyon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bastyon) |
| <img src="icons/bat.png" width="48" height="48"> | [***bat***](apps/bat.md) | *A "cat" clone with wings.*..[ *read more* ](apps/bat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bat) |
| <img src="icons/batch-explorer.png" width="48" height="48"> | [***batch-explorer***](apps/batch-explorer.md) | *A client tool to create/debug/monitor Azure Batch Apps.*..[ *read more* ](apps/batch-explorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/batch-explorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/batch-explorer) |
| <img src="icons/bat-extras.png" width="48" height="48"> | [***bat-extras***](apps/bat-extras.md) | *Bash scripts that integrate bat with various command line tools.*..[ *read more* ](apps/bat-extras.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bat-extras) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bat-extras) |
| <img src="icons/battop.png" width="48" height="48"> | [***battop***](apps/battop.md) | *CLI, interactive batteries viewer.*..[ *read more* ](apps/battop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/battop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/battop) |
| <img src="icons/bauh.png" width="48" height="48"> | [***bauh***](apps/bauh.md) | *GUI for managing AppImage, Arch/AUR, DEBs, Flatpak, Snap and webapps.*..[ *read more* ](apps/bauh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bauh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bauh) |
| <img src="icons/bazecor.png" width="48" height="48"> | [***bazecor***](apps/bazecor.md) | *Graphical configurator for Dygma Raise.*..[ *read more* ](apps/bazecor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bazecor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bazecor) |
| <img src="icons/bbg.png" width="48" height="48"> | [***bbg***](apps/bbg.md) | *A static blog generator based on Electron Technology.*..[ *read more* ](apps/bbg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bbg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bbg) |
| <img src="icons/bdash.png" width="48" height="48"> | [***bdash***](apps/bdash.md) | *A simple business intelligence application.*..[ *read more* ](apps/bdash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bdash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bdash) |
| <img src="icons/beam-wallet.png" width="48" height="48"> | [***beam-wallet***](apps/beam-wallet.md) | *Beam Desktop Wallet.*..[ *read more* ](apps/beam-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beam-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beam-wallet) |
| <img src="icons/bearly.png" width="48" height="48"> | [***bearly***](apps/bearly.md) | *The world's best AI at your fingertips.*..[ *read more* ](apps/bearly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bearly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bearly) |
| <img src="icons/beatconnect-client.png" width="48" height="48"> | [***beatconnect-client***](apps/beatconnect-client.md) | *Beatconnect power for osu irc.*..[ *read more* ](apps/beatconnect-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beatconnect-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beatconnect-client) |
| <img src="icons/beatmapexporter.png" width="48" height="48"> | [***beatmapexporter***](apps/beatmapexporter.md) | *osu!lazer beatmap exporter utility. Allowing mass export of beatmaps from the new osu!lazer file storage back into .osz files.*..[ *read more* ](apps/beatmapexporter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beatmapexporter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beatmapexporter) |
| <img src="icons/beaver-notes.png" width="48" height="48"> | [***beaver-notes***](apps/beaver-notes.md) | *Build your knowledge one log at a time.*..[ *read more* ](apps/beaver-notes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beaver-notes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beaver-notes) |
| <img src="icons/beekeeper-studio.png" width="48" height="48"> | [***beekeeper-studio***](apps/beekeeper-studio.md) | *SQL query editor and database UI.*..[ *read more* ](apps/beekeeper-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beekeeper-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beekeeper-studio) |
| <img src="icons/beeper.png" width="48" height="48"> | [***beeper***](apps/beeper.md) | *All your chats in one app.*..[ *read more* ](apps/beeper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beeper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beeper) |
| <img src="icons/bemoji.png" width="48" height="48"> | [***bemoji***](apps/bemoji.md) | *Emoji picker for bemenu/wofi/rofi/dmenu, remembers your favorites.*..[ *read more* ](apps/bemoji.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bemoji) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bemoji) |
| <img src="icons/bench-cli.png" width="48" height="48"> | [***bench-cli***](apps/bench-cli.md) | *CLI tool to benchmark commands, written in `Fortran`.*..[ *read more* ](apps/bench-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bench-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bench-cli) |
| <img src="icons/bettercrewlink.png" width="48" height="48"> | [***bettercrewlink***](apps/bettercrewlink.md) | *Free, open, Among Us proximity voice chat.*..[ *read more* ](apps/bettercrewlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bettercrewlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bettercrewlink) |
| <img src="icons/better-kirka-client.png" width="48" height="48"> | [***better-kirka-client***](apps/better-kirka-client.md) | *A electron js based client for the game kirka.io.*..[ *read more* ](apps/better-kirka-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/better-kirka-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/better-kirka-client) |
| <img src="icons/better-osu-skills.png" width="48" height="48"> | [***better-osu-skills***](apps/better-osu-skills.md) | *Gets results from the osu! Using your own IRC credentials.*..[ *read more* ](apps/better-osu-skills.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/better-osu-skills) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/better-osu-skills) |
| <img src="icons/bettersis.png" width="48" height="48"> | [***bettersis***](apps/bettersis.md) | *Modern shell for SIS.*..[ *read more* ](apps/bettersis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bettersis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bettersis) |
| <img src="icons/beurerscalemanager.png" width="48" height="48"> | [***beurerscalemanager***](apps/beurerscalemanager.md) | *AppImage packaging project for BeurerScaleManager.*..[ *read more* ](apps/beurerscalemanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beurerscalemanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beurerscalemanager) |
| <img src="icons/beyond-all-reason.png" width="48" height="48"> | [***beyond-all-reason***](apps/beyond-all-reason.md) | *3D Real-Time Strategy Total Annihilation Inspired, game.*..[ *read more* ](apps/beyond-all-reason.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beyond-all-reason) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beyond-all-reason) |
| <img src="icons/bezique.png" width="48" height="48"> | [***bezique***](apps/bezique.md) | *Plays bezique game against the AI.*..[ *read more* ](apps/bezique.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bezique) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bezique) |
| <img src="icons/bforartists.png" width="48" height="48"> | [***bforartists***](apps/bforartists.md) | *3D modeling, animation, rendering and post-production.*..[ *read more* ](apps/bforartists.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bforartists) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bforartists) |
| <img src="icons/biblemultithelife.png" width="48" height="48"> | [***biblemultithelife***](apps/biblemultithelife.md) | *Bible multi languages, free, offline, no advertising, in English, French, Italian, Spanish, Portuguese.*..[ *read more* ](apps/biblemultithelife.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biblemultithelife) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biblemultithelife) |
| <img src="icons/bidirectional.png" width="48" height="48"> | [***bidirectional***](apps/bidirectional.md) | *Write Arabic text on apps that don't support the bidirectional text.*..[ *read more* ](apps/bidirectional.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bidirectional) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bidirectional) |
| <img src="icons/bilibili.png" width="48" height="48"> | [***bilibili***](apps/bilibili.md) | *Bilibili official desktop client.*..[ *read more* ](apps/bilibili.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bilibili) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bilibili) |
| <img src="icons/bilibilivideodownload.png" width="48" height="48"> | [***bilibilivideodownload***](apps/bilibilivideodownload.md) | *Bilibili video downloader.*..[ *read more* ](apps/bilibilivideodownload.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bilibilivideodownload) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bilibilivideodownload) |
| <img src="icons/biliup-app.png" width="48" height="48"> | [***biliup-app***](apps/biliup-app.md) | *Bilibili uploader.*..[ *read more* ](apps/biliup-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biliup-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biliup-app) |
| <img src="icons/billard-gl.png" width="48" height="48"> | [***billard-gl***](apps/billard-gl.md) | *Unofficial. 3D billiards game, play a game of 8-ball or 9-ball.*..[ *read more* ](apps/billard-gl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/billard-gl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/billard-gl) |
| <img src="icons/billyfrontier.png" width="48" height="48"> | [***billyfrontier***](apps/billyfrontier.md) | *Pangea Software’s Billy Frontier for modern systems.*..[ *read more* ](apps/billyfrontier.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/billyfrontier) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/billyfrontier) |
| <img src="icons/binclock.png" width="48" height="48"> | [***binclock***](apps/binclock.md) | *Binary clock in terminal.*..[ *read more* ](apps/binclock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/binclock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/binclock) |
| <img src="icons/bin.png" width="48" height="48"> | [***bin***](apps/bin.md) | *Effortless binary manager.*..[ *read more* ](apps/bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bin) |
| <img src="icons/binfinder.png" width="48" height="48"> | [***binfinder***](apps/binfinder.md) | *Find binary files not installed through package manager.*..[ *read more* ](apps/binfinder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/binfinder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/binfinder) |
| <img src="icons/bingada.png" width="48" height="48"> | [***bingada***](apps/bingada.md) | *Bingo application in GTKAda.*..[ *read more* ](apps/bingada.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bingada) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bingada) |
| <img src="icons/binglite.png" width="48" height="48"> | [***binglite***](apps/binglite.md) | *A lightweight new Bing (AI chat) desktop application based on Tauri.*..[ *read more* ](apps/binglite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/binglite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/binglite) |
| <img src="icons/bioanimation.png" width="48" height="48"> | [***bioanimation***](apps/bioanimation.md) | *CCNY Electrochemical Gradient Simulator.*..[ *read more* ](apps/bioanimation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bioanimation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bioanimation) |
| <img src="icons/biplanes-revival.png" width="48" height="48"> | [***biplanes-revival***](apps/biplanes-revival.md) | *An old cellphone arcade recreated for PC.*..[ *read more* ](apps/biplanes-revival.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biplanes-revival) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biplanes-revival) |
| <img src="icons/birds-kitchen.png" width="48" height="48"> | [***birds-kitchen***](apps/birds-kitchen.md) | *Recipe manager.*..[ *read more* ](apps/birds-kitchen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/birds-kitchen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/birds-kitchen) |
| <img src="icons/bitbox-wallet.png" width="48" height="48"> | [***bitbox-wallet***](apps/bitbox-wallet.md) | *Cryptocurrency hardware wallet desktop app.*..[ *read more* ](apps/bitbox-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bitbox-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bitbox-wallet) |
| <img src="icons/bitfighter.png" width="48" height="48"> | [***bitfighter***](apps/bitfighter.md) | *A 2-D multi-player space combat game.*..[ *read more* ](apps/bitfighter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bitfighter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bitfighter) |
| <img src="icons/bitshares.png" width="48" height="48"> | [***bitshares***](apps/bitshares.md) | *Advanced wallet interface for the BitShares financial blockchain.*..[ *read more* ](apps/bitshares.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bitshares) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bitshares) |
| <img src="icons/bitwarden.png" width="48" height="48"> | [***bitwarden***](apps/bitwarden.md) | *Password manager for individuals, teams and business.*..[ *read more* ](apps/bitwarden.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bitwarden) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bitwarden) |
| <img src="icons/biying.png" width="48" height="48"> | [***biying***](apps/biying.md) | *Biying Wallpaper for Linux.*..[ *read more* ](apps/biying.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biying) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biying) |
| <img src="icons/bk.png" width="48" height="48"> | [***bk***](apps/bk.md) | *Terminal Epub reader.*..[ *read more* ](apps/bk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bk) |
| <img src="icons/black-chocobo.png" width="48" height="48"> | [***black-chocobo***](apps/black-chocobo.md) | *FF7 Save Game Editor.*..[ *read more* ](apps/black-chocobo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/black-chocobo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/black-chocobo) |
| <img src="icons/blacknut.png" width="48" height="48"> | [***blacknut***](apps/blacknut.md) | *Cloud gaming client.*..[ *read more* ](apps/blacknut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blacknut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blacknut) |
| <img src="icons/blank.png" width="48" height="48"> | [***blank***](apps/blank.md) | *Blank is a minimalist, opinionated markdown editor made for writing.*..[ *read more* ](apps/blank.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blank) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blank) |
| <img src="icons/blastem.png" width="48" height="48"> | [***blastem***](apps/blastem.md) | *Clone of Mercurial Repo.*..[ *read more* ](apps/blastem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blastem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blastem) |
| <img src="icons/blender-alpha.png" width="48" height="48"> | [***blender-alpha***](apps/blender-alpha.md) | *Very fast and versatile 3D modeller/renderer, Alpha.*..[ *read more* ](apps/blender-alpha.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender-alpha) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender-alpha) |
| <img src="icons/blender-beta.png" width="48" height="48"> | [***blender-beta***](apps/blender-beta.md) | *Very fast and versatile 3D modeller/renderer, Beta.*..[ *read more* ](apps/blender-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender-beta) |
| <img src="icons/blender-rc.png" width="48" height="48"> | [***blender-rc***](apps/blender-rc.md) | *Very fast and versatile 3D modeller/renderer, Release Candidate.*..[ *read more* ](apps/blender-rc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender-rc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender-rc) |
| <img src="icons/blender.png" width="48" height="48"> | [***blender***](apps/blender.md) | *Very fast and versatile 3D modeller/renderer, Stable.*..[ *read more* ](apps/blender.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender) |
| <img src="icons/blensor.png" width="48" height="48"> | [***blensor***](apps/blensor.md) | *3D modeling, animation, rendering and post-production.*..[ *read more* ](apps/blensor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blensor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blensor) |
| <img src="icons/blimp.png" width="48" height="48"> | [***blimp***](apps/blimp.md) | *Customizable terminal UI for monitoring weather information, application status, network latency, and more.*..[ *read more* ](apps/blimp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blimp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blimp) |
| <img src="icons/blink.png" width="48" height="48"> | [***blink***](apps/blink.md) | *GUI of live indexed grep search for source code.*..[ *read more* ](apps/blink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blink) |
| <img src="icons/blizzard-4.png" width="48" height="48"> | [***blizzard-4***](apps/blizzard-4.md) | *Emulator & toolchain for the Blizzard 4 16-bit computer.*..[ *read more* ](apps/blizzard-4.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blizzard-4) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blizzard-4) |
| <img src="icons/blob-dl.png" width="48" height="48"> | [***blob-dl***](apps/blob-dl.md) | *Blob-dl is a yt-dlp CLI interface used to download video and audio files from YouTube.*..[ *read more* ](apps/blob-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blob-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blob-dl) |
| <img src="icons/blobdrop.png" width="48" height="48"> | [***blobdrop***](apps/blobdrop.md) | *Drag and drop files directly out of the terminal.*..[ *read more* ](apps/blobdrop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blobdrop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blobdrop) |
| <img src="icons/blockbench.png" width="48" height="48"> | [***blockbench***](apps/blockbench.md) | *Editor for boxy models and pixel art textures like Minecraft.*..[ *read more* ](apps/blockbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blockbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blockbench) |
| <img src="icons/block-dx.png" width="48" height="48"> | [***block-dx***](apps/block-dx.md) | *Exchange dApp built on top of the Blocknet Protocol.*..[ *read more* ](apps/block-dx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/block-dx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/block-dx) |
| <img src="icons/blockstream-green.png" width="48" height="48"> | [***blockstream-green***](apps/blockstream-green.md) | *Bitcoin wallet compatible with Blockstream Jade.*..[ *read more* ](apps/blockstream-green.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blockstream-green) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blockstream-green) |
| <img src="icons/bloks.png" width="48" height="48"> | [***bloks***](apps/bloks.md) | *An electron-vue project.*..[ *read more* ](apps/bloks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bloks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bloks) |
| <img src="icons/bloomee.png" width="48" height="48"> | [***bloomee***](apps/bloomee.md) | *Music app designed to bring you ad-free tunes from various sources.*..[ *read more* ](apps/bloomee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bloomee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bloomee) |
| <img src="icons/bloomrpc.png" width="48" height="48"> | [***bloomrpc***](apps/bloomrpc.md) | *GRPC GUI client.*..[ *read more* ](apps/bloomrpc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bloomrpc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bloomrpc) |
| <img src="icons/blowfish.png" width="48" height="48"> | [***blowfish***](apps/blowfish.md) | *Display your total Ocean Token balances.*..[ *read more* ](apps/blowfish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blowfish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blowfish) |
| <img src="icons/blueglow.png" width="48" height="48"> | [***blueglow***](apps/blueglow.md) | *A simple system tray application to watch github notifications.*..[ *read more* ](apps/blueglow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blueglow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blueglow) |
| <img src="icons/bluetuith.png" width="48" height="48"> | [***bluetuith***](apps/bluetuith.md) | *A TUI bluetooth manager for Linux.*..[ *read more* ](apps/bluetuith.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bluetuith) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bluetuith) |
| <img src="icons/boardgamestar.png" width="48" height="48"> | [***boardgamestar***](apps/boardgamestar.md) | *A platform for playing digital boardgames.*..[ *read more* ](apps/boardgamestar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boardgamestar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boardgamestar) |
| <img src="icons/bodacious.png" width="48" height="48"> | [***bodacious***](apps/bodacious.md) | *A bodacious music player.*..[ *read more* ](apps/bodacious.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bodacious) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bodacious) |
| <img src="icons/bodhi.png" width="48" height="48"> | [***bodhi***](apps/bodhi.md) | *Bodhi Prediction Market app.*..[ *read more* ](apps/bodhi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bodhi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bodhi) |
| <img src="icons/boilr.png" width="48" height="48"> | [***boilr***](apps/boilr.md) | *Synchronize games from other platforms into your Steam library.*..[ *read more* ](apps/boilr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boilr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boilr) |
| <img src="icons/bomber.png" width="48" height="48"> | [***bomber***](apps/bomber.md) | *Unofficial. Arcade spaceship game. This script installs the full "kdegames" suite.*..[ *read more* ](apps/bomber.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bomber) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bomber) |
| <img src="icons/bonsai-maui.png" width="48" height="48"> | [***bonsai-maui***](apps/bonsai-maui.md) | *Manage Git repositories from a GUI.*..[ *read more* ](apps/bonsai-maui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bonsai-maui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bonsai-maui) |
| <img src="icons/book-manager.png" width="48" height="48"> | [***book-manager***](apps/book-manager.md) | *Simple desktop app to manage personal library.*..[ *read more* ](apps/book-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/book-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/book-manager) |
| <img src="icons/bookmarks-manager.png" width="48" height="48"> | [***bookmarks-manager***](apps/bookmarks-manager.md) | *Edit bookmarks, check url.*..[ *read more* ](apps/bookmarks-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bookmarks-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bookmarks-manager) |
| <img src="icons/boostchanger.png" width="48" height="48"> | [***boostchanger***](apps/boostchanger.md) | *Control CPU turbo boost and the settings of the cpu speed.*..[ *read more* ](apps/boostchanger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boostchanger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boostchanger) |
| <img src="icons/boost-note.png" width="48" height="48"> | [***boost-note***](apps/boost-note.md) | *Document driven project management tool to speedup remote DevOps.*..[ *read more* ](apps/boost-note.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boost-note) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boost-note) |
| <img src="icons/botclient.png" width="48" height="48"> | [***botclient***](apps/botclient.md) | *A discord botclient built with Electron and React.*..[ *read more* ](apps/botclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/botclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/botclient) |
| <img src="icons/botframework-emulator.png" width="48" height="48"> | [***botframework-emulator***](apps/botframework-emulator.md) | *Test and debug chat bots built with Bot Framework SDK.*..[ *read more* ](apps/botframework-emulator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/botframework-emulator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/botframework-emulator) |
| <img src="icons/botim.png" width="48" height="48"> | [***botim***](apps/botim.md) | *Free, Secure, Reliable Messages and Calls.*..[ *read more* ](apps/botim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/botim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/botim) |
| <img src="icons/bottlebats.png" width="48" height="48"> | [***bottlebats***](apps/bottlebats.md) | *Client for the 2018 edition of the BottleBats AI competition.*..[ *read more* ](apps/bottlebats.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottlebats) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottlebats) |
| <img src="icons/bottlenose.png" width="48" height="48"> | [***bottlenose***](apps/bottlenose.md) | *Bottlenose is a front-end for video game emulators.*..[ *read more* ](apps/bottlenose.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottlenose) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottlenose) |
| <img src="icons/bottles.png" width="48" height="48"> | [***bottles***](apps/bottles.md) | *Unofficial. Manage wine prefixes and run Windows software & games in a new way.*..[ *read more* ](apps/bottles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottles) |
| <img src="icons/bottom.png" width="48" height="48"> | [***bottom***](apps/bottom.md) | *Yet another cross-platform graphical process/system monitor.*..[ *read more* ](apps/bottom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottom) |
| <img src="icons/bovo.png" width="48" height="48"> | [***bovo***](apps/bovo.md) | *Unofficial. Five in a row game from. This script installs the full "kdegames" suite.*..[ *read more* ](apps/bovo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bovo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bovo) |
| <img src="icons/boxxy.png" width="48" height="48"> | [***boxxy***](apps/boxxy.md) | *Put bad Linux applications in a box with only their files.*..[ *read more* ](apps/boxxy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boxxy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boxxy) |
| <img src="icons/brackets.png" width="48" height="48"> | [***brackets***](apps/brackets.md) | *Brackets-Electron.*..[ *read more* ](apps/brackets.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brackets) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brackets) |
| <img src="icons/brainverse.png" width="48" height="48"> | [***brainverse***](apps/brainverse.md) | *Electronic Lab Notebook for Reproducible Neuro Imaging Research.*..[ *read more* ](apps/brainverse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brainverse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brainverse) |
| <img src="icons/brainwaves.png" width="48" height="48"> | [***brainwaves***](apps/brainwaves.md) | *EEG Desktop Application.*..[ *read more* ](apps/brainwaves.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brainwaves) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brainwaves) |
| <img src="icons/brave-appimage.png" width="48" height="48"> | [***brave-appimage***](apps/brave-appimage.md) | *Unofficial, a privacy oriented Web Browser based on Chromium, this is the "stable" release.*..[ *read more* ](apps/brave-appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave-appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave-appimage) |
| <img src="icons/brave.png" width="48" height="48"> | [***brave***](apps/brave.md) | *A privacy oriented Web Browser based on Chromium, this is the official "stable" release.*..[ *read more* ](apps/brave.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave) |
| <img src="icons/brave-beta-appimage.png" width="48" height="48"> | [***brave-beta-appimage***](apps/brave-beta-appimage.md) | *Unofficial, a privacy oriented Web Browser based on Chromium, this is the "beta" release.*..[ *read more* ](apps/brave-beta-appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave-beta-appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave-beta-appimage) |
| <img src="icons/brave-beta.png" width="48" height="48"> | [***brave-beta***](apps/brave-beta.md) | *A privacy oriented Web Browser based on Chromium, this is the official "beta" release.*..[ *read more* ](apps/brave-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave-beta) |
| <img src="icons/brave-nightly-appimage.png" width="48" height="48"> | [***brave-nightly-appimage***](apps/brave-nightly-appimage.md) | *Unofficial, a privacy oriented Web Browser based on Chromium, this is the "nightly" release.*..[ *read more* ](apps/brave-nightly-appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave-nightly-appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave-nightly-appimage) |
| <img src="icons/brave-nightly.png" width="48" height="48"> | [***brave-nightly***](apps/brave-nightly.md) | *A privacy oriented Web Browser based on Chromium, this is the official "nightly" release.*..[ *read more* ](apps/brave-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave-nightly) |
| <img src="icons/bread.png" width="48" height="48"> | [***bread***](apps/bread.md) | *Install, update and remove AppImage from GitHub using your CLI.*..[ *read more* ](apps/bread.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bread) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bread) |
| <img src="icons/breaktimer.png" width="48" height="48"> | [***breaktimer***](apps/breaktimer.md) | *Save yourself from RSI and eye-strain.*..[ *read more* ](apps/breaktimer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/breaktimer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/breaktimer) |
| <img src="icons/brickstore.png" width="48" height="48"> | [***brickstore***](apps/brickstore.md) | *An offline BrickLink inventory management tool.*..[ *read more* ](apps/brickstore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brickstore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brickstore) |
| <img src="icons/bridge.png" width="48" height="48"> | [***bridge***](apps/bridge.md) | *The perfect Bridge between Megascans and your favorite tools.*..[ *read more* ](apps/bridge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bridge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bridge) |
| <img src="icons/brisqi.png" width="48" height="48"> | [***brisqi***](apps/brisqi.md) | *Offline-first Personal Kanban app.*..[ *read more* ](apps/brisqi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brisqi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brisqi) |
| <img src="icons/browservice.png" width="48" height="48"> | [***browservice***](apps/browservice.md) | *Browse the modern web on historical browsers.*..[ *read more* ](apps/browservice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/browservice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/browservice) |
| <img src="icons/brs-emu-app.png" width="48" height="48"> | [***brs-emu-app***](apps/brs-emu-app.md) | *BrightScript Emulator, runs on browsers and Electron apps.*..[ *read more* ](apps/brs-emu-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brs-emu-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brs-emu-app) |
| <img src="icons/bruno.png" width="48" height="48"> | [***bruno***](apps/bruno.md) | *An Opensource API Collection Collaboration Suite.*..[ *read more* ](apps/bruno.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bruno) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bruno) |
| <img src="icons/brutespray.png" width="48" height="48"> | [***brutespray***](apps/brutespray.md) | *Bruteforcing from various scanner output. Automatically attempts default creds on found services.*..[ *read more* ](apps/brutespray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brutespray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brutespray) |
| <img src="icons/bscanfftwebcam.png" width="48" height="48"> | [***bscanfftwebcam***](apps/bscanfftwebcam.md) | *FDOCT tool.*..[ *read more* ](apps/bscanfftwebcam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bscanfftwebcam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bscanfftwebcam) |
| <img src="icons/btop.png" width="48" height="48"> | [***btop***](apps/btop.md) | *A command line utility to monitor system resources, like Htop.*..[ *read more* ](apps/btop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/btop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/btop) |
| <img src="icons/bts-ce-lite.png" width="48" height="48"> | [***bts-ce-lite***](apps/bts-ce-lite.md) | *Telecommunication network management application.*..[ *read more* ](apps/bts-ce-lite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bts-ce-lite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bts-ce-lite) |
| <img src="icons/buche.png" width="48" height="48"> | [***buche***](apps/buche.md) | *A logger of sorts.*..[ *read more* ](apps/buche.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/buche) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/buche) |
| <img src="icons/buckets.png" width="48" height="48"> | [***buckets***](apps/buckets.md) | *Budgeting fast, simple and private.*..[ *read more* ](apps/buckets.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/buckets) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/buckets) |
| <img src="icons/bugdom2.png" width="48" height="48"> | [***bugdom2***](apps/bugdom2.md) | *Pangea Software’s Bugdom 2 for modern systems.*..[ *read more* ](apps/bugdom2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bugdom2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bugdom2) |
| <img src="icons/bugdom.png" width="48" height="48"> | [***bugdom***](apps/bugdom.md) | *Pangea Software's Bugdom game.*..[ *read more* ](apps/bugdom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bugdom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bugdom) |
| <img src="icons/buho-maui.png" width="48" height="48"> | [***buho-maui***](apps/buho-maui.md) | *Easy-to-use note-taking application with “tags” support.*..[ *read more* ](apps/buho-maui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/buho-maui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/buho-maui) |
| <img src="icons/bulkreviewer.png" width="48" height="48"> | [***bulkreviewer***](apps/bulkreviewer.md) | *Identify, review, and remove private information.*..[ *read more* ](apps/bulkreviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bulkreviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bulkreviewer) |
| <img src="icons/bulkurlopener.png" width="48" height="48"> | [***bulkurlopener***](apps/bulkurlopener.md) | *Desktop version of the Bulk URL Opener extension.*..[ *read more* ](apps/bulkurlopener.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bulkurlopener) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bulkurlopener) |
| <img src="icons/bunnyfetch.png" width="48" height="48"> | [***bunnyfetch***](apps/bunnyfetch.md) | *A small and fast tool for getting info about your system.*..[ *read more* ](apps/bunnyfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bunnyfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bunnyfetch) |
| <img src="icons/bunqdesktop.png" width="48" height="48"> | [***bunqdesktop***](apps/bunqdesktop.md) | *A desktop implementation for the bunq API.*..[ *read more* ](apps/bunqdesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bunqdesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bunqdesktop) |
| <img src="icons/burning-series.png" width="48" height="48"> | [***burning-series***](apps/burning-series.md) | *Watch any series from Burning Series, Unofficial client.*..[ *read more* ](apps/burning-series.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/burning-series) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/burning-series) |
| <img src="icons/buttercup.png" width="48" height="48"> | [***buttercup***](apps/buttercup.md) | *Free and Open Source password vault.*..[ *read more* ](apps/buttercup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/buttercup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/buttercup) |
| <img src="icons/bypass-cors.png" width="48" height="48"> | [***bypass-cors***](apps/bypass-cors.md) | *Unlock browser’s full potential!*..[ *read more* ](apps/bypass-cors.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bypass-cors) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bypass-cors) |
| <img src="icons/bytespeichertrayicon.png" width="48" height="48"> | [***bytespeichertrayicon***](apps/bytespeichertrayicon.md) | *Bytespeicher Status App.*..[ *read more* ](apps/bytespeichertrayicon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bytespeichertrayicon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bytespeichertrayicon) |
| <img src="icons/cabal-desktop.png" width="48" height="48"> | [***cabal-desktop***](apps/cabal-desktop.md) | *Cabal p2p offline-first desktop application.*..[ *read more* ](apps/cabal-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cabal-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cabal-desktop) |
| <img src="icons/cacher.png" width="48" height="48"> | [***cacher***](apps/cacher.md) | *Cacher is a code snippet library for professional developers.*..[ *read more* ](apps/cacher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cacher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cacher) |
| <img src="icons/cadmus.png" width="48" height="48"> | [***cadmus***](apps/cadmus.md) | *Pulse Audio real-time noise suppression plugin.*..[ *read more* ](apps/cadmus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cadmus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cadmus) |
| <img src="icons/caesium.png" width="48" height="48"> | [***caesium***](apps/caesium.md) | *Image compression software that helps you store, send and share digital pictures, supporting JPG, PNG, WebP and TIFF formats.*..[ *read more* ](apps/caesium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/caesium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/caesium) |
| <img src="icons/calculist.png" width="48" height="48"> | [***calculist***](apps/calculist.md) | *Desktop version of Calculist.io.*..[ *read more* ](apps/calculist.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calculist) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calculist) |
| <img src="icons/calibre.png" width="48" height="48"> | [***calibre***](apps/calibre.md) | *Unofficial. The one stop solution to all your e-book needs*..[ *read more* ](apps/calibre.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calibre) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calibre) |
| <img src="icons/calm-circles.png" width="48" height="48"> | [***calm-circles***](apps/calm-circles.md) | *Calm down and draw something, in Lisp.*..[ *read more* ](apps/calm-circles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calm-circles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calm-circles) |
| <img src="icons/calm-fan.png" width="48" height="48"> | [***calm-fan***](apps/calm-fan.md) | *Calm down and draw something, in Lisp.*..[ *read more* ](apps/calm-fan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calm-fan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calm-fan) |
| <img src="icons/calmly-writer.png" width="48" height="48"> | [***calmly-writer***](apps/calmly-writer.md) | *Traditional word processors include dozens of options for formatting text, distracting you from what really matters, writing.*..[ *read more* ](apps/calmly-writer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calmly-writer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calmly-writer) |
| <img src="icons/calm-meditator.png" width="48" height="48"> | [***calm-meditator***](apps/calm-meditator.md) | *Calm down and draw something, in Lisp.*..[ *read more* ](apps/calm-meditator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calm-meditator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calm-meditator) |
| <img src="icons/calm-mondrian.png" width="48" height="48"> | [***calm-mondrian***](apps/calm-mondrian.md) | *Calm down and draw something, in Lisp.*..[ *read more* ](apps/calm-mondrian.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calm-mondrian) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calm-mondrian) |
| <img src="icons/camelot.png" width="48" height="48"> | [***camelot***](apps/camelot.md) | *Camelot is cross-platform file manager written in C.*..[ *read more* ](apps/camelot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/camelot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/camelot) |
| <img src="icons/candycrisis.png" width="48" height="48"> | [***candycrisis***](apps/candycrisis.md) | *Candy Crisis source port for modern operating systems.*..[ *read more* ](apps/candycrisis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/candycrisis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/candycrisis) |
| <img src="icons/capbattleship.png" width="48" height="48"> | [***capbattleship***](apps/capbattleship.md) | *Battleship game with a pirate theme.*..[ *read more* ](apps/capbattleship.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/capbattleship) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/capbattleship) |
| <img src="icons/caprine.png" width="48" height="48"> | [***caprine***](apps/caprine.md) | *Unofficial, elegant privacy focused Facebook Messenger app.*..[ *read more* ](apps/caprine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/caprine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/caprine) |
| <img src="icons/carbonyl.png" width="48" height="48"> | [***carbonyl***](apps/carbonyl.md) | *Chromium running inside your terminal.*..[ *read more* ](apps/carbonyl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/carbonyl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/carbonyl) |
| <img src="icons/cardo.png" width="48" height="48"> | [***cardo***](apps/cardo.md) | *Podcast client.*..[ *read more* ](apps/cardo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cardo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cardo) |
| <img src="icons/cargo.png" width="48" height="48"> | [***cargo***](apps/cargo.md) | *Converts your crate into an AppImage.*..[ *read more* ](apps/cargo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cargo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cargo) |
| <img src="icons/carnet.png" width="48" height="48"> | [***carnet***](apps/carnet.md) | *A complete and rich note taking app with sync capabilities.*..[ *read more* ](apps/carnet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/carnet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/carnet) |
| <img src="icons/carpenters.png" width="48" height="48"> | [***carpenters***](apps/carpenters.md) | *Digital preservation ingest utility.*..[ *read more* ](apps/carpenters.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/carpenters) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/carpenters) |
| <img src="icons/carta.png" width="48" height="48"> | [***carta***](apps/carta.md) | *Cube Analysis and Rendering Tool for Astronomy.*..[ *read more* ](apps/carta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/carta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/carta) |
| <img src="icons/cask.png" width="48" height="48"> | [***cask***](apps/cask.md) | *A universal, distributed binary file manager.*..[ *read more* ](apps/cask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cask) |
| <img src="icons/casm.png" width="48" height="48"> | [***casm***](apps/casm.md) | *Corinthian Abstract State Machine, CASM.*..[ *read more* ](apps/casm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/casm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/casm) |
| <img src="icons/casterr.png" width="48" height="48"> | [***casterr***](apps/casterr.md) | *Screen recorder, easing recording and clipping in-game.*..[ *read more* ](apps/casterr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/casterr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/casterr) |
| <img src="icons/castersoundboard.png" width="48" height="48"> | [***castersoundboard***](apps/castersoundboard.md) | *Soundboard for hot-keying and playing back sounds.*..[ *read more* ](apps/castersoundboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/castersoundboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/castersoundboard) |
| <img src="icons/catalyst.png" width="48" height="48"> | [***catalyst***](apps/catalyst.md) | *Catalyst web browser.*..[ *read more* ](apps/catalyst.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catalyst) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catalyst) |
| <img src="icons/catapult.png" width="48" height="48"> | [***catapult***](apps/catapult.md) | *A cross-platform launcher for Cataclysm DDA and BN.*..[ *read more* ](apps/catapult.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catapult) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catapult) |
| <img src="icons/catcher.png" width="48" height="48"> | [***catcher***](apps/catcher.md) | *Peer-testing of software projects.*..[ *read more* ](apps/catcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catcher) |
| <img src="icons/cate-desktop.png" width="48" height="48"> | [***cate-desktop***](apps/cate-desktop.md) | *GUI for the ESA CCI Toolbox, Cate.*..[ *read more* ](apps/cate-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cate-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cate-desktop) |
| <img src="icons/cavoke.png" width="48" height="48"> | [***cavoke***](apps/cavoke.md) | *Platform to create/host multiplayer turn-based board games.*..[ *read more* ](apps/cavoke.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cavoke) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cavoke) |
| <img src="icons/cbetar2.png" width="48" height="48"> | [***cbetar2***](apps/cbetar2.md) | *ePub viewer supporting fetching and displaying HTML as ePub.*..[ *read more* ](apps/cbetar2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cbetar2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cbetar2) |
| <img src="icons/cccp.png" width="48" height="48"> | [***cccp***](apps/cccp.md) | *Cortex Command, a community-driven effort to continue the development of Cortex Command.*..[ *read more* ](apps/cccp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cccp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cccp) |
| <img src="icons/celeste64.png" width="48" height="48"> | [***celeste64***](apps/celeste64.md) | *A game made by the Celeste developers.*..[ *read more* ](apps/celeste64.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celeste64) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celeste64) |
| <img src="icons/celestia-dev.png" width="48" height="48"> | [***celestia-dev***](apps/celestia-dev.md) | *Real time 3D space simulator, developer edition.*..[ *read more* ](apps/celestia-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celestia-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celestia-dev) |
| <img src="icons/celestia-enanched.png" width="48" height="48"> | [***celestia-enanched***](apps/celestia-enanched.md) | *Unofficial. Real-time 3D space simulator with extra detailed maps.*..[ *read more* ](apps/celestia-enanched.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celestia-enanched) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celestia-enanched) |
| <img src="icons/celestia.png" width="48" height="48"> | [***celestia***](apps/celestia.md) | *Real time 3D space simulator.*..[ *read more* ](apps/celestia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celestia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celestia) |
| <img src="icons/celoterminal-bin.png" width="48" height="48"> | [***celoterminal-bin***](apps/celoterminal-bin.md) | *Celo Terminal, AppImage version.*..[ *read more* ](apps/celoterminal-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celoterminal-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celoterminal-bin) |
| <img src="icons/cemu.png" width="48" height="48"> | [***cemu***](apps/cemu.md) | *A Nintendo Wii U emulator that is able to run most Wii U games.*..[ *read more* ](apps/cemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cemu) |
| <img src="icons/cerebral-debugger.png" width="48" height="48"> | [***cerebral-debugger***](apps/cerebral-debugger.md) | *Cerebral Debugger.*..[ *read more* ](apps/cerebral-debugger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cerebral-debugger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cerebral-debugger) |
| <img src="icons/cerebro.png" width="48" height="48"> | [***cerebro***](apps/cerebro.md) | *Open-source productivity booster with a brain.*..[ *read more* ](apps/cerebro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cerebro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cerebro) |
| <img src="icons/chain-desktop-wallet.png" width="48" height="48"> | [***chain-desktop-wallet***](apps/chain-desktop-wallet.md) | *Crypto.com DeFi Desktop Wallet.*..[ *read more* ](apps/chain-desktop-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chain-desktop-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chain-desktop-wallet) |
| <img src="icons/chainx-signer.png" width="48" height="48"> | [***chainx-signer***](apps/chainx-signer.md) | *Manage ChainX account, sign and sign transactions.*..[ *read more* ](apps/chainx-signer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chainx-signer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chainx-signer) |
| <img src="icons/chatall.png" width="48" height="48"> | [***chatall***](apps/chatall.md) | *Concurrently chat with ChatGPT, Bing Chat, bard, Alpaca and more.*..[ *read more* ](apps/chatall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatall) |
| <img src="icons/chatbox.png" width="48" height="48"> | [***chatbox***](apps/chatbox.md) | *Chatbox is a desktop app for GPT-4 / GPT-3.5, OpenAI API.*..[ *read more* ](apps/chatbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatbox) |
| <img src="icons/chatgpt-next-web.png" width="48" height="48"> | [***chatgpt-next-web***](apps/chatgpt-next-web.md) | *A cross-platform ChatGPT/Gemini UI.*..[ *read more* ](apps/chatgpt-next-web.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatgpt-next-web) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatgpt-next-web) |
| <img src="icons/chat-gpt.png" width="48" height="48"> | [***chat-gpt***](apps/chat-gpt.md) | *Unofficial. ChatGPT Desktop Application.*..[ *read more* ](apps/chat-gpt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chat-gpt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chat-gpt) |
| <img src="icons/chatpad-ai.png" width="48" height="48"> | [***chatpad-ai***](apps/chatpad-ai.md) | *Not just another ChatGPT user-interface.*..[ *read more* ](apps/chatpad-ai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatpad-ai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatpad-ai) |
| <img src="icons/chatterino2-nightly.png" width="48" height="48"> | [***chatterino2-nightly***](apps/chatterino2-nightly.md) | *Second installment of the Twitch chat client.*..[ *read more* ](apps/chatterino2-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatterino2-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatterino2-nightly) |
| <img src="icons/chatterino2.png" width="48" height="48"> | [***chatterino2***](apps/chatterino2.md) | *Second installment of the Twitch chat client.*..[ *read more* ](apps/chatterino2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatterino2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatterino2) |
| <img src="icons/cheat.png" width="48" height="48"> | [***cheat***](apps/cheat.md) | *Create and view interactive cheatsheets on the command-line.*..[ *read more* ](apps/cheat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cheat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cheat) |
| <img src="icons/chemcanvas.png" width="48" height="48"> | [***chemcanvas***](apps/chemcanvas.md) | *A very intuitive 2D chemical drawing tool.*..[ *read more* ](apps/chemcanvas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chemcanvas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chemcanvas) |
| <img src="icons/cherry-studio.png" width="48" height="48"> | [***cherry-studio***](apps/cherry-studio.md) | *Cherry Studio is a desktop client that supports for multiple LLM providers.*..[ *read more* ](apps/cherry-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cherry-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cherry-studio) |
| <img src="icons/cherrytree.png" width="48" height="48"> | [***cherrytree***](apps/cherrytree.md) | *A hierarchical note taking application.*..[ *read more* ](apps/cherrytree.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cherrytree) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cherrytree) |
| <img src="icons/chiaki.png" width="48" height="48"> | [***chiaki***](apps/chiaki.md) | *PlayStation 4 Remote Play Client.*..[ *read more* ](apps/chiaki.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chiaki) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chiaki) |
| <img src="icons/chimeradesk-kvm.png" width="48" height="48"> | [***chimeradesk-kvm***](apps/chimeradesk-kvm.md) | *Simple, fast and flexible DIY Remote Desktop software.*..[ *read more* ](apps/chimeradesk-kvm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chimeradesk-kvm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chimeradesk-kvm) |
| <img src="icons/chimeradesk.png" width="48" height="48"> | [***chimeradesk***](apps/chimeradesk.md) | *Simple, fast and flexible DIY Remote Desktop software.*..[ *read more* ](apps/chimeradesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chimeradesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chimeradesk) |
| <img src="icons/chrolog.png" width="48" height="48"> | [***chrolog***](apps/chrolog.md) | *A automated time tracking tool.*..[ *read more* ](apps/chrolog.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chrolog) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chrolog) |
| <img src="icons/chromium-beta.png" width="48" height="48"> | [***chromium-beta***](apps/chromium-beta.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, beta edition.*..[ *read more* ](apps/chromium-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-beta) |
| <img src="icons/chromium-bsu.png" width="48" height="48"> | [***chromium-bsu***](apps/chromium-bsu.md) | *Unofficial. Fast paced arcade style scrolling space shooter, game.*..[ *read more* ](apps/chromium-bsu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-bsu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-bsu) |
| <img src="icons/chromium-edge.png" width="48" height="48"> | [***chromium-edge***](apps/chromium-edge.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, edge edition.*..[ *read more* ](apps/chromium-edge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-edge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-edge) |
| <img src="icons/chromium-latest.png" width="48" height="48"> | [***chromium-latest***](apps/chromium-latest.md) | *FOSS Web Browser, base of Google Chrome, official unstable build.*..[ *read more* ](apps/chromium-latest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-latest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-latest) |
| <img src="icons/chromium-rc.png" width="48" height="48"> | [***chromium-rc***](apps/chromium-rc.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, release candidate.*..[ *read more* ](apps/chromium-rc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-rc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-rc) |
| <img src="icons/chromium.png" width="48" height="48"> | [***chromium***](apps/chromium.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, Edge and Brave, stable.*..[ *read more* ](apps/chromium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium) |
| <img src="icons/chrysalis-bin.png" width="48" height="48"> | [***chrysalis-bin***](apps/chrysalis-bin.md) | *Graphical configurator for Kaleidoscope-powered keyboards.*..[ *read more* ](apps/chrysalis-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chrysalis-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chrysalis-bin) |
| <img src="icons/ciaa-suite.png" width="48" height="48"> | [***ciaa-suite***](apps/ciaa-suite.md) | *Makefile based IDE for embedded systems.*..[ *read more* ](apps/ciaa-suite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ciaa-suite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ciaa-suite) |
| <img src="icons/cicada.png" width="48" height="48"> | [***cicada***](apps/cicada.md) | *An old-school bash-like Unix shell written in Rust.*..[ *read more* ](apps/cicada.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cicada) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cicada) |
| <img src="icons/cider.png" width="48" height="48"> | [***cider***](apps/cider.md) | *A new cross-platform Apple Music experience with performance in mind.*..[ *read more* ](apps/cider.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cider) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cider) |
| <img src="icons/cinelerra-gg.png" width="48" height="48"> | [***cinelerra-gg***](apps/cinelerra-gg.md) | *Professional video editing and compositing environment.*..[ *read more* ](apps/cinelerra-gg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cinelerra-gg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cinelerra-gg) |
| <img src="icons/cinny.png" width="48" height="48"> | [***cinny***](apps/cinny.md) | *Yet another matrix client for desktop.*..[ *read more* ](apps/cinny.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cinny) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cinny) |
| <img src="icons/circle-z.png" width="48" height="48"> | [***circle-z***](apps/circle-z.md) | *A chat client for online math courses.*..[ *read more* ](apps/circle-z.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/circle-z) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/circle-z) |
| <img src="icons/circuitblocks.png" width="48" height="48"> | [***circuitblocks***](apps/circuitblocks.md) | *Helps newbies get into embedded programming.*..[ *read more* ](apps/circuitblocks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/circuitblocks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/circuitblocks) |
| <img src="icons/city-hub.png" width="48" height="48"> | [***city-hub***](apps/city-hub.md) | *Hub into everything on City Chain/Smart City Platform.*..[ *read more* ](apps/city-hub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/city-hub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/city-hub) |
| <img src="icons/clamtk.png" width="48" height="48"> | [***clamtk***](apps/clamtk.md) | *An easy to use, light-weight, on-demand virus scanner for Linux systems*..[ *read more* ](apps/clamtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clamtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clamtk) |
| <img src="icons/clash-verge.png" width="48" height="48"> | [***clash-verge***](apps/clash-verge.md) | *A multiplatform Clash GUI based on tauri.*..[ *read more* ](apps/clash-verge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clash-verge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clash-verge) |
| <img src="icons/classicimageviewer.png" width="48" height="48"> | [***classicimageviewer***](apps/classicimageviewer.md) | *A simple image viewer with some editing features.*..[ *read more* ](apps/classicimageviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/classicimageviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/classicimageviewer) |
| <img src="icons/cleepdesktop.png" width="48" height="48"> | [***cleepdesktop***](apps/cleepdesktop.md) | *Desktop application to manage your Cleep devices.*..[ *read more* ](apps/cleepdesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cleepdesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cleepdesktop) |
| <img src="icons/clementineremote.png" width="48" height="48"> | [***clementineremote***](apps/clementineremote.md) | *Remote for Clementine Music Player.*..[ *read more* ](apps/clementineremote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clementineremote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clementineremote) |
| <img src="icons/clifm.png" width="48" height="48"> | [***clifm***](apps/clifm.md) | *The shell-like, command line terminal file manager simple, fast, extensible, and lightweight as hell.*..[ *read more* ](apps/clifm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clifm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clifm) |
| <img src="icons/cliniface.png" width="48" height="48"> | [***cliniface***](apps/cliniface.md) | *3D Facial Image Visualisation and Analysis.*..[ *read more* ](apps/cliniface.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cliniface) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cliniface) |
| <img src="icons/clipgrab.png" width="48" height="48"> | [***clipgrab***](apps/clipgrab.md) | *Download and Convert Online Videos.*..[ *read more* ](apps/clipgrab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clipgrab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clipgrab) |
| <img src="icons/clip-maui.png" width="48" height="48"> | [***clip-maui***](apps/clip-maui.md) | *Official movie player of Maui using MPV as backend.*..[ *read more* ](apps/clip-maui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clip-maui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clip-maui) |
| <img src="icons/clippy.png" width="48" height="48"> | [***clippy***](apps/clippy.md) | *Clipboard History.*..[ *read more* ](apps/clippy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clippy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clippy) |
| <img src="icons/clipr.png" width="48" height="48"> | [***clipr***](apps/clipr.md) | *The clipboard that syncs.*..[ *read more* ](apps/clipr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clipr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clipr) |
| <img src="icons/clipse.png" width="48" height="48"> | [***clipse***](apps/clipse.md) | *Configurable TUI clipboard manager for Unix.*..[ *read more* ](apps/clipse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clipse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clipse) |
| <img src="icons/cloud-browser.png" width="48" height="48"> | [***cloud-browser***](apps/cloud-browser.md) | *Access to files located in various cloud services.*..[ *read more* ](apps/cloud-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cloud-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cloud-browser) |
| <img src="icons/clownmaped.png" width="48" height="48"> | [***clownmaped***](apps/clownmaped.md) | *Sonic the Hedgehog sprite editor, clone of Xenowhirl's SonMapEd.*..[ *read more* ](apps/clownmaped.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clownmaped) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clownmaped) |
| <img src="icons/clownmdemu.png" width="48" height="48"> | [***clownmdemu***](apps/clownmdemu.md) | *Reference standalone frontend for clownmdemu.*..[ *read more* ](apps/clownmdemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clownmdemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clownmdemu) |
| <img src="icons/cncjs.png" width="48" height="48"> | [***cncjs***](apps/cncjs.md) | *CNC Milling Controller.*..[ *read more* ](apps/cncjs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cncjs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cncjs) |
| <img src="icons/cncra2yr.png" width="48" height="48"> | [***cncra2yr***](apps/cncra2yr.md) | *C&C Red Alert 2, a real-time strategy game by Westwood Pacific.*..[ *read more* ](apps/cncra2yr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cncra2yr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cncra2yr) |
| <img src="icons/coal-launcher.png" width="48" height="48"> | [***coal-launcher***](apps/coal-launcher.md) | *A client to view and play games from the AB Coal website.*..[ *read more* ](apps/coal-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coal-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coal-launcher) |
| <img src="icons/cocomusic.png" width="48" height="48"> | [***cocomusic***](apps/cocomusic.md) | *A simple music player built by electron and vue.*..[ *read more* ](apps/cocomusic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cocomusic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cocomusic) |
| <img src="icons/code-notes.png" width="48" height="48"> | [***code-notes***](apps/code-notes.md) | *A simple code snippet amp built with Electron.*..[ *read more* ](apps/code-notes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code-notes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code-notes) |
| <img src="icons/code-oss.png" width="48" height="48"> | [***code-oss***](apps/code-oss.md) | *Visual Studio Code OSS Edition.*..[ *read more* ](apps/code-oss.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code-oss) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code-oss) |
| <img src="icons/code-radio.png" width="48" height="48"> | [***code-radio***](apps/code-radio.md) | *A command line music radio client for coderadio.freecodecamp.org, written in Rust.*..[ *read more* ](apps/code-radio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code-radio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code-radio) |
| <img src="icons/code.png" width="48" height="48"> | [***code***](apps/code.md) | *Visual Studio, VSCode, Original Editor to build/debug web/cloud apps.*..[ *read more* ](apps/code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code) |
| <img src="icons/coinstac.png" width="48" height="48"> | [***coinstac***](apps/coinstac.md) | *Collaborative Informatics and Neuroimaging Suite Toolkit.*..[ *read more* ](apps/coinstac.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coinstac) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coinstac) |
| <img src="icons/colobot.png" width="48" height="48"> | [***colobot***](apps/colobot.md) | *Colonize with bots, game.*..[ *read more* ](apps/colobot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colobot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colobot) |
| <img src="icons/colon.png" width="48" height="48"> | [***colon***](apps/colon.md) | *A flexible text editor.*..[ *read more* ](apps/colon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colon) |
| <img src="icons/colorgenerator.png" width="48" height="48"> | [***colorgenerator***](apps/colorgenerator.md) | *Generates color palettes similar to ColorBrewer.*..[ *read more* ](apps/colorgenerator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colorgenerator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colorgenerator) |
| <img src="icons/colorpicker.png" width="48" height="48"> | [***colorpicker***](apps/colorpicker.md) | *Electron app that can show colors with hex/rgb.*..[ *read more* ](apps/colorpicker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colorpicker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colorpicker) |
| <img src="icons/colorstatic-bash.png" width="48" height="48"> | [***colorstatic-bash***](apps/colorstatic-bash.md) | *CLI to generate a random colorful "Static"/"Matrix".*..[ *read more* ](apps/colorstatic-bash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colorstatic-bash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colorstatic-bash) |
| <img src="icons/comic-book-reader.png" width="48" height="48"> | [***comic-book-reader***](apps/comic-book-reader.md) | *Reader and converter for cbz, cbr, epub and pdf files.*..[ *read more* ](apps/comic-book-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comic-book-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comic-book-reader) |
| <img src="icons/comic-reader.png" width="48" height="48"> | [***comic-reader***](apps/comic-reader.md) | *Electron based comic reader.*..[ *read more* ](apps/comic-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comic-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comic-reader) |
| <img src="icons/comics-downloader.png" width="48" height="48"> | [***comics-downloader***](apps/comics-downloader.md) | *Tool to download comics and manga in pdf/epub/cbr/cbz from a website.*..[ *read more* ](apps/comics-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comics-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comics-downloader) |
| <img src="icons/comictagger.png" width="48" height="48"> | [***comictagger***](apps/comictagger.md) | *A multi-platform app for writing metadata to digital comics.*..[ *read more* ](apps/comictagger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comictagger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comictagger) |
| <img src="icons/communicator-maui.png" width="48" height="48"> | [***communicator-maui***](apps/communicator-maui.md) | *Create and organize contacts, phone, email, name, etc..*..[ *read more* ](apps/communicator-maui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/communicator-maui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/communicator-maui) |
| <img src="icons/compass.png" width="48" height="48"> | [***compass***](apps/compass.md) | *Air Traffic Surveillance DataBase.*..[ *read more* ](apps/compass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/compass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/compass) |
| <img src="icons/concordium-desktop-wallet.png" width="48" height="48"> | [***concordium-desktop-wallet***](apps/concordium-desktop-wallet.md) | *The official Concordium Dektop Wallet.*..[ *read more* ](apps/concordium-desktop-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/concordium-desktop-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/concordium-desktop-wallet) |
| <img src="icons/conduction.png" width="48" height="48"> | [***conduction***](apps/conduction.md) | *Tasks? Done. That was quick.*..[ *read more* ](apps/conduction.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/conduction) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/conduction) |
| <img src="icons/conky.png" width="48" height="48"> | [***conky***](apps/conky.md) | *Light-weight system monitor for X.*..[ *read more* ](apps/conky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/conky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/conky) |
| <img src="icons/consoleworkbench.png" width="48" height="48"> | [***consoleworkbench***](apps/consoleworkbench.md) | *Console workbench.*..[ *read more* ](apps/consoleworkbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/consoleworkbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/consoleworkbench) |
| <img src="icons/contour.png" width="48" height="48"> | [***contour***](apps/contour.md) | *Modern C++ Terminal Emulator.*..[ *read more* ](apps/contour.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/contour) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/contour) |
| <img src="icons/conty.png" width="48" height="48"> | [***conty***](apps/conty.md) | *Easy to use unprivileged and portable Arch Linux container.*..[ *read more* ](apps/conty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/conty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/conty) |
| <img src="icons/conty-lite.png" width="48" height="48"> | [***conty-lite***](apps/conty-lite.md) | *Easy to use unprivileged and portable Arch Linux container.*..[ *read more* ](apps/conty-lite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/conty-lite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/conty-lite) |
| <img src="icons/conty-wine.png" width="48" height="48"> | [***conty-wine***](apps/conty-wine.md) | *Easy to use unprivileged and portable Arch Linux container.*..[ *read more* ](apps/conty-wine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/conty-wine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/conty-wine) |
| <img src="icons/converseen.png" width="48" height="48"> | [***converseen***](apps/converseen.md) | *A batch image converter and resizer.*..[ *read more* ](apps/converseen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/converseen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/converseen) |
| <img src="icons/converter432hz.png" width="48" height="48"> | [***converter432hz***](apps/converter432hz.md) | *Converts and re-encodes music to 432hz.*..[ *read more* ](apps/converter432hz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/converter432hz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/converter432hz) |
| <img src="icons/coolercontrol.png" width="48" height="48"> | [***coolercontrol***](apps/coolercontrol.md) | *A program to monitor and control your cooling devices.*..[ *read more* ](apps/coolercontrol.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coolercontrol) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coolercontrol) |
| <img src="icons/coolercontrold.png" width="48" height="48"> | [***coolercontrold***](apps/coolercontrold.md) | *Daemon for coolercontrol, to monitor your cooling devices.*..[ *read more* ](apps/coolercontrold.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coolercontrold) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coolercontrold) |
| <img src="icons/cool-retro-term.png" width="48" height="48"> | [***cool-retro-term***](apps/cool-retro-term.md) | *Use the command line the old way.*..[ *read more* ](apps/cool-retro-term.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cool-retro-term) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cool-retro-term) |
| <img src="icons/copytranslator.png" width="48" height="48"> | [***copytranslator***](apps/copytranslator.md) | *Foreign language reading and translation assistant.*..[ *read more* ](apps/copytranslator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/copytranslator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/copytranslator) |
| <img src="icons/cordlauncher.png" width="48" height="48"> | [***cordlauncher***](apps/cordlauncher.md) | *Cord launcher based on Electron and Wep Application.*..[ *read more* ](apps/cordlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cordlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cordlauncher) |
| <img src="icons/coreaction.png" width="48" height="48"> | [***coreaction***](apps/coreaction.md) | *A side bar for showing widgets for CuboCore Application Suite.*..[ *read more* ](apps/coreaction.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreaction) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreaction) |
| <img src="icons/corearchiver.png" width="48" height="48"> | [***corearchiver***](apps/corearchiver.md) | *Archive manager for CuboCore Application Suite.*..[ *read more* ](apps/corearchiver.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corearchiver) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corearchiver) |
| <img src="icons/corefm.png" width="48" height="48"> | [***corefm***](apps/corefm.md) | *A lightweight file-manager for C Suite.*..[ *read more* ](apps/corefm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corefm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corefm) |
| <img src="icons/coregarage.png" width="48" height="48"> | [***coregarage***](apps/coregarage.md) | *A setting manager for CuboCore Application Suite.*..[ *read more* ](apps/coregarage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coregarage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coregarage) |
| <img src="icons/corehunt.png" width="48" height="48"> | [***corehunt***](apps/corehunt.md) | *A file search utility for CuboCore Application Suite.*..[ *read more* ](apps/corehunt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corehunt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corehunt) |
| <img src="icons/coreimage.png" width="48" height="48"> | [***coreimage***](apps/coreimage.md) | *An image viewer for CuboCore Application Suite.*..[ *read more* ](apps/coreimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreimage) |
| <img src="icons/coreinfo.png" width="48" height="48"> | [***coreinfo***](apps/coreinfo.md) | *A file information viewer for CuboCore Application Suite.*..[ *read more* ](apps/coreinfo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreinfo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreinfo) |
| <img src="icons/corekeyboard.png" width="48" height="48"> | [***corekeyboard***](apps/corekeyboard.md) | *A x11 based virtual keyboard for C Suite.*..[ *read more* ](apps/corekeyboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corekeyboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corekeyboard) |
| <img src="icons/corepad.png" width="48" height="48"> | [***corepad***](apps/corepad.md) | *A document editor for CuboCore Application Suite.*..[ *read more* ](apps/corepad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corepad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corepad) |
| <img src="icons/corepaint.png" width="48" height="48"> | [***corepaint***](apps/corepaint.md) | *A paint app for CuboCore Application Suite.*..[ *read more* ](apps/corepaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corepaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corepaint) |
| <img src="icons/corepins.png" width="48" height="48"> | [***corepins***](apps/corepins.md) | *A bookmarking app for CuboCore Application Suite.*..[ *read more* ](apps/corepins.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corepins) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corepins) |
| <img src="icons/corerenamer.png" width="48" height="48"> | [***corerenamer***](apps/corerenamer.md) | *A batch file renamer for CuboCore Application Suite.*..[ *read more* ](apps/corerenamer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corerenamer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corerenamer) |
| <img src="icons/coreshot.png" width="48" height="48"> | [***coreshot***](apps/coreshot.md) | *A screen capture utility for CuboCore Application Suite.*..[ *read more* ](apps/coreshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreshot) |
| <img src="icons/corestats.png" width="48" height="48"> | [***corestats***](apps/corestats.md) | *A system resource viewer from the CoreApps family.*..[ *read more* ](apps/corestats.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corestats) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corestats) |
| <img src="icons/corestuff.png" width="48" height="48"> | [***corestuff***](apps/corestuff.md) | *An activity viewer for CuboCore Application Suite.*..[ *read more* ](apps/corestuff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corestuff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corestuff) |
| <img src="icons/coreterminal.png" width="48" height="48"> | [***coreterminal***](apps/coreterminal.md) | *A terminal emulator for C Suite.*..[ *read more* ](apps/coreterminal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreterminal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreterminal) |
| <img src="icons/coretime.png" width="48" height="48"> | [***coretime***](apps/coretime.md) | *A time related task manager for CuboCore Application Suite.*..[ *read more* ](apps/coretime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coretime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coretime) |
| <img src="icons/coreuniverse.png" width="48" height="48"> | [***coreuniverse***](apps/coreuniverse.md) | *Shows releated information of apps from CuboCore App Suite.*..[ *read more* ](apps/coreuniverse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreuniverse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreuniverse) |
| <img src="icons/cosmic-comics.png" width="48" height="48"> | [***cosmic-comics***](apps/cosmic-comics.md) | *Web Server based Comics / Manga Collectionner & viewer.*..[ *read more* ](apps/cosmic-comics.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cosmic-comics) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cosmic-comics) |
| <img src="icons/cosmonium.png" width="48" height="48"> | [***cosmonium***](apps/cosmonium.md) | *3D astronomy and space exploration program.*..[ *read more* ](apps/cosmonium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cosmonium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cosmonium) |
| <img src="icons/cowitness.png" width="48" height="48"> | [***cowitness***](apps/cowitness.md) | *A powerful web app testing tool that enhances the accuracy and efficiency of your testing efforts.*..[ *read more* ](apps/cowitness.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cowitness) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cowitness) |
| <img src="icons/cozydrive.png" width="48" height="48"> | [***cozydrive***](apps/cozydrive.md) | *File Synchronisation for Cozy, cloud.*..[ *read more* ](apps/cozydrive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cozydrive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cozydrive) |
| <img src="icons/cpeditor.png" width="48" height="48"> | [***cpeditor***](apps/cpeditor.md) | *Code editor specially designed for competitive programming.*..[ *read more* ](apps/cpeditor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cpeditor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cpeditor) |
| <img src="icons/cpod.png" width="48" height="48"> | [***cpod***](apps/cpod.md) | *A simple, beautiful podcast app.*..[ *read more* ](apps/cpod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cpod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cpod) |
| <img src="icons/cpufetch.png" width="48" height="48"> | [***cpufetch***](apps/cpufetch.md) | *Simple yet fancy CPU architecture fetching tool.*..[ *read more* ](apps/cpufetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cpufetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cpufetch) |
| <img src="icons/cpu-x.png" width="48" height="48"> | [***cpu-x***](apps/cpu-x.md) | *Software that gathers information on CPU, motherboard and more.*..[ *read more* ](apps/cpu-x.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cpu-x) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cpu-x) |
| <img src="icons/crabfetch.png" width="48" height="48"> | [***crabfetch***](apps/crabfetch.md) | *Extremely fast, featureful and customizable command-line fetcher.*..[ *read more* ](apps/crabfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crabfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crabfetch) |
| <img src="icons/craftos-pc.png" width="48" height="48"> | [***craftos-pc***](apps/craftos-pc.md) | *Advanced ComputerCraft emulator written in C++.*..[ *read more* ](apps/craftos-pc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/craftos-pc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/craftos-pc) |
| <img src="icons/crankshaft.png" width="48" height="48"> | [***crankshaft***](apps/crankshaft.md) | *A sensible krunker client written in typescript.*..[ *read more* ](apps/crankshaft.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crankshaft) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crankshaft) |
| <img src="icons/creality-print.png" width="48" height="48"> | [***creality-print***](apps/creality-print.md) | *Creality Print is a slicer dedicated to FDM printers.*..[ *read more* ](apps/creality-print.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/creality-print) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/creality-print) |
| <img src="icons/crg-data-tool.png" width="48" height="48"> | [***crg-data-tool***](apps/crg-data-tool.md) | *A tool for working with Games Data files from CRG.*..[ *read more* ](apps/crg-data-tool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crg-data-tool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crg-data-tool) |
| <img src="icons/cric.png" width="48" height="48"> | [***cric***](apps/cric.md) | *Custom Runtime Image Creator.*..[ *read more* ](apps/cric.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cric) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cric) |
| <img src="icons/criteria1d.png" width="48" height="48"> | [***criteria1d***](apps/criteria1d.md) | *A one-dimensional agro-hydrological model.*..[ *read more* ](apps/criteria1d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/criteria1d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/criteria1d) |
| <img src="icons/criteria1d-pro.png" width="48" height="48"> | [***criteria1d-pro***](apps/criteria1d-pro.md) | *A one-dimensional agro-hydrological model, PRO.*..[ *read more* ](apps/criteria1d-pro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/criteria1d-pro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/criteria1d-pro) |
| <img src="icons/criteria-geo.png" width="48" height="48"> | [***criteria-geo***](apps/criteria-geo.md) | *A one-dimensional agro-hydrological model, GIS interface.*..[ *read more* ](apps/criteria-geo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/criteria-geo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/criteria-geo) |
| <img src="icons/croc.png" width="48" height="48"> | [***croc***](apps/croc.md) | *Easily and securely send things from one computer to another.*..[ *read more* ](apps/croc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/croc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/croc) |
| <img src="icons/cro-chain-desktop-bin.png" width="48" height="48"> | [***cro-chain-desktop-bin***](apps/cro-chain-desktop-bin.md) | *Crypto.com DeFi Desktop Wallet, AppImage version.*..[ *read more* ](apps/cro-chain-desktop-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cro-chain-desktop-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cro-chain-desktop-bin) |
| <img src="icons/crock.png" width="48" height="48"> | [***crock***](apps/crock.md) | *Crock is rock clock.*..[ *read more* ](apps/crock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crock) |
| <img src="icons/cromagrally.png" width="48" height="48"> | [***cromagrally***](apps/cromagrally.md) | *The wildest racing game since man invented the wheel!*..[ *read more* ](apps/cromagrally.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cromagrally) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cromagrally) |
| <img src="icons/cromberg.png" width="48" height="48"> | [***cromberg***](apps/cromberg.md) | *Personal accounting system.*..[ *read more* ](apps/cromberg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cromberg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cromberg) |
| <img src="icons/crosscode-map-editor.png" width="48" height="48"> | [***crosscode-map-editor***](apps/crosscode-map-editor.md) | *Map Editor for CrossCode.*..[ *read more* ](apps/crosscode-map-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crosscode-map-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crosscode-map-editor) |
| <img src="icons/crossmobile.png" width="48" height="48"> | [***crossmobile***](apps/crossmobile.md) | *Create native iOS/Android/Windows apps in Java.*..[ *read more* ](apps/crossmobile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crossmobile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crossmobile) |
| <img src="icons/crow-translate.png" width="48" height="48"> | [***crow-translate***](apps/crow-translate.md) | *Translate and speak text using Google, Yandex, Bing and more.*..[ *read more* ](apps/crow-translate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crow-translate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crow-translate) |
| <img src="icons/cryplicity.png" width="48" height="48"> | [***cryplicity***](apps/cryplicity.md) | *Electron application boilerplate.*..[ *read more* ](apps/cryplicity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cryplicity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cryplicity) |
| <img src="icons/crypter.png" width="48" height="48"> | [***crypter***](apps/crypter.md) | *An innovative, convenient and secure crypto app.*..[ *read more* ](apps/crypter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crypter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crypter) |
| <img src="icons/cryptocam-companion.png" width="48" height="48"> | [***cryptocam-companion***](apps/cryptocam-companion.md) | *GUI to decrypt videos taken by Cryptocam.*..[ *read more* ](apps/cryptocam-companion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cryptocam-companion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cryptocam-companion) |
| <img src="icons/cryptomator.png" width="48" height="48"> | [***cryptomator***](apps/cryptomator.md) | *Cloud Storage Encryption Utility.*..[ *read more* ](apps/cryptomator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cryptomator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cryptomator) |
| <img src="icons/cryptr.png" width="48" height="48"> | [***cryptr***](apps/cryptr.md) | *A GUI for Vault.*..[ *read more* ](apps/cryptr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cryptr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cryptr) |
| <img src="icons/cscrypto.png" width="48" height="48"> | [***cscrypto***](apps/cscrypto.md) | *A crypto app.*..[ *read more* ](apps/cscrypto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cscrypto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cscrypto) |
| <img src="icons/ctool.png" width="48" height="48"> | [***ctool***](apps/ctool.md) | *Common Tools for Program Development.*..[ *read more* ](apps/ctool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ctool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ctool) |
| <img src="icons/ctop.png" width="48" height="48"> | [***ctop***](apps/ctop.md) | *Top-like interface for container metrics.*..[ *read more* ](apps/ctop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ctop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ctop) |
| <img src="icons/cubicsdr.png" width="48" height="48"> | [***cubicsdr***](apps/cubicsdr.md) | *Software-Defined Radio Application.*..[ *read more* ](apps/cubicsdr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cubicsdr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cubicsdr) |
| <img src="icons/cura.png" width="48" height="48"> | [***cura***](apps/cura.md) | *An open source slicing application for 3D printers.*..[ *read more* ](apps/cura.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cura) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cura) |
| <img src="icons/cura-beta.png" width="48" height="48"> | [***cura-beta***](apps/cura-beta.md) | *An open source slicing application for 3D printers, beta.*..[ *read more* ](apps/cura-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cura-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cura-beta) |
| <img src="icons/curlie.png" width="48" height="48"> | [***curlie***](apps/curlie.md) | *The power of curl, the ease of use of httpie.*..[ *read more* ](apps/curlie.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/curlie) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/curlie) |
| <img src="icons/cursor.png" width="48" height="48"> | [***cursor***](apps/cursor.md) | *Write, edit, and chat about your code with GPT-4.*..[ *read more* ](apps/cursor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cursor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cursor) |
| <img src="icons/customrpc.png" width="48" height="48"> | [***customrpc***](apps/customrpc.md) | *An electron-vue project.*..[ *read more* ](apps/customrpc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/customrpc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/customrpc) |
| <img src="icons/cutechess.png" width="48" height="48"> | [***cutechess***](apps/cutechess.md) | *Cute Chess is a GUI, a CLI and a library for playing chess.*..[ *read more* ](apps/cutechess.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cutechess) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cutechess) |
| <img src="icons/cutepeaks.png" width="48" height="48"> | [***cutepeaks***](apps/cutepeaks.md) | *A simple sanger trace file viewer.*..[ *read more* ](apps/cutepeaks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cutepeaks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cutepeaks) |
| <img src="icons/cutevariant.png" width="48" height="48"> | [***cutevariant***](apps/cutevariant.md) | *A genetics variant filtering tools*..[ *read more* ](apps/cutevariant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cutevariant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cutevariant) |
| <img src="icons/cutter.png" width="48" height="48"> | [***cutter***](apps/cutter.md) | *Free and Open Source Reverse Engineering Platform.*..[ *read more* ](apps/cutter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cutter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cutter) |
| <img src="icons/czkawka.png" width="48" height="48"> | [***czkawka***](apps/czkawka.md) | *App to find duplicates, empty folders, similar images etc.*..[ *read more* ](apps/czkawka.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/czkawka) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/czkawka) |
| <img src="icons/dana.png" width="48" height="48"> | [***dana***](apps/dana.md) | *A desktop client for the Dana learning box.*..[ *read more* ](apps/dana.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dana) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dana) |
| <img src="icons/darktable-nightly.png" width="48" height="48"> | [***darktable-nightly***](apps/darktable-nightly.md) | *Photography workflow app and raw developer, nightly.*..[ *read more* ](apps/darktable-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/darktable-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/darktable-nightly) |
| <img src="icons/darktable.png" width="48" height="48"> | [***darktable***](apps/darktable.md) | *Photography workflow app and raw developer.*..[ *read more* ](apps/darktable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/darktable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/darktable) |
| <img src="icons/dashy-app.png" width="48" height="48"> | [***dashy-app***](apps/dashy-app.md) | *Dashboard creation application.*..[ *read more* ](apps/dashy-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dashy-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dashy-app) |
| <img src="icons/database-dossier.png" width="48" height="48"> | [***database-dossier***](apps/database-dossier.md) | *A User Interface for your databases.*..[ *read more* ](apps/database-dossier.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/database-dossier) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/database-dossier) |
| <img src="icons/dataset-annotator.png" width="48" height="48"> | [***dataset-annotator***](apps/dataset-annotator.md) | *An annotation tool for a dataset.*..[ *read more* ](apps/dataset-annotator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dataset-annotator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dataset-annotator) |
| <img src="icons/datcord.png" width="48" height="48"> | [***datcord***](apps/datcord.md) | *Discord client.*..[ *read more* ](apps/datcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/datcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/datcord) |
| <img src="icons/dawnlightsearch.png" width="48" height="48"> | [***dawnlightsearch***](apps/dawnlightsearch.md) | *A Linux version of Everything Search Engine.*..[ *read more* ](apps/dawnlightsearch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dawnlightsearch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dawnlightsearch) |
| <img src="icons/dbeaver-ce.png" width="48" height="48"> | [***dbeaver-ce***](apps/dbeaver-ce.md) | *Unofficial, DBeaver Community is a free cross-platform database tool for developers, database administrators, analysts, and everyone working with data.*..[ *read more* ](apps/dbeaver-ce.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbeaver-ce) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbeaver-ce) |
| <img src="icons/dbee.png" width="48" height="48"> | [***dbee***](apps/dbee.md) | *Fast & Minimalistic Database Browser.*..[ *read more* ](apps/dbee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbee) |
| <img src="icons/dbet-wallet.png" width="48" height="48"> | [***dbet-wallet***](apps/dbet-wallet.md) | *DBET Wallet.*..[ *read more* ](apps/dbet-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbet-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbet-wallet) |
| <img src="icons/dbgate.png" width="48" height="48"> | [***dbgate***](apps/dbgate.md) | *Opensource database administration tool*..[ *read more* ](apps/dbgate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbgate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbgate) |
| <img src="icons/dbin.png" width="48" height="48"> | [***dbin***](apps/dbin.md) | *Poor man's package manager. About 3000 statically linked binaries in the repos!*..[ *read more* ](apps/dbin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbin) |
| <img src="icons/deadbeef.png" width="48" height="48"> | [***deadbeef***](apps/deadbeef.md) | *A modular cross-platform audio player.*..[ *read more* ](apps/deadbeef.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deadbeef) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deadbeef) |
| <img src="icons/deadbeef-appimage.png" width="48" height="48"> | [***deadbeef-appimage***](apps/deadbeef-appimage.md) | *Unofficial AppImage of the DeaDBeeF music player. Stable build.*..[ *read more* ](apps/deadbeef-appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deadbeef-appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deadbeef-appimage) |
| <img src="icons/deadbeef-nightly.png" width="48" height="48"> | [***deadbeef-nightly***](apps/deadbeef-nightly.md) | *A modular cross-platform audio player. Nightly build.*..[ *read more* ](apps/deadbeef-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deadbeef-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deadbeef-nightly) |
| <img src="icons/deadbeef-nightly-appimage.png" width="48" height="48"> | [***deadbeef-nightly-appimage***](apps/deadbeef-nightly-appimage.md) | *Unofficial AppImage of the DeaDBeeF music player. Nightly build.*..[ *read more* ](apps/deadbeef-nightly-appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deadbeef-nightly-appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deadbeef-nightly-appimage) |
| <img src="icons/deadgame-2048.png" width="48" height="48"> | [***deadgame-2048***](apps/deadgame-2048.md) | *GUI tool available for ALL platforms.*..[ *read more* ](apps/deadgame-2048.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deadgame-2048) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deadgame-2048) |
| <img src="icons/deb2appimage.png" width="48" height="48"> | [***deb2appimage***](apps/deb2appimage.md) | *Build AppImages from deb packages on any distro.*..[ *read more* ](apps/deb2appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deb2appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deb2appimage) |
| <img src="icons/debian-testing-avidemux.png" width="48" height="48"> | [***debian-testing-avidemux***](apps/debian-testing-avidemux.md) | *Unofficial, Avidemux built from deb-multimedia.*..[ *read more* ](apps/debian-testing-avidemux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/debian-testing-avidemux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/debian-testing-avidemux) |
| <img src="icons/deckboard.png" width="48" height="48"> | [***deckboard***](apps/deckboard.md) | *Control your PC with your phone in easy way possible.*..[ *read more* ](apps/deckboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deckboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deckboard) |
| <img src="icons/dedop-studio.png" width="48" height="48"> | [***dedop-studio***](apps/dedop-studio.md) | *DeDop Studio*..[ *read more* ](apps/dedop-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dedop-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dedop-studio) |
| <img src="icons/deepl-linux-electron.png" width="48" height="48"> | [***deepl-linux-electron***](apps/deepl-linux-electron.md) | *DeepL Integration. Select & translate text in any app.*..[ *read more* ](apps/deepl-linux-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deepl-linux-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deepl-linux-electron) |
| <img src="icons/deeplx.png" width="48" height="48"> | [***deeplx***](apps/deeplx.md) | *DeepL Free API, No TOKEN required.*..[ *read more* ](apps/deeplx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deeplx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deeplx) |
| <img src="icons/deepnotes.png" width="48" height="48"> | [***deepnotes***](apps/deepnotes.md) | *End-to-end encrypted visual note-taking tool.*..[ *read more* ](apps/deepnotes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deepnotes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deepnotes) |
| <img src="icons/deeptags.png" width="48" height="48"> | [***deeptags***](apps/deeptags.md) | *Markdown notes manager with support for nested tags.*..[ *read more* ](apps/deeptags.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deeptags) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deeptags) |
| <img src="icons/deerportal.png" width="48" height="48"> | [***deerportal***](apps/deerportal.md) | *Full of the diamonds board game.*..[ *read more* ](apps/deerportal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deerportal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deerportal) |
| <img src="icons/deezer.png" width="48" height="48"> | [***deezer***](apps/deezer.md) | *A linux port of Deezer, allows downloading your songs, music.*..[ *read more* ](apps/deezer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deezer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deezer) |
| <img src="icons/defichain-app.png" width="48" height="48"> | [***defichain-app***](apps/defichain-app.md) | *DefiChain Wallet AppImage.*..[ *read more* ](apps/defichain-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/defichain-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/defichain-app) |
| <img src="icons/delir.png" width="48" height="48"> | [***delir***](apps/delir.md) | *Web Technology driven VFX Application.*..[ *read more* ](apps/delir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/delir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/delir) |
| <img src="icons/deltachat-desktop.png" width="48" height="48"> | [***deltachat-desktop***](apps/deltachat-desktop.md) | *Desktop Application for delta.chat.*..[ *read more* ](apps/deltachat-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deltachat-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deltachat-desktop) |
| <img src="icons/demonizer.png" width="48" height="48"> | [***demonizer***](apps/demonizer.md) | *Demonic corruption fantasy shmup.*..[ *read more* ](apps/demonizer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/demonizer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/demonizer) |
| <img src="icons/densify.png" width="48" height="48"> | [***densify***](apps/densify.md) | *A GTK+ GUI Application written in Python that simplifies compressing PDF files with Ghostscript.*..[ *read more* ](apps/densify.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/densify) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/densify) |
| <img src="icons/deployer.png" width="48" height="48"> | [***deployer***](apps/deployer.md) | *Deploy your applications through Jenkins.*..[ *read more* ](apps/deployer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deployer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deployer) |
| <img src="icons/deskreen.png" width="48" height="48"> | [***deskreen***](apps/deskreen.md) | *Turns any device with a web browser into a secondary screen.*..[ *read more* ](apps/deskreen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deskreen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deskreen) |
| <img src="icons/destiny.png" width="48" height="48"> | [***destiny***](apps/destiny.md) | *Cross-platform Magic Wormhole graphical client.*..[ *read more* ](apps/destiny.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/destiny) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/destiny) |
| <img src="icons/devclean.png" width="48" height="48"> | [***devclean***](apps/devclean.md) | *A CLI and Desktop GUI app to clean dev dependencies (node_modules, cache) and more.*..[ *read more* ](apps/devclean.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devclean) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devclean) |
| <img src="icons/devdocs-desktop.png" width="48" height="48"> | [***devdocs-desktop***](apps/devdocs-desktop.md) | *Desktop client for devdocs.io.*..[ *read more* ](apps/devdocs-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devdocs-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devdocs-desktop) |
| <img src="icons/devhub.png" width="48" height="48"> | [***devhub***](apps/devhub.md) | *TweetDeck for GitHub*..[ *read more* ](apps/devhub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devhub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devhub) |
| <img src="icons/devilutionx.png" width="48" height="48"> | [***devilutionx***](apps/devilutionx.md) | *Diablo build for modern operating systems.*..[ *read more* ](apps/devilutionx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devilutionx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devilutionx) |
| <img src="icons/devsidecar.png" width="48" height="48"> | [***devsidecar***](apps/devsidecar.md) | *Dev sidecar/github/git/stackoverflow acceleration, in chinese.*..[ *read more* ](apps/devsidecar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devsidecar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devsidecar) |
| <img src="icons/devtools-x.png" width="48" height="48"> | [***devtools-x***](apps/devtools-x.md) | *Collection of offline first developer utilities available as desktop application.*..[ *read more* ](apps/devtools-x.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devtools-x) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devtools-x) |
| <img src="icons/dexter-dev-env.png" width="48" height="48"> | [***dexter-dev-env***](apps/dexter-dev-env.md) | *Dexter Development Environment.*..[ *read more* ](apps/dexter-dev-env.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dexter-dev-env) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dexter-dev-env) |
| <img src="icons/dezor.png" width="48" height="48"> | [***dezor***](apps/dezor.md) | *The web browser including VPN and Adblocker.*..[ *read more* ](apps/dezor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dezor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dezor) |
| <img src="icons/dfdemo.png" width="48" height="48"> | [***dfdemo***](apps/dfdemo.md) | *A thin Tcl/Tk GUI around the df POSIX command.*..[ *read more* ](apps/dfdemo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dfdemo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dfdemo) |
| <img src="icons/dfilemanager.png" width="48" height="48"> | [***dfilemanager***](apps/dfilemanager.md) | *File manager written in Qt and C++.*..[ *read more* ](apps/dfilemanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dfilemanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dfilemanager) |
| <img src="icons/dicomautomaton.png" width="48" height="48"> | [***dicomautomaton***](apps/dicomautomaton.md) | *Tools for working with medical physics data.*..[ *read more* ](apps/dicomautomaton.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dicomautomaton) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dicomautomaton) |
| <img src="icons/didder.png" width="48" height="48"> | [***didder***](apps/didder.md) | *An extensive, fast, and accurate command-line image dithering tool.*..[ *read more* ](apps/didder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/didder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/didder) |
| <img src="icons/die-engine.png" width="48" height="48"> | [***die-engine***](apps/die-engine.md) | *Detect It Easy, a program for determining types of files.*..[ *read more* ](apps/die-engine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/die-engine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/die-engine) |
| <img src="icons/diffuse.png" width="48" height="48"> | [***diffuse***](apps/diffuse.md) | *Music player, connects to your cloud/distributed storage.*..[ *read more* ](apps/diffuse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diffuse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diffuse) |
| <img src="icons/digikam.png" width="48" height="48"> | [***digikam***](apps/digikam.md) | *Professional and advanced digital photo management application.*..[ *read more* ](apps/digikam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/digikam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/digikam) |
| <img src="icons/dingtalk.png" width="48" height="48"> | [***dingtalk***](apps/dingtalk.md) | *DingTalk desktop version based on electron.*..[ *read more* ](apps/dingtalk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dingtalk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dingtalk) |
| <img src="icons/disass.png" width="48" height="48"> | [***disass***](apps/disass.md) | *A simple disassembly tool.*..[ *read more* ](apps/disass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/disass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/disass) |
| <img src="icons/discord-qt.png" width="48" height="48"> | [***discord-qt***](apps/discord-qt.md) | *Unofficial. Discord client powered by Node.JS and Qt Widgets.*..[ *read more* ](apps/discord-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/discord-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/discord-qt) |
| <img src="icons/discord.png" width="48" height="48"> | [***discord***](apps/discord.md) | *Unofficial. All-in-one voice and text chat for gamers.*..[ *read more* ](apps/discord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/discord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/discord) |
| <img src="icons/diskonaut.png" width="48" height="48"> | [***diskonaut***](apps/diskonaut.md) | *Terminal disk space navigator.*..[ *read more* ](apps/diskonaut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diskonaut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diskonaut) |
| <img src="icons/dissent.png" width="48" height="48"> | [***dissent***](apps/dissent.md) | *Tiny native Discord app.*..[ *read more* ](apps/dissent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dissent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dissent) |
| <img src="icons/dl-desktop.png" width="48" height="48"> | [***dl-desktop***](apps/dl-desktop.md) | *Desktop client for the Duolingo language learning application.*..[ *read more* ](apps/dl-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dl-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dl-desktop) |
| <img src="icons/dockstation.png" width="48" height="48"> | [***dockstation***](apps/dockstation.md) | *Developing with Docker has never been so easy and convenient.*..[ *read more* ](apps/dockstation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dockstation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dockstation) |
| <img src="icons/doggo.png" width="48" height="48"> | [***doggo***](apps/doggo.md) | *Command-line DNS Client for Humans. Written in Golang*..[ *read more* ](apps/doggo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doggo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doggo) |
| <img src="icons/dokidokimodmanager.png" width="48" height="48"> | [***dokidokimodmanager***](apps/dokidokimodmanager.md) | *Mod Manager for Doki Doki Literature Club!*..[ *read more* ](apps/dokidokimodmanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dokidokimodmanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dokidokimodmanager) |
| <img src="icons/dolphin-emu.png" width="48" height="48"> | [***dolphin-emu***](apps/dolphin-emu.md) | *Unofficial, GameCube/Nintento Wii emulator with improvements.*..[ *read more* ](apps/dolphin-emu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dolphin-emu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dolphin-emu) |
| <img src="icons/domterm.png" width="48" height="48"> | [***domterm***](apps/domterm.md) | *DOM/JavaScript-based terminal-emulator/console.*..[ *read more* ](apps/domterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/domterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/domterm) |
| <img src="icons/dooit.png" width="48" height="48"> | [***dooit***](apps/dooit.md) | *An awesome TUI todo manager.*..[ *read more* ](apps/dooit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dooit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dooit) |
| <img src="icons/dopamine-preview.png" width="48" height="48"> | [***dopamine-preview***](apps/dopamine-preview.md) | *The audio player that keeps it simple.*..[ *read more* ](apps/dopamine-preview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dopamine-preview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dopamine-preview) |
| <img src="icons/dosemu.png" width="48" height="48"> | [***dosemu***](apps/dosemu.md) | *Run DOS programs under linux.*..[ *read more* ](apps/dosemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dosemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dosemu) |
| <img src="icons/dotto.png" width="48" height="48"> | [***dotto***](apps/dotto.md) | *A portable and modern pixelart editor, written from scratch.*..[ *read more* ](apps/dotto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dotto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dotto) |
| <img src="icons/doublecmd-gtk.png" width="48" height="48"> | [***doublecmd-gtk***](apps/doublecmd-gtk.md) | *Two-panel file manager, also known as Double Commander.*..[ *read more* ](apps/doublecmd-gtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doublecmd-gtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doublecmd-gtk) |
| <img src="icons/doublecmd-qt.png" width="48" height="48"> | [***doublecmd-qt***](apps/doublecmd-qt.md) | *Two-panel file manager, also known as Double Commander.*..[ *read more* ](apps/doublecmd-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doublecmd-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doublecmd-qt) |
| <img src="icons/downline.png" width="48" height="48"> | [***downline***](apps/downline.md) | *A cross-platform video and audio downloader.*..[ *read more* ](apps/downline.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/downline) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/downline) |
| <img src="icons/dra.png" width="48" height="48"> | [***dra***](apps/dra.md) | *A command line tool to download release assets from GitHub.*..[ *read more* ](apps/dra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dra) |
| <img src="icons/dragdrop.png" width="48" height="48"> | [***dragdrop***](apps/dragdrop.md) | *Small drag-and-drop file source for the command line.*..[ *read more* ](apps/dragdrop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dragdrop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dragdrop) |
| <img src="icons/dragoman.png" width="48" height="48"> | [***dragoman***](apps/dragoman.md) | *GUI for polyglot.*..[ *read more* ](apps/dragoman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dragoman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dragoman) |
| <img src="icons/dragula.png" width="48" height="48"> | [***dragula***](apps/dragula.md) | *Free Stock Images on Steroids.*..[ *read more* ](apps/dragula.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dragula) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dragula) |
| <img src="icons/draw.png" width="48" height="48"> | [***draw***](apps/draw.md) | *Draw in your terminal.*..[ *read more* ](apps/draw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/draw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/draw) |
| <img src="icons/draw.io.png" width="48" height="48"> | [***draw.io***](apps/draw.io.md) | *draw.io desktop.*..[ *read more* ](apps/draw.io.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/draw.io) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/draw.io) |
| <img src="icons/drawpile.png" width="48" height="48"> | [***drawpile***](apps/drawpile.md) | *Drawing program to sketch on the same canvas simultaneously.*..[ *read more* ](apps/drawpile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drawpile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drawpile) |
| <img src="icons/drill.png" width="48" height="48"> | [***drill***](apps/drill.md) | *Search files without indexing, but clever crawling.*..[ *read more* ](apps/drill.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drill) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drill) |
| <img src="icons/droidcam.png" width="48" height="48"> | [***droidcam***](apps/droidcam.md) | *A DroidCam AppImage for the Steam Deck/SteamOS 3.0.*..[ *read more* ](apps/droidcam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/droidcam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/droidcam) |
| <img src="icons/dropbox.png" width="48" height="48"> | [***dropbox***](apps/dropbox.md) | *A free cloud service, Unofficial AppImage.*..[ *read more* ](apps/dropbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dropbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dropbox) |
| <img src="icons/droppoint.png" width="48" height="48"> | [***droppoint***](apps/droppoint.md) | *Drag content without having to open side-by-side windows.*..[ *read more* ](apps/droppoint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/droppoint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/droppoint) |
| <img src="icons/dstask.png" width="48" height="48"> | [***dstask***](apps/dstask.md) | *Git powered terminal-based todo/note manager, markdown note page per task.*..[ *read more* ](apps/dstask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dstask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dstask) |
| <img src="icons/dtmate.png" width="48" height="48"> | [***dtmate***](apps/dtmate.md) | *CLI to compute difference between date, time or duration.*..[ *read more* ](apps/dtmate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dtmate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dtmate) |
| <img src="icons/dua.png" width="48" height="48"> | [***dua***](apps/dua.md) | *View disk space usage and delete unwanted data, fast.*..[ *read more* ](apps/dua.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dua) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dua) |
| <img src="icons/duckling.png" width="48" height="48"> | [***duckling***](apps/duckling.md) | *A fast viewer for CSV/Parquet files and databases such as DuckDB, SQLite, PostgreSQL, MySQL, Clickhouse, etc.*..[ *read more* ](apps/duckling.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duckling) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duckling) |
| <img src="icons/duckstation.png" width="48" height="48"> | [***duckstation***](apps/duckstation.md) | *PlayStation 1, aka PSX games Emulator.*..[ *read more* ](apps/duckstation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duckstation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duckstation) |
| <img src="icons/duelyst.png" width="48" height="48"> | [***duelyst***](apps/duelyst.md) | *A digital collectible card game and turn-based strategy hybrid.*..[ *read more* ](apps/duelyst.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duelyst) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duelyst) |
| <img src="icons/duf.png" width="48" height="48"> | [***duf***](apps/duf.md) | *Disk Usage/Free Utility, a better 'df' alternative.*..[ *read more* ](apps/duf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duf) |
| <img src="icons/dukto.png" width="48" height="48"> | [***dukto***](apps/dukto.md) | *Easy and multi-platform file transfer tool.*..[ *read more* ](apps/dukto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dukto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dukto) |
| <img src="icons/dune.png" width="48" height="48"> | [***dune***](apps/dune.md) | *A shell by the beach.*..[ *read more* ](apps/dune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dune) |
| <img src="icons/dunst.png" width="48" height="48"> | [***dunst***](apps/dunst.md) | *Lightweight and customizable notification daemon.*..[ *read more* ](apps/dunst.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dunst) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dunst) |
| <img src="icons/duskplayer.png" width="48" height="48"> | [***duskplayer***](apps/duskplayer.md) | *A minimal music player built on electron.*..[ *read more* ](apps/duskplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duskplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duskplayer) |
| <img src="icons/dust3d.png" width="48" height="48"> | [***dust3d***](apps/dust3d.md) | *3D modeling software for games, 3D printing, and so on.*..[ *read more* ](apps/dust3d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dust3d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dust3d) |
| <img src="icons/dust.png" width="48" height="48"> | [***dust***](apps/dust.md) | *A more intuitive version of du in rust.*..[ *read more* ](apps/dust.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dust) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dust) |
| <img src="icons/dvdisaster.png" width="48" height="48"> | [***dvdisaster***](apps/dvdisaster.md) | *Additional error protection for CD/DVD media.*..[ *read more* ](apps/dvdisaster.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dvdisaster) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dvdisaster) |
| <img src="icons/dwarf-fortress.png" width="48" height="48"> | [***dwarf-fortress***](apps/dwarf-fortress.md) | *The AppImage of lnp-forge built LinuxDwarfPack.*..[ *read more* ](apps/dwarf-fortress.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dwarf-fortress) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dwarf-fortress) |
| <img src="icons/dwyco-phoo.png" width="48" height="48"> | [***dwyco-phoo***](apps/dwyco-phoo.md) | *Dwyco Phoo Chat and Video Calling.*..[ *read more* ](apps/dwyco-phoo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dwyco-phoo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dwyco-phoo) |
| <img src="icons/e2-sat-editor.png" width="48" height="48"> | [***e2-sat-editor***](apps/e2-sat-editor.md) | *Satellite channel lists editor with tabbed nav.*..[ *read more* ](apps/e2-sat-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/e2-sat-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/e2-sat-editor) |
| <img src="icons/eaglemode.png" width="48" height="48"> | [***eaglemode***](apps/eaglemode.md) | *Zoomable user interface with plugin applications.*..[ *read more* ](apps/eaglemode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eaglemode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eaglemode) |
| <img src="icons/easymercurial.png" width="48" height="48"> | [***easymercurial***](apps/easymercurial.md) | *A simple UI for the Mercurial version-control system.*..[ *read more* ](apps/easymercurial.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/easymercurial) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/easymercurial) |
| <img src="icons/ecency-surfer.png" width="48" height="48"> | [***ecency-surfer***](apps/ecency-surfer.md) | *Rewarding communities built, owned and operated by its users.*..[ *read more* ](apps/ecency-surfer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ecency-surfer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ecency-surfer) |
| <img src="icons/ecode.png" width="48" height="48"> | [***ecode***](apps/ecode.md) | *Lightweight code editor designed for modern hardware.*..[ *read more* ](apps/ecode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ecode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ecode) |
| <img src="icons/edex-ui.png" width="48" height="48"> | [***edex-ui***](apps/edex-ui.md) | *A cross-platform, customizable science fiction terminal emulator.*..[ *read more* ](apps/edex-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/edex-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/edex-ui) |
| <img src="icons/effer.png" width="48" height="48"> | [***effer***](apps/effer.md) | *Encrypted CLI Notepad written in Rust*..[ *read more* ](apps/effer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/effer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/effer) |
| <img src="icons/eget.png" width="48" height="48"> | [***eget***](apps/eget.md) | *Easily install prebuilt binaries from GitHub.*..[ *read more* ](apps/eget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eget) |
| <img src="icons/ehdev-shell.png" width="48" height="48"> | [***ehdev-shell***](apps/ehdev-shell.md) | *An electron based developing tool for feds.*..[ *read more* ](apps/ehdev-shell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ehdev-shell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ehdev-shell) |
| <img src="icons/eka2l1.png" width="48" height="48"> | [***eka2l1***](apps/eka2l1.md) | *A Symbian OS/N-Gage emulator*..[ *read more* ](apps/eka2l1.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eka2l1) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eka2l1) |
| <img src="icons/eksplode.re.png" width="48" height="48"> | [***eksplode.re***](apps/eksplode.re.md) | *Bomberman game made with Godot under BSD3.*..[ *read more* ](apps/eksplode.re.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eksplode.re) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eksplode.re) |
| <img src="icons/elapp.png" width="48" height="48"> | [***elapp***](apps/elapp.md) | *Elapp let's you send files to mobile and desktop devices near you.*..[ *read more* ](apps/elapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elapp) |
| <img src="icons/elcalc.png" width="48" height="48"> | [***elcalc***](apps/elcalc.md) | *Cross-Platform calculator built with Electron.*..[ *read more* ](apps/elcalc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elcalc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elcalc) |
| <img src="icons/eldumper.png" width="48" height="48"> | [***eldumper***](apps/eldumper.md) | *A GB Cartridge Dumper.*..[ *read more* ](apps/eldumper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eldumper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eldumper) |
| <img src="icons/electorrent.png" width="48" height="48"> | [***electorrent***](apps/electorrent.md) | *A remote control Torrent client.*..[ *read more* ](apps/electorrent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electorrent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electorrent) |
| <img src="icons/electrocrud.png" width="48" height="48"> | [***electrocrud***](apps/electrocrud.md) | *No coding is required.*..[ *read more* ](apps/electrocrud.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrocrud) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrocrud) |
| <img src="icons/electron-app-store.png" width="48" height="48"> | [***electron-app-store***](apps/electron-app-store.md) | *Simple App Store for Apps Built with Electron.*..[ *read more* ](apps/electron-app-store.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-app-store) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-app-store) |
| <img src="icons/electron-cash.png" width="48" height="48"> | [***electron-cash***](apps/electron-cash.md) | *Lightweight Bitcoin Cash Client.*..[ *read more* ](apps/electron-cash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-cash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-cash) |
| <img src="icons/electron-mail.png" width="48" height="48"> | [***electron-mail***](apps/electron-mail.md) | *Unofficial ProtonMail Desktop App.*..[ *read more* ](apps/electron-mail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-mail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-mail) |
| <img src="icons/electron-react-boilerplate.png" width="48" height="48"> | [***electron-react-boilerplate***](apps/electron-react-boilerplate.md) | *A Foundation for Scalable Cross-Platform Apps.*..[ *read more* ](apps/electron-react-boilerplate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-react-boilerplate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-react-boilerplate) |
| <img src="icons/electronreact.png" width="48" height="48"> | [***electronreact***](apps/electronreact.md) | *Desktop application using Electron and React.*..[ *read more* ](apps/electronreact.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electronreact) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electronreact) |
| <img src="icons/electron-ssr.png" width="48" height="48"> | [***electron-ssr***](apps/electron-ssr.md) | *Install electron-ssr from appimage.*..[ *read more* ](apps/electron-ssr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-ssr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-ssr) |
| <img src="icons/electron-utils.png" width="48" height="48"> | [***electron-utils***](apps/electron-utils.md) | *Electron Utils for every day usage as a dev.*..[ *read more* ](apps/electron-utils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-utils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-utils) |
| <img src="icons/electron-wechat.png" width="48" height="48"> | [***electron-wechat***](apps/electron-wechat.md) | *Wechat desktop application.*..[ *read more* ](apps/electron-wechat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-wechat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-wechat) |
| <img src="icons/electronwmd.png" width="48" height="48"> | [***electronwmd***](apps/electronwmd.md) | *Upload music to NetMD MiniDisc devices.*..[ *read more* ](apps/electronwmd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electronwmd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electronwmd) |
| <img src="icons/electron-xiami.png" width="48" height="48"> | [***electron-xiami***](apps/electron-xiami.md) | *Xiami Electron desktop application.*..[ *read more* ](apps/electron-xiami.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-xiami) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-xiami) |
| <img src="icons/electrumfair.png" width="48" height="48"> | [***electrumfair***](apps/electrumfair.md) | *Lightweight FairCoin Client.*..[ *read more* ](apps/electrumfair.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrumfair) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrumfair) |
| <img src="icons/electrum.png" width="48" height="48"> | [***electrum***](apps/electrum.md) | *Lightweight Bitcoin Client.*..[ *read more* ](apps/electrum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrum) |
| <img src="icons/electrum-ltc.png" width="48" height="48"> | [***electrum-ltc***](apps/electrum-ltc.md) | *A simple, but powerful Litecoin wallet.*..[ *read more* ](apps/electrum-ltc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrum-ltc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrum-ltc) |
| <img src="icons/electrum-nmc.png" width="48" height="48"> | [***electrum-nmc***](apps/electrum-nmc.md) | *Lightweight Namecoin Client.*..[ *read more* ](apps/electrum-nmc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrum-nmc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrum-nmc) |
| <img src="icons/electrum-ravencoin.png" width="48" height="48"> | [***electrum-ravencoin***](apps/electrum-ravencoin.md) | *Forked from the Electrum Bitcoin base client.*..[ *read more* ](apps/electrum-ravencoin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrum-ravencoin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrum-ravencoin) |
| <img src="icons/element.png" width="48" height="48"> | [***element***](apps/element.md) | *A feature-rich client for Matrix.org.*..[ *read more* ](apps/element.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/element) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/element) |
| <img src="icons/elementary-code.png" width="48" height="48"> | [***elementary-code***](apps/elementary-code.md) | *AppImage version of Elementary OS "Code" by Maksym Titenko.*..[ *read more* ](apps/elementary-code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elementary-code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elementary-code) |
| <img src="icons/elements.png" width="48" height="48"> | [***elements***](apps/elements.md) | *App which displays the periodic table, Education, Science.*..[ *read more* ](apps/elements.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elements) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elements) |
| <img src="icons/elk.png" width="48" height="48"> | [***elk***](apps/elk.md) | *Native version of Elk, a nimble Mastodon web.*..[ *read more* ](apps/elk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elk) |
| <img src="icons/ellas-war.png" width="48" height="48"> | [***ellas-war***](apps/ellas-war.md) | *Explore Ancient Greece on Ellas-War.*..[ *read more* ](apps/ellas-war.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ellas-war) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ellas-war) |
| <img src="icons/elphyre-walletshell.png" width="48" height="48"> | [***elphyre-walletshell***](apps/elphyre-walletshell.md) | *Elphyrecoin GUI Wallet.*..[ *read more* ](apps/elphyre-walletshell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elphyre-walletshell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elphyre-walletshell) |
| <img src="icons/elvish.png" width="48" height="48"> | [***elvish***](apps/elvish.md) | *Powerful modern shell scripting.*..[ *read more* ](apps/elvish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elvish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elvish) |
| <img src="icons/elzabrowser.png" width="48" height="48"> | [***elzabrowser***](apps/elzabrowser.md) | *Elza incognito web browser.*..[ *read more* ](apps/elzabrowser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elzabrowser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elzabrowser) |
| <img src="icons/emacs-nox-daily.png" width="48" height="48"> | [***emacs-nox-daily***](apps/emacs-nox-daily.md) | *Unofficial. FOSS text editor for complete programming language.*..[ *read more* ](apps/emacs-nox-daily.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emacs-nox-daily) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emacs-nox-daily) |
| <img src="icons/emacs-nox.png" width="48" height="48"> | [***emacs-nox***](apps/emacs-nox.md) | *Unofficial. FOSS text editor for complete programming language.*..[ *read more* ](apps/emacs-nox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emacs-nox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emacs-nox) |
| <img src="icons/emacs-pgtk-daily.png" width="48" height="48"> | [***emacs-pgtk-daily***](apps/emacs-pgtk-daily.md) | *Unofficial. FOSS text editor for complete programming language.*..[ *read more* ](apps/emacs-pgtk-daily.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emacs-pgtk-daily) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emacs-pgtk-daily) |
| <img src="icons/emacs-pgtk.png" width="48" height="48"> | [***emacs-pgtk***](apps/emacs-pgtk.md) | *Unofficial. FOSS text editor for complete programming language.*..[ *read more* ](apps/emacs-pgtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emacs-pgtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emacs-pgtk) |
| <img src="icons/emacs.png" width="48" height="48"> | [***emacs***](apps/emacs.md) | *Unofficial. FOSS text editor for complete programming language.*..[ *read more* ](apps/emacs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emacs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emacs) |
| <img src="icons/emacs-x11-daily.png" width="48" height="48"> | [***emacs-x11-daily***](apps/emacs-x11-daily.md) | *Unofficial. FOSS text editor for complete programming language.*..[ *read more* ](apps/emacs-x11-daily.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emacs-x11-daily) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emacs-x11-daily) |
| <img src="icons/emacs-x11.png" width="48" height="48"> | [***emacs-x11***](apps/emacs-x11.md) | *Unofficial. FOSS text editor for complete programming language.*..[ *read more* ](apps/emacs-x11.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emacs-x11) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emacs-x11) |
| <img src="icons/embedded-ide.png" width="48" height="48"> | [***embedded-ide***](apps/embedded-ide.md) | *Makefile based IDE for embedded systems.*..[ *read more* ](apps/embedded-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/embedded-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/embedded-ide) |
| <img src="icons/ember.png" width="48" height="48"> | [***ember***](apps/ember.md) | *Client for the WorldForge virtual world system, game.*..[ *read more* ](apps/ember.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ember) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ember) |
| <img src="icons/emoji-keyboard.png" width="48" height="48"> | [***emoji-keyboard***](apps/emoji-keyboard.md) | *Virtual keyboard-like emoji palette for Linux.*..[ *read more* ](apps/emoji-keyboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emoji-keyboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emoji-keyboard) |
| <img src="icons/emudeck.png" width="48" height="48"> | [***emudeck***](apps/emudeck.md) | *EmuDeck Desktop Electron Wrapper.*..[ *read more* ](apps/emudeck.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emudeck) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emudeck) |
| <img src="icons/en-croissant.png" width="48" height="48"> | [***en-croissant***](apps/en-croissant.md) | *The Ultimate Chess Toolkit.*..[ *read more* ](apps/en-croissant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/en-croissant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/en-croissant) |
| <img src="icons/encryptpad.png" width="48" height="48"> | [***encryptpad***](apps/encryptpad.md) | *Secure text editor and binary encryptor with passwords.*..[ *read more* ](apps/encryptpad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/encryptpad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/encryptpad) |
| <img src="icons/endless-sky.png" width="48" height="48"> | [***endless-sky***](apps/endless-sky.md) | *Space exploration and combat game.*..[ *read more* ](apps/endless-sky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/endless-sky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/endless-sky) |
| <img src="icons/enoseannotator.png" width="48" height="48"> | [***enoseannotator***](apps/enoseannotator.md) | *View, annotate and store measurements of the eNose sensor.*..[ *read more* ](apps/enoseannotator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/enoseannotator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/enoseannotator) |
| <img src="icons/ente-auth.png" width="48" height="48"> | [***ente-auth***](apps/ente-auth.md) | *Fully open source, End to End Encrypted alternative to Google Photos and Apple Photos.*..[ *read more* ](apps/ente-auth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ente-auth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ente-auth) |
| <img src="icons/ente-photos.png" width="48" height="48"> | [***ente-photos***](apps/ente-photos.md) | *Binary releases of the Ente Photos desktop app.*..[ *read more* ](apps/ente-photos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ente-photos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ente-photos) |
| <img src="icons/enve.png" width="48" height="48"> | [***enve***](apps/enve.md) | *Create 2D Animations.*..[ *read more* ](apps/enve.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/enve) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/enve) |
| <img src="icons/envkey.png" width="48" height="48"> | [***envkey***](apps/envkey.md) | *EnvKey’s cross-platform native app.*..[ *read more* ](apps/envkey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/envkey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/envkey) |
| <img src="icons/eosvc.png" width="48" height="48"> | [***eosvc***](apps/eosvc.md) | *Application for management of self-employeed people.*..[ *read more* ](apps/eosvc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eosvc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eosvc) |
| <img src="icons/eplee.png" width="48" height="48"> | [***eplee***](apps/eplee.md) | *Sweet, simple epub reader.*..[ *read more* ](apps/eplee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eplee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eplee) |
| <img src="icons/eqonomize.png" width="48" height="48"> | [***eqonomize***](apps/eqonomize.md) | *Manage your personal finances.*..[ *read more* ](apps/eqonomize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eqonomize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eqonomize) |
| <img src="icons/era.png" width="48" height="48"> | [***era***](apps/era.md) | *ERA is your note-taking tool.*..[ *read more* ](apps/era.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/era) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/era) |
| <img src="icons/erdesigner.png" width="48" height="48"> | [***erdesigner***](apps/erdesigner.md) | *ER Diagram tool available for ALL platforms.*..[ *read more* ](apps/erdesigner.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/erdesigner) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/erdesigner) |
| <img src="icons/erscaffold.png" width="48" height="48"> | [***erscaffold***](apps/erscaffold.md) | *A code generator for websites.*..[ *read more* ](apps/erscaffold.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/erscaffold) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/erscaffold) |
| <img src="icons/escrcpy.png" width="48" height="48"> | [***escrcpy***](apps/escrcpy.md) | *Graphical Scrcpy to display and control Android, devices powered by Electron.*..[ *read more* ](apps/escrcpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/escrcpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/escrcpy) |
| <img src="icons/es-de.png" width="48" height="48"> | [***es-de***](apps/es-de.md) | *EmulationStation Desktop Edition.*..[ *read more* ](apps/es-de.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/es-de) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/es-de) |
| <img src="icons/esearch.png" width="48" height="48"> | [***esearch***](apps/esearch.md) | *Screenshot OCR search translate search for picture paste...*..[ *read more* ](apps/esearch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/esearch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/esearch) |
| <img src="icons/espanso.png" width="48" height="48"> | [***espanso***](apps/espanso.md) | *Cross-platform Text Expander written in Rust.*..[ *read more* ](apps/espanso.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/espanso) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/espanso) |
| <img src="icons/espi.png" width="48" height="48"> | [***espi***](apps/espi.md) | *Software recreation of the SP-1200 drum machine.*..[ *read more* ](apps/espi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/espi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/espi) |
| <img src="icons/etcher.png" width="48" height="48"> | [***etcher***](apps/etcher.md) | *Flash OS images to SD cards and USB drives, Balena Etcher.*..[ *read more* ](apps/etcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/etcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/etcher) |
| <img src="icons/etcher-latest.png" width="48" height="48"> | [***etcher-latest***](apps/etcher-latest.md) | *Flash OS images to SD cards and USB drives, Balena Etcher.*..[ *read more* ](apps/etcher-latest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/etcher-latest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/etcher-latest) |
| <img src="icons/eternal-lands.png" width="48" height="48"> | [***eternal-lands***](apps/eternal-lands.md) | *3D fantasy multiplayer online role playing game.*..[ *read more* ](apps/eternal-lands.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eternal-lands) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eternal-lands) |
| <img src="icons/eternalmodmanager.png" width="48" height="48"> | [***eternalmodmanager***](apps/eternalmodmanager.md) | *A cross platform mod manager for DOOM Eternal.*..[ *read more* ](apps/eternalmodmanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eternalmodmanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eternalmodmanager) |
| <img src="icons/etherealengine-cc.png" width="48" height="48"> | [***etherealengine-cc***](apps/etherealengine-cc.md) | *App for managing Ethereal Engine cluster.*..[ *read more* ](apps/etherealengine-cc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/etherealengine-cc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/etherealengine-cc) |
| <img src="icons/etichetta.png" width="48" height="48"> | [***etichetta***](apps/etichetta.md) | *A YOLO annotator, for human beings.*..[ *read more* ](apps/etichetta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/etichetta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/etichetta) |
| <img src="icons/eudic.png" width="48" height="48"> | [***eudic***](apps/eudic.md) | *Chinese app to learn english, listen statistics/note synch....*..[ *read more* ](apps/eudic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eudic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eudic) |
| <img src="icons/evalit.png" width="48" height="48"> | [***evalit***](apps/evalit.md) | *A notepad calculator application with JavaScript configuration.*..[ *read more* ](apps/evalit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/evalit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/evalit) |
| <img src="icons/everdo.png" width="48" height="48"> | [***everdo***](apps/everdo.md) | *A powerful cross-platform GTD app with focus on privacy.*..[ *read more* ](apps/everdo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/everdo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/everdo) |
| <img src="icons/everinst.png" width="48" height="48"> | [***everinst***](apps/everinst.md) | *An installer for the Everest mod loader.*..[ *read more* ](apps/everinst.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/everinst) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/everinst) |
| <img src="icons/evince.png" width="48" height="48"> | [***evince***](apps/evince.md) | *Unofficial. Document viewer for popular document formats.*..[ *read more* ](apps/evince.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/evince) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/evince) |
| <img src="icons/evoplex.png" width="48" height="48"> | [***evoplex***](apps/evoplex.md) | *Agent-based modeling.*..[ *read more* ](apps/evoplex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/evoplex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/evoplex) |
| <img src="icons/excel-parser-processor.png" width="48" height="48"> | [***excel-parser-processor***](apps/excel-parser-processor.md) | *Generates an array of items from the rows.*..[ *read more* ](apps/excel-parser-processor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/excel-parser-processor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/excel-parser-processor) |
| <img src="icons/exe.png" width="48" height="48"> | [***exe***](apps/exe.md) | *A Elearning XHTML/HTML5 editor.*..[ *read more* ](apps/exe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exe) |
| <img src="icons/exeqt.png" width="48" height="48"> | [***exeqt***](apps/exeqt.md) | *Cross platform tray manager.*..[ *read more* ](apps/exeqt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exeqt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exeqt) |
| <img src="icons/exifcleaner.png" width="48" height="48"> | [***exifcleaner***](apps/exifcleaner.md) | *Clean exif metadata from images, videos, and PDFs.*..[ *read more* ](apps/exifcleaner.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exifcleaner) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exifcleaner) |
| <img src="icons/eximchain-wallet.png" width="48" height="48"> | [***eximchain-wallet***](apps/eximchain-wallet.md) | *Eximchain Wallet web and electron app.*..[ *read more* ](apps/eximchain-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eximchain-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eximchain-wallet) |
| <img src="icons/exocortex.png" width="48" height="48"> | [***exocortex***](apps/exocortex.md) | *An encrypted note taking and personal knowledge management app for those who value privacy and security.*..[ *read more* ](apps/exocortex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exocortex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exocortex) |
| <img src="icons/exodus.png" width="48" height="48"> | [***exodus***](apps/exodus.md) | *Send, receive & exchange cryptocurrency. Bitcoin wallet.*..[ *read more* ](apps/exodus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exodus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exodus) |
| <img src="icons/explorook.png" width="48" height="48"> | [***explorook***](apps/explorook.md) | *Rookout’s site addon to support local files and folders.*..[ *read more* ](apps/explorook.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/explorook) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/explorook) |
| <img src="icons/exportoo.png" width="48" height="48"> | [***exportoo***](apps/exportoo.md) | *Read and search your exports.*..[ *read more* ](apps/exportoo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exportoo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exportoo) |
| <img src="icons/exsplode.re.png" width="48" height="48"> | [***exsplode.re***](apps/exsplode.re.md) | *A Bomberman game made with Godot under BSD3.*..[ *read more* ](apps/exsplode.re.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exsplode.re) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exsplode.re) |
| <img src="icons/extraterm.png" width="48" height="48"> | [***extraterm***](apps/extraterm.md) | *The swiss army chainsaw of terminal emulators.*..[ *read more* ](apps/extraterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/extraterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/extraterm) |
| <img src="icons/extrema.png" width="48" height="48"> | [***extrema***](apps/extrema.md) | *Data visualisation and analysis.*..[ *read more* ](apps/extrema.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/extrema) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/extrema) |
| <img src="icons/extremetuxracer.png" width="48" height="48"> | [***extremetuxracer***](apps/extremetuxracer.md) | *Unofficial. 3D racing game with Tux, the Linux penguin.*..[ *read more* ](apps/extremetuxracer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/extremetuxracer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/extremetuxracer) |
| <img src="icons/eyestalker.png" width="48" height="48"> | [***eyestalker***](apps/eyestalker.md) | *Video-based eye tracking using recursive estimation of pupil.*..[ *read more* ](apps/eyestalker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eyestalker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eyestalker) |
| <img src="icons/eza.png" width="48" height="48"> | [***eza***](apps/eza.md) | *A modern, maintained replacement for ls.*..[ *read more* ](apps/eza.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eza) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eza) |
| <img src="icons/ezup.png" width="48" height="48"> | [***ezup***](apps/ezup.md) | *Easy File Upload to Cloud Storage.*..[ *read more* ](apps/ezup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ezup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ezup) |
| <img src="icons/f1mv-lights-integration.png" width="48" height="48"> | [***f1mv-lights-integration***](apps/f1mv-lights-integration.md) | *Connect your smart home lights to MultiViewer.*..[ *read more* ](apps/f1mv-lights-integration.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/f1mv-lights-integration) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/f1mv-lights-integration) |
| <img src="icons/fafarunner.png" width="48" height="48"> | [***fafarunner***](apps/fafarunner.md) | *A game developed using flutter and flame.*..[ *read more* ](apps/fafarunner.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fafarunner) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fafarunner) |
| <img src="icons/fairshare.png" width="48" height="48"> | [***fairshare***](apps/fairshare.md) | *Simplifying the curation and sharing of biomedical research.*..[ *read more* ](apps/fairshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fairshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fairshare) |
| <img src="icons/fakedata.png" width="48" height="48"> | [***fakedata***](apps/fakedata.md) | *CLI utility for fake data generation.*..[ *read more* ](apps/fakedata.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fakedata) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fakedata) |
| <img src="icons/fantascene-dynamic-wallpaper.png" width="48" height="48"> | [***fantascene-dynamic-wallpaper***](apps/fantascene-dynamic-wallpaper.md) | *Dynamic wallpaper software for Linux.*..[ *read more* ](apps/fantascene-dynamic-wallpaper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fantascene-dynamic-wallpaper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fantascene-dynamic-wallpaper) |
| <img src="icons/fantasia-archive.png" width="48" height="48"> | [***fantasia-archive***](apps/fantasia-archive.md) | *A database manager for world building.*..[ *read more* ](apps/fantasia-archive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fantasia-archive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fantasia-archive) |
| <img src="icons/farmhand.png" width="48" height="48"> | [***farmhand***](apps/farmhand.md) | *A resource management game that puts a farm in your hand.*..[ *read more* ](apps/farmhand.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/farmhand) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/farmhand) |
| <img src="icons/fastboot.png" width="48" height="48"> | [***fastboot***](apps/fastboot.md) | *Tool to flash Android devices. This script installs the full "platform-tools" suite.*..[ *read more* ](apps/fastboot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fastboot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fastboot) |
| <img src="icons/fastcompmgr.png" width="48" height="48"> | [***fastcompmgr***](apps/fastcompmgr.md) | *A fast compositor for X11.*..[ *read more* ](apps/fastcompmgr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fastcompmgr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fastcompmgr) |
| <img src="icons/fastfetch.png" width="48" height="48"> | [***fastfetch***](apps/fastfetch.md) | *Like neofetch, but much faster because written mostly in C.*..[ *read more* ](apps/fastfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fastfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fastfetch) |
| <img src="icons/fastqt.png" width="48" height="48"> | [***fastqt***](apps/fastqt.md) | *Control tool for high throughput genomics sequence data.*..[ *read more* ](apps/fastqt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fastqt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fastqt) |
| <img src="icons/fasttrack.png" width="48" height="48"> | [***fasttrack***](apps/fasttrack.md) | *Fast tracking of multiple objects.*..[ *read more* ](apps/fasttrack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fasttrack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fasttrack) |
| <img src="icons/fat-wallet.png" width="48" height="48"> | [***fat-wallet***](apps/fat-wallet.md) | *Wallet for FAT tokens.*..[ *read more* ](apps/fat-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fat-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fat-wallet) |
| <img src="icons/fchat-rising.png" width="48" height="48"> | [***fchat-rising***](apps/fchat-rising.md) | *A customized version of mainline F-Chat 3.0 client.*..[ *read more* ](apps/fchat-rising.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fchat-rising) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fchat-rising) |
| <img src="icons/fchat.png" width="48" height="48"> | [***fchat***](apps/fchat.md) | *The F-Chat 3.0 client.*..[ *read more* ](apps/fchat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fchat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fchat) |
| <img src="icons/fcp.png" width="48" height="48"> | [***fcp***](apps/fcp.md) | *CLI, a significantly faster alternative to the classic Unix cp(1) command, copying large files and directories in a fraction of the time.*..[ *read more* ](apps/fcp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fcp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fcp) |
| <img src="icons/f-crm.png" width="48" height="48"> | [***f-crm***](apps/f-crm.md) | *Customer Relations Management for Freelancers.*..[ *read more* ](apps/f-crm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/f-crm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/f-crm) |
| <img src="icons/fd.png" width="48" height="48"> | [***fd***](apps/fd.md) | *A simple, fast and user-friendly alternative to 'find'.*..[ *read more* ](apps/fd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fd) |
| <img src="icons/fdc3-sail.png" width="48" height="48"> | [***fdc3-sail***](apps/fdc3-sail.md) | *Open implementation of the FDC3 standard using Electron.*..[ *read more* ](apps/fdc3-sail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fdc3-sail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fdc3-sail) |
| <img src="icons/feather-wallet.png" width="48" height="48"> | [***feather-wallet***](apps/feather-wallet.md) | *Monero wallet.*..[ *read more* ](apps/feather-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/feather-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/feather-wallet) |
| <img src="icons/feebas.png" width="48" height="48"> | [***feebas***](apps/feebas.md) | *Screenshot comparison tool for identifying visual regressions.*..[ *read more* ](apps/feebas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/feebas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/feebas) |
| <img src="icons/feedseries.png" width="48" height="48"> | [***feedseries***](apps/feedseries.md) | *Follow your series enthusiast news, in french.*..[ *read more* ](apps/feedseries.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/feedseries) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/feedseries) |
| <img src="icons/feidao.png" width="48" height="48"> | [***feidao***](apps/feidao.md) | *Feidao Online Course Design Platform, chinese.*..[ *read more* ](apps/feidao.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/feidao) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/feidao) |
| <img src="icons/feishin.png" width="48" height="48"> | [***feishin***](apps/feishin.md) | *Sonixd Rewrite, a desktop music player.*..[ *read more* ](apps/feishin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/feishin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/feishin) |
| <img src="icons/ferdium.png" width="48" height="48"> | [***ferdium***](apps/ferdium.md) | *All your services in one place, built by the community.*..[ *read more* ](apps/ferdium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ferdium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ferdium) |
| <img src="icons/fetchit.png" width="48" height="48"> | [***fetchit***](apps/fetchit.md) | *A system fetch tool for Linux, written in Rust.*..[ *read more* ](apps/fetchit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fetchit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fetchit) |
| <img src="icons/ffdec.png" width="48" height="48"> | [***ffdec***](apps/ffdec.md) | *JPEXS Free Flash Decompiler.*..[ *read more* ](apps/ffdec.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffdec) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffdec) |
| <img src="icons/ffdec-nightly.png" width="48" height="48"> | [***ffdec-nightly***](apps/ffdec-nightly.md) | *JPEXS Free Flash Decompiler.*..[ *read more* ](apps/ffdec-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffdec-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffdec-nightly) |
| <img src="icons/fflogs-uploader.png" width="48" height="48"> | [***fflogs-uploader***](apps/fflogs-uploader.md) | *FFLogs Uploader appimage.*..[ *read more* ](apps/fflogs-uploader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fflogs-uploader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fflogs-uploader) |
| <img src="icons/ff-password-exporter.png" width="48" height="48"> | [***ff-password-exporter***](apps/ff-password-exporter.md) | *Export your saved passwords from Firefox.*..[ *read more* ](apps/ff-password-exporter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ff-password-exporter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ff-password-exporter) |
| <img src="icons/ffsend.png" width="48" height="48"> | [***ffsend***](apps/ffsend.md) | *Easily and securely share files from the command line. A fully featured Firefox Send client.*..[ *read more* ](apps/ffsend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffsend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffsend) |
| <img src="icons/ffvim.png" width="48" height="48"> | [***ffvim***](apps/ffvim.md) | *FIVIM is an editor for encrypted notes and files.*..[ *read more* ](apps/ffvim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffvim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffvim) |
| <img src="icons/ffwa-facebook.png" width="48" height="48"> | [***ffwa-facebook***](apps/ffwa-facebook.md) | *WebApp & Firefox Profile for Facebook.*..[ *read more* ](apps/ffwa-facebook.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-facebook) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-facebook) |
| <img src="icons/ffwa-github.png" width="48" height="48"> | [***ffwa-github***](apps/ffwa-github.md) | *WebApp & Firefox Profile for GitHub.*..[ *read more* ](apps/ffwa-github.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-github) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-github) |
| <img src="icons/ffwa-gmail.png" width="48" height="48"> | [***ffwa-gmail***](apps/ffwa-gmail.md) | *WebApp & Firefox Profile for Gmail.*..[ *read more* ](apps/ffwa-gmail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-gmail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-gmail) |
| <img src="icons/ffwa-netflix.png" width="48" height="48"> | [***ffwa-netflix***](apps/ffwa-netflix.md) | *WebApp & Firefox Profile for Netflix.*..[ *read more* ](apps/ffwa-netflix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-netflix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-netflix) |
| <img src="icons/ffwa-reddit.png" width="48" height="48"> | [***ffwa-reddit***](apps/ffwa-reddit.md) | *WebApp & Firefox Profile for Reddit.*..[ *read more* ](apps/ffwa-reddit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-reddit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-reddit) |
| <img src="icons/ffwa-twitter.png" width="48" height="48"> | [***ffwa-twitter***](apps/ffwa-twitter.md) | *WebApp & Firefox Profile for Twitter.*..[ *read more* ](apps/ffwa-twitter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-twitter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-twitter) |
| <img src="icons/ffwa-whatsapp.png" width="48" height="48"> | [***ffwa-whatsapp***](apps/ffwa-whatsapp.md) | *WebApp & Firefox Profile for WhatsApp.*..[ *read more* ](apps/ffwa-whatsapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-whatsapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-whatsapp) |
| <img src="icons/ffwa-wikipedia.png" width="48" height="48"> | [***ffwa-wikipedia***](apps/ffwa-wikipedia.md) | *WebApp & Firefox Profile for Wikipedia.*..[ *read more* ](apps/ffwa-wikipedia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-wikipedia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-wikipedia) |
| <img src="icons/ffwa-youtube.png" width="48" height="48"> | [***ffwa-youtube***](apps/ffwa-youtube.md) | *WebApp & Firefox Profile for YouTube.*..[ *read more* ](apps/ffwa-youtube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffwa-youtube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffwa-youtube) |
| <img src="icons/ficus.png" width="48" height="48"> | [***ficus***](apps/ficus.md) | *A software for editing and managing markdown documents.*..[ *read more* ](apps/ficus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ficus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ficus) |
| <img src="icons/fidias-database-migration-app.png" width="48" height="48"> | [***fidias-database-migration-app***](apps/fidias-database-migration-app.md) | *Migrate SQL-based databases.*..[ *read more* ](apps/fidias-database-migration-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fidias-database-migration-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fidias-database-migration-app) |
| <img src="icons/fiery-maui.png" width="48" height="48"> | [***fiery-maui***](apps/fiery-maui.md) | *Web browser with integrated ad-blocker and split views.*..[ *read more* ](apps/fiery-maui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fiery-maui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fiery-maui) |
| <img src="icons/fifo.png" width="48" height="48"> | [***fifo***](apps/fifo.md) | *A modern web browser, built on top of modern web technologies.*..[ *read more* ](apps/fifo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fifo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fifo) |
| <img src="icons/figma-linux.png" width="48" height="48"> | [***figma-linux***](apps/figma-linux.md) | *First interface design tool based in the browser, graphics.*..[ *read more* ](apps/figma-linux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/figma-linux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/figma-linux) |
| <img src="icons/file-commander.png" width="48" height="48"> | [***file-commander***](apps/file-commander.md) | *CLI, cross-platform Total Commander-like orthodox file manager.*..[ *read more* ](apps/file-commander.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file-commander) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file-commander) |
| <img src="icons/file-converter.png" width="48" height="48"> | [***file-converter***](apps/file-converter.md) | *Convert between various file formats.*..[ *read more* ](apps/file-converter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file-converter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file-converter) |
| <img src="icons/filelight.png" width="48" height="48"> | [***filelight***](apps/filelight.md) | *Unofficial. View disk usage information. This script installs the full "kdeutils" suite.*..[ *read more* ](apps/filelight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filelight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filelight) |
| <img src="icons/filen-cli.png" width="48" height="48"> | [***filen-cli***](apps/filen-cli.md) | *Filen CLI for Windows, macOS and Linux*..[ *read more* ](apps/filen-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filen-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filen-cli) |
| <img src="icons/filen.png" width="48" height="48"> | [***filen***](apps/filen.md) | *Desktop client for Filen.io, end-to-end encrypted cloud storage.*..[ *read more* ](apps/filen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filen) |
| <img src="icons/file-to-c.png" width="48" height="48"> | [***file-to-c***](apps/file-to-c.md) | *Tool for generating a C header from a spir-v binary file.*..[ *read more* ](apps/file-to-c.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file-to-c) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file-to-c) |
| <img src="icons/filezilla.png" width="48" height="48"> | [***filezilla***](apps/filezilla.md) | *The free FTP solution with support for FTP over TLS and SFTP.*..[ *read more* ](apps/filezilla.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filezilla) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filezilla) |
| <img src="icons/filmulator-gui.png" width="48" height="48"> | [***filmulator-gui***](apps/filmulator-gui.md) | *Simplified raw editing with the power of film, graphics.*..[ *read more* ](apps/filmulator-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filmulator-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filmulator-gui) |
| <img src="icons/fingrom.png" width="48" height="48"> | [***fingrom***](apps/fingrom.md) | *Financial accounting application*..[ *read more* ](apps/fingrom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fingrom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fingrom) |
| <img src="icons/firedragon.png" width="48" height="48"> | [***firedragon***](apps/firedragon.md) | *A web browser based on Floorp (the Vivaldi of Firefox's) with many opiniated settings by default.*..[ *read more* ](apps/firedragon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firedragon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firedragon) |
| <img src="icons/firefly-desktop.png" width="48" height="48"> | [***firefly-desktop***](apps/firefly-desktop.md) | *The official IOTA and Shimmer wallet.*..[ *read more* ](apps/firefly-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefly-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefly-desktop) |
| <img src="icons/firefox-appimage.png" width="48" height="48"> | [***firefox-appimage***](apps/firefox-appimage.md) | *Unofficial, AppImage of the Web Browser, Stable.*..[ *read more* ](apps/firefox-appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-appimage) |
| <img src="icons/firefox-beta-appimage.png" width="48" height="48"> | [***firefox-beta-appimage***](apps/firefox-beta-appimage.md) | *Unofficial, AppImage of the Web Browser, Beta.*..[ *read more* ](apps/firefox-beta-appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-beta-appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-beta-appimage) |
| <img src="icons/firefox-beta.png" width="48" height="48"> | [***firefox-beta***](apps/firefox-beta.md) | *Fast, powerful and extensible Web Browser, Beta Edition.*..[ *read more* ](apps/firefox-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-beta) |
| <img src="icons/firefox-devedition-appimage.png" width="48" height="48"> | [***firefox-devedition-appimage***](apps/firefox-devedition-appimage.md) | *Unofficial AppImage of the Web Browser, Dev.*..[ *read more* ](apps/firefox-devedition-appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-devedition-appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-devedition-appimage) |
| <img src="icons/firefox-dev.png" width="48" height="48"> | [***firefox-dev***](apps/firefox-dev.md) | *Fast, powerful and extensible Web Browser, Developer Edition.*..[ *read more* ](apps/firefox-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-dev) |
| <img src="icons/firefox-esr-appimage.png" width="48" height="48"> | [***firefox-esr-appimage***](apps/firefox-esr-appimage.md) | *Unofficial AppImage of the Web Browser, ESR.*..[ *read more* ](apps/firefox-esr-appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-esr-appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-esr-appimage) |
| <img src="icons/firefox-esr.png" width="48" height="48"> | [***firefox-esr***](apps/firefox-esr.md) | *Fast, powerful and extensible Web Browser, ESR Edition.*..[ *read more* ](apps/firefox-esr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-esr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-esr) |
| <img src="icons/firefox.png" width="48" height="48"> | [***firefox***](apps/firefox.md) | *Fast, powerful and extensible Web Browser, Stable.*..[ *read more* ](apps/firefox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox) |
| <img src="icons/firefox-nightly-appimage.png" width="48" height="48"> | [***firefox-nightly-appimage***](apps/firefox-nightly-appimage.md) | *Unofficial AppImage of the Web Browser, Nightly.*..[ *read more* ](apps/firefox-nightly-appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-nightly-appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-nightly-appimage) |
| <img src="icons/firefox-nightly.png" width="48" height="48"> | [***firefox-nightly***](apps/firefox-nightly.md) | *Fast, powerful and extensible Web Browser, Nightly Edition.*..[ *read more* ](apps/firefox-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-nightly) |
| <img src="icons/firetail.png" width="48" height="48"> | [***firetail***](apps/firetail.md) | *An open source music player.*..[ *read more* ](apps/firetail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firetail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firetail) |
| <img src="icons/firetv-toolkit.png" width="48" height="48"> | [***firetv-toolkit***](apps/firetv-toolkit.md) | *Android-Toolkit, a GUI for adb, modify android devices.*..[ *read more* ](apps/firetv-toolkit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firetv-toolkit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firetv-toolkit) |
| <img src="icons/firework.png" width="48" height="48"> | [***firework***](apps/firework.md) | *Easiest way to turn web applications and sites into desktop applications.*..[ *read more* ](apps/firework.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firework) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firework) |
| <img src="icons/fishing-funds.png" width="48" height="48"> | [***fishing-funds***](apps/fishing-funds.md) | *Fund, big market, stock, virtual currency status, in chinese.*..[ *read more* ](apps/fishing-funds.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fishing-funds) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fishing-funds) |
| <img src="icons/fishterm.png" width="48" height="48"> | [***fishterm***](apps/fishterm.md) | *A open-soruce Terminal remote access.*..[ *read more* ](apps/fishterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fishterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fishterm) |
| <img src="icons/fish.png" width="48" height="48"> | [***fish***](apps/fish.md) | *Unofficial, AppImage for `fish` shell.*..[ *read more* ](apps/fish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fish) |
| <img src="icons/fixit.png" width="48" height="48"> | [***fixit***](apps/fixit.md) | *A utility to fix mistakes in your commands.*..[ *read more* ](apps/fixit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fixit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fixit) |
| <img src="icons/flacon.png" width="48" height="48"> | [***flacon***](apps/flacon.md) | *Audio File Encoder. Extracts audio tracks from audio CDs.*..[ *read more* ](apps/flacon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flacon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flacon) |
| <img src="icons/flameshot.png" width="48" height="48"> | [***flameshot***](apps/flameshot.md) | *Tool to take screenshots with many built-in features, graphics.*..[ *read more* ](apps/flameshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flameshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flameshot) |
| <img src="icons/flare.png" width="48" height="48"> | [***flare***](apps/flare.md) | *Fantasy action RPG game using the FLARE engine.*..[ *read more* ](apps/flare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flare) |
| <img src="icons/flashpoint.png" width="48" height="48"> | [***flashpoint***](apps/flashpoint.md) | *Flashpoint Archive is a community effort to preserve games and animations from the web.*..[ *read more* ](apps/flashpoint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flashpoint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flashpoint) |
| <img src="icons/flawesome.png" width="48" height="48"> | [***flawesome***](apps/flawesome.md) | *Flawesome is a modern productivity tool.*..[ *read more* ](apps/flawesome.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flawesome) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flawesome) |
| <img src="icons/flb.png" width="48" height="48"> | [***flb***](apps/flb.md) | *A beautiful Feature Rich Music Player and Downloader,cross platform.*..[ *read more* ](apps/flb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flb) |
| <img src="icons/flightgear-airports.png" width="48" height="48"> | [***flightgear-airports***](apps/flightgear-airports.md) | *A software to design Flightgear groundnets.*..[ *read more* ](apps/flightgear-airports.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flightgear-airports) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flightgear-airports) |
| <img src="icons/flightgear.png" width="48" height="48"> | [***flightgear***](apps/flightgear.md) | *Free, open source flight simulator developed since 1997.*..[ *read more* ](apps/flightgear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flightgear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flightgear) |
| <img src="icons/flippy-qualitative-testbench.png" width="48" height="48"> | [***flippy-qualitative-testbench***](apps/flippy-qualitative-testbench.md) | *Music sheet reader.*..[ *read more* ](apps/flippy-qualitative-testbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flippy-qualitative-testbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flippy-qualitative-testbench) |
| <img src="icons/floorp.png" width="48" height="48"> | [***floorp***](apps/floorp.md) | *Floorp Web Browser, the most Advanced and Fastest Firefox derivative.*..[ *read more* ](apps/floorp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/floorp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/floorp) |
| <img src="icons/flowinity.png" width="48" height="48"> | [***flowinity***](apps/flowinity.md) | *The versatile all-in-one online platform, for everyone.*..[ *read more* ](apps/flowinity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flowinity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flowinity) |
| <img src="icons/fluent-reader.png" width="48" height="48"> | [***fluent-reader***](apps/fluent-reader.md) | *Modern desktop RSS reader.*..[ *read more* ](apps/fluent-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fluent-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fluent-reader) |
| <img src="icons/fluffychat.png" width="48" height="48"> | [***fluffychat***](apps/fluffychat.md) | *The cutest instant messenger in the matrix.*..[ *read more* ](apps/fluffychat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fluffychat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fluffychat) |
| <img src="icons/flycast.png" width="48" height="48"> | [***flycast***](apps/flycast.md) | *A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator.*..[ *read more* ](apps/flycast.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flycast) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flycast) |
| <img src="icons/flyctl.png" width="48" height="48"> | [***flyctl***](apps/flyctl.md) | *Command line tools for fly.io services.*..[ *read more* ](apps/flyctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flyctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flyctl) |
| <img src="icons/flyingcarpet.png" width="48" height="48"> | [***flyingcarpet***](apps/flyingcarpet.md) | *Cross-platform AirDrop. File transfer between Android, iOS, Linux, macOS, and Windows over ad hoc WiFi. No network infrastructure required, just two devices with WiFi chips in close range.*..[ *read more* ](apps/flyingcarpet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flyingcarpet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flyingcarpet) |
| <img src="icons/fman.png" width="48" height="48"> | [***fman***](apps/fman.md) | *TUI CLI File Manager.*..[ *read more* ](apps/fman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fman) |
| <img src="icons/fmradio.png" width="48" height="48"> | [***fmradio***](apps/fmradio.md) | *Cross platform FM Radio App for RTL2832U dongles.*..[ *read more* ](apps/fmradio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fmradio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fmradio) |
| <img src="icons/fms-file-explorer.png" width="48" height="48"> | [***fms-file-explorer***](apps/fms-file-explorer.md) | *Access and exploration of data produced.*..[ *read more* ](apps/fms-file-explorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fms-file-explorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fms-file-explorer) |
| <img src="icons/focalizzare.png" width="48" height="48"> | [***focalizzare***](apps/focalizzare.md) | *A Timer for Pomodoro Technique.*..[ *read more* ](apps/focalizzare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focalizzare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focalizzare) |
| <img src="icons/focus.png" width="48" height="48"> | [***focus***](apps/focus.md) | *A fully featured productivity timer for the command line, based on the Pomodoro Technique.*..[ *read more* ](apps/focus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focus) |
| <img src="icons/focusatwill.png" width="48" height="48"> | [***focusatwill***](apps/focusatwill.md) | *Combines neuroscience and music to boost productivity.*..[ *read more* ](apps/focusatwill.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focusatwill) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focusatwill) |
| <img src="icons/focuswriter.png" width="48" height="48"> | [***focuswriter***](apps/focuswriter.md) | *Simple fullscreen word processor.*..[ *read more* ](apps/focuswriter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focuswriter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focuswriter) |
| <img src="icons/fontbase.png" width="48" height="48"> | [***fontbase***](apps/fontbase.md) | *A lightning fast, beautiful and free font manager for designers.*..[ *read more* ](apps/fontbase.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fontbase) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fontbase) |
| <img src="icons/fontforge.png" width="48" height="48"> | [***fontforge***](apps/fontforge.md) | *Free, libre font editor.*..[ *read more* ](apps/fontforge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fontforge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fontforge) |
| <img src="icons/fontlet.png" width="48" height="48"> | [***fontlet***](apps/fontlet.md) | *A package manager for fonts.*..[ *read more* ](apps/fontlet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fontlet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fontlet) |
| <img src="icons/foobar2000.png" width="48" height="48"> | [***foobar2000***](apps/foobar2000.md) | *Unofficial, an advanced freeware audio player for Windows, includes WINE.*..[ *read more* ](apps/foobar2000.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foobar2000) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foobar2000) |
| <img src="icons/forkgram.png" width="48" height="48"> | [***forkgram***](apps/forkgram.md) | *Fork of Telegram Desktop messaging app.*..[ *read more* ](apps/forkgram.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/forkgram) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/forkgram) |
| <img src="icons/four.png" width="48" height="48"> | [***four***](apps/four.md) | *Electron App to access All4/Channel4, UK.*..[ *read more* ](apps/four.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/four) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/four) |
| <img src="icons/foxfolio.png" width="48" height="48"> | [***foxfolio***](apps/foxfolio.md) | *Cryptocurrency portfolio management application.*..[ *read more* ](apps/foxfolio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foxfolio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foxfolio) |
| <img src="icons/fpm.png" width="48" height="48"> | [***fpm***](apps/fpm.md) | *Faster Project Plus on Linux.*..[ *read more* ](apps/fpm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fpm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fpm) |
| <img src="icons/fractale.png" width="48" height="48"> | [***fractale***](apps/fractale.md) | *2D modeling of the Von Koch fractal.*..[ *read more* ](apps/fractale.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fractale) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fractale) |
| <img src="icons/fraidycat.png" width="48" height="48"> | [***fraidycat***](apps/fraidycat.md) | *Follow blogs, wikis, YouTube, Twitter, Reddit, Instagram and more.*..[ *read more* ](apps/fraidycat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fraidycat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fraidycat) |
| <img src="icons/fraktal.png" width="48" height="48"> | [***fraktal***](apps/fraktal.md) | *Podcast Manager in Electron.*..[ *read more* ](apps/fraktal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fraktal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fraktal) |
| <img src="icons/frame-eth-dev.png" width="48" height="48"> | [***frame-eth-dev***](apps/frame-eth-dev.md) | *A privacy focused Ethereum wallet.*..[ *read more* ](apps/frame-eth-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/frame-eth-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/frame-eth-dev) |
| <img src="icons/francetv.png" width="48" height="48"> | [***francetv***](apps/francetv.md) | *The france.tv site in an application.*..[ *read more* ](apps/francetv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/francetv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/francetv) |
| <img src="icons/francis.png" width="48" height="48"> | [***francis***](apps/francis.md) | *Pomodoro technique, get more productive. This script installs the full "kdeutils" suite.*..[ *read more* ](apps/francis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/francis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/francis) |
| <img src="icons/franz.png" width="48" height="48"> | [***franz***](apps/franz.md) | *Messaging app for WhatsApp, Slack, Telegram, HipChat and much more.*..[ *read more* ](apps/franz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/franz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/franz) |
| <img src="icons/frappebooks.png" width="48" height="48"> | [***frappebooks***](apps/frappebooks.md) | *Book-keeping software for small-businesses and freelancers.*..[ *read more* ](apps/frappebooks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/frappebooks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/frappebooks) |
| <img src="icons/freac.png" width="48" height="48"> | [***freac***](apps/freac.md) | *fre:ac, free audio converter and CD ripper for various encoders.*..[ *read more* ](apps/freac.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freac) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freac) |
| <img src="icons/freecad-assembly3.png" width="48" height="48"> | [***freecad-assembly3***](apps/freecad-assembly3.md) | *Assembly3 workbench for FreeCAD.*..[ *read more* ](apps/freecad-assembly3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freecad-assembly3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freecad-assembly3) |
| <img src="icons/freecad.png" width="48" height="48"> | [***freecad***](apps/freecad.md) | *Free and open source AutoCAD alternative.*..[ *read more* ](apps/freecad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freecad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freecad) |
| <img src="icons/freefilesync.png" width="48" height="48"> | [***freefilesync***](apps/freefilesync.md) | *folder comparison and synchronization software.*..[ *read more* ](apps/freefilesync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freefilesync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freefilesync) |
| <img src="icons/freeman.png" width="48" height="48"> | [***freeman***](apps/freeman.md) | *A free, extensible, cross-platform file manager for power users.*..[ *read more* ](apps/freeman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freeman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freeman) |
| <img src="icons/freeshow.png" width="48" height="48"> | [***freeshow***](apps/freeshow.md) | *User-friendly presenter software.*..[ *read more* ](apps/freeshow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freeshow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freeshow) |
| <img src="icons/freetexturepacker.png" width="48" height="48"> | [***freetexturepacker***](apps/freetexturepacker.md) | *Creates sprite sheets for you game or site, graphics.*..[ *read more* ](apps/freetexturepacker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freetexturepacker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freetexturepacker) |
| <img src="icons/freetube.png" width="48" height="48"> | [***freetube***](apps/freetube.md) | *An Open Source YouTube app for privacy.*..[ *read more* ](apps/freetube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freetube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freetube) |
| <img src="icons/freeze.png" width="48" height="48"> | [***freeze***](apps/freeze.md) | *Generate images of code and terminal output.*..[ *read more* ](apps/freeze.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freeze) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freeze) |
| <img src="icons/freezer.png" width="48" height="48"> | [***freezer***](apps/freezer.md) | *An unofficial client for Deezer.*..[ *read more* ](apps/freezer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freezer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freezer) |
| <img src="icons/freshfetch.png" width="48" height="48"> | [***freshfetch***](apps/freshfetch.md) | *An alternative to Neofetch in Rust with a focus on customization.*..[ *read more* ](apps/freshfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freshfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freshfetch) |
| <img src="icons/friction.png" width="48" height="48"> | [***friction***](apps/friction.md) | *Flexible, user expandable 2D animation software.*..[ *read more* ](apps/friction.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/friction) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/friction) |
| <img src="icons/friture.png" width="48" height="48"> | [***friture***](apps/friture.md) | *Real-time audio visualizations, spectrum, spectrogram, etc..*..[ *read more* ](apps/friture.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/friture) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/friture) |
| <img src="icons/fromscratch.png" width="48" height="48"> | [***fromscratch***](apps/fromscratch.md) | *Simple autosaving scratchpad.*..[ *read more* ](apps/fromscratch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fromscratch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fromscratch) |
| <img src="icons/frontimer.png" width="48" height="48"> | [***frontimer***](apps/frontimer.md) | *Desktop timer application always displayed in the forefront of the screen.*..[ *read more* ](apps/frontimer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/frontimer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/frontimer) |
| <img src="icons/fspy.png" width="48" height="48"> | [***fspy***](apps/fspy.md) | *An open source, cross platform app for still image camera matching.*..[ *read more* ](apps/fspy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fspy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fspy) |
| <img src="icons/fukayo.png" width="48" height="48"> | [***fukayo***](apps/fukayo.md) | *Manga reader.*..[ *read more* ](apps/fukayo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fukayo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fukayo) |
| <img src="icons/funkin.png" width="48" height="48"> | [***funkin***](apps/funkin.md) | *A rhythm game made with HaxeFlixel*..[ *read more* ](apps/funkin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/funkin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/funkin) |
| <img src="icons/funkin-psych.png" width="48" height="48"> | [***funkin-psych***](apps/funkin-psych.md) | *Engine originally used on Mind Games mod, forked only for ease of use for Linux users who don't know how to compile code.*..[ *read more* ](apps/funkin-psych.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/funkin-psych) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/funkin-psych) |
| <img src="icons/funterm.png" width="48" height="48"> | [***funterm***](apps/funterm.md) | *A Linux Terminal Emulator.*..[ *read more* ](apps/funterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/funterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/funterm) |
| <img src="icons/fx.png" width="48" height="48"> | [***fx***](apps/fx.md) | *Terminal JSON viewer & processor.*..[ *read more* ](apps/fx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fx) |
| <img src="icons/fynodoro.png" width="48" height="48"> | [***fynodoro***](apps/fynodoro.md) | *Fynodoro, the Pomodoro Widget.*..[ *read more* ](apps/fynodoro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fynodoro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fynodoro) |
| <img src="icons/fzf.png" width="48" height="48"> | [***fzf***](apps/fzf.md) | *A command-line fuzzy finder.*..[ *read more* ](apps/fzf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fzf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fzf) |
| <img src="icons/gaiasky.png" width="48" height="48"> | [***gaiasky***](apps/gaiasky.md) | *Gaia Sky, a real-time 3D space simulator & astronomy visualisation.*..[ *read more* ](apps/gaiasky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gaiasky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gaiasky) |
| <img src="icons/galacteek.png" width="48" height="48"> | [***galacteek***](apps/galacteek.md) | *IPFS Multi-platform browser for the distributed web.*..[ *read more* ](apps/galacteek.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/galacteek) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/galacteek) |
| <img src="icons/gallery-dl.png" width="48" height="48"> | [***gallery-dl***](apps/gallery-dl.md) | *Command-line program to download image galleries and collections.*..[ *read more* ](apps/gallery-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gallery-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gallery-dl) |
| <img src="icons/gamehub.png" width="48" height="48"> | [***gamehub***](apps/gamehub.md) | *Unified library for all your games from different platforms.*..[ *read more* ](apps/gamehub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gamehub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gamehub) |
| <img src="icons/gameimage.png" width="48" height="48"> | [***gameimage***](apps/gameimage.md) | *Pack a runner/emulator/game and it's configs in a single AppImage.*..[ *read more* ](apps/gameimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gameimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gameimage) |
| <img src="icons/gams-studio.png" width="48" height="48"> | [***gams-studio***](apps/gams-studio.md) | *Development environment of General Algebraic Modeling System.*..[ *read more* ](apps/gams-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gams-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gams-studio) |
| <img src="icons/ganache.png" width="48" height="48"> | [***ganache***](apps/ganache.md) | *Personal Blockchain for Ethereum, latest AppImage for Linux.*..[ *read more* ](apps/ganache.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ganache) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ganache) |
| <img src="icons/gaphor.png" width="48" height="48"> | [***gaphor***](apps/gaphor.md) | *A UML and SysML modeling application written in Python.*..[ *read more* ](apps/gaphor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gaphor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gaphor) |
| <img src="icons/gargoyle-bin.png" width="48" height="48"> | [***gargoyle-bin***](apps/gargoyle-bin.md) | *Interactive Fiction multi-int. for all major IF formats.*..[ *read more* ](apps/gargoyle-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gargoyle-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gargoyle-bin) |
| <img src="icons/gaucho.png" width="48" height="48"> | [***gaucho***](apps/gaucho.md) | *Minimalist task launcher*..[ *read more* ](apps/gaucho.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gaucho) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gaucho) |
| <img src="icons/gdesktopsuite.png" width="48" height="48"> | [***gdesktopsuite***](apps/gdesktopsuite.md) | *Google Suite as a desktop app, made possible with Electron.*..[ *read more* ](apps/gdesktopsuite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gdesktopsuite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gdesktopsuite) |
| <img src="icons/gdevelop.png" width="48" height="48"> | [***gdevelop***](apps/gdevelop.md) | *Cross-platform game engine designed to be used by everyone.*..[ *read more* ](apps/gdevelop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gdevelop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gdevelop) |
| <img src="icons/gdlauncher.png" width="48" height="48"> | [***gdlauncher***](apps/gdlauncher.md) | *Simple, yet powerful Minecraft custom launcher.*..[ *read more* ](apps/gdlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gdlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gdlauncher) |
| <img src="icons/gdm-settings.png" width="48" height="48"> | [***gdm-settings***](apps/gdm-settings.md) | *A settings app for GNOME's Login Manager, GDM.*..[ *read more* ](apps/gdm-settings.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gdm-settings) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gdm-settings) |
| <img src="icons/geany.png" width="48" height="48"> | [***geany***](apps/geany.md) | *Unofficial, a fast and lightweight IDE.*..[ *read more* ](apps/geany.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geany) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geany) |
| <img src="icons/gearlever.png" width="48" height="48"> | [***gearlever***](apps/gearlever.md) | *Manage AppImages with ease (unofficial AppImage).*..[ *read more* ](apps/gearlever.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearlever) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearlever) |
| <img src="icons/gedit.png" width="48" height="48"> | [***gedit***](apps/gedit.md) | *Unofficial. The popular GNOME text editor Gedit.*..[ *read more* ](apps/gedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gedit) |
| <img src="icons/geforcenow-electron.png" width="48" height="48"> | [***geforcenow-electron***](apps/geforcenow-electron.md) | *Desktop client for Nvidia GeForce NOW game streaming.*..[ *read more* ](apps/geforcenow-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geforcenow-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geforcenow-electron) |
| <img src="icons/gemalaya.png" width="48" height="48"> | [***gemalaya***](apps/gemalaya.md) | *A keyboard-driven Gemini browser written in QML.*..[ *read more* ](apps/gemalaya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gemalaya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gemalaya) |
| <img src="icons/gemget.png" width="48" height="48"> | [***gemget***](apps/gemget.md) | *Command line downloader for the Gemini protocol.*..[ *read more* ](apps/gemget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gemget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gemget) |
| <img src="icons/genact.png" width="48" height="48"> | [***genact***](apps/genact.md) | *A nonsense activity generator.*..[ *read more* ](apps/genact.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/genact) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/genact) |
| <img src="icons/genesis.png" width="48" height="48"> | [***genesis***](apps/genesis.md) | *Open source blockchain platform.*..[ *read more* ](apps/genesis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/genesis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/genesis) |
| <img src="icons/geofs.png" width="48" height="48"> | [***geofs***](apps/geofs.md) | *GeoFS flight sim as a desktop application.*..[ *read more* ](apps/geofs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geofs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geofs) |
| <img src="icons/geometrize.png" width="48" height="48"> | [***geometrize***](apps/geometrize.md) | *Images to shapes converter, graphics.*..[ *read more* ](apps/geometrize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geometrize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geometrize) |
| <img src="icons/gerbv.png" width="48" height="48"> | [***gerbv***](apps/gerbv.md) | *Gerber file viewer for PCB design.*..[ *read more* ](apps/gerbv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gerbv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gerbv) |
| <img src="icons/gert.png" width="48" height="48"> | [***gert***](apps/gert.md) | *A command line tool to download media from Reddit.*..[ *read more* ](apps/gert.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gert) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gert) |
| <img src="icons/getthermal.png" width="48" height="48"> | [***getthermal***](apps/getthermal.md) | *Cross-platform Thermal Camera Viewer.*..[ *read more* ](apps/getthermal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/getthermal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/getthermal) |
| <img src="icons/gextractwinicons.png" width="48" height="48"> | [***gextractwinicons***](apps/gextractwinicons.md) | *Extract cursors, icons and images from MS Windows files.*..[ *read more* ](apps/gextractwinicons.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gextractwinicons) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gextractwinicons) |
| <img src="icons/ghdl.png" width="48" height="48"> | [***ghdl***](apps/ghdl.md) | *A much more convenient way to download GitHub release binaries on the command line.*..[ *read more* ](apps/ghdl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghdl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghdl) |
| <img src="icons/gh-eco.png" width="48" height="48"> | [***gh-eco***](apps/gh-eco.md) | *gh cli extension to explore the ecosystem.*..[ *read more* ](apps/gh-eco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gh-eco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gh-eco) |
| <img src="icons/gh.png" width="48" height="48"> | [***gh***](apps/gh.md) | *GitHub’s official command line tool.*..[ *read more* ](apps/gh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gh) |
| <img src="icons/ghrel.png" width="48" height="48"> | [***ghrel***](apps/ghrel.md) | *Download and verify GitHub release.*..[ *read more* ](apps/ghrel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghrel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghrel) |
| <img src="icons/giada.png" width="48" height="48"> | [***giada***](apps/giada.md) | *Hardcore audio music production tool and drum machine for DJs.*..[ *read more* ](apps/giada.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/giada) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/giada) |
| <img src="icons/gibs.png" width="48" height="48"> | [***gibs***](apps/gibs.md) | *Generally In-source Build System, build C++ projects without a project.*..[ *read more* ](apps/gibs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gibs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gibs) |
| <img src="icons/gickup.png" width="48" height="48"> | [***gickup***](apps/gickup.md) | *Backup your Git repositories with ease.*..[ *read more* ](apps/gickup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gickup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gickup) |
| <img src="icons/gifcurry.png" width="48" height="48"> | [***gifcurry***](apps/gifcurry.md) | *The open-source, Haskell-built video editor for GIF makers.*..[ *read more* ](apps/gifcurry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gifcurry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gifcurry) |
| <img src="icons/gimp-dev.png" width="48" height="48"> | [***gimp-dev***](apps/gimp-dev.md) | *Unofficial, Cross-platform image and photo editor, Developer Edition.*..[ *read more* ](apps/gimp-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimp-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimp-dev) |
| <img src="icons/gimp-git.png" width="48" height="48"> | [***gimp-git***](apps/gimp-git.md) | *Unofficial, Cross-platform image and photo editor, built from GIT.*..[ *read more* ](apps/gimp-git.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimp-git) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimp-git) |
| <img src="icons/gimp-hybrid.png" width="48" height="48"> | [***gimp-hybrid***](apps/gimp-hybrid.md) | *Unofficial, GIMP including third-party plugins and python2 support.*..[ *read more* ](apps/gimp-hybrid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimp-hybrid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimp-hybrid) |
| <img src="icons/gimp.png" width="48" height="48"> | [***gimp***](apps/gimp.md) | *Unofficial, GNU Image Manipulation Program, cross-platform image and photo editor.*..[ *read more* ](apps/gimp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimp) |
| <img src="icons/gingko.png" width="48" height="48"> | [***gingko***](apps/gingko.md) | *Gingko client rewritten in Elm.*..[ *read more* ](apps/gingko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gingko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gingko) |
| <img src="icons/git-cliff.png" width="48" height="48"> | [***git-cliff***](apps/git-cliff.md) | *A highly customizable Changelog Generator that follows Conventional Commit specifications.*..[ *read more* ](apps/git-cliff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-cliff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-cliff) |
| <img src="icons/git-good.png" width="48" height="48"> | [***git-good***](apps/git-good.md) | *Just a simple git client using electron and nodegit.*..[ *read more* ](apps/git-good.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-good) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-good) |
| <img src="icons/githoard.png" width="48" height="48"> | [***githoard***](apps/githoard.md) | *Hoard git repositories with ease.*..[ *read more* ](apps/githoard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/githoard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/githoard) |
| <img src="icons/github-desktop.png" width="48" height="48"> | [***github-desktop***](apps/github-desktop.md) | *Electron-based GitHub app.*..[ *read more* ](apps/github-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/github-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/github-desktop) |
| <img src="icons/gitify.png" width="48" height="48"> | [***gitify***](apps/gitify.md) | *GitHub notifications on your menu bar.*..[ *read more* ](apps/gitify.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitify) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitify) |
| <img src="icons/gitjournal.png" width="48" height="48"> | [***gitjournal***](apps/gitjournal.md) | *Mobile first Note Taking integrated with Git.*..[ *read more* ](apps/gitjournal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitjournal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitjournal) |
| <img src="icons/gitkraken.png" width="48" height="48"> | [***gitkraken***](apps/gitkraken.md) | *GitKraken Client including an intuitive GUI & powerful CLI.*..[ *read more* ](apps/gitkraken.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitkraken) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitkraken) |
| <img src="icons/gitleaks.png" width="48" height="48"> | [***gitleaks***](apps/gitleaks.md) | *Protect and discover secrets using Gitleaks.*..[ *read more* ](apps/gitleaks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitleaks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitleaks) |
| <img src="icons/gitlight.png" width="48" height="48"> | [***gitlight***](apps/gitlight.md) | *GitHub & GitLab notifications on your desktop.*..[ *read more* ](apps/gitlight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitlight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitlight) |
| <img src="icons/gitnote.png" width="48" height="48"> | [***gitnote***](apps/gitnote.md) | *A modern note taking app based on GIT.*..[ *read more* ](apps/gitnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitnote) |
| <img src="icons/gitql.png" width="48" height="48"> | [***gitql***](apps/gitql.md) | *A git query language.*..[ *read more* ](apps/gitql.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitql) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitql) |
| <img src="icons/gitqlient.png" width="48" height="48"> | [***gitqlient***](apps/gitqlient.md) | *Multi-platform Git client written with Qt.*..[ *read more* ](apps/gitqlient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitqlient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitqlient) |
| <img src="icons/gitui.png" width="48" height="48"> | [***gitui***](apps/gitui.md) | *Blazing fast terminal-ui for git written in rust.*..[ *read more* ](apps/gitui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitui) |
| <img src="icons/glab.png" width="48" height="48"> | [***glab***](apps/glab.md) | *A GitLab CLI tool bringing GitLab to your command line.*..[ *read more* ](apps/glab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glab) |
| <img src="icons/glabels.png" width="48" height="48"> | [***glabels***](apps/glabels.md) | *Create labels, business cards and media covers.*..[ *read more* ](apps/glabels.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glabels) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glabels) |
| <img src="icons/glaxnimate.png" width="48" height="48"> | [***glaxnimate***](apps/glaxnimate.md) | *A simple and fast vector graphics animation program.*..[ *read more* ](apps/glaxnimate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glaxnimate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glaxnimate) |
| <img src="icons/glow.png" width="48" height="48"> | [***glow***](apps/glow.md) | *Render markdown on the CLI, with pizzazz!*..[ *read more* ](apps/glow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glow) |
| <img src="icons/gltf-insight.png" width="48" height="48"> | [***gltf-insight***](apps/gltf-insight.md) | *C++11 based glTF 2.0 data insight tool.*..[ *read more* ](apps/gltf-insight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gltf-insight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gltf-insight) |
| <img src="icons/glulxe.png" width="48" height="48"> | [***glulxe***](apps/glulxe.md) | *AppImage of the glulxe interactive fiction interpreter.*..[ *read more* ](apps/glulxe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glulxe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glulxe) |
| <img src="icons/gl-warp2mp4.png" width="48" height="48"> | [***gl-warp2mp4***](apps/gl-warp2mp4.md) | *Utility to pre-warp a movie similar to TGAWarp.*..[ *read more* ](apps/gl-warp2mp4.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gl-warp2mp4) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gl-warp2mp4) |
| <img src="icons/glyphr-studio-desktop.png" width="48" height="48"> | [***glyphr-studio-desktop***](apps/glyphr-studio-desktop.md) | *Professional font design programs.*..[ *read more* ](apps/glyphr-studio-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glyphr-studio-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glyphr-studio-desktop) |
| <img src="icons/gmail-desktop.png" width="48" height="48"> | [***gmail-desktop***](apps/gmail-desktop.md) | *Unofficial. Nifty Gmail desktop app.*..[ *read more* ](apps/gmail-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gmail-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gmail-desktop) |
| <img src="icons/gmappimager.png" width="48" height="48"> | [***gmappimager***](apps/gmappimager.md) | *Graphically Converts GameMaker Studio 2 Linux Games to AppImage.*..[ *read more* ](apps/gmappimager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gmappimager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gmappimager) |
| <img src="icons/gm-companion.png" width="48" height="48"> | [***gm-companion***](apps/gm-companion.md) | *A tool for rpg gamemasters.*..[ *read more* ](apps/gm-companion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gm-companion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gm-companion) |
| <img src="icons/gncdu.png" width="48" height="48"> | [***gncdu***](apps/gncdu.md) | *Implements NCurses Disk Usage(ncdu) with golang.*..[ *read more* ](apps/gncdu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gncdu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gncdu) |
| <img src="icons/gnome-boxes.png" width="48" height="48"> | [***gnome-boxes***](apps/gnome-boxes.md) | *Unofficial, A simple GNOME application to access virtual machines.*..[ *read more* ](apps/gnome-boxes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-boxes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-boxes) |
| <img src="icons/gnome-calculator.png" width="48" height="48"> | [***gnome-calculator***](apps/gnome-calculator.md) | *Unofficial, Perform arithmetic, scientific or financial calculations.*..[ *read more* ](apps/gnome-calculator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-calculator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-calculator) |
| <img src="icons/gnome-system-monitor3.png" width="48" height="48"> | [***gnome-system-monitor3***](apps/gnome-system-monitor3.md) | *Unofficial, Version 3.38.0, for all those who hate GNOME4+ UIs.*..[ *read more* ](apps/gnome-system-monitor3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-system-monitor3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-system-monitor3) |
| <img src="icons/gnome-tweaks.png" width="48" height="48"> | [***gnome-tweaks***](apps/gnome-tweaks.md) | *Unofficial, Experimental AppImage port of advanced GNOME 3 settings GUI.*..[ *read more* ](apps/gnome-tweaks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-tweaks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-tweaks) |
| <img src="icons/gnumeric.png" width="48" height="48"> | [***gnumeric***](apps/gnumeric.md) | *Unofficial. An open-source spreadsheet program.*..[ *read more* ](apps/gnumeric.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnumeric) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnumeric) |
| <img src="icons/godmode.png" width="48" height="48"> | [***godmode***](apps/godmode.md) | *AI Chat Browser fast, full webapp access to ChatGPT/Claude/Bard/Bing/Llama2.*..[ *read more* ](apps/godmode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/godmode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/godmode) |
| <img src="icons/godot.png" width="48" height="48"> | [***godot***](apps/godot.md) | *Multi-platform 2D and 3D game engine with a feature-rich editor.*..[ *read more* ](apps/godot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/godot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/godot) |
| <img src="icons/gojq.png" width="48" height="48"> | [***gojq***](apps/gojq.md) | *Pure Go implementation of jq.*..[ *read more* ](apps/gojq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gojq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gojq) |
| <img src="icons/gokey.png" width="48" height="48"> | [***gokey***](apps/gokey.md) | *A simple vaultless password manager in Go.*..[ *read more* ](apps/gokey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gokey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gokey) |
| <img src="icons/goland.png" width="48" height="48"> | [***goland***](apps/goland.md) | *Capable and Ergonomic Go IDE.*..[ *read more* ](apps/goland.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goland) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goland) |
| <img src="icons/goldencheetah.png" width="48" height="48"> | [***goldencheetah***](apps/goldencheetah.md) | *Cycling Power Analysis Software.*..[ *read more* ](apps/goldencheetah.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goldencheetah) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goldencheetah) |
| <img src="icons/goldendict.png" width="48" height="48"> | [***goldendict***](apps/goldendict.md) | *A feature-rich dictionary lookup program.*..[ *read more* ](apps/goldendict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goldendict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goldendict) |
| <img src="icons/gooboxfileshare.png" width="48" height="48"> | [***gooboxfileshare***](apps/gooboxfileshare.md) | *Goobox File Share App.*..[ *read more* ](apps/gooboxfileshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gooboxfileshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gooboxfileshare) |
| <img src="icons/goodls.png" width="48" height="48"> | [***goodls***](apps/goodls.md) | *This is a CLI tool to download shared files and folders from Google Drive.*..[ *read more* ](apps/goodls.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goodls) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goodls) |
| <img src="icons/goofcord.png" width="48" height="48"> | [***goofcord***](apps/goofcord.md) | *Take control of your Discord experience with GoofCord.*..[ *read more* ](apps/goofcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goofcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goofcord) |
| <img src="icons/google-chrome-beta.png" width="48" height="48"> | [***google-chrome-beta***](apps/google-chrome-beta.md) | *Unofficial, Web Browser, Beta version.*..[ *read more* ](apps/google-chrome-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-chrome-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-chrome-beta) |
| <img src="icons/google-chrome-dev.png" width="48" height="48"> | [***google-chrome-dev***](apps/google-chrome-dev.md) | *Unofficial, Web Browser, Unstable version.*..[ *read more* ](apps/google-chrome-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-chrome-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-chrome-dev) |
| <img src="icons/google-chrome.png" width="48" height="48"> | [***google-chrome***](apps/google-chrome.md) | *Unofficial, Web Browser, Stable version.*..[ *read more* ](apps/google-chrome.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-chrome) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-chrome) |
| <img src="icons/google-docs.png" width="48" height="48"> | [***google-docs***](apps/google-docs.md) | *Unofficial, Google Docs Desktop App made with electron.*..[ *read more* ](apps/google-docs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-docs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-docs) |
| <img src="icons/google-tasks-desktop.png" width="48" height="48"> | [***google-tasks-desktop***](apps/google-tasks-desktop.md) | *Unofficial Google Tasks Desktop Client.*..[ *read more* ](apps/google-tasks-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-tasks-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-tasks-desktop) |
| <img src="icons/google-task-tauri.png" width="48" height="48"> | [***google-task-tauri***](apps/google-task-tauri.md) | *An Unofficial Desktop Client for Google Tasks.*..[ *read more* ](apps/google-task-tauri.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-task-tauri) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-task-tauri) |
| <img src="icons/gooseberry.png" width="48" height="48"> | [***gooseberry***](apps/gooseberry.md) | *A command line utility to generate a knowledge base from Hypothesis annotations.*..[ *read more* ](apps/gooseberry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gooseberry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gooseberry) |
| <img src="icons/gopass.png" width="48" height="48"> | [***gopass***](apps/gopass.md) | *The slightly more awesome standard unix password manager for teams.*..[ *read more* ](apps/gopass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gopass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gopass) |
| <img src="icons/go-pd.png" width="48" height="48"> | [***go-pd***](apps/go-pd.md) | *A free easy to use pixeldrain.com go client pkg and CLI upload tool.*..[ *read more* ](apps/go-pd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-pd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-pd) |
| <img src="icons/go-pd-gui.png" width="48" height="48"> | [***go-pd-gui***](apps/go-pd-gui.md) | *DRAINY is a free easy to use cross plattform upload tool for pixeldrain.com.*..[ *read more* ](apps/go-pd-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-pd-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-pd-gui) |
| <img src="icons/gopeed.png" width="48" height="48"> | [***gopeed***](apps/gopeed.md) | *A modern download manager that supports all platforms.*..[ *read more* ](apps/gopeed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gopeed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gopeed) |
| <img src="icons/gospel.png" width="48" height="48"> | [***gospel***](apps/gospel.md) | *Poppler based fast pdf viewer written in PyQt5.*..[ *read more* ](apps/gospel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gospel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gospel) |
| <img src="icons/go-spotify-cli.png" width="48" height="48"> | [***go-spotify-cli***](apps/go-spotify-cli.md) | *Control Spotify with CLI commands.*..[ *read more* ](apps/go-spotify-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-spotify-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-spotify-cli) |
| <img src="icons/gost-shred.png" width="48" height="48"> | [***gost-shred***](apps/gost-shred.md) | *GOST R 50739-95 Data Sanitization Method (2 passes).*..[ *read more* ](apps/gost-shred.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gost-shred) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gost-shred) |
| <img src="icons/gotimer.png" width="48" height="48"> | [***gotimer***](apps/gotimer.md) | *A simple terminal based digital timer for Pomodoro.*..[ *read more* ](apps/gotimer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gotimer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gotimer) |
| <img src="icons/goto.png" width="48" height="48"> | [***goto***](apps/goto.md) | *A simple terminal SSH manager that lists favorite SSH servers.*..[ *read more* ](apps/goto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goto) |
| <img src="icons/got.png" width="48" height="48"> | [***got***](apps/got.md) | *Simple golang package and CLI tool to download large files faster than cURL and Wget!*..[ *read more* ](apps/got.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/got) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/got) |
| <img src="icons/goverlay.png" width="48" height="48"> | [***goverlay***](apps/goverlay.md) | *An opensource project that aims to create a Graphical UI to help manage Linux overlays.*..[ *read more* ](apps/goverlay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goverlay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goverlay) |
| <img src="icons/gpgfrontend.png" width="48" height="48"> | [***gpgfrontend***](apps/gpgfrontend.md) | *A Cross-Platform OpenPGP Frontend Software.*..[ *read more* ](apps/gpgfrontend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpgfrontend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpgfrontend) |
| <img src="icons/gpg-tui.png" width="48" height="48"> | [***gpg-tui***](apps/gpg-tui.md) | *CLI, manage your GnuPG keys with ease!*..[ *read more* ](apps/gpg-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpg-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpg-tui) |
| <img src="icons/gping.png" width="48" height="48"> | [***gping***](apps/gping.md) | *Ping, but with a graph.*..[ *read more* ](apps/gping.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gping) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gping) |
| <img src="icons/gpredict.png" width="48" height="48"> | [***gpredict***](apps/gpredict.md) | *A satellite tracking application.*..[ *read more* ](apps/gpredict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpredict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpredict) |
| <img src="icons/gpt-anywhere.png" width="48" height="48"> | [***gpt-anywhere***](apps/gpt-anywhere.md) | *Use GPT anywhere with just one shortcut.*..[ *read more* ](apps/gpt-anywhere.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpt-anywhere) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpt-anywhere) |
| <img src="icons/gptfusion.png" width="48" height="48"> | [***gptfusion***](apps/gptfusion.md) | *GPT Aggregation Ed., in chinese, supports POE, and more.*..[ *read more* ](apps/gptfusion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gptfusion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gptfusion) |
| <img src="icons/gpupad.png" width="48" height="48"> | [***gpupad***](apps/gpupad.md) | *A flexible GLSL shader editor and IDE.*..[ *read more* ](apps/gpupad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpupad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpupad) |
| <img src="icons/gqrx.png" width="48" height="48"> | [***gqrx***](apps/gqrx.md) | *Software defined radio receiver, SDR.*..[ *read more* ](apps/gqrx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gqrx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gqrx) |
| <img src="icons/grabscr.png" width="48" height="48"> | [***grabscr***](apps/grabscr.md) | *Yet another screenshot maker.*..[ *read more* ](apps/grabscr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grabscr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grabscr) |
| <img src="icons/gradestats.png" width="48" height="48"> | [***gradestats***](apps/gradestats.md) | *Import xls spredsheets, store/analyze student grade.*..[ *read more* ](apps/gradestats.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gradestats) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gradestats) |
| <img src="icons/granatier.png" width="48" height="48"> | [***granatier***](apps/granatier.md) | *Bomberman clone. This script installs the full "kdegames" suite.*..[ *read more* ](apps/granatier.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/granatier) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/granatier) |
| <img src="icons/graphql-playground.png" width="48" height="48"> | [***graphql-playground***](apps/graphql-playground.md) | *GraphQL IDE for better development workflows.*..[ *read more* ](apps/graphql-playground.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/graphql-playground) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/graphql-playground) |
| <img src="icons/graviton.png" width="48" height="48"> | [***graviton***](apps/graviton.md) | *A simple code editor.*..[ *read more* ](apps/graviton.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/graviton) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/graviton) |
| <img src="icons/greenlight.png" width="48" height="48"> | [***greenlight***](apps/greenlight.md) | *Client for xCloud and Xbox home streaming made in Typescript.*..[ *read more* ](apps/greenlight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/greenlight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/greenlight) |
| <img src="icons/gridcoin-research.png" width="48" height="48"> | [***gridcoin-research***](apps/gridcoin-research.md) | *POS-based cryptocurrency.*..[ *read more* ](apps/gridcoin-research.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridcoin-research) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridcoin-research) |
| <img src="icons/gridea.png" width="48" height="48"> | [***gridea***](apps/gridea.md) | *A static blog writing client, 一个静态博客写作客户端.*..[ *read more* ](apps/gridea.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridea) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridea) |
| <img src="icons/gridplayer.png" width="48" height="48"> | [***gridplayer***](apps/gridplayer.md) | *Play videos side-by-side.*..[ *read more* ](apps/gridplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridplayer) |
| <img src="icons/gridsync.png" width="48" height="48"> | [***gridsync***](apps/gridsync.md) | *Synchronize local directories with Tahoe-LAFS storage grids.*..[ *read more* ](apps/gridsync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridsync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridsync) |
| <img src="icons/grinplusplus.png" width="48" height="48"> | [***grinplusplus***](apps/grinplusplus.md) | *A C++ Grin Node & Wallet.*..[ *read more* ](apps/grinplusplus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grinplusplus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grinplusplus) |
| <img src="icons/grist-desktop.png" width="48" height="48"> | [***grist-desktop***](apps/grist-desktop.md) | *Desktop Grist, packaged with Electron.*..[ *read more* ](apps/grist-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grist-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grist-desktop) |
| <img src="icons/gron.awk.png" width="48" height="48"> | [***gron.awk***](apps/gron.awk.md) | *True JSON parser in pure Awk. fast with Gawk/Mawk/GoAWK.*..[ *read more* ](apps/gron.awk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gron.awk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gron.awk) |
| <img src="icons/gron.png" width="48" height="48"> | [***gron***](apps/gron.md) | *Make JSON greppable! Transform JSON into discrete assignments to grep.*..[ *read more* ](apps/gron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gron) |
| <img src="icons/groot.png" width="48" height="48"> | [***groot***](apps/groot.md) | *Graphical Editor to create BehaviorTrees.*..[ *read more* ](apps/groot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/groot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/groot) |
| <img src="icons/grx.png" width="48" height="48"> | [***grx***](apps/grx.md) | *Fastest Web Gerber Renderer.*..[ *read more* ](apps/grx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grx) |
| <img src="icons/gsequencer.png" width="48" height="48"> | [***gsequencer***](apps/gsequencer.md) | *Tree based audio processing engine.*..[ *read more* ](apps/gsequencer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gsequencer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gsequencer) |
| <img src="icons/gsubs.png" width="48" height="48"> | [***gsubs***](apps/gsubs.md) | *Finds you the perfect subtitle match.*..[ *read more* ](apps/gsubs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gsubs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gsubs) |
| <img src="icons/guarda.png" width="48" height="48"> | [***guarda***](apps/guarda.md) | *A secure, easy-to-use cryptocurrency wallet.*..[ *read more* ](apps/guarda.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/guarda) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/guarda) |
| <img src="icons/guglielmo.png" width="48" height="48"> | [***guglielmo***](apps/guglielmo.md) | *A FM, DAB/DAB+ decoder using Qt and C++.*..[ *read more* ](apps/guglielmo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/guglielmo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/guglielmo) |
| <img src="icons/guiscrcpy.png" width="48" height="48"> | [***guiscrcpy***](apps/guiscrcpy.md) | *GUI integration for android screen mirroring system.*..[ *read more* ](apps/guiscrcpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/guiscrcpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/guiscrcpy) |
| <img src="icons/guitar.png" width="48" height="48"> | [***guitar***](apps/guitar.md) | *Graphical git client.*..[ *read more* ](apps/guitar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/guitar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/guitar) |
| <img src="icons/gum.png" width="48" height="48"> | [***gum***](apps/gum.md) | *A tool for glamorous shell scripts.*..[ *read more* ](apps/gum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gum) |
| <img src="icons/gvim.png" width="48" height="48"> | [***gvim***](apps/gvim.md) | *Edit text files.*..[ *read more* ](apps/gvim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gvim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gvim) |
| <img src="icons/gxc-smart-contract-ide.png" width="48" height="48"> | [***gxc-smart-contract-ide***](apps/gxc-smart-contract-ide.md) | *Gxchain smart contract IDE alpha.*..[ *read more* ](apps/gxc-smart-contract-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gxc-smart-contract-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gxc-smart-contract-ide) |
| <img src="icons/gyroflow.png" width="48" height="48"> | [***gyroflow***](apps/gyroflow.md) | *Video stabilization using gyroscope data.*..[ *read more* ](apps/gyroflow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gyroflow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gyroflow) |
| <img src="icons/hades-emu.png" width="48" height="48"> | [***hades-emu***](apps/hades-emu.md) | *A Nintendo Game Boy Advance Emulator.*..[ *read more* ](apps/hades-emu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hades-emu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hades-emu) |
| <img src="icons/hamsket.png" width="48" height="48"> | [***hamsket***](apps/hamsket.md) | *Free and Open Source messaging and emailing app.*..[ *read more* ](apps/hamsket.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hamsket) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hamsket) |
| <img src="icons/handbrake.png" width="48" height="48"> | [***handbrake***](apps/handbrake.md) | *Unofficial, An open-source multiplatform video transcoder.*..[ *read more* ](apps/handbrake.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/handbrake) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/handbrake) |
| <img src="icons/handlr.png" width="48" height="48"> | [***handlr***](apps/handlr.md) | *fork of the original handlr, with support for regular expressions.*..[ *read more* ](apps/handlr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/handlr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/handlr) |
| <img src="icons/hapee.png" width="48" height="48"> | [***hapee***](apps/hapee.md) | *Best cross-platform downloader ever.*..[ *read more* ](apps/hapee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hapee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hapee) |
| <img src="icons/harmonoid.png" width="48" height="48"> | [***harmonoid***](apps/harmonoid.md) | *Plays & manages your music library. Looks beautiful & juicy. Playlists, visuals, synced lyrics, pitch shift, volume boost & more.*..[ *read more* ](apps/harmonoid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/harmonoid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/harmonoid) |
| <img src="icons/hascard.png" width="48" height="48"> | [***hascard***](apps/hascard.md) | *Flashcard TUI CLI with markdown cards.*..[ *read more* ](apps/hascard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hascard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hascard) |
| <img src="icons/hashsum.png" width="48" height="48"> | [***hashsum***](apps/hashsum.md) | *A universal tool for finding file duplicates and modified files.*..[ *read more* ](apps/hashsum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hashsum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hashsum) |
| <img src="icons/hastyheroes.png" width="48" height="48"> | [***hastyheroes***](apps/hastyheroes.md) | *An endless 2D jumping game.*..[ *read more* ](apps/hastyheroes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hastyheroes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hastyheroes) |
| <img src="icons/hctl.png" width="48" height="48"> | [***hctl***](apps/hctl.md) | *A tool to control your Home Assistant devices from the command-line.*..[ *read more* ](apps/hctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hctl) |
| <img src="icons/hdrmerge.png" width="48" height="48"> | [***hdrmerge***](apps/hdrmerge.md) | *Merge several raw images into a single DNG raw image.*..[ *read more* ](apps/hdrmerge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hdrmerge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hdrmerge) |
| <img src="icons/heat1d.png" width="48" height="48"> | [***heat1d***](apps/heat1d.md) | *UI for testing the soilFluxex3D library, CRITERIA1D.*..[ *read more* ](apps/heat1d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/heat1d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/heat1d) |
| <img src="icons/heimer.png" width="48" height="48"> | [***heimer***](apps/heimer.md) | *Simple cross-platform mind map, diagram, and note-taking tool.*..[ *read more* ](apps/heimer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/heimer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/heimer) |
| <img src="icons/helio.png" width="48" height="48"> | [***helio***](apps/helio.md) | *One music sequencer for all major platforms, desktop and mobile.*..[ *read more* ](apps/helio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helio) |
| <img src="icons/helioslauncher.png" width="48" height="48"> | [***helioslauncher***](apps/helioslauncher.md) | *Custom launcher for modded minecraft written in Electron.*..[ *read more* ](apps/helioslauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helioslauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helioslauncher) |
| <img src="icons/helix.png" width="48" height="48"> | [***helix***](apps/helix.md) | *A post-modern modal text editor.*..[ *read more* ](apps/helix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helix) |
| <img src="icons/henson.png" width="48" height="48"> | [***henson***](apps/henson.md) | *A puppet manager for NationStates.*..[ *read more* ](apps/henson.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/henson) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/henson) |
| <img src="icons/hermesmessenger.png" width="48" height="48"> | [***hermesmessenger***](apps/hermesmessenger.md) | *Desktop client version for Hermes Messenger.*..[ *read more* ](apps/hermesmessenger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hermesmessenger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hermesmessenger) |
| <img src="icons/hero-display.png" width="48" height="48"> | [***hero-display***](apps/hero-display.md) | *App for display on HERO robot.*..[ *read more* ](apps/hero-display.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hero-display) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hero-display) |
| <img src="icons/heroic-games-launcher.png" width="48" height="48"> | [***heroic-games-launcher***](apps/heroic-games-launcher.md) | *A Native GOG and Epic Games Launcher for Linux.*..[ *read more* ](apps/heroic-games-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/heroic-games-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/heroic-games-launcher) |
| <img src="icons/hexinator.png" width="48" height="48"> | [***hexinator***](apps/hexinator.md) | *Hex editor for reverse engineering & binary file analysis.*..[ *read more* ](apps/hexinator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hexinator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hexinator) |
| <img src="icons/hexoclient.png" width="48" height="48"> | [***hexoclient***](apps/hexoclient.md) | *A cross-platform hexo client, build on electron.*..[ *read more* ](apps/hexoclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hexoclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hexoclient) |
| <img src="icons/hexoeditor.png" width="48" height="48"> | [***hexoeditor***](apps/hexoeditor.md) | *Markdown editor for Hexo built with Electron.*..[ *read more* ](apps/hexoeditor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hexoeditor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hexoeditor) |
| <img src="icons/heynote.png" width="48" height="48"> | [***heynote***](apps/heynote.md) | *A dedicated scratchpad for developers.*..[ *read more* ](apps/heynote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/heynote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/heynote) |
| <img src="icons/hiddify-next.png" width="48" height="48"> | [***hiddify-next***](apps/hiddify-next.md) | *Auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria.*..[ *read more* ](apps/hiddify-next.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hiddify-next) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hiddify-next) |
| <img src="icons/hide.me.png" width="48" height="48"> | [***hide.me***](apps/hide.me.md) | *Hide.me CLI VPN client for Linux.*..[ *read more* ](apps/hide.me.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hide.me) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hide.me) |
| <img src="icons/hidpi-fixer.png" width="48" height="48"> | [***hidpi-fixer***](apps/hidpi-fixer.md) | *Fractional scaling configuration on X11 desktops.*..[ *read more* ](apps/hidpi-fixer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hidpi-fixer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hidpi-fixer) |
| <img src="icons/hilbish.png" width="48" height="48"> | [***hilbish***](apps/hilbish.md) | *The Moon-powered shell! A comfy and extensible shell for Lua fans!*..[ *read more* ](apps/hilbish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hilbish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hilbish) |
| <img src="icons/himalaya.png" width="48" height="48"> | [***himalaya***](apps/himalaya.md) | *CLI to manage emails.*..[ *read more* ](apps/himalaya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/himalaya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/himalaya) |
| <img src="icons/hoptodesk.png" width="48" height="48"> | [***hoptodesk***](apps/hoptodesk.md) | *Allows users to share their screens and remotely control access.*..[ *read more* ](apps/hoptodesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hoptodesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hoptodesk) |
| <img src="icons/hotspot.png" width="48" height="48"> | [***hotspot***](apps/hotspot.md) | *The Linux perf GUI for performance analysis.*..[ *read more* ](apps/hotspot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hotspot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hotspot) |
| <img src="icons/houdoku.png" width="48" height="48"> | [***houdoku***](apps/houdoku.md) | *Manga reader and library manager for the desktop.*..[ *read more* ](apps/houdoku.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/houdoku) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/houdoku) |
| <img src="icons/hpack.png" width="48" height="48"> | [***hpack***](apps/hpack.md) | *A fine tool to convert any data into C header.*..[ *read more* ](apps/hpack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hpack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hpack) |
| <img src="icons/hsinstall.png" width="48" height="48"> | [***hsinstall***](apps/hsinstall.md) | *Pack a haskell project into a deployable directory structure.*..[ *read more* ](apps/hsinstall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hsinstall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hsinstall) |
| <img src="icons/htmldoc.png" width="48" height="48"> | [***htmldoc***](apps/htmldoc.md) | *HTML & Markdown Conversion Software to output PostScript and PDF.*..[ *read more* ](apps/htmldoc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/htmldoc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/htmldoc) |
| <img src="icons/htop.png" width="48" height="48"> | [***htop***](apps/htop.md) | *Unofficial, CLI utility to monitor system resources.*..[ *read more* ](apps/htop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/htop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/htop) |
| <img src="icons/httpie-desktop.png" width="48" height="48"> | [***httpie-desktop***](apps/httpie-desktop.md) | *HTTPie for Desktop.*..[ *read more* ](apps/httpie-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/httpie-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/httpie-desktop) |
| <img src="icons/hugin.png" width="48" height="48"> | [***hugin***](apps/hugin.md) | *Stitch photographs together.*..[ *read more* ](apps/hugin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hugin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hugin) |
| <img src="icons/hugor.png" width="48" height="48"> | [***hugor***](apps/hugor.md) | *A cross-platform, multimedia interpreter for Hugo adventure games.*..[ *read more* ](apps/hugor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hugor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hugor) |
| <img src="icons/humanlog.png" width="48" height="48"> | [***humanlog***](apps/humanlog.md) | *Logs for humans to read.*..[ *read more* ](apps/humanlog.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/humanlog) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/humanlog) |
| <img src="icons/huwinterpreter.png" width="48" height="48"> | [***huwinterpreter***](apps/huwinterpreter.md) | *HuwCode interpreter.*..[ *read more* ](apps/huwinterpreter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/huwinterpreter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/huwinterpreter) |
| <img src="icons/hw-probe.png" width="48" height="48"> | [***hw-probe***](apps/hw-probe.md) | *Probe for hardware and upload result to the Linux hdw database.*..[ *read more* ](apps/hw-probe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hw-probe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hw-probe) |
| <img src="icons/hydra.png" width="48" height="48"> | [***hydra***](apps/hydra.md) | *Game launcher with its own embedded bittorrent client.*..[ *read more* ](apps/hydra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hydra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hydra) |
| <img src="icons/hydrogen-music.png" width="48" height="48"> | [***hydrogen-music***](apps/hydrogen-music.md) | *The advanced drum machine.*..[ *read more* ](apps/hydrogen-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hydrogen-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hydrogen-music) |
| <img src="icons/hyper.png" width="48" height="48"> | [***hyper***](apps/hyper.md) | *A terminal built on web technologies.*..[ *read more* ](apps/hyper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyper) |
| <img src="icons/hyperdex.png" width="48" height="48"> | [***hyperdex***](apps/hyperdex.md) | *BarterDEX desktop app.*..[ *read more* ](apps/hyperdex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperdex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperdex) |
| <img src="icons/hyperfine.png" width="48" height="48"> | [***hyperfine***](apps/hyperfine.md) | *A command-line benchmarking tool.*..[ *read more* ](apps/hyperfine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperfine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperfine) |
| <img src="icons/hyperionide.png" width="48" height="48"> | [***hyperionide***](apps/hyperionide.md) | *Hyperion IDE for JIRA.*..[ *read more* ](apps/hyperionide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperionide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperionide) |