-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathx86_64-appimages
2127 lines (2127 loc) · 135 KB
/
x86_64-appimages
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
◆ 0ad-latest : Unofficial. Real Time Strategy game of ancient warfare, development branch.
◆ 0ad : Unofficial. FOSS historical Real Time Strategy, RTS game of ancient warfare.
◆ 3d-puzzles : 3D-Puzzles are Rubik, Dogic and Dogic12.
◆ 432hz-player : Because most music is recorded in 440hz, Audio Player.
◆ 86box : Emulator of x86-based machines based on PCem.
◆ 9launcher : An actively maintained and cross platform remake of Touhou Relauncher.
◆ aaaaxy : A nonlinear puzzle platformer, game.
◆ abiword : Unofficial. A light and free word processing software.
◆ accessimap-lecteur-der : Accessimap Lecteur DER.
◆ acreom : Acreom desktop app releases.
◆ actual : A super fast privacy-focused app for managing your finances.
◆ admin-tools : Administrative tools.
◆ advanced-passgen : Advanced Password Generator.
◆ advanced-rest-client : Advanced REST Client and API console, by Mulesoft.
◆ affine-beta : Next-gen knowledge base that brings planning, sorting and creating.
◆ affine-canary : Next-gen knowledge base that brings planning/sorting/creating.
◆ affine : Next-gen knowledge base that brings planning, sorting and creating.
◆ agregore : A minimal browser for the distributed web, Desktop version.
◆ ai-bot-workspace : Electron app including testing workspaces.
◆ aidm : AppImage Desktop Maker.
◆ aillio-ts : The desktop application for Aillio Bullet R1.
◆ aiming-pro : Aim trainer to practice, train and improve their FPS aim skills.
◆ air-controller-desktop : Android phone assistant,powered by Flutter.
◆ airspaces : An online map for your X-Plane flight sessions.
◆ aisap : Tool to make sandboxing AppImages easy through bwrap/bubblewrap.
◆ aisleriot : Unofficial. A card game featuring over 80 different solitaire-type card games.
◆ akasha : AKASHA community client.
◆ akuse : Simple and easy to use anime streaming desktop app without ads.
◆ alduin : An Atom and RSS feed aggregator.
◆ alephium-wallet : The official Alephium wallet for desktop.
◆ alexandria : eBook reader built with Tauri, Epub.js, and Typescript.
◆ alien-tec-ui : Alien-Tec Tron Matrix Like Shell Terminal User Interface.
◆ allusion : A desktop application for managing your visual library.
◆ alpine-flatimage : A hybrid of Flatpak sandboxing with AppImage portability.
◆ altair : The best graphQL client you will ever need.
◆ altitude : The Altitude wallet by Linda Project Inc.
◆ altus : Client for WhatsApp Web with themes & multiple account support.
◆ alvr : Stream VR games from your PC to your headset via Wi-Fi.
◆ amazingmarvin : Incorporates principles from behavioral psychology.
◆ amdgpu_top : Tool to display AMDGPU usage.
◆ amusiz : Unofficial and unpretentious Amazon Music client.
◆ anavis : Tool to visualize musical form.
◆ anchor : An EOSIO Light Wallet with simple and advanced tools.
◆ android-knot : An Android gadget integrating Todo, Notes, Reader and more.
◆ android-messages-desktop : Messages for web, as a desktop app.
◆ android-studio-latest : Unofficial. Android Studio as AppImages, release.
◆ android-studio : Unofficial. Android Studio as AppImages, stable.
◆ android-tools : Unofficial AppImage for the Android Platform tools, adb, fastboot, etc.
◆ animashooter-junior : User-friendly Stop-Motion Animation Software, FREE.
◆ animashooter-pioneer : User-friendly Stop-Motion Animation Software, PRO.
◆ animos : Anime-streaming desktop application without any ads.
◆ aniship : Allows for easy viewing of anime on PCs and laptops.
◆ ankama-launcher : Ankama is an entertainment and digital creation group.
◆ anklang : MIDI and Audio Synthesizer and Composer.
◆ another-redis-desktop-manager : Faster and better redis desktop manager.
◆ antares : An useful SQL client based on Electron.js and Vue.js.
◆ ant-downloader : BitTorrent Client developed by golang, angular, electron.
◆ antimicrox : Use a gamepad to control a variety of programs.
◆ anydesk : Unofficial. Remote desktop application distributed.
◆ anything-llm : AI business intelligence tool. Any LLM, any document.
◆ anytype : The everything app for those who celebrate trust & autonomy.
◆ anzeigenchef : AdsChef manages your classified ads.
◆ aphelion-wallet : Aphelion desktop wallet application built with Electron.
◆ aphototoollibre : Photo editing app for GNU/Linux.
◆ apifox : API manager, in chinese. 文档、API 调试、API Mock、API 自动化测试
◆ apk-editor-studio : Easy to use APK, Android reverse-engineering tool.
◆ apla : Project was bootstrapped with Create React App.
◆ appflowy : Bring projects, wikis, and teams together with AI. Alternative to Notion.
◆ apphub : App that simplifies installation/management of .appImage packages.
◆ appimage-builder : GNU/Linux packaging solution using the AppImage format.
◆ appimagecraft : Powerful build script generator with a focus on AppImages.
◆ appimage-creator : GUI for easily generating AppImage packages on Linux.
◆ appimagehelper : Create and organize shortcuts for AppImages.
◆ appimagelauncher : CLI helper for running and integrating AppImages.
◆ appimagelint : Check AppImages for compatibility, best practices etc.
◆ appimagepool : A simple, modern AppImageHub Client, powered by flutter.
◆ appimagetool : Tool to generate an AppImage from an existing AppDir.
◆ appimageupdater : AppImage Updater for Humans built with QML/C++ with Qt5.
◆ appimageupdatetool : Tool to update an AppImage using embedded information.
◆ appimageupdate : Tool to update an AppImage using embedded information.
◆ appium-desktop : Graphical interface for the Appium server.
◆ app-outlet : A Universal linux app store for Flatpak/Snap/AppImage.
◆ aptakube : A modern and lightweight Kubernetes desktop client.
◆ apx-gcs : APX Ground Control.
◆ aranym : Virtual Machine for Atari 32-bit applications.
◆ arcade-manager : Manage your rom collection, Games/Retropie & Recalbox.
◆ arch-flatimage : A hybrid of Flatpak sandboxing with AppImage portability.
◆ archipelago : Archipelago Multi-Game Randomizer and Server.
◆ archipel : Decentralized archiving and media library system.
◆ arduino-ide : Open-source electronics platform.
◆ arena-tracker : Deck Tracker for Hearthstone game with arena in focus.
◆ arkaway : Another Arkanoid clone and make with Pyxel.
◆ ark.desktop.wallet : Ark Ecosystem Desktop Wallet.
◆ arma3-unix-launcher : ArmA 3 Unix Launcher, game.
◆ armagetronad : Multiplayer game in 3d that emulates the movie "Tron".
◆ armcord : Custom client designed to enhance your Discord experience.
◆ around : Video calls designed for energy, ideas and action.
◆ artifact : Win 40 levels of mayhem without getting destroyed, game.
◆ artisan : Visualizes the coffee roasting process.
◆ artix : One app. All your favorite Artix games.
◆ asarui : UI for Asar.
◆ asgardex : Thorchain wallet desktop app.
◆ astroffers : Take offers to watch at given nights by the NGC2000 catalog.
◆ astrofox : Audio reactive motion graphics program.
◆ astroshutter : Ui to control your camera for astrophotography.
◆ asunder : Unofficial. Audio CD ripper and encoder, WAV, MP3, OGG, FLAC, Opus, AAC....
◆ atomicwallet : Atomic vue-electron.
◆ audacious : Unofficial. An open source audio and music player, descendant of XMMS.
◆ audacity : Multiplatform Audio Editor.
◆ audapolis : An editor for spoken-word audio with automatic transcription.
◆ audiomoth : Configuration app for the AudioMoth acoustic monitoring device.
◆ augur : Augur Desktop Application.
◆ auryo : An audio/music desktop client for SoundCloud.
◆ authme : Simple cross-platform two-factor authenticator app for desktop.
◆ authy : Unofficial, Protect all your accounts with 2FA.
◆ autoedit2 : autoEdit2 Desktop Client for Linux.
◆ avantgarde : Avalonia XAML Preview.
◆ avidemux : Multiplatform Video Editor.
◆ avocado : PlayStation 1 emulator, games.
◆ avogadro2 : Molecular editor for computational chemistry, bioinformatics.
◆ awakened-poe-trade : Path of Exile trading app for price checking.
◆ axe-electrum : Axe Electrum Wallet.
◆ axolotl : A Signal compatible cross plattform client written in Go and Vuejs.
◆ badlion : Most Complete All-In-One Mod Library for Minecraft with 100+ Mods.
◆ baijimangaviewer : Manga viewer that uses Material Design.
◆ bambustudio : PC Software for BambuLab's 3D printers.
◆ banban : A productivity app inspired by GitHub Projects Kanban.
◆ baobab-gtk3 : Unofficial. Disk Usage Analyser, version 3.38, for all GNOME4+ haters.
◆ barnacal : A simple menu bar app for viewing a calendar
◆ bastyon : Decentralized social network based on the blockchain.
◆ batch-explorer : A client tool to create/debug/monitor Azure Batch Apps.
◆ bauh : GUI for managing AppImage, Arch/AUR, DEBs, Flatpak, Snap and webapps.
◆ bazecor : Graphical configurator for Dygma Raise.
◆ bbg : A static blog generator based on Electron Technology.
◆ bdash : A simple business intelligence application.
◆ beam-wallet : Beam Desktop Wallet.
◆ bearly : The world's best AI at your fingertips.
◆ beatconnect-client : Beatconnect power for osu irc.
◆ beaver-notes : Build your knowledge one log at a time.
◆ beekeeper-studio : SQL query editor and database UI.
◆ beeper : All your chats in one app.
◆ bench-cli : CLI tool to benchmark commands, written in `Fortran`.
◆ bettercrewlink : Free, open, Among Us proximity voice chat.
◆ better-osu-skills : Gets results from the osu! Using your own IRC credentials.
◆ bettersis : Modern shell for SIS.
◆ beurerscalemanager : AppImage packaging project for BeurerScaleManager.
◆ beyond-all-reason : 3D Real-Time Strategy Total Annihilation Inspired, game.
◆ bezique : Plays bezique game against the AI.
◆ bforartists : 3D modeling, animation, rendering and post-production.
◆ biblemultithelife : Bible multi languages, free, offline, no advertising, in English, French, Italian, Spanish, Portuguese.
◆ bidirectional : Write Arabic text on apps that don't support the bidirectional text.
◆ bilibili : Bilibili official desktop client.
◆ bilibilivideodownload : Bilibili video downloader.
◆ biliup-app : Bilibili uploader.
◆ billard-gl : Unofficial. 3D billiards game, play a game of 8-ball or 9-ball.
◆ billyfrontier : Pangea Software’s Billy Frontier for modern systems.
◆ bingada : Bingo application in GTKAda.
◆ binglite : A lightweight new Bing (AI chat) desktop application based on Tauri.
◆ bioanimation : CCNY Electrochemical Gradient Simulator.
◆ biplanes-revival : An old cellphone arcade recreated for PC.
◆ birds-kitchen : Recipe manager.
◆ bitbox-wallet : Cryptocurrency hardware wallet desktop app.
◆ bitfighter : A 2-D multi-player space combat game.
◆ bitshares : Advanced wallet interface for the BitShares financial blockchain.
◆ bitwarden : Password manager for individuals, teams and business.
◆ biying : Biying Wallpaper for Linux.
◆ black-chocobo : FF7 Save Game Editor.
◆ blacknut : Cloud gaming client.
◆ blank : Blank is a minimalist, opinionated markdown editor made for writing.
◆ blastem : Clone of Mercurial Repo.
◆ blensor : 3D modeling, animation, rendering and post-production.
◆ blink : GUI of live indexed grep search for source code.
◆ blizzard-4 : Emulator & toolchain for the Blizzard 4 16-bit computer.
◆ blobdrop : Drag and drop files directly out of the terminal.
◆ blockbench : Editor for boxy models and pixel art textures like Minecraft.
◆ block-dx : Exchange dApp built on top of the Blocknet Protocol.
◆ blockstream-green : Bitcoin wallet compatible with Blockstream Jade.
◆ bloks : An electron-vue project.
◆ bloomrpc : GRPC GUI client.
◆ blowfish : Display your total Ocean Token balances.
◆ blueglow : A simple system tray application to watch github notifications.
◆ boardgamestar : A platform for playing digital boardgames.
◆ bodacious : A bodacious music player.
◆ bodhi : Bodhi Prediction Market app.
◆ bonsai-maui : Manage Git repositories from a GUI.
◆ book-manager : Simple desktop app to manage personal library.
◆ bookmarks-manager : Edit bookmarks, check url.
◆ boostchanger : Control CPU turbo boost and the settings of the cpu speed.
◆ boost-note : Document driven project management tool to speedup remote DevOps.
◆ botclient : A discord botclient built with Electron and React.
◆ botframework-emulator : Test and debug chat bots built with Bot Framework SDK.
◆ botim : Free, Secure, Reliable Messages and Calls.
◆ bottlebats : Client for the 2018 edition of the BottleBats AI competition.
◆ bottlenose : Bottlenose is a front-end for video game emulators.
◆ bottles : Unofficial. Manage wine prefixes and run Windows software & games in a new way.
◆ brackets : Brackets-Electron.
◆ brainverse : Electronic Lab Notebook for Reproducible Neuro Imaging Research.
◆ brainwaves : EEG Desktop Application.
◆ brave-appimage : Unofficial, a privacy oriented Web Browser based on Chromium, this is the "stable" release.
◆ brave-beta-appimage : Unofficial, a privacy oriented Web Browser based on Chromium, this is the "beta" release.
◆ brave-nightly-appimage : Unofficial, a privacy oriented Web Browser based on Chromium, this is the "nightly" release.
◆ bread : Install, update and remove AppImage from GitHub using your CLI.
◆ breaktimer : Save yourself from RSI and eye-strain.
◆ brickstore : An offline BrickLink inventory management tool.
◆ bridge : The perfect Bridge between Megascans and your favorite tools.
◆ brisqi : Offline-first Personal Kanban app.
◆ browservice : Browse the modern web on historical browsers.
◆ brs-emu-app : BrightScript Emulator, runs on browsers and Electron apps.
◆ bruno : An Opensource API Collection Collaboration Suite.
◆ bscanfftwebcam : FDOCT tool.
◆ bts-ce-lite : Telecommunication network management application.
◆ buche : A logger of sorts.
◆ buckets : Budgeting fast, simple and private.
◆ bugdom2 : Pangea Software’s Bugdom 2 for modern systems.
◆ bugdom : Pangea Software's Bugdom game.
◆ buho-maui : Easy-to-use note-taking application with “tags” support.
◆ bulkreviewer : Identify, review, and remove private information.
◆ bulkurlopener : Desktop version of the Bulk URL Opener extension.
◆ bunqdesktop : A desktop implementation for the bunq API.
◆ burning-series : Watch any series from Burning Series, Unofficial client.
◆ buttercup : Free and Open Source password vault.
◆ bypass-cors : Unlock browser’s full potential!
◆ bytespeichertrayicon : Bytespeicher Status App.
◆ cabal-desktop : Cabal p2p offline-first desktop application.
◆ cacher : Cacher is a code snippet library for professional developers.
◆ cadmus : Pulse Audio real-time noise suppression plugin.
◆ caesium : Image compression software that helps you store, send and share digital pictures, supporting JPG, PNG, WebP and TIFF formats.
◆ calculist : Desktop version of Calculist.io.
◆ calibre : Unofficial. The one stop solution to all your e-book needs
◆ calm-circles : Calm down and draw something, in Lisp.
◆ calm-fan : Calm down and draw something, in Lisp.
◆ calm-meditator : Calm down and draw something, in Lisp.
◆ calm-mondrian : Calm down and draw something, in Lisp.
◆ candycrisis : Candy Crisis source port for modern operating systems.
◆ capbattleship : Battleship game with a pirate theme.
◆ caprine : Unofficial, elegant privacy focused Facebook Messenger app.
◆ cardo : Podcast client.
◆ cargo : Converts your crate into an AppImage.
◆ carpenters : Digital preservation ingest utility.
◆ carta : Cube Analysis and Rendering Tool for Astronomy.
◆ casm : Corinthian Abstract State Machine, CASM.
◆ casterr : Screen recorder, easing recording and clipping in-game.
◆ castersoundboard : Soundboard for hot-keying and playing back sounds.
◆ catalyst : Catalyst web browser.
◆ catcher : Peer-testing of software projects.
◆ cate-desktop : GUI for the ESA CCI Toolbox, Cate.
◆ cavoke : Cavoke: Platform to create/host multiplayer turn-based board games.
◆ cbetar2 : ePub viewer supporting fetching and displaying HTML as ePub.
◆ cccp : Cortex Command, a community-driven effort to continue the development of Cortex Command.
◆ celestia-dev : Real time 3D space simulator, developer edition.
◆ celestia-enanched : Unofficial. Real-time 3D space simulator with extra detailed maps.
◆ celestia : Real time 3D space simulator.
◆ celoterminal-bin : Celo Terminal, AppImage version.
◆ cemu : A Nintendo Wii U emulator that is able to run most Wii U games.
◆ cerebral-debugger : Cerebral Debugger.
◆ cerebro : Open-source productivity booster with a brain.
◆ chain-desktop-wallet : Crypto.com DeFi Desktop Wallet.
◆ chainx-signer : Manage ChainX account, sign and sign transactions.
◆ chatall : Concurrently chat with ChatGPT, Bing Chat, bard, Alpaca and more.
◆ chatbox : Chatbox is a desktop app for GPT-4 / GPT-3.5, OpenAI API.
◆ chatgpt-next-web : A cross-platform ChatGPT/Gemini UI.
◆ chat-gpt : Unofficial. ChatGPT Desktop Application.
◆ chatpad-ai : Not just another ChatGPT user-interface.
◆ chatterino2-nightly : Second installment of the Twitch chat client.
◆ chatterino2 : Second installment of the Twitch chat client.
◆ cheatbreaker : The free FPS boosting modpack for Minecraft 1.7 & 1.8.
◆ chemcanvas : A very intuitive 2D chemical drawing tool.
◆ cherry-studio : Cherry Studio is a desktop client that supports for multiple LLM providers.
◆ cherrytree : A hierarchical note taking application.
◆ chiaki : PlayStation 4 Remote Play Client.
◆ chimeradesk-kvm : Simple, fast and flexible DIY Remote Desktop software.
◆ chimeradesk : Simple, fast and flexible DIY Remote Desktop software.
◆ chromium-beta : Unofficial. FOSS Web Browser, base of Google Chrome, beta edition.
◆ chromium-bsu : Unofficial. Fast paced arcade style scrolling space shooter, game.
◆ chromium-edge : Unofficial. FOSS Web Browser, base of Google Chrome, edge edition.
◆ chromium-rc : Unofficial. FOSS Web Browser, base of Google Chrome, release candidate.
◆ chromium : Unofficial. FOSS Web Browser, base of Google Chrome, Edge and Brave, stable.
◆ chrysalis-bin : Graphical configurator for Kaleidoscope-powered keyboards.
◆ ciaa-suite : Makefile based IDE for embedded systems.
◆ cider : A new cross-platform Apple Music experience with performance in mind.
◆ cinelerra-gg : Professional video editing and compositing environment.
◆ cinny : Yet another matrix client for desktop.
◆ circle-z : A chat client for online math courses.
◆ circuitblocks : Helps newbies get into embedded programming.
◆ city-hub : Hub into everything on City Chain/Smart City Platform.
◆ clash-verge : A multiplatform Clash GUI based on tauri.
◆ classicimageviewer : A simple image viewer with some editing features.
◆ cleepdesktop : Desktop application to manage your Cleep devices.
◆ clementineremote : Remote for Clementine Music Player.
◆ cliniface : 3D Facial Image Visualisation and Analysis.
◆ clipgrab : Download and Convert Online Videos.
◆ clip-maui : Official movie player of Maui using MPV as backend.
◆ clippy : Clipboard History.
◆ clipr : The clipboard that syncs.
◆ cloud-browser : Access to files located in various cloud services.
◆ clownmaped : Sonic the Hedgehog sprite editor, clone of Xenowhirl's SonMapEd.
◆ clownmdemu : Reference standalone frontend for clownmdemu.
◆ cncjs : CNC Milling Controller.
◆ cncra2yr : C&C Red Alert 2, a real-time strategy game by Westwood Pacific.
◆ coal-launcher : A client to view and play games from the AB Coal website.
◆ cocomusic : A simple music player built by electron and vue.
◆ code-notes : A simple code snippet amp built with Electron.
◆ coinstac : Collaborative Informatics and Neuroimaging Suite Toolkit.
◆ colobot : Colonize with bots, game.
◆ colon : A flexible text editor.
◆ colorgenerator : Generates color palettes similar to ColorBrewer.
◆ colorpicker : Electron app that can show colors with hex/rgb.
◆ colorstatic-bash : CLI to generate a random colorful "Static"/"Matrix".
◆ comic-book-reader : Reader and converter for cbz, cbr, epub and pdf files.
◆ comic-reader : Electron based comic reader.
◆ comictagger : A multi-platform app for writing metadata to digital comics.
◆ communicator-maui : Create and organize contacts, phone, email, name, etc..
◆ compass : Air Traffic Surveillance DataBase.
◆ concordium-desktop-wallet : The official Concordium Dektop Wallet.
◆ conduction : Tasks? Done. That was quick.
◆ conky : Light-weight system monitor for X.
◆ consoleworkbench : Console workbench.
◆ contour : Modern C++ Terminal Emulator.
◆ converseen : A batch image converter and resizer.
◆ converter432hz : Converts and re-encodes music to 432hz.
◆ coolercontrol : A program to monitor and control your cooling devices.
◆ coolercontrold : Daemon for coolercontrol, to monitor your cooling devices.
◆ cool-retro-term : Use the command line the old way.
◆ copytranslator : Foreign language reading and translation assistant.
◆ cordlauncher : Cord launcher based on Electron and Wep Application.
◆ coreaction : A side bar for showing widgets for CuboCore Application Suite.
◆ corearchiver : Archive manager for CuboCore Application Suite.
◆ corefm : A lightweight file-manager for C Suite.
◆ coregarage : A setting manager for CuboCore Application Suite.
◆ corehunt : A file search utility for CuboCore Application Suite.
◆ coreimage : An image viewer for CuboCore Application Suite.
◆ coreinfo : A file information viewer for CuboCore Application Suite.
◆ corekeyboard : A x11 based virtual keyboard for C Suite.
◆ corepad : A document editor for CuboCore Application Suite.
◆ corepaint : A paint app for CuboCore Application Suite.
◆ corepins : A bookmarking app for CuboCore Application Suite.
◆ corerenamer : A batch file renamer for CuboCore Application Suite.
◆ coreshot : A screen capture utility for CuboCore Application Suite.
◆ corestats : A system resource viewer from the CoreApps family.
◆ corestuff : An activity viewer for CuboCore Application Suite.
◆ coreterminal : A terminal emulator for C Suite.
◆ coretime : A time related task manager for CuboCore Application Suite.
◆ coreuniverse : Shows releated information of apps from CuboCore App Suite.
◆ cosmic-comics : Web Server based Comics / Manga Collectionner & viewer.
◆ cozydrive : File Synchronisation for Cozy, cloud.
◆ cpeditor : Code editor specially designed for competitive programming.
◆ cpod : A simple, beautiful podcast app.
◆ cpu-x : Software that gathers information on CPU, motherboard and more.
◆ craftos-pc : Advanced ComputerCraft emulator written in C++.
◆ crankshaft : A sensible krunker client written in typescript.
◆ creality-print : Creality Print is a slicer dedicated to FDM printers.
◆ crg-data-tool : A tool for working with Games Data files from CRG.
◆ cric : Custom Runtime Image Creator.
◆ criteria1d : A one-dimensional agro-hydrological model.
◆ criteria1d-pro : A one-dimensional agro-hydrological model, PRO.
◆ criteria-geo : A one-dimensional agro-hydrological model, GIS interface.
◆ cro-chain-desktop-bin : Crypto.com DeFi Desktop Wallet, AppImage version.
◆ cromagrally : The wildest racing game since man invented the wheel!
◆ cromberg : Personal accounting system.
◆ cromite : Unofficial AppImage of the Cromite web browser.
◆ crosscode-map-editor : Map Editor for CrossCode.
◆ crossmobile : Create native iOS/Android/Windows apps in Java.
◆ crow-translate : Translate and speak text using Google, Yandex, Bing and more.
◆ cryplicity : Electron application boilerplate.
◆ crypter : An innovative, convenient and secure crypto app.
◆ cryptocam-companion : GUI to decrypt videos taken by Cryptocam.
◆ cryptomator : Cloud Storage Encryption Utility.
◆ cryptr : A GUI for Vault.
◆ cscrypto : A crypto app.
◆ ctool : Common Tools for Program Development.
◆ cubicsdr : Software-Defined Radio Application.
◆ cura : An open source slicing application for 3D printers.
◆ cura-beta : An open source slicing application for 3D printers, beta.
◆ cursor : Write, edit, and chat about your code with GPT-4.
◆ customrpc : An electron-vue project.
◆ cutechess : Cute Chess is a GUI, a CLI and a library for playing chess.
◆ cutepeaks : A simple sanger trace file viewer.
◆ cutevariant : A genetics variant filtering tools
◆ cutter : Free and Open Source Reverse Engineering Platform.
◆ czkawka : App to find duplicates, empty folders, similar images etc.
◆ dana : A desktop client for the Dana learning box.
◆ darktable-nightly : Photography workflow app and raw developer, nightly.
◆ darktable : Photography workflow app and raw developer.
◆ dashy-app : Dashboard creation application.
◆ database-dossier : A User Interface for your databases.
◆ dataset-annotator : An annotation tool for a dataset.
◆ datcord : Discord client.
◆ dawnlightsearch : A Linux version of Everything Search Engine.
◆ dbeaver-ce : Unofficial, DBeaver Community is a free cross-platform database tool for developers, database administrators, analysts, and everyone working with data.
◆ dbet-wallet : DBET Wallet.
◆ dbgate : Opensource database administration tool
◆ deadbeef-appimage : Unofficial AppImage of the DeaDBeeF music player. Stable build.
◆ deadbeef-nightly-appimage : Unofficial AppImage of the DeaDBeeF music player. Nightly build.
◆ deadgame-2048 : GUI tool available for ALL platforms.
◆ deb2appimage : Build AppImages from deb packages on any distro.
◆ debian-testing-avidemux : Unofficial, Avidemux built from deb-multimedia.
◆ deckboard : Control your PC with your phone in easy way possible.
◆ dedop-studio : DeDop Studio
◆ deepl-linux-electron : DeepL Integration. Select & translate text in any app.
◆ deepnotes : End-to-end encrypted visual note-taking tool.
◆ deeptags : Markdown notes manager with support for nested tags.
◆ deerportal : Full of the diamonds board game.
◆ deezer : A linux port of Deezer, allows downloading your songs, music.
◆ defichain-app : DefiChain Wallet AppImage.
◆ delir : Web Technology driven VFX Application.
◆ deltachat-desktop : Desktop Application for delta.chat.
◆ demonizer : Demonic corruption fantasy shmup.
◆ densify : A GTK+ GUI Application written in Python that simplifies compressing PDF files with Ghostscript.
◆ deployer : Deploy your applications through Jenkins.
◆ deskreen : Turns any device with a web browser into a secondary screen.
◆ desmume : Unofficial AppImage of the DeSmuME emulator.
◆ destiny : Cross-platform Magic Wormhole graphical client.
◆ devclean : A CLI and Desktop GUI app to clean dev dependencies (node_modules, cache) and more.
◆ devdocs-desktop : Desktop client for devdocs.io.
◆ devhub : TweetDeck for GitHub
◆ devilutionx : Diablo build for modern operating systems.
◆ devsidecar : Dev sidecar/github/git/stackoverflow acceleration, in chinese.
◆ devtools-x : Collection of offline first developer utilities available as desktop application.
◆ dexter-dev-env : Dexter Development Environment.
◆ dezor : The web browser including VPN and Adblocker.
◆ dfdemo : A thin Tcl/Tk GUI around the df POSIX command.
◆ dfilemanager : File manager written in Qt and C++.
◆ dicomautomaton : Tools for working with medical physics data.
◆ die-engine : Detect It Easy, a program for determining types of files.
◆ diffuse : Music player, connects to your cloud/distributed storage.
◆ digikam : Professional and advanced digital photo management application.
◆ dingtalk : DingTalk desktop version based on electron.
◆ disass : A simple disassembly tool.
◆ discord-qt : Unofficial. Discord client powered by Node.JS and Qt Widgets.
◆ discord : Unofficial. All-in-one voice and text chat for gamers.
◆ dockstation : Developing with Docker has never been so easy and convenient.
◆ dokidokimodmanager : Mod Manager for Doki Doki Literature Club!
◆ dolphin-emu : Unofficial, GameCube/Nintento Wii emulator with improvements.
◆ domterm : DOM/JavaScript-based terminal-emulator/console.
◆ dopamine-preview : The audio player that keeps it simple.
◆ dosemu : Run DOS programs under linux.
◆ dotto : A portable and modern pixelart editor, written from scratch.
◆ doublecmd-gtk : Two-panel file manager, also known as Double Commander.
◆ doublecmd-qt : Two-panel file manager, also known as Double Commander.
◆ downline : A cross-platform video and audio downloader.
◆ dragdrop : Small drag-and-drop file source for the command line.
◆ dragoman : GUI for polyglot.
◆ dragula : Free Stock Images on Steroids.
◆ draw.io : draw.io desktop.
◆ drawpile : Drawing program to sketch on the same canvas simultaneously.
◆ drill : Search files without indexing, but clever crawling.
◆ droidcam : A DroidCam AppImage for the Steam Deck/SteamOS 3.0.
◆ dropbox : A free cloud service, Unofficial AppImage.
◆ droppoint : Drag content without having to open side-by-side windows.
◆ duckling : A fast viewer for CSV/Parquet files and databases such as DuckDB, SQLite, PostgreSQL, MySQL, Clickhouse, etc.
◆ duckstation : PlayStation 1, aka PSX games Emulator.
◆ dukto : Easy and multi-platform file transfer tool.
◆ dunst : Lightweight and customizable notification daemon.
◆ duskplayer : A minimal music player built on electron.
◆ dust3d : 3D modeling software for games, 3D printing, and so on.
◆ dvdisaster : Additional error protection for CD/DVD media.
◆ dwarf-fortress : The AppImage of lnp-forge built LinuxDwarfPack.
◆ dwyco-phoo : Dwyco Phoo Chat and Video Calling.
◆ e2-sat-editor : Satellite channel lists editor with tabbed nav.
◆ eaglemode : Zoomable user interface with plugin applications.
◆ easymercurial : A simple UI for the Mercurial version-control system.
◆ ecency-surfer : Rewarding communities built, owned and operated by its users.
◆ ecode : Lightweight code editor designed for modern hardware.
◆ edex-ui : A cross-platform, customizable science fiction terminal emulator.
◆ ehdev-shell : An electron based developing tool for feds.
◆ eka2l1 : A Symbian OS/N-Gage emulator
◆ eksplode.re : Bomberman game made with Godot under BSD3.
◆ elapp : Elapp let's you send files to mobile and desktop devices near you.
◆ elcalc : Cross-Platform calculator built with Electron.
◆ eldumper : A GB Cartridge Dumper.
◆ electorrent : A remote control Torrent client.
◆ electrocrud : No coding is required.
◆ electron-app-store : Simple App Store for Apps Built with Electron.
◆ electron-cash : Lightweight Bitcoin Cash Client.
◆ electron-mail : Unofficial ProtonMail Desktop App.
◆ electron-react-boilerplate : A Foundation for Scalable Cross-Platform Apps.
◆ electronreact : Desktop application using Electron and React.
◆ electron-ssr : Install electron-ssr from appimage.
◆ electron-utils : Electron Utils for every day usage as a dev.
◆ electron-wechat : Wechat desktop application.
◆ electronwmd : Upload music to NetMD MiniDisc devices.
◆ electron-xiami : Xiami Electron desktop application.
◆ electrumfair : Lightweight FairCoin Client.
◆ electrum : Lightweight Bitcoin Client.
◆ electrum-ltc : A simple, but powerful Litecoin wallet.
◆ electrum-nmc : Lightweight Namecoin Client.
◆ electrum-ravencoin : Forked from the Electrum Bitcoin base client.
◆ element : A feature-rich client for Matrix.org.
◆ elementary-code : AppImage version of Elementary OS "Code" by Maksym Titenko.
◆ elements : App which displays the periodic table, Education, Science.
◆ elk : Native version of Elk, a nimble Mastodon web.
◆ ellas-war : Explore Ancient Greece on Ellas-War.
◆ elphyre-walletshell : Elphyrecoin GUI Wallet.
◆ elzabrowser : Elza incognito web browser.
◆ emacs-nox-daily : Unofficial. FOSS text editor for complete programming language.
◆ emacs-nox : Unofficial. FOSS text editor for complete programming language.
◆ emacs-pgtk-daily : Unofficial. FOSS text editor for complete programming language.
◆ emacs-pgtk : Unofficial. FOSS text editor for complete programming language.
◆ emacs : Unofficial. FOSS text editor for complete programming language.
◆ emacs-x11-daily : Unofficial. FOSS text editor for complete programming language.
◆ emacs-x11 : Unofficial. FOSS text editor for complete programming language.
◆ embedded-ide : Makefile based IDE for embedded systems.
◆ ember : Client for the WorldForge virtual world system, game.
◆ emoji-keyboard : Virtual keyboard-like emoji palette for Linux.
◆ emudeck : EmuDeck Desktop Electron Wrapper.
◆ en-croissant : The Ultimate Chess Toolkit.
◆ encryptpad : Secure text editor and binary encryptor with passwords.
◆ endless-sky : Space exploration and combat game.
◆ enoseannotator : View, annotate and store measurements of the eNose sensor.
◆ ente-auth : Fully open source, End to End Encrypted alternative to Google Photos and Apple Photos.
◆ ente-photos : Binary releases of the Ente Photos desktop app.
◆ enve : Create 2D Animations.
◆ envkey : EnvKey’s cross-platform native app.
◆ eosvc : Application for management of self-employeed people.
◆ eplee : Sweet, simple epub reader.
◆ eqonomize : Manage your personal finances.
◆ equibop : Equibop is a custom Discord App aiming to give you better performance and improve linux support.
◆ era : ERA is your note-taking tool.
◆ erdesigner : ER Diagram tool available for ALL platforms.
◆ erscaffold : A code generator for websites.
◆ escrcpy : Graphical Scrcpy to display and control Android, devices powered by Electron.
◆ es-de : EmulationStation Desktop Edition.
◆ esearch : Screenshot OCR search translate search for picture paste...
◆ espanso : Cross-platform Text Expander written in Rust.
◆ espi : Software recreation of the SP-1200 drum machine.
◆ etcher : Flash OS images to SD cards and USB drives, Balena Etcher.
◆ etcher-latest : Flash OS images to SD cards and USB drives, Balena Etcher.
◆ eternal-lands : 3D fantasy multiplayer online role playing game.
◆ eternalmodmanager : A cross platform mod manager for DOOM Eternal.
◆ etherealengine-cc : App for managing Ethereal Engine cluster.
◆ etichetta : A YOLO annotator, for human beings.
◆ eudic : Chinese app to learn english, listen statistics/note synch....
◆ evalit : A notepad calculator application with JavaScript configuration.
◆ everdo : A powerful cross-platform GTD app with focus on privacy.
◆ everinst : An installer for the Everest mod loader.
◆ evince : Unofficial. Document viewer for popular document formats.
◆ evoplex : Agent-based modeling.
◆ excel-parser-processor : Generates an array of items from the rows.
◆ exe : A Elearning XHTML/HTML5 editor.
◆ exeqt : Cross platform tray manager.
◆ exifcleaner : Clean exif metadata from images, videos, and PDFs.
◆ eximchain-wallet : Eximchain Wallet web and electron app.
◆ exocortex : An encrypted note taking and personal knowledge management app for those who value privacy and security.
◆ explorook : Rookout’s site addon to support local files and folders.
◆ exportoo : Read and search your exports.
◆ exsplode.re : A Bomberman game made with Godot under BSD3.
◆ extraterm : The swiss army chainsaw of terminal emulators.
◆ extrema : Data visualisation and analysis.
◆ extremetuxracer : Unofficial. 3D racing game with Tux, the Linux penguin.
◆ eyestalker : Video-based eye tracking using recursive estimation of pupil.
◆ ezup : Easy File Upload to Cloud Storage.
◆ f1mv-lights-integration : Connect your smart home lights to MultiViewer.
◆ fafarunner : A game developed using flutter and flame.
◆ fairshare : Simplifying the curation and sharing of biomedical research.
◆ fantascene-dynamic-wallpaper : Dynamic wallpaper software for Linux.
◆ fantasia-archive : A database manager for world building.
◆ farmhand : A resource management game that puts a farm in your hand.
◆ fastqt : Control tool for high throughput genomics sequence data.
◆ fasttrack : Fast tracking of multiple objects.
◆ fat-wallet : Wallet for FAT tokens.
◆ fchat-rising : A customized version of mainline F-Chat 3.0 client.
◆ fchat : The F-Chat 3.0 client.
◆ f-crm : Customer Relations Management for Freelancers.
◆ fdc3-sail : Open implementation of the FDC3 standard using Electron.
◆ fdm : Free Download Manager, multiplatform powerful modern download accelerator and organizer.
◆ feather-wallet : Monero wallet.
◆ feebas : Screenshot comparison tool for identifying visual regressions.
◆ feedseries : Follow your series enthusiast news, in french.
◆ feidao : Feidao Online Course Design Platform, chinese.
◆ feishin : Sonixd Rewrite, a desktop music player.
◆ ferdium : All your services in one place, built by the community.
◆ fflogs-uploader : FFLogs Uploader appimage.
◆ ff-password-exporter : Export your saved passwords from Firefox.
◆ ffvim : FIVIM is an editor for encrypted notes and files.
◆ ficus : A software for editing and managing markdown documents.
◆ fidias-database-migration-app : Migrate SQL-based databases.
◆ fiery-maui : Web browser with integrated ad-blocker and split views.
◆ fifo : A modern web browser, built on top of modern web technologies.
◆ figma-linux : First interface design tool based in the browser, graphics.
◆ file-commander : CLI, cross-platform Total Commander-like orthodox file manager.
◆ file-converter : Convert between various file formats.
◆ filen : Desktop client for Filen.io, end-to-end encrypted cloud storage.
◆ file-to-c : Tool for generating a C header from a spir-v binary file.
◆ filmulator-gui : Simplified raw editing with the power of film, graphics.
◆ fingrom : Financial accounting application
◆ firealpaca : A Free and Multiplatform Digital Painting Software.
◆ firedragon : A web browser based on Floorp (the Vivaldi of Firefox's) with many opiniated settings by default.
◆ firefly-desktop : The official IOTA and Shimmer wallet.
◆ firefox-appimage : Unofficial, AppImage of the Web Browser, Stable.
◆ firefox-beta-appimage : Unofficial, AppImage of the Web Browser, Beta.
◆ firefox-devedition-appimage : Unofficial AppImage of the Web Browser, Dev.
◆ firefox-esr-appimage : Unofficial AppImage of the Web Browser, ESR.
◆ firefox-nightly-appimage : Unofficial AppImage of the Web Browser, Nightly.
◆ firetail : An open source music player.
◆ firetv-toolkit : Android-Toolkit, a GUI for adb, modify android devices.
◆ fishing-funds : Fund, big market, stock, virtual currency status, in chinese.
◆ fishterm : A open-soruce Terminal remote access.
◆ fish : Unofficial, AppImage for `fish` shell.
◆ flacon : Audio File Encoder. Extracts audio tracks from audio CDs.
◆ flameshot : Tool to take screenshots with many built-in features, graphics.
◆ flare : Fantasy action RPG game using the FLARE engine.
◆ flawesome : Flawesome is a modern productivity tool.
◆ flb : A beautiful Feature Rich Music Player and Downloader,cross platform.
◆ flightgear-airports : A software to design Flightgear groundnets.
◆ flightgear : Free, open source flight simulator developed since 1997.
◆ flippy-qualitative-testbench : Music sheet reader.
◆ flowinity : The versatile all-in-one online platform, for everyone.
◆ fluent-reader : Modern desktop RSS reader.
◆ flycast : A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator.
◆ flyingcarpet : 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.
◆ fmradio : Cross platform FM Radio App for RTL2832U dongles.
◆ fms-file-explorer : Access and exploration of data produced.
◆ focalizzare : A Timer for Pomodoro Technique.
◆ focusatwill : Combines neuroscience and music to boost productivity.
◆ focuswriter : Simple fullscreen word processor.
◆ fontbase : A lightning fast, beautiful and free font manager for designers.
◆ fontforge : Free, libre font editor.
◆ fontlet : A package manager for fonts.
◆ foobar2000 : Unofficial, an advanced freeware audio player for Windows, includes WINE.
◆ four : Electron App to access All4/Channel4, UK.
◆ foxfolio : Cryptocurrency portfolio management application.
◆ fpm : Faster Project Plus on Linux.
◆ fractale : 2D modeling of the Von Koch fractal.
◆ fraidycat : Follow blogs, wikis, YouTube, Twitter, Reddit, Instagram and more.
◆ fraktal : Podcast Manager in Electron.
◆ frame-eth-dev : A privacy focused Ethereum wallet.
◆ francetv : The france.tv site in an application.
◆ franz : Messaging app for WhatsApp, Slack, Telegram, HipChat and much more.
◆ frappebooks : Book-keeping software for small-businesses and freelancers.
◆ freac : fre:ac, free audio converter and CD ripper for various encoders.
◆ freecad-assembly3 : Assembly3 workbench for FreeCAD.
◆ freecad : Free and open source AutoCAD alternative.
◆ freeman : A free, extensible, cross-platform file manager for power users.
◆ freeshow : User-friendly presenter software.
◆ freetexturepacker : Creates sprite sheets for you game or site, graphics.
◆ freetube : An Open Source YouTube app for privacy.
◆ freezer : An unofficial client for Deezer.
◆ friction : Flexible, user expandable 2D animation software.
◆ friture : Real-time audio visualizations, spectrum, spectrogram, etc..
◆ fromscratch : Simple autosaving scratchpad.
◆ frontimer : Desktop timer application always displayed in the forefront of the screen.
◆ fspy : An open source, cross platform app for still image camera matching.
◆ fukayo : Manga reader.
◆ funterm : A Linux Terminal Emulator.
◆ gaiasky : Gaia Sky, a real-time 3D space simulator & astronomy visualisation.
◆ galacteek : IPFS Multi-platform browser for the distributed web.
◆ gameconqueror : Unofficial. Memory scanner designed to isolate the adress of an arbitrary variable in an executing process (gtk GUI).
◆ gamehub : Unified library for all your games from different platforms.
◆ gameimage : Pack a runner/emulator/game and it's configs in a single AppImage.
◆ gams-studio : Development environment of General Algebraic Modeling System.
◆ ganache : Personal Blockchain for Ethereum, latest AppImage for Linux.
◆ gaphor : A UML and SysML modeling application written in Python.
◆ gargoyle-bin : Interactive Fiction multi-int. for all major IF formats.
◆ gaucho : Minimalist task launcher
◆ gdesktopsuite : Google Suite as a desktop app, made possible with Electron.
◆ gdevelop : Cross-platform game engine designed to be used by everyone.
◆ gdlauncher : Simple, yet powerful Minecraft custom launcher.
◆ gdm-settings : A settings app for GNOME's Login Manager, GDM.
◆ geany : Unofficial, a fast and lightweight IDE.
◆ gearlever : Manage AppImages with ease (unofficial AppImage).
◆ gedit : Unofficial. The popular GNOME text editor Gedit.
◆ geeqie : Claiming to be the best image viewer and photo collection browser.
◆ geforcenow-electron : Desktop client for Nvidia GeForce NOW game streaming.
◆ gemalaya : A keyboard-driven Gemini browser written in QML.
◆ genesis : Open source blockchain platform.
◆ geofs : GeoFS flight sim as a desktop application.
◆ geometrize : Images to shapes converter, graphics.
◆ gerbv : Gerber file viewer for PCB design.
◆ getthermal : Cross-platform Thermal Camera Viewer.
◆ gextractwinicons : Extract cursors, icons and images from MS Windows files.
◆ ghostty : Unofficial AppImage(s) of Ghostty terminal emulator.
◆ giada : Hardcore audio music production tool and drum machine for DJs.
◆ gibs : Generally In-source Build System, build C++ projects without a project.
◆ gifcurry : The open-source, Haskell-built video editor for GIF makers.
◆ gimp-dev : Unofficial, Cross-platform image and photo editor, Developer Edition.
◆ gimp-git : Unofficial, Cross-platform image and photo editor, built from GIT.
◆ gimp-hybrid : Unofficial, GIMP including third-party plugins and python2 support.
◆ gimp : Unofficial, GNU Image Manipulation Program, cross-platform image and photo editor.
◆ gingko : Gingko client rewritten in Elm.
◆ git-good : Just a simple git client using electron and nodegit.
◆ githoard : Hoard git repositories with ease.
◆ github-desktop : Electron-based GitHub app.
◆ gitify : GitHub notifications on your menu bar.
◆ gitjournal : Mobile first Note Taking integrated with Git.
◆ gitkraken : GitKraken Client including an intuitive GUI & powerful CLI.
◆ gitlight : GitHub & GitLab notifications on your desktop.
◆ gitnote : A modern note taking app based on GIT.
◆ gitqlient : Multi-platform Git client written with Qt.
◆ glabels : Create labels, business cards and media covers.
◆ glaxnimate : A simple and fast vector graphics animation program.
◆ gltf-insight : C++11 based glTF 2.0 data insight tool.
◆ glulxe : AppImage of the glulxe interactive fiction interpreter.
◆ gl-warp2mp4 : Utility to pre-warp a movie similar to TGAWarp.
◆ glyphr-studio-desktop : Professional font design programs.
◆ gmail-desktop : Unofficial. Nifty Gmail desktop app.
◆ gmappimager : Graphically Converts GameMaker Studio 2 Linux Games to AppImage.
◆ gm-companion : A tool for rpg gamemasters.
◆ gnome-boxes : Unofficial, A simple GNOME application to access virtual machines.
◆ gnome-calculator : Unofficial, Perform arithmetic, scientific or financial calculations.
◆ gnome-system-monitor3 : Unofficial, Version 3.38.0, for all those who hate GNOME4+ UIs.
◆ gnome-tweaks : Unofficial, Experimental AppImage port of advanced GNOME 3 settings GUI.
◆ gnumeric : Unofficial. An open-source spreadsheet program.
◆ godmode : AI Chat Browser fast, full webapp access to ChatGPT/Claude/Bard/Bing/Llama2.
◆ goldencheetah : Cycling Power Analysis Software.
◆ goldendict : A feature-rich dictionary lookup program.
◆ gooboxfileshare : Goobox File Share App.
◆ goofcord : Take control of your Discord experience with GoofCord.
◆ google-chrome-beta : Unofficial, Web Browser, Beta version.
◆ google-chrome-dev : Unofficial, Web Browser, Unstable version.
◆ google-chrome : Unofficial, Web Browser, Stable version.
◆ google-docs : Unofficial, Google Docs Desktop App made with electron.
◆ google-tasks-desktop : Unofficial Google Tasks Desktop Client.
◆ google-task-tauri : An Unofficial Desktop Client for Google Tasks.
◆ gopeed : A modern download manager that supports all platforms.
◆ gospel : Poppler based fast pdf viewer written in PyQt5.
◆ goverlay : An opensource project that aims to create a Graphical UI to help manage Linux overlays.
◆ gpgfrontend : A Cross-Platform OpenPGP Frontend Software.
◆ gpredict : A satellite tracking application.
◆ gpt-anywhere : Use GPT anywhere with just one shortcut.
◆ gptfusion : GPT Aggregation Ed., in chinese, supports POE, and more.
◆ gpupad : A flexible GLSL shader editor and IDE.
◆ gqrx : Software defined radio receiver, SDR.
◆ grabscr : Yet another screenshot maker.
◆ gradestats : Import xls spredsheets, store/analyze student grade.
◆ graphql-playground : GraphQL IDE for better development workflows.
◆ graviton : A simple code editor.
◆ greenlight : Client for xCloud and Xbox home streaming made in Typescript.
◆ gridcoin-research : POS-based cryptocurrency.
◆ gridea : A static blog writing client, 一个静态博客写作客户端.
◆ gridplayer : Play videos side-by-side.
◆ gridsync : Synchronize local directories with Tahoe-LAFS storage grids.
◆ grinplusplus : A C++ Grin Node & Wallet.
◆ grist-desktop : Desktop Grist, packaged with Electron.
◆ groot : Graphical Editor to create BehaviorTrees.
◆ grx : Fastest Web Gerber Renderer.
◆ gsequencer : Tree based audio processing engine.
◆ gsubs : Finds you the perfect subtitle match.
◆ guarda : A secure, easy-to-use cryptocurrency wallet.
◆ guglielmo : A FM, DAB/DAB+ decoder using Qt and C++.
◆ guiscrcpy : GUI integration for android screen mirroring system.
◆ guitar : Graphical git client.
◆ gvim : Edit text files.
◆ gxc-smart-contract-ide : Gxchain smart contract IDE alpha.
◆ gyroflow : Video stabilization using gyroscope data.
◆ hades-emu : A Nintendo Game Boy Advance Emulator.
◆ hamsket : Free and Open Source messaging and emailing app.
◆ handbrake : Unofficial, An open-source multiplatform video transcoder.
◆ hapee : Best cross-platform downloader ever.
◆ hashsum : A universal tool for finding file duplicates and modified files.
◆ hastyheroes : An endless 2D jumping game.
◆ haveno-reto : Decentralized P2P exchange built on Monero and Tor.
◆ hdrmerge : Merge several raw images into a single DNG raw image.
◆ heat1d : UI for testing the soilFluxex3D library, CRITERIA1D.
◆ heimer : Simple cross-platform mind map, diagram, and note-taking tool.
◆ helio : One music sequencer for all major platforms, desktop and mobile.
◆ helioslauncher : Custom launcher for modded minecraft written in Electron.
◆ helix : A post-modern modal text editor.
◆ hermesmessenger : Desktop client version for Hermes Messenger.
◆ hero-display : App for display on HERO robot.
◆ heroic-games-launcher : A Native GOG and Epic Games Launcher for Linux.
◆ hexinator : Hex editor for reverse engineering & binary file analysis.
◆ hexoclient : A cross-platform hexo client, build on electron.
◆ hexoeditor : Markdown editor for Hexo built with Electron.
◆ heynote : A dedicated scratchpad for developers.
◆ hiddify-next : Auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria.
◆ hidpi-fixer : Fractional scaling configuration on X11 desktops.
◆ hoptodesk : Allows users to share their screens and remotely control access.
◆ hotspot : The Linux perf GUI for performance analysis.
◆ houdoku : Manga reader and library manager for the desktop.
◆ hpack : A fine tool to convert any data into C header.
◆ hsinstall : Pack a haskell project into a deployable directory structure.
◆ htmldoc : HTML & Markdown Conversion Software to output PostScript and PDF.
◆ htop : Unofficial, CLI utility to monitor system resources.
◆ httpie-desktop : HTTPie for Desktop.
◆ hugin : Stitch photographs together.
◆ hugor : A cross-platform, multimedia interpreter for Hugo adventure games.
◆ huwinterpreter : HuwCode interpreter.
◆ hw-probe : Probe for hardware and upload result to the Linux hdw database.
◆ hydra : Game launcher with its own embedded bittorrent client.
◆ hydrogen-music : The advanced drum machine.
◆ hyper : A terminal built on web technologies.
◆ hyperdex : BarterDEX desktop app.
◆ hyperionide : Hyperion IDE for JIRA.
◆ hyperkeys : Unleash you keyboard shorcuts.
◆ hypersomnia : Hardcore arena mixing eSports with pixely nostalgia.
◆ hyperspace : A fluffy client for Mastodon in React.
◆ hypnotix : Unofficial. An IPTV streaming application with support for live TV.
◆ i3 : Unofficial, A tiling window manager for X11.
◆ iagoncloudapp : Iagon Cloud Application.
◆ ibus-rime : Zhongzhou Yun input method, ibus-rime in AppImage format.
◆ icalingua++ : A client for QQ and more.
◆ icedrive : The next generation of cloud storage.
◆ icestudio : A real gamechanger in the world of Open Source FPGAs.
◆ ideamerit : Diagramming tool. Software for drawing Objectives and Key Results.
◆ igdm : Desktop application for Instagram DMs.
◆ iheartradio-webapp : Election WebApp for iHeartRadio.
◆ imagemagick-clang : CLI to create, edit, compose, or convert digital images.
◆ imagemagick-gcc : CLI to create, edit, compose, or convert digital images.
◆ imagemosaicwall : Create an image based on a bunch of other images.
◆ imageplay : A rapid prototyping app for image processing.
◆ imagine : PNG/JPEG optimization.
◆ imapsyncclient : An electron-vue project.
◆ imgbrd-grabber : Very customizable imageboard/booru downloader.
◆ imhex : A Hex Editor for Reverse Engineers and Programmers.
◆ impact : Music Management and Playback.
◆ impposter : Post to my own development blog.
◆ inboxer : Simple client for Google Inbox.
◆ index-maui : Browse your system files and preview your multimedia.
◆ infection-monkey : An automated penetration test tool, security.
◆ infinitex : Editor for academics with cryptography.
◆ infra-app : Infra App for Linux.
◆ inkdown : A WYSIWYG Markdown editor, improve reading and editing experience and generate your Markdown files.
◆ inkscape-next : Vector-based drawing program, SVG, PDF, AutoCAD..., Unstable.
◆ inkscape : Vector-based drawing program, SVG, PDF, AutoCAD..., Stable.
◆ innerbreeze : Guided breathing meditation app based on the Wim Hof breathing method.
◆ insight : The GUI front-end of GDB with Tcl/Tk.
◆ insomnia : API client for GraphQL, REST, WebSockets and gRPC.
◆ insomnium : A local API testing tool privacy-focused, fork of Kong/insomnia.
◆ instead : Simple Text Adventures Interpreter.
◆ internxt-drive : Electron React Boilerplate uses Electron and React.
◆ intiface : Desktop Intiface Application.
◆ invoice-generator : Invoice Generator in Electron.
◆ iota1k : IOTA based messenging app.
◆ ipfs-desktop : An unobtrusive and user-friendly app for IPFS on Linux.
◆ iptracker : Desktop tool to keep track of your IP address and update you when it changes.
◆ iptvnator : IPTV player application.
◆ ipuissance-4d : Connect Four video game with a 3-Dimentional rendering.
◆ iqpuzzle : A diverting I.Q. challenging pentomino puzzle.
◆ irccloud-desktop : IRCCloud Desktop Client.
◆ irscrutinizer : Capture/generate/analyze/import/export infrared signals.
◆ isle-editor : Editor for Integrated Statistics Learning Environment lessons.
◆ isolate : Lightweight image browser.
◆ itusb1-manager : Control the ITUSB1 USB Test Switch.
◆ jag : Program for telemetry veiwing.
◆ james : HTTP/HTTPS proxy built in Electron and React.
◆ jan : FOSS Alternative to ChatGPT that runs 100% offline on your computer.
◆ jazz2 : Open-source reimplementation of Jazz Jackrabbit 2.
◆ jdappstreamedit : A graphical Program to create and edit AppStream files.
◆ jddesktopentryedit : A graphical Program to create and edit Desktop Entries.
◆ jdminecraftlauncher : Unofficial classic styled Minecraft Launcher.
◆ jdmrpackinstaller : Install Modrinth modpacks.
◆ jdnbtexplorer : A Editor for Minecraft NBT files.
◆ jdreplace : With jdReplace you can replace a text in all files of a directory.
◆ jdtextedit : jdTextEdit is a powerful texteditor with a lot of features.
◆ jellyamp : A client for listening to music from a Jellyfin server.
◆ jetbrains-toolbox : Essential tools for software developers and teams.
◆ jexiftoolgui : Java/Swing graphical frontend for ExifTool.
◆ jfcord : An Jellyfin rich presence client for Discord.
◆ jimud : MUD client for ShadowMUD.com, based on webclient.
◆ jira-timer : Menubar app for JIRA time logging.
◆ jitsi-meet : Jitsi Meet Desktop App.
◆ jklubtv : Chess Round Robin Tournament Manager.
◆ joaldesktop : Electron application boilerplate.
◆ join-desktop : A companion app for the Join website.
◆ joplin-beta : A cross-platform note taking and to-do app.
◆ joplin : Note and to-do application with synchronization capabilities.
◆ journalv : Journaling app for your days and dreams.
◆ joy2droidx : Turn Android phones into virtual Xbox 360 controller.
◆ jpg-glitch-electron : Desktop app for glitching images.
◆ jreleaser : The quick way to release your project.
◆ jrom-manager : A Rom Manager entirely written in Java and released under GPL-2.
◆ jscad-desktop : Jscad desktop application.
◆ js-design : A professional UI design software tailored for Chinese designers.
◆ juggernaut : Decentralized messaging and payments.
◆ julius : An open source re-implementation of the Caesar III game.
◆ jumpfm : A file manager that lets you jump.
◆ kade : A desktop application for Q Methodology.
◆ kadium : App for staying ontop of YouTube channels' uploads.
◆ kage : GUI for Metasploit Meterpreter and Session Handler.
◆ kaidan : A QtQuick Jabber client.
◆ kalba : Sentence mining tool.
◆ kando : The Cross-Platform Pie Menu.
◆ kanon : Maturita GPJP designed for use with kanon web app.
◆ kanri : Modern offline Kanban board app. Built with simplicity and user experience in mind.
◆ kardi : Application for taking notes with capabilities to view all content from any device while keeping all data accessible by you only.
◆ katvan : A bare-bones editor for Typst files, with a bias for Right-to-Left editing.
◆ kcov : Unofficial, An AppImage of Kcov code coverage tool.
◆ kdegames : Unofficial, Full & updatable KDE Games suite, metapackage.
◆ kdenlive : A powerful Video Editor provided by KDE.
◆ kdenlive-daily : A powerful Video Editor provided by KDE (daily builds).
◆ kdeutils : Unofficial, Full & updatable KDE Utils suite, metapackage.
◆ kdiskmark : A simple open-source disk benchmark tool for Linux distros.
◆ keepassxc-devel : Port of the Windows application “Keepass Password Safe”, dev-edition.
◆ keepassxc : Port of the Windows application “Keepass Password Safe”.
◆ keep : Desktop app for Google Keep.
◆ keeweb : Free cross-platform password manager compatible with KeePass.
◆ keibo-moneytracker-x86-64 : Track your income and expenses easily.
◆ kettleclient : Client for Kettle REST service.
◆ kevedit : ZZT Editor.
◆ keyboardclient : Keyboard Settings Client.
◆ keycombiner : Learn exactly the keyboard shortcuts you need.
◆ keymanager : One-stop certificate app and certificate key management.
◆ keyrier-json : A CLI/library/webapp to perfom SQL queries on JSON & CSV.
◆ keys : Key management, signing and encryption.
◆ kicad : Electronic Design Automation suite.
◆ kiibohd-configurator : Configuration utility for Input Club keyboards.
◆ kiku : Play music from youtube on desktop. Supports local api, invidious and piped as source.
◆ kimitzu-client : Kimitzu Client.
◆ kinopio : Thinking canvas for new ideas and hard problems.
◆ kitupiikki : Bookkeeping software for small organizations.
◆ klogg : A smart interactive log explorer.
◆ knowledge : Save/search/access/explore all your favorite websites and files.
◆ knowte : Note taking.
◆ koishi-desktop : Launch Koishi from your desktop.
◆ koodo-reader : Modern ebook manager and reader with sync & backup capacities.
◆ kopia : Cross-platform backup tool.
◆ koreader : A document viewer.
◆ kristall : A web browser without support for css/js/wasm or graphical websites.
◆ krita : A professional FREE and open source painting program, graphics.
◆ krita-devel : A professional FREE open source painting program, dev-edition.
◆ krunker : Krunker (.io) is a fast-paced first-person shooter game with pixel graphics.
◆ ksnip : Screenshot tool inspired by Windows Snipping Tool and made with Qt.
◆ kubeman : The Hero that Kubernetes deserves.
◆ kubenav : The navigator for your Kubernetes clusters right in your pocket.
◆ kuro : An elegant Microsoft ToDo desktop client for Linux, a fork of Ao.
◆ kwave : A sound & audio editor designed for the KDE Desktop Environment.
◆ labplot : Data Visualization and Analysis software accessible to everyone and trusted by professionals.
◆ lagrange : A Beautiful Gemini Client.
◆ laidout : Laidout, desktop publishing software
◆ laigter : Tool to generate normal/specular/occlussion/parallax 2D maps.
◆ lambda-lantern : A 3D game about functional programming patterns.
◆ landrop : Drop any files to any devices on your LAN.
◆ langly : Manage Laravel json language files.
◆ lanshare : LAN file transfer app for any kind and size of files and folders.
◆ laravel-kit : Easy Laravel application management.
◆ launcher : Generic application's launcher.
◆ lbry-desktop : A browser and wallet for LBRY.
◆ lcedit : Editor, unknown.
◆ ldtk : Modern and efficient 2D level editor.
◆ ldview : LDraw Model Viewer.
◆ leaflet : POSP official notes application, written in flutter, beautiful, fast and secure.
◆ leapp : The DevTool to access your cloud.
◆ led.custom.palette : Design the lights on your Model01 with an ease.
◆ ledger-live-desktop : Wallet desktop app for multiple cryptocurrencies.
◆ left : Distractionless Writing Tool.
◆ legcord : Legcord is a custom client designed to enhance your Discord experience while keeping everything lightweight.
◆ legendary-kingdoms : Implementation of Legendary Kingdoms Gamebooks in C++.
◆ lemon : A tiny judging environment for OI contest based on Project_LemonPlus.
◆ lens : App you need to take control of your Kubernetes clusters.
◆ leocad : Create virtual LEGO models.
◆ leonflix : Multi-platform desktop application for watching movies & TV shows.
◆ lepton : Democratizing Code Snippets Management.
◆ lescovex : Lescovex decentralized exchange, wallet and contract issuer.
◆ levior : Converts web pages on-the-fly to the gemtext format.
◆ libassist : Library Assistant.
◆ libertem : Pixelated scanning transmission electron microscopy.
◆ librecad : 2D CAD program written in C++11 using the Qt framework.
◆ libreoffice : Free and powerful office suite, and a successor to OpenOffice.
◆ librepcb : Design Schematics and PCBs.
◆ libresprite : Animated sprite editor & pixel art tool. Fork of the last GPLv2 commit of Aseprite.
◆ librewolf : Firefox-based Web Browser focused on privacy, security, freedom.
◆ lightning : Lightning Wallet Application.
◆ lightning-peach-wallet : Wallet for lightning network
◆ liground : A mordern Chess Variant Analysis GUI, game.
◆ liketaskmanager : Process/performances monitor, CPU, RAM, Disks and Network.
◆ lime3ds : Nintendo 3DS emulator, continuation of citra.
◆ linedancer : Arcade game and entry for Ludum Dare 35.
◆ linked : Daily journaling without distraction.
◆ linphone : A libre SIP client.
◆ linuxdeployqt : Convert a linux program to an AppDir or an AppImage.
◆ linux-intel-undervolt-gui : Undervolting GUI for Intel Linux Systems.
◆ linuxqq : New Linux QQ based on Electron.
◆ linwood-butterfly : Powerful, minimalistic, cross-platform, note-taking app.
◆ lisk-desktop : Lisk graphical user interface for desktop.
◆ listen1-desktop : One for all free music in China.
◆ listen.moe : Official LISTEN.moe Desktop Client.
◆ liteide : LiteIDE is a simple, open source, cross-platform Go IDE.
◆ lite-xl : A lightweight text editor written in Lua.
◆ liveme-pro-tools : Browse, search and manage accounts, replays and more.
◆ lmms : FL Studio® alternative that allows you to produce music with the PC.
◆ lmstudio : Experimenting with local and open-source Large Language Models.
◆ local-browser : Share your localhost in a unique way.
◆ localsend : An open source cross-platform alternative to AirDrop
◆ lofi : A mini Spotify player with WebGL visualizations.
◆ loginized : Loginized Gnome GDM Login Theme Manager.
◆ logseq : A privacy-first platform for knowledge management and collaboration.
◆ looofix : Minimalist Desktop Lofi Player To Relax and Enjoy.
◆ loopauditioneer : Software for loop and cue handling in .wav files.
◆ lore-forge : The app for writers & worldbuilders.
◆ losslesscut : The swiss army knife of lossless video/audio editing.
◆ lovelive : A LoveLiver Music Player.
◆ love : The unquestionably awesome 2D game engine.
◆ lovr : Lua Virtual Reality Framework.
◆ lpub3d : An LDraw Building Instruction Editor.
◆ lumi : A tool to create and display interactive content with H5P.
◆ luminance-hdr : Create and tonemap HDR images.
◆ luna : Manage npm dependencies through a modern UI.
◆ lunar-client : Free Minecraft Client, a modpack for all versions of Minecraft.
◆ lunatask : All-in-one encrypted to-do list, notebook, habit and mood tracker.
◆ lunyr : Ethereum-based Encyclopedia.
◆ lutris : Unofficial. Install and play video games from all eras and from most gaming systems, by leveraging and combining existing emulators, WINE included.
◆ lux : A free open source image and panorama viewer.
◆ lx-music-desktop : 一个基于electron的音乐软件.
◆ lxtask : A lightweight and desktop-independent task manager.
◆ lyricistant : A helpful writing assistant for lyricists.
◆ magento2-upgrade-gui : Magento 2 Upgrade GUI.
◆ magicfountain : A novel and screenwriting program.
◆ makagiga : To-do manager, notepad, RSS reader and much more.
◆ makoureactor : Can edit field from Final Fantasy VII, PS & PC.
◆ malice : GUI Programming Tool for iCE40.