-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathappimages.md
More file actions
2578 lines (2549 loc) · 949 KB
/
appimages.md
File metadata and controls
2578 lines (2549 loc) · 949 KB
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
# APPIMAGES
| [Home](index.md) |
| --- |
#### Here are listed the **2518** unique Appimages managed by [AM](https://github.com/ivan-hc/AM) and [AppMan](https://github.com/ivan-hc/AppMan) for the x86_64 architecture.
*Use your browser's built-in search tool to easily navigate to this page or use the tags below.*
| [Back to Applications](apps.md) |
| --- |
#### *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 loading="lazy" src="icons/0ad.png" width="48" height="48"> | [***0ad***](apps/0ad.md) | *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 loading="lazy" src="icons/0ad-prerelease.png" width="48" height="48"> | [***0ad-prerelease***](apps/0ad-prerelease.md) | *FOSS historical Real Time Strategy, RTS game of ancient warfare (Pre-release).*..[ *read more* ](apps/0ad-prerelease.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/0ad-prerelease) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/0ad-prerelease) |
| <img loading="lazy" src="icons/12to11.png" width="48" height="48"> | [***12to11***](apps/12to11.md) | *Unofficial, tool for running Wayland applications on an X server.*..[ *read more* ](apps/12to11.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/12to11) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/12to11) |
| <img loading="lazy" src="icons/2ship.png" width="48" height="48"> | [***2ship***](apps/2ship.md) | *2 Ship 2 Harkinian game.*..[ *read more* ](apps/2ship.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/2ship) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/2ship) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/5ire.png" width="48" height="48"> | [***5ire***](apps/5ire.md) | *5ire is a cross-platform desktop AI assistant, MCP client. It compatible with major service providers, supports local knowledge base and tools via model context protocol servers.*..[ *read more* ](apps/5ire.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/5ire) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/5ire) |
| <img loading="lazy" 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 loading="lazy" src="icons/86box-enhanced.png" width="48" height="48"> | [***86box-enhanced***](apps/86box-enhanced.md) | *Unofficial, emulator of x86-based machines based on PCem.*..[ *read more* ](apps/86box-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/86box-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/86box-enhanced) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/acestream.png" width="48" height="48"> | [***acestream***](apps/acestream.md) | *Створення бінарника AppImage з AceStream Media.*..[ *read more* ](apps/acestream.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/acestream) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/acestream) |
| <img loading="lazy" 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 loading="lazy" src="icons/actiona.png" width="48" height="48"> | [***actiona***](apps/actiona.md) | *Actiona is an automation tool that allows you to execute many actions on your computer such as emulating mouse clicks, key presses, showing message boxes, editing text files, etc.*..[ *read more* ](apps/actiona.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/actiona) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/actiona) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/aegisub.png" width="48" height="48"> | [***aegisub***](apps/aegisub.md) | *Cross-platform advanced subtitle editor, with new feature branches. Read the README on the feature branch. Cross-platform advanced subtitle editor Cross-platform advanced subtitle editor.*..[ *read more* ](apps/aegisub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aegisub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aegisub) |
| <img loading="lazy" src="icons/aerofoil.png" width="48" height="48"> | [***aerofoil***](apps/aerofoil.md) | *Unofficial, multiplatform port of Glider PRO.*..[ *read more* ](apps/aerofoil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aerofoil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aerofoil) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/affinity.png" width="48" height="48"> | [***affinity***](apps/affinity.md) | *Affinity is a suite of professional graphic design, photo editing, and desktop publishing software. It's a common alternative to software from the Adobe Suite such as for Adobe Photoshop, Adobe Illustrator, Adobe InDesign.*..[ *read more* ](apps/affinity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/affinity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/affinity) |
| <img loading="lazy" 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 loading="lazy" src="icons/ahk_x11.png" width="48" height="48"> | [***ahk_x11***](apps/ahk_x11.md) | *AutoHotkey for Linux (X11-based systems).*..[ *read more* ](apps/ahk_x11.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ahk_x11) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ahk_x11) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/akhenaten.png" width="48" height="48"> | [***akhenaten***](apps/akhenaten.md) | *Unofficial, open-source engine for Pharaoh (+Cleopatra) city-building game.*..[ *read more* ](apps/akhenaten.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/akhenaten) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/akhenaten) |
| <img loading="lazy" 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 loading="lazy" src="icons/alacritty.png" width="48" height="48"> | [***alacritty***](apps/alacritty.md) | *Unofficial. A modern terminal emulator that comes with sensible defaults, but allows for extensive configuration.*..[ *read more* ](apps/alacritty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alacritty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alacritty) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/alma.png" width="48" height="48"> | [***alma***](apps/alma.md) | *Elegant AI Provider Orchestration. A beautiful desktop application that unifies your AI experience. Seamlessly switch between OpenAI, Anthropic, Google Gemini, and custom providers.*..[ *read more* ](apps/alma.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alma) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alma) |
| <img loading="lazy" src="icons/alr2appimage.png" width="48" height="48"> | [***alr2appimage***](apps/alr2appimage.md) | *Tool for building an AppImage from an Alire crate.*..[ *read more* ](apps/alr2appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alr2appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alr2appimage) |
| <img loading="lazy" src="icons/alt-sendme.png" width="48" height="48"> | [***alt-sendme***](apps/alt-sendme.md) | *Share files and directories anywhere - Local or Global*..[ *read more* ](apps/alt-sendme.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alt-sendme) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alt-sendme) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/altrady.png" width="48" height="48"> | [***altrady***](apps/altrady.md) | *Altrady Crypto Trading Terminal.*..[ *read more* ](apps/altrady.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altrady) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altrady) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/am-gui.png" width="48" height="48"> | [***am-gui***](apps/am-gui.md) | *AM-GUI is a graphical Front for AM.*..[ *read more* ](apps/am-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/am-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/am-gui) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/amplitude-soundboard.png" width="48" height="48"> | [***amplitude-soundboard***](apps/amplitude-soundboard.md) | *A sleek, cross-platform soundboard, available.*..[ *read more* ](apps/amplitude-soundboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amplitude-soundboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amplitude-soundboard) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/android-translation-layer.png" width="48" height="48"> | [***android-translation-layer***](apps/android-translation-layer.md) | *Unofficial, A translation layer that allows running Android apps on a Linux system.*..[ *read more* ](apps/android-translation-layer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-translation-layer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-translation-layer) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/animecoin.png" width="48" height="48"> | [***animecoin***](apps/animecoin.md) | *Animecoin is a free open source peer-to-peer electronic cash system that is completely decentralized, without the need for a central server or trusted parties. Users hold the crypto keys to their own money and transact directly with each other, with the help of a P2P network to check for double-spending.*..[ *read more* ](apps/animecoin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animecoin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animecoin) |
| <img loading="lazy" src="icons/animeko.png" width="48" height="48"> | [***animeko***](apps/animeko.md) | *A one-stop platform for finding, following, and watching anime, featuring danmaku (bullet comments) and cloud-based collection synchronization (Bangumi), offline caching, BitTorrent, and cloud-based danmaku filtering.*..[ *read more* ](apps/animeko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animeko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animeko) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/anki.png" width="48" height="48"> | [***anki***](apps/anki.md) | *Unofficial, 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/ansel.png" width="48" height="48"> | [***ansel***](apps/ansel.md) | *An open-source photo-editing software for digital artists, designed to help you achieve your own interpretation of raw digital photographs.*..[ *read more* ](apps/ansel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ansel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ansel) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/any-code.png" width="48" height="48"> | [***any-code***](apps/any-code.md) | *Claude Code CLI, OpenAI Codex, and Google Gemini CLI.*..[ *read more* ](apps/any-code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/any-code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/any-code) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/apiflow.png" width="48" height="48"> | [***apiflow***](apps/apiflow.md) | *A modern API workspace that works both online and offlinecombining API documentation, testing, mock, and AI-powered automation in one lightweight tool.*..[ *read more* ](apps/apiflow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apiflow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apiflow) |
| <img loading="lazy" src="icons/apifox.png" width="48" height="48"> | [***apifox***](apps/apifox.md) | *API manager, in Chinese. Includes documentation, API debugging, API mocking, and API automated testing.*..[ *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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/appflowy.png" width="48" height="48"> | [***appflowy***](apps/appflowy.md) | *Bring projects, wikis, and teams together with AI. AppFlowy is the AI collaborative workspace where you achieve more without losing control of your data. The leading open source Notion alternative.*..[ *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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/appimage-creator.png" width="48" height="48"> | [***appimage-creator***](apps/appimage-creator.md) | *GUI for easily generating AppImage packages on Linux.*..[ *read more* ](apps/appimage-creator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimage-creator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimage-creator) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/appium-inspector.png" width="48" height="48"> | [***appium-inspector***](apps/appium-inspector.md) | *A GUI inspector for mobile apps and more, powered by a (separately installed) Appium server.*..[ *read more* ](apps/appium-inspector.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appium-inspector) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appium-inspector) |
| <img loading="lazy" src="icons/appmanager.png" width="48" height="48"> | [***appmanager***](apps/appmanager.md) | *MacOS style AppImage installer and management application.*..[ *read more* ](apps/appmanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appmanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appmanager) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/archiveweb.page.png" width="48" height="48"> | [***archiveweb.page***](apps/archiveweb.page.md) | *A High-Fidelity Web Archiving Extension for Chrome and Chromium based browsers.*..[ *read more* ](apps/archiveweb.page.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archiveweb.page) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archiveweb.page) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/ares.png" width="48" height="48"> | [***ares***](apps/ares.md) | *AppImage for the ares emulator.*..[ *read more* ](apps/ares.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ares) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ares) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/aspect.png" width="48" height="48"> | [***aspect***](apps/aspect.md) | *Photo organization application with support for peer-to-peer based synchronization across devices.*..[ *read more* ](apps/aspect.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aspect) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aspect) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/audio-sharing.png" width="48" height="48"> | [***audio-sharing***](apps/audio-sharing.md) | *Unofficial. Share audio from the desktop on local network using RTSP protocol.*..[ *read more* ](apps/audio-sharing.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audio-sharing) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audio-sharing) |
| <img loading="lazy" src="icons/audiomoth-configuration-app.png" width="48" height="48"> | [***audiomoth-configuration-app***](apps/audiomoth-configuration-app.md) | *An Electron-based application capable of configuring the functionality of the AudioMoth recording device and setting the onboard clock.*..[ *read more* ](apps/audiomoth-configuration-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-configuration-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-configuration-app) |
| <img loading="lazy" src="icons/audiomoth-flash-app.png" width="48" height="48"> | [***audiomoth-flash-app***](apps/audiomoth-flash-app.md) | *An Electron-based application designed to flash the AudioMoth recording device with new firmware.*..[ *read more* ](apps/audiomoth-flash-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-flash-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-flash-app) |
| <img loading="lazy" src="icons/audiomoth-gps-sync-app.png" width="48" height="48"> | [***audiomoth-gps-sync-app***](apps/audiomoth-gps-sync-app.md) | *An Electron-based application to generate WAV files synchronised with GPS time from the files generated by the AudioMoth-GPS-Sync firmware.*..[ *read more* ](apps/audiomoth-gps-sync-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-gps-sync-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-gps-sync-app) |
| <img loading="lazy" src="icons/audiomoth-live-app.png" width="48" height="48"> | [***audiomoth-live-app***](apps/audiomoth-live-app.md) | *An Electron-based application for recording and analysing live audio from high sample rate microphones, including the AudioMoth USB Microphone.*..[ *read more* ](apps/audiomoth-live-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-live-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-live-app) |
| <img loading="lazy" src="icons/audiomoth-time-app.png" width="48" height="48"> | [***audiomoth-time-app***](apps/audiomoth-time-app.md) | *An Electron-based application capable of setting the on-board clock of the AudioMoth recording device.*..[ *read more* ](apps/audiomoth-time-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-time-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-time-app) |
| <img loading="lazy" src="icons/audiomoth-usb-microphone-app.png" width="48" height="48"> | [***audiomoth-usb-microphone-app***](apps/audiomoth-usb-microphone-app.md) | *An Electron-based application capable of configuring the functionality of the AudioMoth-USB-Microphone firmware.*..[ *read more* ](apps/audiomoth-usb-microphone-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-usb-microphone-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-usb-microphone-app) |
| <img loading="lazy" 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 loading="lazy" src="icons/augustus-enhanced.png" width="48" height="48"> | [***augustus-enhanced***](apps/augustus-enhanced.md) | *Unofficial, a fork of the Julius project that intends to incorporate gameplay changes.*..[ *read more* ](apps/augustus-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/augustus-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/augustus-enhanced) |
| <img loading="lazy" src="icons/aurora.png" width="48" height="48"> | [***aurora***](apps/aurora.md) | *A utility to control RGB keyboard back-light and charging threshold for Asus TUF-gaming laptops.*..[ *read more* ](apps/aurora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aurora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aurora) |
| <img loading="lazy" 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 loading="lazy" src="icons/authenticator.png" width="48" height="48"> | [***authenticator***](apps/authenticator.md) | *Unofficial. An application which generates 2FA code in realtime.*..[ *read more* ](apps/authenticator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/authenticator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/authenticator) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/auto-claude.png" width="48" height="48"> | [***auto-claude***](apps/auto-claude.md) | *Autonomous multi-session AI coding framework that plans, builds, and validates software for you.*..[ *read more* ](apps/auto-claude.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/auto-claude) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/auto-claude) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/avidemux-qt.png" width="48" height="48"> | [***avidemux-qt***](apps/avidemux-qt.md) | *Unofficial, my custom Avidemux Video Editor built to use system themes.*..[ *read more* ](apps/avidemux-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avidemux-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avidemux-qt) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/aya.png" width="48" height="48"> | [***aya***](apps/aya.md) | *A desktop application for easily controlling android devices, which can be considered as a GUI wrapper for ADB.*..[ *read more* ](apps/aya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aya) |
| <img loading="lazy" src="icons/azahar-enhanced.png" width="48" height="48"> | [***azahar-enhanced***](apps/azahar-enhanced.md) | *Unofficial AppImage of Azahar, with optimized builds for modern cpus.*..[ *read more* ](apps/azahar-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/azahar-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/azahar-enhanced) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/balatro-multiplayer.png" width="48" height="48"> | [***balatro-multiplayer***](apps/balatro-multiplayer.md) | *A Multiplayer Mod for Balatro.*..[ *read more* ](apps/balatro-multiplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/balatro-multiplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/balatro-multiplayer) |
| <img loading="lazy" 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 loading="lazy" src="icons/bananas.png" width="48" height="48"> | [***bananas***](apps/bananas.md) | *Bananas, Cross-Platform screen sharing made simple.*..[ *read more* ](apps/bananas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bananas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bananas) |
| <img loading="lazy" 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 loading="lazy" src="icons/banjo-recompiled.png" width="48" height="48"> | [***banjo-recompiled***](apps/banjo-recompiled.md) | *Unofficial, a static recompiled port of N64 Banjo-Kazooie for PC.*..[ *read more* ](apps/banjo-recompiled.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/banjo-recompiled) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/banjo-recompiled) |
| <img loading="lazy" 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 loading="lazy" src="icons/basilisk2.png" width="48" height="48"> | [***basilisk2***](apps/basilisk2.md) | *Classic Macintosh emulator BasiliskII.*..[ *read more* ](apps/basilisk2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basilisk2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basilisk2) |
| <img loading="lazy" src="icons/basiliskii-enhanced.png" width="48" height="48"> | [***basiliskii-enhanced***](apps/basiliskii-enhanced.md) | *Unofficial, classic Macintosh emulator BasiliskII.*..[ *read more* ](apps/basiliskii-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basiliskii-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basiliskii-enhanced) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/bchat-desktop.png" width="48" height="48"> | [***bchat-desktop***](apps/bchat-desktop.md) | *About A decentralized cionfidential messaging app that runs on Beldex network.*..[ *read more* ](apps/bchat-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bchat-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bchat-desktop) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/beeref.png" width="48" height="48"> | [***beeref***](apps/beeref.md) | *BeeRef Reference Image Viewer.*..[ *read more* ](apps/beeref.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beeref) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beeref) |
| <img loading="lazy" 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 loading="lazy" src="icons/berserkerquake2.png" width="48" height="48"> | [***berserkerquake2***](apps/berserkerquake2.md) | *Berserker@Quake2 game engine, ported to SDL2 library.*..[ *read more* ](apps/berserkerquake2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/berserkerquake2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/berserkerquake2) |
| <img loading="lazy" 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 loading="lazy" src="icons/betterbird.png" width="48" height="48"> | [***betterbird***](apps/betterbird.md) | *Unofficial, Betterbird is a fine-tuned version of Mozilla Thunderbird, a free and open-source email client.*..[ *read more* ](apps/betterbird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/betterbird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/betterbird) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/betterx.png" width="48" height="48"> | [***betterx***](apps/betterx.md) | *Enhance your X (formerly Twitter) experience with BetterX Desktop!*..[ *read more* ](apps/betterx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/betterx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/betterx) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/bibletime.png" width="48" height="48"> | [***bibletime***](apps/bibletime.md) | *Unofficial, a Bible study application based on the Sword library and Qt toolkit.*..[ *read more* ](apps/bibletime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bibletime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bibletime) |
| <img loading="lazy" src="icons/biblia-sacra.png" width="48" height="48"> | [***biblia-sacra***](apps/biblia-sacra.md) | *A multi language bible app, with emphasis on Latin.*..[ *read more* ](apps/biblia-sacra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biblia-sacra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biblia-sacra) |
| <img loading="lazy" 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 loading="lazy" src="icons/bili-liveluckdraw.png" width="48" height="48"> | [***bili-liveluckdraw***](apps/bili-liveluckdraw.md) | *A Bilibili live stream lottery tool that draws winners based on keywords retrieved from the chat comments. It is built using Electron + React + Vite.*..[ *read more* ](apps/bili-liveluckdraw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bili-liveluckdraw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bili-liveluckdraw) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/bongocat.png" width="48" height="48"> | [***bongocat***](apps/bongocat.md) | *A chinese cute interactive desktop pet application that makes your desktop full of fun!*..[ *read more* ](apps/bongocat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bongocat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bongocat) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/brave.png" width="48" height="48"> | [***brave***](apps/brave.md) | *Unofficial, a privacy oriented Web Browser based on Chromium, this is the "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 loading="lazy" src="icons/brave-beta.png" width="48" height="48"> | [***brave-beta***](apps/brave-beta.md) | *Unofficial, a privacy oriented Web Browser based on Chromium, this is the "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 loading="lazy" src="icons/brave-nightly.png" width="48" height="48"> | [***brave-nightly***](apps/brave-nightly.md) | *Unofficial, a privacy oriented Web Browser based on Chromium, this is the "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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/bsky.png" width="48" height="48"> | [***bsky***](apps/bsky.md) | *A desktop app of bsky.app.*..[ *read more* ](apps/bsky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bsky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bsky) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/c-evo.png" width="48" height="48"> | [***c-evo***](apps/c-evo.md) | *C-evo is an empire building game based on Civilization II, but with a different focus. It aims to be a pure game with all players playing to win.*..[ *read more* ](apps/c-evo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/c-evo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/c-evo) |
| <img loading="lazy" 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 loading="lazy" src="icons/cables-gl.png" width="48" height="48"> | [***cables-gl***](apps/cables-gl.md) | *A tool for creating beautiful interactive content. With an easy to navigate interface and real time visuals.*..[ *read more* ](apps/cables-gl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cables-gl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cables-gl) |
| <img loading="lazy" 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 loading="lazy" src="icons/cacoco.png" width="48" height="48"> | [***cacoco***](apps/cacoco.md) | *A (slightly, but aspirationally) finished SBARDEF editor. Mostly.*..[ *read more* ](apps/cacoco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cacoco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cacoco) |
| <img loading="lazy" src="icons/cadassistant.png" width="48" height="48"> | [***cadassistant***](apps/cadassistant.md) | *Offline 3D CAD viewer and converter, free for personal and commercial use.*..[ *read more* ](apps/cadassistant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cadassistant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cadassistant) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/calibre-beta.png" width="48" height="48"> | [***calibre-beta***](apps/calibre-beta.md) | *Unofficial. The one stop solution to all your e-book needs. Beta version.*..[ *read more* ](apps/calibre-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calibre-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calibre-beta) |
| <img loading="lazy" src="icons/calibre-preview.png" width="48" height="48"> | [***calibre-preview***](apps/calibre-preview.md) | *Unofficial. The one stop solution to all your e-book needs. Preview version.*..[ *read more* ](apps/calibre-preview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calibre-preview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calibre-preview) |
| <img loading="lazy" src="icons/calligra.png" width="48" height="48"> | [***calligra***](apps/calligra.md) | *Calligra Suite is an office and graphic art suite by KDE. It contains applications for word processing, spreadsheets, presentation, vector graphics, and editing databases.*..[ *read more* ](apps/calligra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calligra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calligra) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/cannonball.png" width="48" height="48"> | [***cannonball***](apps/cannonball.md) | *Unofficial, an Enhanced OutRun Engine.*..[ *read more* ](apps/cannonball.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cannonball) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cannonball) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/cartridges.png" width="48" height="48"> | [***cartridges***](apps/cartridges.md) | *Unofficial. Game launcher, which helps you visualize your game collection and easily launch games.*..[ *read more* ](apps/cartridges.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cartridges) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cartridges) |
| <img loading="lazy" src="icons/cashonize.png" width="48" height="48"> | [***cashonize***](apps/cashonize.md) | *A cross-platform Bitcoin Cash Wallet.*..[ *read more* ](apps/cashonize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cashonize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cashonize) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/catacombgl.png" width="48" height="48"> | [***catacombgl***](apps/catacombgl.md) | *Unofficial, a source port with OpenGL graphics for Catacomb 3D (1991), The Catacomb Abyss (1992), The Catacomb Armageddon (1992) and The Catacomb Apocalypse (1993).*..[ *read more* ](apps/catacombgl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catacombgl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catacombgl) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/cbird.png" width="48" height="48"> | [***cbird***](apps/cbird.md) | *Command-line program for Content-Based Image Retrieval of images and videos. Includes tools for general search and de-duplication.*..[ *read more* ](apps/cbird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cbird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cbird) |
| <img loading="lazy" 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 loading="lazy" src="icons/cdogs-sdl.png" width="48" height="48"> | [***cdogs-sdl***](apps/cdogs-sdl.md) | *Unofficial, classic overhead run-and-gun game.*..[ *read more* ](apps/cdogs-sdl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cdogs-sdl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cdogs-sdl) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/cemu-enhanced.png" width="48" height="48"> | [***cemu-enhanced***](apps/cemu-enhanced.md) | *Unofficial AppImage of Cemu, Nintendo Wii U emulator that is able to run most Wii U games, which is able to work on any linux distro.*..[ *read more* ](apps/cemu-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cemu-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cemu-enhanced) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/cheatbreaker.png" width="48" height="48"> | [***cheatbreaker***](apps/cheatbreaker.md) | *The free FPS boosting modpack for Minecraft 1.7 & 1.8.*..[ *read more* ](apps/cheatbreaker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cheatbreaker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cheatbreaker) |
| <img loading="lazy" 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 loading="lazy" src="icons/cherry-studio.png" width="48" height="48"> | [***cherry-studio***](apps/cherry-studio.md) | *Agentic AI desktop with autonomous coding, intelligent automation, and unified access to frontier LLMs.*..[ *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 loading="lazy" 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 loading="lazy" src="icons/chessmd.png" width="48" height="48"> | [***chessmd***](apps/chessmd.md) | *Open source chess training software. Play against bots, analyze with engines, explore chess openings, and more.*..[ *read more* ](apps/chessmd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chessmd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chessmd) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/cinelerra.png" width="48" height="48"> | [***cinelerra***](apps/cinelerra.md) | *CINELERRA-GG is a software program NLE, Non-Linear Editor, that provides a way to edit, record, and play audio or video media. It can also be used to transcode media from one format to another or to correct and retouch photos.*..[ *read more* ](apps/cinelerra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cinelerra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cinelerra) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/ciyue.png" width="48" height="48"> | [***ciyue***](apps/ciyue.md) | *A simple mdict dictionary.*..[ *read more* ](apps/ciyue.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ciyue) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ciyue) |
| <img loading="lazy" src="icons/clagrange.png" width="48" height="48"> | [***clagrange***](apps/clagrange.md) | *Lagrange is a cross-platform client for browsing Geminispace (CLI Version).*..[ *read more* ](apps/clagrange.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clagrange) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clagrange) |
| <img loading="lazy" src="icons/clapper.png" width="48" height="48"> | [***clapper***](apps/clapper.md) | *Unofficial. A modern media player designed for simplicity and ease of use.*..[ *read more* ](apps/clapper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clapper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clapper) |
| <img loading="lazy" src="icons/clash-nyanpasu.png" width="48" height="48"> | [***clash-nyanpasu***](apps/clash-nyanpasu.md) | *A Clash GUI based on tauri.*..[ *read more* ](apps/clash-nyanpasu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clash-nyanpasu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clash-nyanpasu) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/classicube.png" width="48" height="48"> | [***classicube***](apps/classicube.md) | *Unofficial, Custom Minecraft Classic / ClassiCube client written in C from scratch*..[ *read more* ](apps/classicube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/classicube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/classicube) |
| <img loading="lazy" src="icons/classipod.png" width="48" height="48"> | [***classipod***](apps/classipod.md) | *A local music player app designed to capture the nostalgic essence of the iconic iPod Classic.*..[ *read more* ](apps/classipod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/classipod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/classipod) |
| <img loading="lazy" src="icons/claude-desktop.png" width="48" height="48"> | [***claude-desktop***](apps/claude-desktop.md) | *Claude Desktop for Debian-based Linux distributions.*..[ *read more* ](apps/claude-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/claude-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/claude-desktop) |
| <img loading="lazy" 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 loading="lazy" src="icons/clementine.png" width="48" height="48"> | [***clementine***](apps/clementine.md) | *Unofficial AppImage of the Clementine music player.*..[ *read more* ](apps/clementine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clementine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clementine) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/clk.png" width="48" height="48"> | [***clk***](apps/clk.md) | *Unofficial, a latency hating emulator for 8 and 16 bit platforms.*..[ *read more* ](apps/clk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clk) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/clownmdemu-enhanced.png" width="48" height="48"> | [***clownmdemu-enhanced***](apps/clownmdemu-enhanced.md) | *Unofficial, reference standalone frontend for clownmdemu.*..[ *read more* ](apps/clownmdemu-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clownmdemu-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clownmdemu-enhanced) |
| <img loading="lazy" src="icons/cmux.png" width="48" height="48"> | [***cmux***](apps/cmux.md) | *Cmux/ManaflowX is an X feed for coding agents that lets you run + compare Claude Code, Codex CLI, Amp, Gemini CLI, Cursor CLI, Opencode, and other coding agent CLIs in parallel across multiple tasks.*..[ *read more* ](apps/cmux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cmux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cmux) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/code-expert-sync.png" width="48" height="48"> | [***code-expert-sync***](apps/code-expert-sync.md) | *Allows syncing of Code Expert projects to a local file system.*..[ *read more* ](apps/code-expert-sync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code-expert-sync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code-expert-sync) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/collision.png" width="48" height="48"> | [***collision***](apps/collision.md) | *Unofficial. Verify the checksum/hash validity of files.*..[ *read more* ](apps/collision.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/collision) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/collision) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/commander-genius.png" width="48" height="48"> | [***commander-genius***](apps/commander-genius.md) | *Unofficial, an open-source interpreter for the Commander Keen (1-6, Dreams) and Cosmos Cosmic series.*..[ *read more* ](apps/commander-genius.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/commander-genius) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/commander-genius) |
| <img loading="lazy" 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 loading="lazy" src="icons/compresso.png" width="48" height="48"> | [***compresso***](apps/compresso.md) | *Convert any video into a tiny size.*..[ *read more* ](apps/compresso.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/compresso) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/compresso) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/converse-desktop.png" width="48" height="48"> | [***converse-desktop***](apps/converse-desktop.md) | *Electron-based Desktop client for Converse.js.*..[ *read more* ](apps/converse-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/converse-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/converse-desktop) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/converternow.png" width="48" height="48"> | [***converternow***](apps/converternow.md) | *The Unit Converter app. Easy, immediate and multi-platform.*..[ *read more* ](apps/converternow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/converternow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/converternow) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/corsixth.png" width="48" height="48"> | [***corsixth***](apps/corsixth.md) | *Open source clone of Theme Hospital.*..[ *read more* ](apps/corsixth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corsixth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corsixth) |
| <img loading="lazy" src="icons/corsixth-enhanced.png" width="48" height="48"> | [***corsixth-enhanced***](apps/corsixth-enhanced.md) | *Unofficial, open source clone of Theme Hospital.*..[ *read more* ](apps/corsixth-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corsixth-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corsixth-enhanced) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/crawl-ncurses.png" width="48" height="48"> | [***crawl-ncurses***](apps/crawl-ncurses.md) | *open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - ncurses version (terminal)*..[ *read more* ](apps/crawl-ncurses.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crawl-ncurses) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crawl-ncurses) |
| <img loading="lazy" src="icons/crawl-tiles.png" width="48" height="48"> | [***crawl-tiles***](apps/crawl-tiles.md) | *open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - graphical version (SDL)*..[ *read more* ](apps/crawl-tiles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crawl-tiles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crawl-tiles) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/cromite.png" width="48" height="48"> | [***cromite***](apps/cromite.md) | *Unofficial AppImage of the Cromite web browser.*..[ *read more* ](apps/cromite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cromite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cromite) |
| <img loading="lazy" 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 loading="lazy" src="icons/crossmacro.png" width="48" height="48"> | [***crossmacro***](apps/crossmacro.md) | *A modern mouse and keyboard macro recording and playback application.*..[ *read more* ](apps/crossmacro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crossmacro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crossmacro) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/cs-demo-manager.png" width="48" height="48"> | [***cs-demo-manager***](apps/cs-demo-manager.md) | *Companion application for your Counter-Strike demos.*..[ *read more* ](apps/cs-demo-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cs-demo-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cs-demo-manager) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/cuberite.png" width="48" height="48"> | [***cuberite***](apps/cuberite.md) | *Unofficial, a lightweight, fast and extensible game server for Minecraft.*..[ *read more* ](apps/cuberite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cuberite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cuberite) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/cursor.png" width="48" height="48"> | [***cursor***](apps/cursor.md) | *Built to make you extraordinarily productive, Cursor is the best way to code with AI.*..[ *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 loading="lazy" src="icons/cursor-cli.png" width="48" height="48"> | [***cursor-cli***](apps/cursor-cli.md) | *Unofficial, AI-assisted development CLI tool.*..[ *read more* ](apps/cursor-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cursor-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cursor-cli) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/cvrx.png" width="48" height="48"> | [***cvrx***](apps/cvrx.md) | *A standalone companion app for ChilloutVR that expands the user experience! A standalone companion app for ChilloutVR that expands the user experience! A standalone companion app for ChilloutVR that expands the user experience!.*..[ *read more* ](apps/cvrx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cvrx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cvrx) |
| <img loading="lazy" 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 loading="lazy" src="icons/d1x-rebirth.png" width="48" height="48"> | [***d1x-rebirth***](apps/d1x-rebirth.md) | *Unofficial, a source port of the Descent engine.*..[ *read more* ](apps/d1x-rebirth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/d1x-rebirth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/d1x-rebirth) |
| <img loading="lazy" src="icons/d2x-rebirth.png" width="48" height="48"> | [***d2x-rebirth***](apps/d2x-rebirth.md) | *Unofficial, a source port of the Descent 2 engine.*..[ *read more* ](apps/d2x-rebirth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/d2x-rebirth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/d2x-rebirth) |
| <img loading="lazy" src="icons/daisy.png" width="48" height="48"> | [***daisy***](apps/daisy.md) | *A beautiful, easy-to-use, ad-free manga and light novel client that supports both. (Anime Home).*..[ *read more* ](apps/daisy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/daisy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/daisy) |
| <img loading="lazy" 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 loading="lazy" src="icons/darkplaces.png" width="48" height="48"> | [***darkplaces***](apps/darkplaces.md) | *Unofficial, the DarkPlaces Quake engine, created by LadyHavoc.*..[ *read more* ](apps/darkplaces.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/darkplaces) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/darkplaces) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/dayon.png" width="48" height="48"> | [***dayon***](apps/dayon.md) | *Dayon! - A cross-platform remote desktop assistance solution for your family and friends.*..[ *read more* ](apps/dayon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dayon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dayon) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/dbgate-premium.png" width="48" height="48"> | [***dbgate-premium***](apps/dbgate-premium.md) | *Opensource database administration tool (premium version)*..[ *read more* ](apps/dbgate-premium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbgate-premium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbgate-premium) |
| <img loading="lazy" src="icons/deadbeef.png" width="48" height="48"> | [***deadbeef***](apps/deadbeef.md) | *Unofficial AppImage of the DeaDBeeF music player (Stable version).*..[ *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 loading="lazy" src="icons/deadbeef-nightly.png" width="48" height="48"> | [***deadbeef-nightly***](apps/deadbeef-nightly.md) | *Unofficial AppImage of the DeaDBeeF music player (Nightly version).*..[ *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 loading="lazy" 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 loading="lazy" src="icons/dealers-choice.png" width="48" height="48"> | [***dealers-choice***](apps/dealers-choice.md) | *Multiplayer Stud and Draw Poker game.*..[ *read more* ](apps/dealers-choice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dealers-choice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dealers-choice) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/defold.png" width="48" height="48"> | [***defold***](apps/defold.md) | *Unofficial, Defold is a completely free to use game engine for development of games.*..[ *read more* ](apps/defold.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/defold) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/defold) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/deskthing.png" width="48" height="48"> | [***deskthing***](apps/deskthing.md) | *The Discord Thing, Trello Thing, The Weather Thing, The Macro Thing, just not The Car Thing anymore.*..[ *read more* ](apps/deskthing.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deskthing) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deskthing) |
| <img loading="lazy" src="icons/desmume.png" width="48" height="48"> | [***desmume***](apps/desmume.md) | *Unofficial AppImage of the DeSmuME emulator.*..[ *read more* ](apps/desmume.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/desmume) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/desmume) |
| <img loading="lazy" 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 loading="lazy" src="icons/dethrace.png" width="48" height="48"> | [***dethrace***](apps/dethrace.md) | *Unofficial, reverse engineering the 1997 game "Carmageddon".*..[ *read more* ](apps/dethrace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dethrace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dethrace) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/devilutionx-enhanced.png" width="48" height="48"> | [***devilutionx-enhanced***](apps/devilutionx-enhanced.md) | *Unofficial, Diablo build for modern operating systems.*..[ *read more* ](apps/devilutionx-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devilutionx-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devilutionx-enhanced) |
| <img loading="lazy" src="icons/devpod.png" width="48" height="48"> | [***devpod***](apps/devpod.md) | *Codespaces but open-source, client-only and unopinionated. Works with any IDE and lets you use any cloud, kubernetes or just localhost docker.*..[ *read more* ](apps/devpod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devpod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devpod) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/dhewm3.png" width="48" height="48"> | [***dhewm3***](apps/dhewm3.md) | *Unofficial, doom 3 GPL source port.*..[ *read more* ](apps/dhewm3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dhewm3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dhewm3) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/dinosaurplanetrecompiled.png" width="48" height="48"> | [***dinosaurplanetrecompiled***](apps/dinosaurplanetrecompiled.md) | *A static recompilation/native port of the game Dinosaur Planet.*..[ *read more* ](apps/dinosaurplanetrecompiled.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dinosaurplanetrecompiled) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dinosaurplanetrecompiled) |
| <img loading="lazy" src="icons/dinox.png" width="48" height="48"> | [***dinox***](apps/dinox.md) | *DinoX - Modern XMPP Chat Client with Video Calls, Voice Messages & OMEMO Encryption.*..[ *read more* ](apps/dinox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dinox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dinox) |
| <img loading="lazy" src="icons/dione.png" width="48" height="48"> | [***dione***](apps/dione.md) | *Explore, Install, Innovate — in 1 Click.*..[ *read more* ](apps/dione.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dione) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dione) |
| <img loading="lazy" 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 loading="lazy" src="icons/discord.png" width="48" height="48"> | [***discord***](apps/discord.md) | *Unofficial. All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.*..[ *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 loading="lazy" src="icons/discord-bot-client.png" width="48" height="48"> | [***discord-bot-client***](apps/discord-bot-client.md) | *A patched version of discord, with bot login & Vencord support.*..[ *read more* ](apps/discord-bot-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/discord-bot-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/discord-bot-client) |
| <img loading="lazy" 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 loading="lazy" src="icons/diskfmt.png" width="48" height="48"> | [***diskfmt***](apps/diskfmt.md) | *A disk formatting utility for linux that is similar to the windows format utility.*..[ *read more* ](apps/diskfmt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diskfmt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diskfmt) |
| <img loading="lazy" src="icons/dlman.png" width="48" height="48"> | [***dlman***](apps/dlman.md) | *Free & fast modern download manager built with Rust for speed and reliability.*..[ *read more* ](apps/dlman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dlman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dlman) |
| <img loading="lazy" src="icons/dns-changer.png" width="48" height="48"> | [***dns-changer***](apps/dns-changer.md) | *An open-source DNS Changer app.*..[ *read more* ](apps/dns-changer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dns-changer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dns-changer) |
| <img loading="lazy" src="icons/dnzhrecomp.png" width="48" height="48"> | [***dnzhrecomp***](apps/dnzhrecomp.md) | *Unofficial, a native port of Duke Nukem Zero Hour, statically recompiled.*..[ *read more* ](apps/dnzhrecomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dnzhrecomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dnzhrecomp) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/dolphin-emu-nightly.png" width="48" height="48"> | [***dolphin-emu-nightly***](apps/dolphin-emu-nightly.md) | *Unofficial nightly AppImage of the Dolphin emulator.*..[ *read more* ](apps/dolphin-emu-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dolphin-emu-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dolphin-emu-nightly) |
| <img loading="lazy" src="icons/dolt-workbench.png" width="48" height="48"> | [***dolt-workbench***](apps/dolt-workbench.md) | *A modern, browser-based, open source SQL workbench for your MySQL and PostgreSQL compatible database with version control features when connected to Dolt.*..[ *read more* ](apps/dolt-workbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dolt-workbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dolt-workbench) |
| <img loading="lazy" 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 loading="lazy" src="icons/doom64exultra.png" width="48" height="48"> | [***doom64exultra***](apps/doom64exultra.md) | *Unofficial, A fork of DOOM64EX+ with new stuff and fixes.*..[ *read more* ](apps/doom64exultra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doom64exultra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doom64exultra) |
| <img loading="lazy" 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 loading="lazy" src="icons/dorion.png" width="48" height="48"> | [***dorion***](apps/dorion.md) | *Tiny alternative Discord client with a smaller footprint, snappier startup, themes, plugins and more!*..[ *read more* ](apps/dorion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dorion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dorion) |
| <img loading="lazy" src="icons/dosbox-x.png" width="48" height="48"> | [***dosbox-x***](apps/dosbox-x.md) | *Unofficial, DOSBox-X is a cross-platform DOS emulator for running many MS-DOS games.*..[ *read more* ](apps/dosbox-x.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dosbox-x) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dosbox-x) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/dr-robotniks-ring-racers.png" width="48" height="48"> | [***dr-robotniks-ring-racers***](apps/dr-robotniks-ring-racers.md) | *Unofficial, kart racing video game originally based on SRB2Kart.*..[ *read more* ](apps/dr-robotniks-ring-racers.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dr-robotniks-ring-racers) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dr-robotniks-ring-racers) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/drally.png" width="48" height="48"> | [***drally***](apps/drally.md) | *Unofficial, a port of Death Rally (1996).*..[ *read more* ](apps/drally.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drally) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drally) |
| <img loading="lazy" 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 loading="lazy" src="icons/drawish.png" width="48" height="48"> | [***drawish***](apps/drawish.md) | *Simple, yet complete drawing program.*..[ *read more* ](apps/drawish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drawish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drawish) |
| <img loading="lazy" 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 loading="lazy" src="icons/drawy.png" width="48" height="48"> | [***drawy***](apps/drawy.md) | *Your handy, infinite, brainstorming tool.*..[ *read more* ](apps/drawy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drawy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drawy) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/drovp.png" width="48" height="48"> | [***drovp***](apps/drovp.md) | *Desktop app for encoding, converting, upscaling, and much more.*..[ *read more* ](apps/drovp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drovp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drovp) |
| <img loading="lazy" src="icons/drum-machine.png" width="48" height="48"> | [***drum-machine***](apps/drum-machine.md) | *Unofficial, Application for managing and playing with drum patterns.*..[ *read more* ](apps/drum-machine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drum-machine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drum-machine) |
| <img loading="lazy" src="icons/dsda-doom.png" width="48" height="48"> | [***dsda-doom***](apps/dsda-doom.md) | *This is a successor of prboom+ with extra tooling for demo recording and playback, with a focus on speedrunning and quality of life.*..[ *read more* ](apps/dsda-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dsda-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dsda-doom) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/duplicate-image-finder.png" width="48" height="48"> | [***duplicate-image-finder***](apps/duplicate-image-finder.md) | *It is an application that can find duplicated images (jpg, png, bitmap, etc) in a collection.*..[ *read more* ](apps/duplicate-image-finder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duplicate-image-finder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duplicate-image-finder) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/dwarffortress.png" width="48" height="48"> | [***dwarffortress***](apps/dwarffortress.md) | *A Dwarf Fortress game. Build a fortress and try to help your dwarves survive against a deeply generated world.*..[ *read more* ](apps/dwarffortress.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dwarffortress) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dwarffortress) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/easytag.png" width="48" height="48"> | [***easytag***](apps/easytag.md) | *Unofficial AppImage of EasyTAG tag editor.*..[ *read more* ](apps/easytag.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/easytag) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/easytag) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/ecwolf.png" width="48" height="48"> | [***ecwolf***](apps/ecwolf.md) | *Unofficial, advanced port of Wolfenstein 3D based off of Wolf4SDL.*..[ *read more* ](apps/ecwolf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ecwolf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ecwolf) |
| <img loading="lazy" src="icons/edconv.png" width="48" height="48"> | [***edconv***](apps/edconv.md) | *A user-friendly FFmpeg GUI.*..[ *read more* ](apps/edconv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/edconv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/edconv) |
| <img loading="lazy" src="icons/eden.png" width="48" height="48"> | [***eden***](apps/eden.md) | *An experimental open-source emulator for Nintendo Switch (yuzu fork).*..[ *read more* ](apps/eden.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eden) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eden) |
| <img loading="lazy" src="icons/eden-nightly.png" width="48" height="48"> | [***eden-nightly***](apps/eden-nightly.md) | *An experimental open-source emulator for Nintendo Switch (yuzu fork, nightly builds).*..[ *read more* ](apps/eden-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eden-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eden-nightly) |
| <img loading="lazy" 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 loading="lazy" src="icons/eduke32.png" width="48" height="48"> | [***eduke32***](apps/eduke32.md) | *Unofficial, an advanced Duke Nukem 3D source port.*..[ *read more* ](apps/eduke32.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eduke32) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eduke32) |
| <img loading="lazy" src="icons/eez-studio.png" width="48" height="48"> | [***eez-studio***](apps/eez-studio.md) | *Cross-platform low-code GUI and automation.*..[ *read more* ](apps/eez-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eez-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eez-studio) |
| <img loading="lazy" 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 loading="lazy" src="icons/eiskaltdcpp.png" width="48" height="48"> | [***eiskaltdcpp***](apps/eiskaltdcpp.md) | *Client for EiskaltDC++ core.*..[ *read more* ](apps/eiskaltdcpp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eiskaltdcpp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eiskaltdcpp) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/elastic.png" width="48" height="48"> | [***elastic***](apps/elastic.md) | *Unofficial. Visualize and design physics-based animation of objects.*..[ *read more* ](apps/elastic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elastic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elastic) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/electrum-neurai.png" width="48" height="48"> | [***electrum-neurai***](apps/electrum-neurai.md) | *Neurai is a decentralized open source protocol optimized to transfer cryptoassets from one party to another on Layer1. The project aims to integrate NFT and Tokens with IoT and artificial intelligence applications.*..[ *read more* ](apps/electrum-neurai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrum-neurai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrum-neurai) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/electrumsvp.png" width="48" height="48"> | [***electrumsvp***](apps/electrumsvp.md) | *Bitcoin BSV wallet, fork of ElectrumSV.*..[ *read more* ](apps/electrumsvp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrumsvp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrumsvp) |
| <img loading="lazy" 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 loading="lazy" src="icons/element-desktop.png" width="48" height="48"> | [***element-desktop***](apps/element-desktop.md) | *Unofficial, glossy Matrix collaboration client for desktop.*..[ *read more* ](apps/element-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/element-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/element-desktop) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/elyprismlauncher.png" width="48" height="48"> | [***elyprismlauncher***](apps/elyprismlauncher.md) | *This fork of Prism Launcher adds integrated support for Ely.by accounts.*..[ *read more* ](apps/elyprismlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elyprismlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elyprismlauncher) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/emulsion.png" width="48" height="48"> | [***emulsion***](apps/emulsion.md) | *Better gaming through chemistry.*..[ *read more* ](apps/emulsion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emulsion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emulsion) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/epsxe.png" width="48" height="48"> | [***epsxe***](apps/epsxe.md) | *Unofficial, enhanced PSX emulator.*..[ *read more* ](apps/epsxe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/epsxe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/epsxe) |
| <img loading="lazy" 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 loading="lazy" src="icons/equibop.png" width="48" height="48"> | [***equibop***](apps/equibop.md) | *Equibop is a custom Discord App aiming to give you better performance and improve linux support.*..[ *read more* ](apps/equibop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/equibop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/equibop) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/etlegacy.png" width="48" height="48"> | [***etlegacy***](apps/etlegacy.md) | *Enemy Territory.*..[ *read more* ](apps/etlegacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/etlegacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/etlegacy) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/extension-manager.png" width="48" height="48"> | [***extension-manager***](apps/extension-manager.md) | *A native tool for browsing, installing, and managing GNOME Shell Extensions.*..[ *read more* ](apps/extension-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/extension-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/extension-manager) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/exult.png" width="48" height="48"> | [***exult***](apps/exult.md) | *Unofficial, a project to recreate Ultima 7 for modern operating systems.*..[ *read more* ](apps/exult.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exult) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exult) |
| <img loading="lazy" src="icons/eyedropper.png" width="48" height="48"> | [***eyedropper***](apps/eyedropper.md) | *Unofficial. Simple color picker, with support for various color palettes.*..[ *read more* ](apps/eyedropper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eyedropper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eyedropper) |
| <img loading="lazy" 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 loading="lazy" src="icons/ez-tree.png" width="48" height="48"> | [***ez-tree***](apps/ez-tree.md) | *EZ Tree – Procedural tree generator.*..[ *read more* ](apps/ez-tree.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ez-tree) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ez-tree) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/fabother-world.png" width="48" height="48"> | [***fabother-world***](apps/fabother-world.md) | *Unofficial, an interpreter for Another World (Out of this world).*..[ *read more* ](apps/fabother-world.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fabother-world) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fabother-world) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/falkon.png" width="48" height="48"> | [***falkon***](apps/falkon.md) | *Unofficial. A fast Qt web browser from KDE.*..[ *read more* ](apps/falkon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/falkon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/falkon) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/fbreader.png" width="48" height="48"> | [***fbreader***](apps/fbreader.md) | *Your Favourite eBook Reader*..[ *read more* ](apps/fbreader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fbreader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fbreader) |
| <img loading="lazy" src="icons/fchat-horizon.png" width="48" height="48"> | [***fchat-horizon***](apps/fchat-horizon.md) | *The Best F-Chat 3.0 Client, No exceptions!.*..[ *read more* ](apps/fchat-horizon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fchat-horizon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fchat-horizon) |
| <img loading="lazy" 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 loading="lazy" src="icons/fdm.png" width="48" height="48"> | [***fdm***](apps/fdm.md) | *Free Download Manager, multiplatform powerful modern download accelerator and organizer.*..[ *read more* ](apps/fdm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fdm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fdm) |
| <img loading="lazy" 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 loading="lazy" src="icons/featherpad.png" width="48" height="48"> | [***featherpad***](apps/featherpad.md) | *Unofficial. A lightweight Qt plain-text editor.*..[ *read more* ](apps/featherpad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/featherpad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/featherpad) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/ferrix.png" width="48" height="48"> | [***ferrix***](apps/ferrix.md) | *Fast, modern, cross-platform download manager built with Rust and Tauri, supports resumable downloads, clean UI, and blazing performance.*..[ *read more* ](apps/ferrix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ferrix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ferrix) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/ffmpeg.png" width="48" height="48"> | [***ffmpeg***](apps/ffmpeg.md) | *Unofficial, A complete, cross-platform solution to record, convert and stream audio and video.*..[ *read more* ](apps/ffmpeg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffmpeg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffmpeg) |
| <img loading="lazy" 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 loading="lazy" src="icons/fiddler-everywhere.png" width="48" height="48"> | [***fiddler-everywhere***](apps/fiddler-everywhere.md) | *Debug your network traffic to deliver high-quality products.*..[ *read more* ](apps/fiddler-everywhere.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fiddler-everywhere) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fiddler-everywhere) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/filelight.png" width="48" height="48"> | [***filelight***](apps/filelight.md) | *Unofficial. View disk usage information, by KDE.*..[ *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 loading="lazy" 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 loading="lazy" src="icons/filezilla.png" width="48" height="48"> | [***filezilla***](apps/filezilla.md) | *Unofficial. 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/firealpaca.png" width="48" height="48"> | [***firealpaca***](apps/firealpaca.md) | *A Free and Multiplatform Digital Painting Software.*..[ *read more* ](apps/firealpaca.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firealpaca) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firealpaca) |
| <img loading="lazy" src="icons/firecamp.png" width="48" height="48"> | [***firecamp***](apps/firecamp.md) | *Developer-first OpenSource API DevTool, Postman/Insomnia alternative.*..[ *read more* ](apps/firecamp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firecamp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firecamp) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/fireminipro.png" width="48" height="48"> | [***fireminipro***](apps/fireminipro.md) | *GUI for minipro CLI.*..[ *read more* ](apps/fireminipro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fireminipro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fireminipro) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/fjordlauncher.png" width="48" height="48"> | [***fjordlauncher***](apps/fjordlauncher.md) | *Prism Launcher fork with support for alternative auth servers.*..[ *read more* ](apps/fjordlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fjordlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fjordlauncher) |
| <img loading="lazy" 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 loading="lazy" src="icons/fladder.png" width="48" height="48"> | [***fladder***](apps/fladder.md) | *A Simple Jellyfin frontend built on top of Flutter.*..[ *read more* ](apps/fladder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fladder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fladder) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/flclash.png" width="48" height="48"> | [***flclash***](apps/flclash.md) | *A multi-platform proxy client based on ClashMeta,simple and easy to use, open-source and ad-free.*..[ *read more* ](apps/flclash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flclash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flclash) |
| <img loading="lazy" src="icons/flightcore.png" width="48" height="48"> | [***flightcore***](apps/flightcore.md) | *A Northstar installer, updater, and mod-manager.*..[ *read more* ](apps/flightcore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flightcore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flightcore) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/flow-browser.png" width="48" height="48"> | [***flow-browser***](apps/flow-browser.md) | *A modern, privacy-focused browser with a minimalistic design.*..[ *read more* ](apps/flow-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flow-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flow-browser) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/fluxer.png" width="48" height="48"> | [***fluxer***](apps/fluxer.md) | *A free and open source instant messaging and VoIP platform built for friends, groups, and communities.*..[ *read more* ](apps/fluxer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fluxer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fluxer) |
| <img loading="lazy" 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 loading="lazy" src="icons/flycast-dojo.png" width="48" height="48"> | [***flycast-dojo***](apps/flycast-dojo.md) | *Flycast fork, multiplatform Sega Dreamcast, Naomi and Atomiswave emulator for netplay, training & online tournament gameplay.*..[ *read more* ](apps/flycast-dojo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flycast-dojo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flycast-dojo) |
| <img loading="lazy" src="icons/flycast-enhanced.png" width="48" height="48"> | [***flycast-enhanced***](apps/flycast-enhanced.md) | *Unofficial, A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator.*..[ *read more* ](apps/flycast-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flycast-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flycast-enhanced) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/folo.png" width="48" height="48"> | [***folo***](apps/folo.md) | *Folo is the AI Reader.*..[ *read more* ](apps/folo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/folo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/folo) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/foobillardpp.png" width="48" height="48"> | [***foobillardpp***](apps/foobillardpp.md) | *Unofficial, an OpenGL Billard Game based on foobillard 3.0a with patches and new features.*..[ *read more* ](apps/foobillardpp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foobillardpp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foobillardpp) |
| <img loading="lazy" src="icons/foot.png" width="48" height="48"> | [***foot***](apps/foot.md) | *Unofficial, A fast, lightweight and minimalistic Wayland terminal emulator (This AppImage can work on x11 as well).*..[ *read more* ](apps/foot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foot) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/frame.png" width="48" height="48"> | [***frame***](apps/frame.md) | *Fast FFmpeg GUI.*..[ *read more* ](apps/frame.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/frame) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/frame) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/freetube-enhanced.png" width="48" height="48"> | [***freetube-enhanced***](apps/freetube-enhanced.md) | *Unofficial, An Open Source YouTube app for privacy.*..[ *read more* ](apps/freetube-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freetube-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freetube-enhanced) |
| <img loading="lazy" 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 loading="lazy" src="icons/fresh.png" width="48" height="48"> | [***fresh***](apps/fresh.md) | *easy, powerful and fast.*..[ *read more* ](apps/fresh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fresh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fresh) |
| <img loading="lazy" src="icons/fretboard.png" width="48" height="48"> | [***fretboard***](apps/fretboard.md) | *Unofficial. Application which helps you find your favorite guitar chord.*..[ *read more* ](apps/fretboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fretboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fretboard) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/furnace.png" width="48" height="48"> | [***furnace***](apps/furnace.md) | *A multi-system chiptune tracker compatible with DefleMask modules.*..[ *read more* ](apps/furnace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/furnace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/furnace) |
| <img loading="lazy" src="icons/g-v2ray.png" width="48" height="48"> | [***g-v2ray***](apps/g-v2ray.md) | *Advanced V2Ray/Xray GUI Client for Linux.*..[ *read more* ](apps/g-v2ray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/g-v2ray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/g-v2ray) |
| <img loading="lazy" 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 loading="lazy" src="icons/gale.png" width="48" height="48"> | [***gale***](apps/gale.md) | *A modern mod manager for Thunderstore.*..[ *read more* ](apps/gale.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gale) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gale) |
| <img loading="lazy" src="icons/gameconqueror.png" width="48" height="48"> | [***gameconqueror***](apps/gameconqueror.md) | *Unofficial. Memory scanner designed to isolate the adress of an arbitrary variable in an executing process (gtk GUI).*..[ *read more* ](apps/gameconqueror.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gameconqueror) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gameconqueror) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/gapless.png" width="48" height="48"> | [***gapless***](apps/gapless.md) | *Unofficial. Simple music player with blur and gapless playback.*..[ *read more* ](apps/gapless.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gapless) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gapless) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/gearlever.png" width="48" height="48"> | [***gearlever***](apps/gearlever.md) | *Unofficial. An utility to organize and manage AppImage files for you, generate desktop entries and app metadata, update apps in-place or keep multiple versions side-by-side.*..[ *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 loading="lazy" 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 loading="lazy" src="icons/geeqie.png" width="48" height="48"> | [***geeqie***](apps/geeqie.md) | *Claiming to be the best image viewer and photo collection browser.*..[ *read more* ](apps/geeqie.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geeqie) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geeqie) |
| <img loading="lazy" src="icons/geforce-infinity.png" width="48" height="48"> | [***geforce-infinity***](apps/geforce-infinity.md) | *Enhance the Nvidia GeForce NOW experience.*..[ *read more* ](apps/geforce-infinity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geforce-infinity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geforce-infinity) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/gemrb.png" width="48" height="48"> | [***gemrb***](apps/gemrb.md) | *GemRB is a portable open-source implementation of Bioware's Infinity Engine.*..[ *read more* ](apps/gemrb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gemrb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gemrb) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/gerbil.png" width="48" height="48"> | [***gerbil***](apps/gerbil.md) | *A desktop app for running Large Language Models locally.*..[ *read more* ](apps/gerbil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gerbil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gerbil) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/gharmonize.png" width="48" height="48"> | [***gharmonize***](apps/gharmonize.md) | *A cross-platform media conversion app with a built-in YouTube downloader and Spotify downloader, powered by yt-dlp and ffmpeg — now featuring FPS adaptation support for AC3, EAC3, and AAC codecs.*..[ *read more* ](apps/gharmonize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gharmonize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gharmonize) |
| <img loading="lazy" src="icons/ghostship.png" width="48" height="48"> | [***ghostship***](apps/ghostship.md) | *Unofficial, Another definitive port of Super Mario 64.*..[ *read more* ](apps/ghostship.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostship) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostship) |
| <img loading="lazy" src="icons/ghostship-enhanced.png" width="48" height="48"> | [***ghostship-enhanced***](apps/ghostship-enhanced.md) | *Unofficial, Another definitive port of Super Mario 64.*..[ *read more* ](apps/ghostship-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostship-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostship-enhanced) |
| <img loading="lazy" src="icons/ghostty.png" width="48" height="48"> | [***ghostty***](apps/ghostty.md) | *Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Stable)*..[ *read more* ](apps/ghostty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty) |
| <img loading="lazy" src="icons/ghostty-glfw.png" width="48" height="48"> | [***ghostty-glfw***](apps/ghostty-glfw.md) | *Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (glfw version)*..[ *read more* ](apps/ghostty-glfw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty-glfw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty-glfw) |
| <img loading="lazy" src="icons/ghostty-glfw-nightly.png" width="48" height="48"> | [***ghostty-glfw-nightly***](apps/ghostty-glfw-nightly.md) | *Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Tip, Nightly) (glfw version)*..[ *read more* ](apps/ghostty-glfw-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty-glfw-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty-glfw-nightly) |
| <img loading="lazy" src="icons/ghostty-nightly.png" width="48" height="48"> | [***ghostty-nightly***](apps/ghostty-nightly.md) | *Unoffical, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Tip, Nightly)*..[ *read more* ](apps/ghostty-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty-nightly) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/gimp.png" width="48" height="48"> | [***gimp***](apps/gimp.md) | *GNU Image Manipulation Program, cross-platform image and photo editor. Multiple-choices.*..[ *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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/gitbutler.png" width="48" height="48"> | [***gitbutler***](apps/gitbutler.md) | *The GitButler version control client, backed by Git, powered by Tauri/Rust/Svelte.*..[ *read more* ](apps/gitbutler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitbutler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitbutler) |
| <img loading="lazy" 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 loading="lazy" src="icons/github-desktop-plus.png" width="48" height="48"> | [***github-desktop-plus***](apps/github-desktop-plus.md) | *Electron-based GitHub Desktop fork with advanced functionality and Bitbucket, GitLab integration.*..[ *read more* ](apps/github-desktop-plus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/github-desktop-plus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/github-desktop-plus) |
| <img loading="lazy" src="icons/github-store.png" width="48" height="48"> | [***github-store***](apps/github-store.md) | *A free, open-source app store for GitHub releases. Browse, discover, and install apps with one click. Powered by Kotlin and Compose Multiplatform for Android & Desktop.*..[ *read more* ](apps/github-store.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/github-store) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/github-store) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/gittyup.png" width="48" height="48"> | [***gittyup***](apps/gittyup.md) | *GUI Git client designed to help you understand and manage your source code history.*..[ *read more* ](apps/gittyup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gittyup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gittyup) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/gnatstudio.png" width="48" height="48"> | [***gnatstudio***](apps/gnatstudio.md) | *GNAT Studio is a powerful and lightweight IDE for Ada and SPARK.*..[ *read more* ](apps/gnatstudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnatstudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnatstudio) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/gnome-pomodoro.png" width="48" height="48"> | [***gnome-pomodoro***](apps/gnome-pomodoro.md) | *A productivity tool designed to help you manage your time effectively using the Pomodoro Technique.*..[ *read more* ](apps/gnome-pomodoro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-pomodoro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-pomodoro) |
| <img loading="lazy" src="icons/gnome-system-monitor.png" width="48" height="48"> | [***gnome-system-monitor***](apps/gnome-system-monitor.md) | *Unofficial. View current processes and monitor system state.*..[ *read more* ](apps/gnome-system-monitor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-system-monitor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-system-monitor) |
| <img loading="lazy" src="icons/gnome-text-editor.png" width="48" height="48"> | [***gnome-text-editor***](apps/gnome-text-editor.md) | *Unofficial AppImage of the Gnome's Text Editor application.*..[ *read more* ](apps/gnome-text-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-text-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-text-editor) |
| <img loading="lazy" 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 loading="lazy" src="icons/gnu-freedink.png" width="48" height="48"> | [***gnu-freedink***](apps/gnu-freedink.md) | *Unofficial, a portable and enhanced version of the Dink Smallwood game engine.*..[ *read more* ](apps/gnu-freedink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnu-freedink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnu-freedink) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/godot-appimage.png" width="48" height="48"> | [***godot-appimage***](apps/godot-appimage.md) | *Unofficial, Advanced cross-platform 2D and 3D game engine*..[ *read more* ](apps/godot-appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/godot-appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/godot-appimage) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/goldendict-ng.png" width="48" height="48"> | [***goldendict-ng***](apps/goldendict-ng.md) | *Unofficial, an advanced dictionary lookup program, supporting many formats.*..[ *read more* ](apps/goldendict-ng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goldendict-ng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goldendict-ng) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/gozen.png" width="48" height="48"> | [***gozen***](apps/gozen.md) | *A lightweight, stable, minimalistic and performant video editor with simplicity in mind.*..[ *read more* ](apps/gozen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gozen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gozen) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/gpu-screen-recorder.png" width="48" height="48"> | [***gpu-screen-recorder***](apps/gpu-screen-recorder.md) | *Unofficial, AppImage of GPU Screen Recorder*..[ *read more* ](apps/gpu-screen-recorder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpu-screen-recorder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpu-screen-recorder) |
| <img loading="lazy" src="icons/gpu-t.png" width="48" height="48"> | [***gpu-t***](apps/gpu-t.md) | *A comprehensive graphics card information utility for Linux.*..[ *read more* ](apps/gpu-t.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpu-t) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpu-t) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/gradia.png" width="48" height="48"> | [***gradia***](apps/gradia.md) | *Unofficial, screenshot/picture editor and uploader.*..[ *read more* ](apps/gradia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gradia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gradia) |
| <img loading="lazy" src="icons/graphest.png" width="48" height="48"> | [***graphest***](apps/graphest.md) | * A faithful graphing calculator.*..[ *read more* ](apps/graphest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/graphest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/graphest) |
| <img loading="lazy" 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 loading="lazy" src="icons/graphs.png" width="48" height="48"> | [***graphs***](apps/graphs.md) | *Unofficial. A simple, yet powerful tool that allows you to plot and manipulate your data with ease.*..[ *read more* ](apps/graphs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/graphs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/graphs) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/gridix.png" width="48" height="48"> | [***gridix***](apps/gridix.md) | *A simple, fast, and secure cross-platform database management tool with Helix or Vim-style keybindings.*..[ *read more* ](apps/gridix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridix) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/guarda.png" width="48" height="48"> | [***guarda***](apps/guarda.md) | *A secure, easy-to-use open source multi-platform 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/gwenview.png" width="48" height="48"> | [***gwenview***](apps/gwenview.md) | *Unofficial. Fast and easy to use image viewer by KDE. ideal for displaying a collection of images.*..[ *read more* ](apps/gwenview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gwenview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gwenview) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/hammer.png" width="48" height="48"> | [***hammer***](apps/hammer.md) | *A simple tool for building stories.*..[ *read more* ](apps/hammer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hammer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hammer) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/handy.png" width="48" height="48"> | [***handy***](apps/handy.md) | *A free, open source, and extensible speech-to-text application that works completely offline.*..[ *read more* ](apps/handy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/handy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/handy) |
| <img loading="lazy" src="icons/hangar.png" width="48" height="48"> | [***hangar***](apps/hangar.md) | *A native Bluesky client for Linux, built with Rust, GTK4, and Libadwaita.*..[ *read more* ](apps/hangar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hangar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hangar) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/hatari.png" width="48" height="48"> | [***hatari***](apps/hatari.md) | *Unofficial, an Atari ST and STE emulator.*..[ *read more* ](apps/hatari.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hatari) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hatari) |
| <img loading="lazy" src="icons/haveno-reto.png" width="48" height="48"> | [***haveno-reto***](apps/haveno-reto.md) | *Decentralized P2P exchange built on Monero and Tor.*..[ *read more* ](apps/haveno-reto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/haveno-reto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/haveno-reto) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/helion.png" width="48" height="48"> | [***helion***](apps/helion.md) | *A modern fast paced Doom FPS engine.*..[ *read more* ](apps/helion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helion) |
| <img loading="lazy" 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 loading="lazy" src="icons/helium.png" width="48" height="48"> | [***helium***](apps/helium.md) | *The Chromium-based web browser made for people, with love. Best privacy by default, unbiased ad-blocking, no bloat and no noise.*..[ *read more* ](apps/helium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helium) |
| <img loading="lazy" 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 loading="lazy" src="icons/helixnotes.png" width="48" height="48"> | [***helixnotes***](apps/helixnotes.md) | *A local markdown note-taking app built with Tauri, SvelteKit, and Rust.*..[ *read more* ](apps/helixnotes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helixnotes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helixnotes) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/highlite.png" width="48" height="48"> | [***highlite***](apps/highlite.md) | *A RuneLite-esque Client for the game High Spell.*..[ *read more* ](apps/highlite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/highlite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/highlite) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" src="icons/httptoolkit.png" width="48" height="48"> | [***httptoolkit***](apps/httptoolkit.md) | *HTTP Toolkit is an open-source tool for debugging, testing and building with HTTP.*..[ *read more* ](apps/httptoolkit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/httptoolkit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/httptoolkit) |
| <img loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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 loading="lazy" 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) |
| <img loading="lazy" src="icons/hyperkeys.png" width="48" height="48"> | [***hyperkeys***](apps/hyperkeys.md) | *Unleash you keyboard shorcuts.*..[ *read more* ](apps/hyperkeys.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperkeys) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperkeys) |
| <img loading="lazy" src="icons/hyperspace.png" width="48" height="48"> | [***hyperspace***](apps/hyperspace.md) | *A fluffy client for Mastodon in React.*..[ *read more* ](apps/hyperspace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperspace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperspace) |
| <img loading="lazy" src="icons/hypnotix.png" width="48" height="48"> | [***hypnotix***](apps/hypnotix.md) | *Unofficial. An IPTV streaming application with support for live TV.*..[ *read more* ](apps/hypnotix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hypnotix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hypnotix) |
| <img loading="lazy" src="icons/i3.png" width="48" height="48"> | [***i3***](apps/i3.md) | *Unofficial, A tiling window manager for X11.*..[ *read more* ](apps/i3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/i3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/i3) |
| <img loading="lazy" src="icons/iagoncloudapp.png" width="48" height="48"> | [***iagoncloudapp***](apps/iagoncloudapp.md) | *Iagon Cloud Application.*..[ *read more* ](apps/iagoncloudapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iagoncloudapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iagoncloudapp) |
| <img loading="lazy" src="icons/ibus-rime.png" width="48" height="48"> | [***ibus-rime***](apps/ibus-rime.md) | *Zhongzhou Yun input method, ibus-rime in AppImage format.*..[ *read more* ](apps/ibus-rime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ibus-rime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ibus-rime) |
| <img loading="lazy" src="icons/icalingua++.png" width="48" height="48"> | [***icalingua++***](apps/icalingua++.md) | *A client for QQ and more.*..[ *read more* ](apps/icalingua++.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/icalingua++) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/icalingua++) |
| <img loading="lazy" src="icons/icecat.png" width="48" height="48"> | [***icecat***](apps/icecat.md) | *GNU IceCat is the GNU version of the Firefox web browser.*..[ *read more* ](apps/icecat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/icecat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/icecat) |
| <img loading="lazy" src="icons/icestudio.png" width="48" height="48"> | [***icestudio***](apps/icestudio.md) | *A real gamechanger in the world of Open Source FPGAs.*..[ *read more* ](apps/icestudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/icestudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/icestudio) |
| <img loading="lazy" src="icons/identity.png" width="48" height="48"> | [***identity***](apps/identity.md) | *Unofficial. Compare images and videos with one another to check for differences.*..[ *read more* ](apps/identity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/identity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/identity) |
| <img loading="lazy" src="icons/idescriptor.png" width="48" height="48"> | [***idescriptor***](apps/idescriptor.md) | *A free, open-source, and cross-platform iDevice management tool.*..[ *read more* ](apps/idescriptor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/idescriptor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/idescriptor) |
| <img loading="lazy" src="icons/igdm.png" width="48" height="48"> | [***igdm***](apps/igdm.md) | *Desktop application for Instagram DMs.*..[ *read more* ](apps/igdm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/igdm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/igdm) |
| <img loading="lazy" src="icons/iheartradio-webapp.png" width="48" height="48"> | [***iheartradio-webapp***](apps/iheartradio-webapp.md) | *Election WebApp for iHeartRadio.*..[ *read more* ](apps/iheartradio-webapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iheartradio-webapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iheartradio-webapp) |
| <img loading="lazy" src="icons/iloader.png" width="48" height="48"> | [***iloader***](apps/iloader.md) | *User friendly sideloader.*..[ *read more* ](apps/iloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iloader) |