-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathapps.json
More file actions
14832 lines (14832 loc) · 560 KB
/
apps.json
File metadata and controls
14832 lines (14832 loc) · 560 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
[
{
"packageName": "0ad",
"description": "FOSS historical Real Time Strategy, RTS game of ancient warfare...",
"icon": "https://portable-linux-apps.github.io/icons/0ad.png"
},
{
"packageName": "0ad-prerelease",
"description": "FOSS historical Real Time Strategy, RTS game of ancient warfare (Pre-release)...",
"icon": "https://portable-linux-apps.github.io/icons/0ad-prerelease.png"
},
{
"packageName": "12to11",
"description": "Unofficial, tool for running Wayland applications on an X server...",
"icon": "https://portable-linux-apps.github.io/icons/12to11.png"
},
{
"packageName": "2ship",
"description": "2 Ship 2 Harkinian game...",
"icon": "https://portable-linux-apps.github.io/icons/2ship.png"
},
{
"packageName": "3d-puzzles",
"description": "3D-Puzzles are Rubik, Dogic and Dogic12...",
"icon": "https://portable-linux-apps.github.io/icons/3d-puzzles.png"
},
{
"packageName": "432hz-player",
"description": "Because most music is recorded in 440hz, Audio Player...",
"icon": "https://portable-linux-apps.github.io/icons/432hz-player.png"
},
{
"packageName": "5ire",
"description": "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...",
"icon": "https://portable-linux-apps.github.io/icons/5ire.png"
},
{
"packageName": "7zip",
"description": "7-Zip is a file archiver with a high compression ratio...",
"icon": "https://portable-linux-apps.github.io/icons/7zip.png"
},
{
"packageName": "86box",
"description": "Emulator of x86-based machines based on PCem...",
"icon": "https://portable-linux-apps.github.io/icons/86box.png"
},
{
"packageName": "9launcher",
"description": "An actively maintained and cross platform remake of Touhou Relauncher...",
"icon": "https://portable-linux-apps.github.io/icons/9launcher.png"
},
{
"packageName": "aaaaxy",
"description": "A nonlinear puzzle platformer, game...",
"icon": "https://portable-linux-apps.github.io/icons/aaaaxy.png"
},
{
"packageName": "ab-download-manager",
"description": "A Download Manager that speeds up your downloads...",
"icon": "https://portable-linux-apps.github.io/icons/ab-download-manager.png"
},
{
"packageName": "abiword",
"description": "Unofficial. A light and free word processing software...",
"icon": "https://portable-linux-apps.github.io/icons/abiword.png"
},
{
"packageName": "accessimap-lecteur-der",
"description": "Accessimap Lecteur DER...",
"icon": "https://portable-linux-apps.github.io/icons/accessimap-lecteur-der.png"
},
{
"packageName": "acestream",
"description": "Створення бінарника AppImage з AceStream Media...",
"icon": "https://portable-linux-apps.github.io/icons/acestream.png"
},
{
"packageName": "acreom",
"description": "Acreom desktop app releases...",
"icon": "https://portable-linux-apps.github.io/icons/acreom.png"
},
{
"packageName": "actiona",
"description": "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...",
"icon": "https://portable-linux-apps.github.io/icons/actiona.png"
},
{
"packageName": "actual",
"description": "A super fast privacy-focused app for managing your finances...",
"icon": "https://portable-linux-apps.github.io/icons/actual.png"
},
{
"packageName": "adb",
"description": "Android Debug Bridge, a command line utility to handle Android devices. This script installs the full \"platform-tools\" suite...",
"icon": "https://portable-linux-apps.github.io/icons/adb.png"
},
{
"packageName": "advanced-passgen",
"description": "Advanced Password Generator...",
"icon": "https://portable-linux-apps.github.io/icons/advanced-passgen.png"
},
{
"packageName": "advanced-rest-client",
"description": "Advanced REST Client and API console, by Mulesoft...",
"icon": "https://portable-linux-apps.github.io/icons/advanced-rest-client.png"
},
{
"packageName": "aegisub",
"description": "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...",
"icon": "https://portable-linux-apps.github.io/icons/aegisub.png"
},
{
"packageName": "aerofoil",
"description": "Unofficial, multiplatform port of Glider PRO...",
"icon": "https://portable-linux-apps.github.io/icons/aerofoil.png"
},
{
"packageName": "afetch",
"description": "A CLI system information tool written in Rust...",
"icon": "https://portable-linux-apps.github.io/icons/afetch.png"
},
{
"packageName": "affine",
"description": "Next-gen knowledge base that brings planning, sorting and creating...",
"icon": "https://portable-linux-apps.github.io/icons/affine.png"
},
{
"packageName": "affine-beta",
"description": "Next-gen knowledge base that brings planning, sorting and creating...",
"icon": "https://portable-linux-apps.github.io/icons/affine-beta.png"
},
{
"packageName": "affine-canary",
"description": "Next-gen knowledge base that brings planning/sorting/creating...",
"icon": "https://portable-linux-apps.github.io/icons/affine-canary.png"
},
{
"packageName": "affinity",
"description": "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...",
"icon": "https://portable-linux-apps.github.io/icons/affinity.png"
},
{
"packageName": "agregore",
"description": "A minimal browser for the distributed web, Desktop version...",
"icon": "https://portable-linux-apps.github.io/icons/agregore.png"
},
{
"packageName": "ahk_x11",
"description": "AutoHotkey for Linux (X11-based systems)...",
"icon": "https://portable-linux-apps.github.io/icons/ahk_x11.png"
},
{
"packageName": "ai-bot-workspace",
"description": "Electron app including testing workspaces...",
"icon": "https://portable-linux-apps.github.io/icons/ai-bot-workspace.png"
},
{
"packageName": "ai-gate",
"description": "A Desktop app which brings access of popular AI apps to your desktop...",
"icon": "https://portable-linux-apps.github.io/icons/ai-gate.png"
},
{
"packageName": "aichat",
"description": "AIO AI CLI tool integrating 20+ AI platforms, including OpenAI...",
"icon": "https://portable-linux-apps.github.io/icons/aichat.png"
},
{
"packageName": "aidm",
"description": "AppImage Desktop Maker...",
"icon": "https://portable-linux-apps.github.io/icons/aidm.png"
},
{
"packageName": "aillio-ts",
"description": "The desktop application for Aillio Bullet R1...",
"icon": "https://portable-linux-apps.github.io/icons/aillio-ts.png"
},
{
"packageName": "aim",
"description": "A command line download/upload tool with resume...",
"icon": "https://portable-linux-apps.github.io/icons/aim.png"
},
{
"packageName": "aiming-pro",
"description": "Aim trainer to practice, train and improve their FPS aim skills...",
"icon": "https://portable-linux-apps.github.io/icons/aiming-pro.png"
},
{
"packageName": "air-controller-desktop",
"description": "Android phone assistant,powered by Flutter...",
"icon": "https://portable-linux-apps.github.io/icons/air-controller-desktop.png"
},
{
"packageName": "airspaces",
"description": "An online map for your X-Plane flight sessions...",
"icon": "https://portable-linux-apps.github.io/icons/airspaces.png"
},
{
"packageName": "aisap",
"description": "Tool to make sandboxing AppImages easy through bwrap/bubblewrap...",
"icon": "https://portable-linux-apps.github.io/icons/aisap.png"
},
{
"packageName": "aisleriot",
"description": "Unofficial. A card game featuring over 80 different solitaire-type card games...",
"icon": "https://portable-linux-apps.github.io/icons/aisleriot.png"
},
{
"packageName": "akasha",
"description": "AKASHA community client...",
"icon": "https://portable-linux-apps.github.io/icons/akasha.png"
},
{
"packageName": "akuse",
"description": "Simple and easy to use anime streaming desktop app without ads...",
"icon": "https://portable-linux-apps.github.io/icons/akuse.png"
},
{
"packageName": "alacritty",
"description": "Unofficial. A modern terminal emulator that comes with sensible defaults, but allows for extensive configuration...",
"icon": "https://portable-linux-apps.github.io/icons/alacritty.png"
},
{
"packageName": "albafetch",
"description": "CLI, faster neofetch alternative, written in C. Still improving...",
"icon": "https://portable-linux-apps.github.io/icons/albafetch.png"
},
{
"packageName": "alduin",
"description": "An Atom and RSS feed aggregator...",
"icon": "https://portable-linux-apps.github.io/icons/alduin.png"
},
{
"packageName": "alephium-wallet",
"description": "The official Alephium wallet for desktop...",
"icon": "https://portable-linux-apps.github.io/icons/alephium-wallet.png"
},
{
"packageName": "alexandria",
"description": "eBook reader built with Tauri, Epub.js, and Typescript...",
"icon": "https://portable-linux-apps.github.io/icons/alexandria.png"
},
{
"packageName": "alien-tec-ui",
"description": "Alien-Tec Tron Matrix Like Shell Terminal User Interface...",
"icon": "https://portable-linux-apps.github.io/icons/alien-tec-ui.png"
},
{
"packageName": "allusion",
"description": "A desktop application for managing your visual library...",
"icon": "https://portable-linux-apps.github.io/icons/allusion.png"
},
{
"packageName": "alma",
"description": "Elegant AI Provider Orchestration. A beautiful desktop application that unifies your AI experience. Seamlessly switch between OpenAI, Anthropic, Google Gemini, and custom providers...",
"icon": "https://portable-linux-apps.github.io/icons/alma.png"
},
{
"packageName": "alpine-flatimage",
"description": "A hybrid of Flatpak sandboxing with AppImage portability...",
"icon": "https://portable-linux-apps.github.io/icons/alpine-flatimage.png"
},
{
"packageName": "alr2appimage",
"description": "Tool for building an AppImage from an Alire crate...",
"icon": "https://portable-linux-apps.github.io/icons/alr2appimage.png"
},
{
"packageName": "alt-sendme",
"description": "Share files and directories anywhere - Local or Global..",
"icon": "https://portable-linux-apps.github.io/icons/alt-sendme.png"
},
{
"packageName": "altair",
"description": "The best graphQL client you will ever need...",
"icon": "https://portable-linux-apps.github.io/icons/altair.png"
},
{
"packageName": "altitude",
"description": "The Altitude wallet by Linda Project Inc...",
"icon": "https://portable-linux-apps.github.io/icons/altitude.png"
},
{
"packageName": "altrady",
"description": "Altrady Crypto Trading Terminal...",
"icon": "https://portable-linux-apps.github.io/icons/altrady.png"
},
{
"packageName": "altus",
"description": "Client for WhatsApp Web with themes & multiple account support...",
"icon": "https://portable-linux-apps.github.io/icons/altus.png"
},
{
"packageName": "alvr",
"description": "Stream VR games from your PC to your headset via Wi-Fi...",
"icon": "https://portable-linux-apps.github.io/icons/alvr.png"
},
{
"packageName": "am-gui",
"description": "AM-GUI is a graphical Front for AM...",
"icon": "https://portable-linux-apps.github.io/icons/am-gui.png"
},
{
"packageName": "amazingmarvin",
"description": "Incorporates principles from behavioral psychology...",
"icon": "https://portable-linux-apps.github.io/icons/amazingmarvin.png"
},
{
"packageName": "ambermoon.net",
"description": "Ambermoon rewrite in C#...",
"icon": "https://portable-linux-apps.github.io/icons/ambermoon.net.png"
},
{
"packageName": "amdgpu_top",
"description": "Tool to display AMDGPU usage...",
"icon": "https://portable-linux-apps.github.io/icons/amdgpu_top.png"
},
{
"packageName": "amfora",
"description": "A fancy terminal browser for the Gemini protocol...",
"icon": "https://portable-linux-apps.github.io/icons/amfora.png"
},
{
"packageName": "amplitude-soundboard",
"description": "A sleek, cross-platform soundboard, available...",
"icon": "https://portable-linux-apps.github.io/icons/amplitude-soundboard.png"
},
{
"packageName": "amusiz",
"description": "Unofficial and unpretentious Amazon Music client...",
"icon": "https://portable-linux-apps.github.io/icons/amusiz.png"
},
{
"packageName": "anavis",
"description": "Tool to visualize musical form...",
"icon": "https://portable-linux-apps.github.io/icons/anavis.png"
},
{
"packageName": "anchor",
"description": "An EOSIO Light Wallet with simple and advanced tools...",
"icon": "https://portable-linux-apps.github.io/icons/anchor.png"
},
{
"packageName": "android-messages-desktop",
"description": "Messages for web, as a desktop app...",
"icon": "https://portable-linux-apps.github.io/icons/android-messages-desktop.png"
},
{
"packageName": "android-studio",
"description": "Unofficial. Android Studio as AppImages, stable...",
"icon": "https://portable-linux-apps.github.io/icons/android-studio.png"
},
{
"packageName": "android-studio-latest",
"description": "Unofficial. Android Studio as AppImages, release...",
"icon": "https://portable-linux-apps.github.io/icons/android-studio-latest.png"
},
{
"packageName": "android-tools",
"description": "Unofficial AppImage for the Android Platform tools, adb, fastboot, etc...",
"icon": "https://portable-linux-apps.github.io/icons/android-tools.png"
},
{
"packageName": "android-translation-layer",
"description": "Unofficial, A translation layer that allows running Android apps on a Linux system...",
"icon": "https://portable-linux-apps.github.io/icons/android-translation-layer.png"
},
{
"packageName": "ani-cli",
"description": "A cli tool to browse and play anime...",
"icon": "https://portable-linux-apps.github.io/icons/ani-cli.png"
},
{
"packageName": "animashooter-junior",
"description": "User-friendly Stop-Motion Animation Software, FREE...",
"icon": "https://portable-linux-apps.github.io/icons/animashooter-junior.png"
},
{
"packageName": "animashooter-pioneer",
"description": "User-friendly Stop-Motion Animation Software, PRO...",
"icon": "https://portable-linux-apps.github.io/icons/animashooter-pioneer.png"
},
{
"packageName": "animecoin",
"description": "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...",
"icon": "https://portable-linux-apps.github.io/icons/animecoin.png"
},
{
"packageName": "animeko",
"description": "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...",
"icon": "https://portable-linux-apps.github.io/icons/animeko.png"
},
{
"packageName": "animos",
"description": "Anime-streaming desktop application without any ads...",
"icon": "https://portable-linux-apps.github.io/icons/animos.png"
},
{
"packageName": "aniship",
"description": "Allows for easy viewing of anime on PCs and laptops...",
"icon": "https://portable-linux-apps.github.io/icons/aniship.png"
},
{
"packageName": "ankama-launcher",
"description": "Ankama is an entertainment and digital creation group...",
"icon": "https://portable-linux-apps.github.io/icons/ankama-launcher.png"
},
{
"packageName": "anki",
"description": "Unofficial, Anki's shared backend and web components, and the Qt frontend...",
"icon": "https://portable-linux-apps.github.io/icons/anki.png"
},
{
"packageName": "anklang",
"description": "MIDI and Audio Synthesizer and Composer...",
"icon": "https://portable-linux-apps.github.io/icons/anklang.png"
},
{
"packageName": "another-redis-desktop-manager",
"description": "Faster and better redis desktop manager...",
"icon": "https://portable-linux-apps.github.io/icons/another-redis-desktop-manager.png"
},
{
"packageName": "ansel",
"description": "An open-source photo-editing software for digital artists, designed to help you achieve your own interpretation of raw digital photographs...",
"icon": "https://portable-linux-apps.github.io/icons/ansel.png"
},
{
"packageName": "ant-downloader",
"description": "BitTorrent Client developed by golang, angular, electron...",
"icon": "https://portable-linux-apps.github.io/icons/ant-downloader.png"
},
{
"packageName": "antares",
"description": "An useful SQL client based on Electron.js and Vue.js...",
"icon": "https://portable-linux-apps.github.io/icons/antares.png"
},
{
"packageName": "antidot",
"description": "Cleans up your $HOME from those pesky dotfiles...",
"icon": "https://portable-linux-apps.github.io/icons/antidot.png"
},
{
"packageName": "antimicrox",
"description": "Use a gamepad to control a variety of programs...",
"icon": "https://portable-linux-apps.github.io/icons/antimicrox.png"
},
{
"packageName": "any-code",
"description": "Claude Code CLI, OpenAI Codex, and Google Gemini CLI...",
"icon": "https://portable-linux-apps.github.io/icons/any-code.png"
},
{
"packageName": "anydesk",
"description": "Unofficial. Remote desktop application distributed...",
"icon": "https://portable-linux-apps.github.io/icons/anydesk.png"
},
{
"packageName": "anything-llm",
"description": "AI business intelligence tool. Any LLM, any document...",
"icon": "https://portable-linux-apps.github.io/icons/anything-llm.png"
},
{
"packageName": "anytype",
"description": "The everything app for those who celebrate trust & autonomy...",
"icon": "https://portable-linux-apps.github.io/icons/anytype.png"
},
{
"packageName": "anzeigenchef",
"description": "AdsChef manages your classified ads...",
"icon": "https://portable-linux-apps.github.io/icons/anzeigenchef.png"
},
{
"packageName": "aphelion-wallet",
"description": "Aphelion desktop wallet application built with Electron...",
"icon": "https://portable-linux-apps.github.io/icons/aphelion-wallet.png"
},
{
"packageName": "aphototoollibre",
"description": "Photo editing app for GNU/Linux...",
"icon": "https://portable-linux-apps.github.io/icons/aphototoollibre.png"
},
{
"packageName": "apiflow",
"description": "A modern API workspace that works both online and offlinecombining API documentation, testing, mock, and AI-powered automation in one lightweight tool...",
"icon": "https://portable-linux-apps.github.io/icons/apiflow.png"
},
{
"packageName": "apifox",
"description": "API manager, in Chinese. Includes documentation, API debugging, API mocking, and API automated testing...",
"icon": "https://portable-linux-apps.github.io/icons/apifox.png"
},
{
"packageName": "apk-editor-studio",
"description": "Easy to use APK, Android reverse-engineering tool...",
"icon": "https://portable-linux-apps.github.io/icons/apk-editor-studio.png"
},
{
"packageName": "apla",
"description": "Project was bootstrapped with Create React App...",
"icon": "https://portable-linux-apps.github.io/icons/apla.png"
},
{
"packageName": "app-outlet",
"description": "A Universal linux app store for Flatpak/Snap/AppImage...",
"icon": "https://portable-linux-apps.github.io/icons/app-outlet.png"
},
{
"packageName": "appflowy",
"description": "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...",
"icon": "https://portable-linux-apps.github.io/icons/appflowy.png"
},
{
"packageName": "apphub",
"description": "App that simplifies installation/management of .appImage packages...",
"icon": "https://portable-linux-apps.github.io/icons/apphub.png"
},
{
"packageName": "appimage-builder",
"description": "GNU/Linux packaging solution using the AppImage format...",
"icon": "https://portable-linux-apps.github.io/icons/appimage-builder.png"
},
{
"packageName": "appimage-creator",
"description": "GUI for easily generating AppImage packages on Linux...",
"icon": "https://portable-linux-apps.github.io/icons/appimage-creator.png"
},
{
"packageName": "appimagecraft",
"description": "Powerful build script generator with a focus on AppImages...",
"icon": "https://portable-linux-apps.github.io/icons/appimagecraft.png"
},
{
"packageName": "appimagelauncher",
"description": "CLI helper for running and integrating AppImages...",
"icon": "https://portable-linux-apps.github.io/icons/appimagelauncher.png"
},
{
"packageName": "appimagelint",
"description": "Check AppImages for compatibility, best practices etc...",
"icon": "https://portable-linux-apps.github.io/icons/appimagelint.png"
},
{
"packageName": "appimagen",
"description": "A script that generates a custom AppImage from a PPA...",
"icon": "https://portable-linux-apps.github.io/icons/appimagen.png"
},
{
"packageName": "appimagepool",
"description": "A simple, modern AppImageHub Client, powered by flutter...",
"icon": "https://portable-linux-apps.github.io/icons/appimagepool.png"
},
{
"packageName": "appimagetool",
"description": "Tool to generate an AppImage from an existing AppDir...",
"icon": "https://portable-linux-apps.github.io/icons/appimagetool.png"
},
{
"packageName": "appimageupdate",
"description": "Tool to update an AppImage using embedded information...",
"icon": "https://portable-linux-apps.github.io/icons/appimageupdate.png"
},
{
"packageName": "appimageupdater",
"description": "AppImage Updater for Humans built with QML/C++ with Qt5...",
"icon": "https://portable-linux-apps.github.io/icons/appimageupdater.png"
},
{
"packageName": "appimageupdatetool",
"description": "Tool to update an AppImage using embedded information...",
"icon": "https://portable-linux-apps.github.io/icons/appimageupdatetool.png"
},
{
"packageName": "appimg",
"description": "Appimg is a lightweight command-line tool that helps you manage AppImage files on Linux...",
"icon": "https://portable-linux-apps.github.io/icons/appimg.png"
},
{
"packageName": "appinstall",
"description": "AppImage Installer, a tool integrate AppImages to a linux desktop environment...",
"icon": "https://portable-linux-apps.github.io/icons/appinstall.png"
},
{
"packageName": "appium-inspector",
"description": "A GUI inspector for mobile apps and more, powered by a (separately installed) Appium server...",
"icon": "https://portable-linux-apps.github.io/icons/appium-inspector.png"
},
{
"packageName": "appmanager",
"description": "MacOS style AppImage installer and management application...",
"icon": "https://portable-linux-apps.github.io/icons/appmanager.png"
},
{
"packageName": "aptakube",
"description": "A modern and lightweight Kubernetes desktop client...",
"icon": "https://portable-linux-apps.github.io/icons/aptakube.png"
},
{
"packageName": "aptly",
"description": "Debian repository management CLI tool...",
"icon": "https://portable-linux-apps.github.io/icons/aptly.png"
},
{
"packageName": "apx-gcs",
"description": "APX Ground Control...",
"icon": "https://portable-linux-apps.github.io/icons/apx-gcs.png"
},
{
"packageName": "aranym",
"description": "Virtual Machine for Atari 32-bit applications...",
"icon": "https://portable-linux-apps.github.io/icons/aranym.png"
},
{
"packageName": "arcade-manager",
"description": "Manage your rom collection, Games/Retropie & Recalbox...",
"icon": "https://portable-linux-apps.github.io/icons/arcade-manager.png"
},
{
"packageName": "arch-deployer",
"description": "A script to bulk download an Arch Linux package with all its dependencies to be converted in AppImage...",
"icon": "https://portable-linux-apps.github.io/icons/arch-deployer.png"
},
{
"packageName": "arch-flatimage",
"description": "A hybrid of Flatpak sandboxing with AppImage portability...",
"icon": "https://portable-linux-apps.github.io/icons/arch-flatimage.png"
},
{
"packageName": "archimage-cli",
"description": "Build AppImage packages using JuNest, Arch Linux...",
"icon": "https://portable-linux-apps.github.io/icons/archimage-cli.png"
},
{
"packageName": "archimede",
"description": "Unobtrusive directory information fetcher...",
"icon": "https://portable-linux-apps.github.io/icons/archimede.png"
},
{
"packageName": "archipel",
"description": "Decentralized archiving and media library system...",
"icon": "https://portable-linux-apps.github.io/icons/archipel.png"
},
{
"packageName": "archipelago",
"description": "Archipelago Multi-Game Randomizer and Server...",
"icon": "https://portable-linux-apps.github.io/icons/archipelago.png"
},
{
"packageName": "archisteamfarm",
"description": "C# application with primary purpose of farming Steam cards from multiple accounts simultaneously...",
"icon": "https://portable-linux-apps.github.io/icons/archisteamfarm.png"
},
{
"packageName": "archiveweb.page",
"description": "A High-Fidelity Web Archiving Extension for Chrome and Chromium based browsers...",
"icon": "https://portable-linux-apps.github.io/icons/archiveweb.page.png"
},
{
"packageName": "arduino-ide",
"description": "Open-source electronics platform...",
"icon": "https://portable-linux-apps.github.io/icons/arduino-ide.png"
},
{
"packageName": "arena-tracker",
"description": "Deck Tracker for Hearthstone game with arena in focus...",
"icon": "https://portable-linux-apps.github.io/icons/arena-tracker.png"
},
{
"packageName": "ares",
"description": "AppImage for the ares emulator...",
"icon": "https://portable-linux-apps.github.io/icons/ares.png"
},
{
"packageName": "aretext",
"description": "Minimalist text editor with vim-compatible key bindings...",
"icon": "https://portable-linux-apps.github.io/icons/aretext.png"
},
{
"packageName": "ark",
"description": "Unofficial. Archiving tool for .zip/.tar/.rar and more. This script installs the full \"kdeutils\" suite...",
"icon": "https://portable-linux-apps.github.io/icons/ark.png"
},
{
"packageName": "ark.desktop.wallet",
"description": "Ark Ecosystem Desktop Wallet...",
"icon": "https://portable-linux-apps.github.io/icons/ark.desktop.wallet.png"
},
{
"packageName": "arkaway",
"description": "Another Arkanoid clone and make with Pyxel...",
"icon": "https://portable-linux-apps.github.io/icons/arkaway.png"
},
{
"packageName": "arma3-unix-launcher",
"description": "ArmA 3 Unix Launcher, game...",
"icon": "https://portable-linux-apps.github.io/icons/arma3-unix-launcher.png"
},
{
"packageName": "armagetronad",
"description": "Multiplayer game in 3d that emulates the movie \"Tron\"...",
"icon": "https://portable-linux-apps.github.io/icons/armagetronad.png"
},
{
"packageName": "armcord",
"description": "Custom client designed to enhance your Discord experience...",
"icon": "https://portable-linux-apps.github.io/icons/armcord.png"
},
{
"packageName": "artifact",
"description": "Win 40 levels of mayhem without getting destroyed, game...",
"icon": "https://portable-linux-apps.github.io/icons/artifact.png"
},
{
"packageName": "artisan",
"description": "Visualizes the coffee roasting process...",
"icon": "https://portable-linux-apps.github.io/icons/artisan.png"
},
{
"packageName": "artix",
"description": "One app. All your favorite Artix games...",
"icon": "https://portable-linux-apps.github.io/icons/artix.png"
},
{
"packageName": "asarui",
"description": "UI for Asar...",
"icon": "https://portable-linux-apps.github.io/icons/asarui.png"
},
{
"packageName": "asgardex",
"description": "Thorchain wallet desktop app...",
"icon": "https://portable-linux-apps.github.io/icons/asgardex.png"
},
{
"packageName": "aspect",
"description": "Photo organization application with support for peer-to-peer based synchronization across devices...",
"icon": "https://portable-linux-apps.github.io/icons/aspect.png"
},
{
"packageName": "astroffers",
"description": "Take offers to watch at given nights by the NGC2000 catalog...",
"icon": "https://portable-linux-apps.github.io/icons/astroffers.png"
},
{
"packageName": "astrofox",
"description": "Audio reactive motion graphics program...",
"icon": "https://portable-linux-apps.github.io/icons/astrofox.png"
},
{
"packageName": "astroshutter",
"description": "Ui to control your camera for astrophotography...",
"icon": "https://portable-linux-apps.github.io/icons/astroshutter.png"
},
{
"packageName": "asunder",
"description": "Unofficial. Audio CD ripper and encoder, WAV, MP3, OGG, FLAC, Opus, AAC......",
"icon": "https://portable-linux-apps.github.io/icons/asunder.png"
},
{
"packageName": "atomicwallet",
"description": "Atomic vue-electron...",
"icon": "https://portable-linux-apps.github.io/icons/atomicwallet.png"
},
{
"packageName": "atuin",
"description": "Magical shell history...",
"icon": "https://portable-linux-apps.github.io/icons/atuin.png"
},
{
"packageName": "audacious",
"description": "Unofficial. An open source audio and music player, descendant of XMMS...",
"icon": "https://portable-linux-apps.github.io/icons/audacious.png"
},
{
"packageName": "audacity",
"description": "Multiplatform Audio Editor...",
"icon": "https://portable-linux-apps.github.io/icons/audacity.png"
},
{
"packageName": "audapolis",
"description": "An editor for spoken-word audio with automatic transcription...",
"icon": "https://portable-linux-apps.github.io/icons/audapolis.png"
},
{
"packageName": "audio-sharing",
"description": "Unofficial. Share audio from the desktop on local network using RTSP protocol...",
"icon": "https://portable-linux-apps.github.io/icons/audio-sharing.png"
},
{
"packageName": "audiomoth-configuration-app",
"description": "An Electron-based application capable of configuring the functionality of the AudioMoth recording device and setting the onboard clock...",
"icon": "https://portable-linux-apps.github.io/icons/audiomoth-configuration-app.png"
},
{
"packageName": "audiomoth-flash-app",
"description": "An Electron-based application designed to flash the AudioMoth recording device with new firmware...",
"icon": "https://portable-linux-apps.github.io/icons/audiomoth-flash-app.png"
},
{
"packageName": "audiomoth-gps-sync-app",
"description": "An Electron-based application to generate WAV files synchronised with GPS time from the files generated by the AudioMoth-GPS-Sync firmware...",
"icon": "https://portable-linux-apps.github.io/icons/audiomoth-gps-sync-app.png"
},
{
"packageName": "audiomoth-live-app",
"description": "An Electron-based application for recording and analysing live audio from high sample rate microphones, including the AudioMoth USB Microphone...",
"icon": "https://portable-linux-apps.github.io/icons/audiomoth-live-app.png"
},
{
"packageName": "audiomoth-time-app",
"description": "An Electron-based application capable of setting the on-board clock of the AudioMoth recording device...",
"icon": "https://portable-linux-apps.github.io/icons/audiomoth-time-app.png"
},
{
"packageName": "audiomoth-usb-microphone-app",
"description": "An Electron-based application capable of configuring the functionality of the AudioMoth-USB-Microphone firmware...",
"icon": "https://portable-linux-apps.github.io/icons/audiomoth-usb-microphone-app.png"
},
{
"packageName": "audiorelay",
"description": "Stream audio between your devices. Turn your phone into a microphone or speakers for PC...",
"icon": "https://portable-linux-apps.github.io/icons/audiorelay.png"
},
{
"packageName": "augur",
"description": "Augur Desktop Application...",
"icon": "https://portable-linux-apps.github.io/icons/augur.png"
},
{
"packageName": "aurora",
"description": "A utility to control RGB keyboard back-light and charging threshold for Asus TUF-gaming laptops...",
"icon": "https://portable-linux-apps.github.io/icons/aurora.png"
},
{
"packageName": "auryo",
"description": "An audio/music desktop client for SoundCloud...",
"icon": "https://portable-linux-apps.github.io/icons/auryo.png"
},
{
"packageName": "authenticator",
"description": "Unofficial. An application which generates 2FA code in realtime...",
"icon": "https://portable-linux-apps.github.io/icons/authenticator.png"
},
{
"packageName": "authme",
"description": "Simple cross-platform two-factor authenticator app for desktop...",
"icon": "https://portable-linux-apps.github.io/icons/authme.png"
},
{
"packageName": "authy",
"description": "Unofficial, Protect all your accounts with 2FA...",
"icon": "https://portable-linux-apps.github.io/icons/authy.png"
},
{
"packageName": "auto-claude",
"description": "Autonomous multi-session AI coding framework that plans, builds, and validates software for you...",
"icon": "https://portable-linux-apps.github.io/icons/auto-claude.png"
},
{
"packageName": "autoedit2",
"description": "autoEdit2 Desktop Client for Linux...",
"icon": "https://portable-linux-apps.github.io/icons/autoedit2.png"
},
{
"packageName": "avantgarde",
"description": "Avalonia XAML Preview...",
"icon": "https://portable-linux-apps.github.io/icons/avantgarde.png"
},
{
"packageName": "avidemux",
"description": "Multiplatform Video Editor...",
"icon": "https://portable-linux-apps.github.io/icons/avidemux.png"
},
{
"packageName": "avidemux-qt",
"description": "Unofficial, my custom Avidemux Video Editor built to use system themes...",
"icon": "https://portable-linux-apps.github.io/icons/avidemux-qt.png"
},
{
"packageName": "avogadro2",
"description": "Molecular editor for computational chemistry, bioinformatics...",
"icon": "https://portable-linux-apps.github.io/icons/avogadro2.png"
},
{
"packageName": "awakened-poe-trade",
"description": "Path of Exile trading app for price checking...",
"icon": "https://portable-linux-apps.github.io/icons/awakened-poe-trade.png"
},
{
"packageName": "axe-electrum",
"description": "Axe Electrum Wallet...",
"icon": "https://portable-linux-apps.github.io/icons/axe-electrum.png"
},
{
"packageName": "axolotl",
"description": "A Signal compatible cross plattform client written in Go and Vuejs...",
"icon": "https://portable-linux-apps.github.io/icons/axolotl.png"
},
{
"packageName": "aya",
"description": "A desktop application for easily controlling android devices, which can be considered as a GUI wrapper for ADB...",
"icon": "https://portable-linux-apps.github.io/icons/aya.png"
},
{
"packageName": "ayandict",
"description": "Simple yet advanced multi-lingual cross-platform offline dictionary for desktop, using Qt and Go...",
"icon": "https://portable-linux-apps.github.io/icons/ayandict.png"
},
{
"packageName": "azahar-enhanced",
"description": "Unofficial AppImage of Azahar, with optimized builds for modern cpus...",
"icon": "https://portable-linux-apps.github.io/icons/azahar-enhanced.png"
},
{
"packageName": "badlion",
"description": "Most Complete All-In-One Mod Library for Minecraft with 100+ Mods...",
"icon": "https://portable-linux-apps.github.io/icons/badlion.png"
},
{
"packageName": "baijimangaviewer",
"description": "Manga viewer that uses Material Design...",
"icon": "https://portable-linux-apps.github.io/icons/baijimangaviewer.png"
},
{
"packageName": "balatro-multiplayer",
"description": "A Multiplayer Mod for Balatro...",
"icon": "https://portable-linux-apps.github.io/icons/balatro-multiplayer.png"
},
{
"packageName": "bambustudio",
"description": "PC Software for BambuLab's 3D printers...",
"icon": "https://portable-linux-apps.github.io/icons/bambustudio.png"
},
{
"packageName": "bananas",
"description": "Bananas, Cross-Platform screen sharing made simple...",
"icon": "https://portable-linux-apps.github.io/icons/bananas.png"
},
{
"packageName": "banban",
"description": "A productivity app inspired by GitHub Projects Kanban...",
"icon": "https://portable-linux-apps.github.io/icons/banban.png"
},
{
"packageName": "bandwhich",
"description": "Terminal bandwidth utilization tool...",
"icon": "https://portable-linux-apps.github.io/icons/bandwhich.png"
},
{
"packageName": "barnacal",
"description": "A simple menu bar app for viewing a calendar..",
"icon": "https://portable-linux-apps.github.io/icons/barnacal.png"
},
{
"packageName": "basilisk2",
"description": "Classic Macintosh emulator BasiliskII...",
"icon": "https://portable-linux-apps.github.io/icons/basilisk2.png"
},
{
"packageName": "bastyon",
"description": "Decentralized social network based on the blockchain...",
"icon": "https://portable-linux-apps.github.io/icons/bastyon.png"
},
{
"packageName": "bat",
"description": "A \"cat\" clone with wings...",
"icon": "https://portable-linux-apps.github.io/icons/bat.png"
},
{
"packageName": "bat-extras",
"description": "Bash scripts that integrate bat with various command line tools...",
"icon": "https://portable-linux-apps.github.io/icons/bat-extras.png"
},
{
"packageName": "batch-explorer",
"description": "A client tool to create/debug/monitor Azure Batch Apps...",
"icon": "https://portable-linux-apps.github.io/icons/batch-explorer.png"
},
{
"packageName": "battop",
"description": "CLI, interactive batteries viewer...",
"icon": "https://portable-linux-apps.github.io/icons/battop.png"
},
{
"packageName": "bauh",
"description": "GUI for managing AppImage, Arch/AUR, DEBs, Flatpak, Snap and webapps...",
"icon": "https://portable-linux-apps.github.io/icons/bauh.png"
},
{
"packageName": "bazecor",
"description": "Graphical configurator for Dygma Raise...",
"icon": "https://portable-linux-apps.github.io/icons/bazecor.png"
},
{
"packageName": "bbg",
"description": "A static blog generator based on Electron Technology...",
"icon": "https://portable-linux-apps.github.io/icons/bbg.png"
},
{
"packageName": "bchat-desktop",
"description": "About A decentralized cionfidential messaging app that runs on Beldex network...",
"icon": "https://portable-linux-apps.github.io/icons/bchat-desktop.png"