x86_64-apps 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980
  1. ◆ 0ad : FOSS historical Real Time Strategy (RTS) game of ancient warfare.
  2. ◆ 0ad-latest : Real Time Strategy game of ancient warfare (development branch).
  3. ◆ 3d-puzzles : 3D-Puzzles are Rubik, Dogic and Dogic12.
  4. ◆ 432hz-player : Because most music is recorded in 440hz (Audio Player).
  5. ◆ 86box : Emulator of x86-based machines based on PCem.
  6. ◆ aaaaxy : A nonlinear puzzle platformer (game).
  7. ◆ abiword : A light and free word processing software.
  8. ◆ accessimap-lecteur-der : Accessimap Lecteur DER.
  9. ◆ acreom : Acreom desktop app releases.
  10. ◆ actual-appimage : A super fast privacy-focused app for managing your finances.
  11. ◆ adb : Android Debug Bridge (installer for "platform-tools").
  12. ◆ admin-tools : Administrative tools.
  13. ◆ advanced-passgen : Advanced Password Generator.
  14. ◆ advanced-rest-client : Advanced REST Client and API console (by Mulesoft).
  15. ◆ agregore : A minimal browser for the distributed web (Desktop version).
  16. ◆ ai-bot-workspace : Electron app including testing workspaces.
  17. ◆ aillio-ts : The desktop application for Aillio Bullet R1.
  18. ◆ air-controller-desktop : Android phone assistant,powered by Flutter.
  19. ◆ airspaces : An online map for your X-Plane flight sessions.
  20. ◆ aisap : Golang library to make sandboxing AppImages easy.
  21. ◆ aisleriot : A card game featuring over 80 different solitaire-type card games.
  22. ◆ akasha : AKASHA community client.
  23. ◆ alduin : An Atom and RSS feed aggregator.
  24. ◆ alephium-wallet : The official Alephium wallet for desktop.
  25. ◆ allusion : A desktop application for managing your visual library.
  26. ◆ alpine-flatimage : A hybrid of Flatpak sandboxing with AppImage portability.
  27. ◆ altair : The best graphQL client you will ever need.
  28. ◆ altitude : The Altitude wallet by Linda Project Inc.
  29. ◆ altus : Client for WhatsApp Web with themes & multiple account support.
  30. ◆ alvr-appimage : Stream VR games from your PC to your headset via Wi-Fi.
  31. ◆ amazingmarvin-appimage : Incorporates principles from behavioral psychology.
  32. ◆ amdgpu_top : Tool to display AMDGPU usage.
  33. ◆ amusiz : Unofficial and unpretentious Amazon Music client.
  34. ◆ anavis : Tool to visualize musical form.
  35. ◆ anchor : An EOSIO Light Wallet with simple and advanced tools.
  36. ◆ android-knot : An Android gadget integrating Todo, Notes, Reader and more.
  37. ◆ android-messages-desktop : Messages for web, as a desktop app.
  38. ◆ android-tools : AppImage for the Android Platform tools (adb, fastboot, etc)
  39. ◆ animashooter-junior : User-friendly Stop-Motion Animation Software (FREE).
  40. ◆ animashooter-pioneer : User-friendly Stop-Motion Animation Software (PRO).
  41. ◆ animos : Anime-streaming desktop application without any ads.
  42. ◆ aniship : Allows for easy viewing of anime on PCs and laptops.
  43. ◆ anklang-appimage : MIDI and Audio Synthesizer and Composer.
  44. ◆ another-redis-desktop-manager : Faster and better redis desktop manager.
  45. ◆ antares : An useful SQL client based on Electron.js and Vue.js.
  46. ◆ ant-downloader : BitTorrent Client developed by golang, angular, electron.
  47. ◆ antimicrox : Use a gamepad to control a variety of programs.
  48. ◆ anydesk : Remote desktop application distributed (unofficial AppImage).
  49. ◆ anytype : The everything app for those who celebrate trust & autonomy.
  50. ◆ anzeigenchef : AdsChef manages your classified ads.
  51. ◆ aphelion-wallet : Aphelion desktop wallet application built with Electron.
  52. ◆ aphototoollibre : Photo editing app for GNU/Linux.
  53. ◆ apifox : API manager (in chinese). 文档、API 调试、API Mock、API 自动化测试
  54. ◆ apk-editor-studio : Easy to use APK (Android) reverse-engineering tool.
  55. ◆ apla : Project was bootstrapped with Create React App.
  56. ◆ apphub : App that simplifies installation/management of .appImage packages.
  57. ◆ appimage-builder : GNU/Linux packaging solution using the AppImage format.
  58. ◆ appimagecraft : Powerful build script generator with a focus on AppImages.
  59. ◆ appimagedl : Easily download AppImages from AppImageHub (unofficial fork).
  60. ◆ appimagehelper : Create and organize shortcuts for AppImages.
  61. ◆ appimagekit : Install appimagetool, appimageupdatetool and pkg2appimage.
  62. ◆ appimagelauncher : CLI helper for running and integrating AppImages.
  63. ◆ appimagelint : Check AppImages for compatibility, best practices etc.
  64. ◆ appimagen : A script that generates a custom AppImage from a PPA.
  65. ◆ appimagepool : A simple, modern AppImageHub Client, powered by flutter.
  66. ◆ appimagetool : Tool to generate an AppImage from an existing AppDir.
  67. ◆ appimageupdatetool : Tool to update an AppImage using embedded information.
  68. ◆ appimageupdate : Tool to update an AppImage using embedded information.
  69. ◆ appium-desktop : Graphical interface for the Appium server.
  70. ◆ app-outlet : A Universal linux app store for Flatpak/Snap/AppImage.
  71. ◆ aptakube-appimage : A modern and lightweight Kubernetes desktop client.
  72. ◆ apx-gcs : APX Ground Control.
  73. ◆ aranym : Virtual Machine for Atari 32-bit applications.
  74. ◆ arcade-manager : Manage your rom collection (Games/Retropie & Recalbox).
  75. ◆ arch-deployer : Script to convert Arch Linux packages to AppDir/AppImage.
  76. ◆ arch-flatimage : A hybrid of Flatpak sandboxing with AppImage portability.
  77. ◆ archimage-cli : Build AppImage packages using JuNest (Arch Linux).
  78. ◆ archipelago : Archipelago Multi-Game Randomizer and Server.
  79. ◆ archipel : Decentralized archiving and media library system.
  80. ◆ arduino-ide : Open-source electronics platform.
  81. ◆ arena-tracker : Deck Tracker for Hearthstone game with arena in focus.
  82. ◆ ark : Archiving tool for .zip/.tar/.rar and more (installs "kdeutils").
  83. ◆ arkaway : Another Arkanoid clone and make with Pyxel.
  84. ◆ ark.desktop.wallet : Ark Ecosystem Desktop Wallet.
  85. ◆ arma3-unix-launcher : ArmA 3 Unix Launcher (game).
  86. ◆ armagetronad : Multiplayer game in 3d that emulates the movie "Tron".
  87. ◆ armcord : Custom client designed to enhance your Discord experience.
  88. ◆ around : Video calls designed for energy, ideas and action.
  89. ◆ artifact : Win 40 levels of mayhem without getting destroyed (game).
  90. ◆ artisan : Visualizes the coffee roasting process.
  91. ◆ artix : One app. All your favorite Artix games.
  92. ◆ asarui : UI for Asar.
  93. ◆ asgardex-appimage : Thorchain wallet desktop app.
  94. ◆ astroffers : Take offers to watch at given nights by the NGC2000 catalog.
  95. ◆ astrofox : Audio reactive motion graphics program.
  96. ◆ astroshutter : Ui to control your camera for astrophotography.
  97. ◆ asunder : Audio CD ripper and encoder (WAV, MP3, OGG, FLAC, Opus, AAC...).
  98. ◆ atomicwallet : Atomic vue-electron.
  99. ◆ audacious : An open source audio and music player, descendant of XMMS.
  100. ◆ audacity : Multiplatform Audio Editor.
  101. ◆ audiomoth : Configuration app for the AudioMoth acoustic monitoring device.
  102. ◆ audmonkey : A multiplatform audio editor (Audacity fork).
  103. ◆ augur : Augur Desktop Application.
  104. ◆ auryo : An audio/music desktop client for SoundCloud.
  105. ◆ authme : Simple cross-platform two-factor authenticator app for desktop.
  106. ◆ autoedit2 : autoEdit2 Desktop Client for Linux.
  107. ◆ avantgarde : Avalonia XAML Preview.
  108. ◆ avidemux : Multiplatform Video Editor.
  109. ◆ avidemux-nightly : Multiplatform Video Editor (nightly build).
  110. ◆ avocado : PlayStation 1 emulator (games).
  111. ◆ avogadro2 : Molecular editor for computational chemistry, bioinformatics.
  112. ◆ awakened-poe-trade : Path of Exile trading app for price checking.
  113. ◆ axe-electrum : Axe Electrum Wallet.
  114. ◆ axolotl : A Signal compatible cross plattform client written in Go and Vuejs.
  115. ◆ baijimangaviewer : Manga viewer that uses Material Design.
  116. ◆ bambustudio : PC Software for BambuLab's 3D printers.
  117. ◆ baobab-gtk3 : Disk Usage Analyser (version 3.38, for all GNOME4+ haters).
  118. ◆ bastyon : Decentralized social network based on the blockchain.
  119. ◆ batch-explorer : A client tool to create/debug/monitor Azure Batch Apps.
  120. ◆ bauh : GUI for managing AppImage, Arch/AUR, DEBs, Flatpak, Snap and webapps.
  121. ◆ bazecor : Graphical configurator for Dygma Raise.
  122. ◆ bbg-appimage : A static blog generator based on Electron Technology.
  123. ◆ bdash : A simple business intelligence application.
  124. ◆ beaker-ng : An experimental peer-to-peer Web browser.
  125. ◆ beam-wallet : Beam Desktop Wallet.
  126. ◆ beatconnect-client : Beatconnect power for osu irc.
  127. ◆ beekeeper-studio : SQL query editor and database UI.
  128. ◆ beeper : All your chats in one app.
  129. ◆ bench-cli : CLI tool to benchmark commands, written in `Fortran`.
  130. ◆ bettercrewlink : Free, open, Among Us proximity voice chat.
  131. ◆ better-osu-skills : Gets results from the osu! Using your own IRC credentials.
  132. ◆ bettersis : Modern shell for SIS.
  133. ◆ beurerscalemanager : AppImage packaging project for BeurerScaleManager.
  134. ◆ beyond-all-reason : 3D Real-Time Strategy Total Annihilation Inspired (game).
  135. ◆ bezique : Plays bezique game against the AI.
  136. ◆ bforartists : 3D modeling, animation, rendering and post-production.
  137. ◆ bilibili : Bilibili official desktop client.
  138. ◆ bilibilivideodownload : Bilibili video downloader.
  139. ◆ biliup-app-appimage : Bilibili uploader.
  140. ◆ billard-gl : 3D billiards game, play a game of 8-ball or 9-ball.
  141. ◆ billyfrontier : Pangea Software’s Billy Frontier for modern systems.
  142. ◆ bingada : Bingo application in GTKAda.
  143. ◆ bioanimation : CCNY Electrochemical Gradient Simulator.
  144. ◆ birds-kitchen : Recipe manager.
  145. ◆ bitbox-wallet : Cryptocurrency hardware wallet desktop app.
  146. ◆ bitfighter : A 2-D multi-player space combat game.
  147. ◆ bitshares : Advanced wallet interface for the BitShares financial blockchain.
  148. ◆ bitwarden : Password manager for individuals, teams and business.
  149. ◆ biying : Biying Wallpaper for Linux.
  150. ◆ black-chocobo : FF7 Save Game Editor.
  151. ◆ blacknut-appimage : Cloud gaming client.
  152. ◆ blastem : Clone of Mercurial Repo.
  153. ◆ blender-alpha : Very fast and versatile 3D modeller/renderer (Alpha).
  154. ◆ blender-beta : Very fast and versatile 3D modeller/renderer (Beta).
  155. ◆ blender-rc : Very fast and versatile 3D modeller/renderer (Release Candidate).
  156. ◆ blender : Very fast and versatile 3D modeller/renderer (Stable).
  157. ◆ blensor : 3D modeling, animation, rendering and post-production.
  158. ◆ blink : GUI of live indexed grep search for source code.
  159. ◆ blizzard-4 : Emulator & toolchain for the Blizzard 4 16-bit computer.
  160. ◆ blockbench : Editor for boxy models and pixel art textures like Minecraft.
  161. ◆ block-dx : Exchange dApp built on top of the Blocknet Protocol.
  162. ◆ blockstream-green : Bitcoin wallet compatible with Blockstream Jade.
  163. ◆ bloks : An electron-vue project.
  164. ◆ bloomrpc : GRPC GUI client.
  165. ◆ blowfish : Display your total Ocean Token balances.
  166. ◆ blubvolley : A fun volleyball game.
  167. ◆ blueglow : A simple system tray application to watch github notifications.
  168. ◆ boardgamestar : A platform for playing digital boardgames.
  169. ◆ bodacious : A bodacious music player.
  170. ◆ bodhi : Bodhi Prediction Market app.
  171. ◆ bomber : Arcade spaceship game (installs "kdegames").
  172. ◆ bonsai-maui : Manage Git repositories from a GUI.
  173. ◆ book-manager : Simple desktop app to manage personal library.
  174. ◆ bookmarks-manager : Edit bookmarks, check url.
  175. ◆ boostchanger : Control CPU turbo boost and the settings of the cpu speed.
  176. ◆ boost-note : Document driven project management tool to speedup remote DevOps.
  177. ◆ botclient-appimage : A discord botclient built with Electron and React.
  178. ◆ botframework-emulator : Test and debug chat bots built with Bot Framework SDK.
  179. ◆ botim-appimage : Free, Secure, Reliable Messages and Calls.
  180. ◆ bottlebats : Client for the 2018 edition of the BottleBats AI competition.
  181. ◆ bottlenose : Bottlenose is a front-end for video game emulators.
  182. ◆ bottles : Manage wine prefixes and run Windows software & games in a new way.
  183. ◆ bovo : Five in a row game from (installs "kdegames").
  184. ◆ brackets : Brackets-Electron.
  185. ◆ brainverse : Electronic Lab Notebook for Reproducible Neuro Imaging Research.
  186. ◆ brainwaves : EEG Desktop Application.
  187. ◆ brave-appimage : Unofficial AppImage (Web Browser, Stable).
  188. ◆ brave : A privacy oriented Web Browser based on Chromium (Stable).
  189. ◆ brave-beta-appimage : Unofficial AppImage (Web Browser, Beta Edition).
  190. ◆ brave-beta : A privacy oriented Web Browser (Beta Edition).
  191. ◆ brave-nightly-appimage : Unofficial AppImage (Web Browser, Nightly Edition).
  192. ◆ brave-nightly : A privacy oriented Web Browser (Nightly Edition).
  193. ◆ bread : Install, update and remove AppImage from GitHub using your CLI.
  194. ◆ breaktimer-appimage : Save yourself from RSI and eye-strain.
  195. ◆ brickstore : An offline BrickLink inventory management tool.
  196. ◆ bridge : The perfect Bridge between Megascans and your favorite tools.
  197. ◆ brs-emu-app : BrightScript Emulator, runs on browsers and Electron apps.
  198. ◆ bruno-appimage : An Opensource API Collection Collaboration Suite.
  199. ◆ bscanfftwebcam : FDOCT tool.
  200. ◆ btop : A command line utility to monitor system resources, like Htop.
  201. ◆ bts-ce-lite : Telecommunication network management application.
  202. ◆ buche : A logger of sorts.
  203. ◆ buckets : Budgeting fast, simple and private.
  204. ◆ bugdom2 : Pangea Software’s Bugdom 2 for modern systems.
  205. ◆ bugdom : Pangea Software's Bugdom game.
  206. ◆ buho-maui : Easy-to-use note-taking application with “tags” support.
  207. ◆ bulkreviewer : Identify, review, and remove private information.
  208. ◆ bulkurlopener : Desktop version of the Bulk URL Opener extension.
  209. ◆ bunqdesktop : A desktop implementation for the bunq API.
  210. ◆ burning-series : Watch any series from Burning Series (Unofficial client).
  211. ◆ buttercup : Free and Open Source password vault.
  212. ◆ bypass-cors : Unlock browser’s full potential!
  213. ◆ bytespeichertrayicon : Bytespeicher Status App.
  214. ◆ cabal-desktop : Cabal p2p offline-first desktop application.
  215. ◆ cacher : Cacher is a code snippet library for professional developers.
  216. ◆ cadmus-appimage : Pulse Audio real-time noise suppression plugin.
  217. ◆ calculist : Desktop version of Calculist.io.
  218. ◆ calibre : The one stop solution to all your e-book needs
  219. ◆ calm-circles : Calm down and draw something, in Lisp.
  220. ◆ calm-fan : Calm down and draw something, in Lisp.
  221. ◆ calm-meditator : Calm down and draw something, in Lisp.
  222. ◆ calm-mondrian : Calm down and draw something, in Lisp.
  223. ◆ candycrisis : Candy Crisis source port for modern operating systems.
  224. ◆ capbattleship : Battleship game with a pirate theme.
  225. ◆ caprine : Unofficial, elegant privacy focused Facebook Messenger app.
  226. ◆ cargo-appimage : Converts your crate into an AppImage.
  227. ◆ carnet : A complete and rich note taking app with sync capabilities.
  228. ◆ carpenters : Digital preservation ingest utility.
  229. ◆ carta : Cube Analysis and Rendering Tool for Astronomy.
  230. ◆ casm : Corinthian Abstract State Machine (CASM).
  231. ◆ casterr : Screen recorder, easing recording and clipping in-game.
  232. ◆ castersoundboard : Soundboard for hot-keying and playing back sounds.
  233. ◆ catalyst : Catalyst web browser.
  234. ◆ catcher : Peer-testing of software projects.
  235. ◆ cate-desktop : GUI for the ESA CCI Toolbox (Cate).
  236. ◆ cavoke : Cavoke: Platform to create/host multiplayer turn-based board games.
  237. ◆ cbetar2 : ePub viewer supporting fetching and displaying HTML as ePub.
  238. ◆ celeste64 : A game made by the Celeste developers.
  239. ◆ celestia-dev : Real time 3D space simulator (developer edition).
  240. ◆ celestia-enanched : Real-time 3D space simulator with extra detailed maps.
  241. ◆ celestia : Real time 3D space simulator.
  242. ◆ celoterminal-bin : Celo Terminal (AppImage version).
  243. ◆ cemu : A Nintendo Wii U emulator that is able to run most Wii U games.
  244. ◆ cerebral-debugger : Cerebral Debugger.
  245. ◆ cerebro : Open-source productivity booster with a brain.
  246. ◆ chain-desktop-wallet : Crypto.com DeFi Desktop Wallet.
  247. ◆ chainx-signer : Manage ChainX account, sign and sign transactions.
  248. ◆ chatall : Concurrently chat with ChatGPT, Bing Chat, bard, Alpaca and more.
  249. ◆ chatbox : Chatbox is a desktop app for GPT-4 / GPT-3.5 (OpenAI API).
  250. ◆ chat-gpt-appimage : ChatGPT Desktop Application (Mac, Windows and Linux).
  251. ◆ chatgpt-next-web : A cross-platform ChatGPT/Gemini UI.
  252. ◆ chatpad-ai : Not just another ChatGPT user-interface.
  253. ◆ chatterino2-appimage : Second installment of the Twitch chat client.
  254. ◆ chatterino2-nightly-appimage : Second installment of the Twitch chat client.
  255. ◆ chemcanvas : A very intuitive 2D chemical drawing tool.
  256. ◆ cherrytree : A hierarchical note taking application.
  257. ◆ chiaki : PlayStation 4 Remote Play Client.
  258. ◆ chimeradesk-kvm : Simple, fast and flexible DIY Remote Desktop software.
  259. ◆ chimeradesk : Simple, fast and flexible DIY Remote Desktop software.
  260. ◆ chord : A Modern Music Player.
  261. ◆ chrolog : A automated time tracking tool.
  262. ◆ chromium-bsu : Fast paced arcade style scrolling space shooter (game).
  263. ◆ chromium-latest : Web Browser (official unstable build).
  264. ◆ chromium : Web Browser. Open source base of Google Chrome, Edge and Brave.
  265. ◆ chrysalis-bin : Graphical configurator for Kaleidoscope-powered keyboards.
  266. ◆ ciaa-suite : Makefile based IDE for embedded systems.
  267. ◆ cider : A new cross-platform Apple Music experience with performance in mind.
  268. ◆ cinelerra-gg : Professional video editing and compositing environment.
  269. ◆ cinny : Yet another matrix client for desktop.
  270. ◆ circle-z : A chat client for online math courses.
  271. ◆ circuitblocks : Helps newbies get into embedded programming.
  272. ◆ citra : Nintendo 3DS emulator.
  273. ◆ city-hub : Hub into everything on City Chain/Smart City Platform.
  274. ◆ clash-verge : A multiplatform Clash GUI based on tauri.
  275. ◆ cleepdesktop : Desktop application to manage your Cleep devices.
  276. ◆ clementineremote : Remote for Clementine Music Player.
  277. ◆ cliniface : 3D Facial Image Visualisation and Analysis.
  278. ◆ clipgrab : Download and Convert Online Videos.
  279. ◆ clip-maui : Official movie player of Maui using MPV as backend.
  280. ◆ clippy : Clipboard History.
  281. ◆ clipr : The clipboard that syncs.
  282. ◆ cloud-browser : Access to files located in various cloud services.
  283. ◆ cncjs : CNC Milling Controller.
  284. ◆ cncra2yr : C&C Red Alert 2, a real-time strategy game by Westwood Pacific.
  285. ◆ coal-launcher : A client to view and play games from the AB Coal website.
  286. ◆ cocomusic : A simple music player built by electron and vue.
  287. ◆ code-notes-appimage : A simple code snippet amp built with Electron.
  288. ◆ code-oss : Visual Studio Code OSS Edition.
  289. ◆ code : Visual Studio (VSCode), Original Editor to build/debug web/cloud apps.
  290. ◆ coinstac : Collaborative Informatics and Neuroimaging Suite Toolkit.
  291. ◆ colobot : Colonize with bots (game).
  292. ◆ colon : A flexible text editor.
  293. ◆ colorgenerator : Generates color palettes similar to ColorBrewer.
  294. ◆ colorpicker : Electron app that can show colors with hex/rgb.
  295. ◆ colorstatic-bash : CLI to generate a random colorful "Static"/"Matrix".
  296. ◆ comic-book-reader : Reader and converter for cbz, cbr, epub and pdf files.
  297. ◆ comic-reader : Electron based comic reader.
  298. ◆ comictagger : A multi-platform app for writing metadata to digital comics.
  299. ◆ communicator-maui : Create and organize contacts (phone, email, name, etc.).
  300. ◆ compass : Air Traffic Surveillance DataBase.
  301. ◆ concordium-desktop-wallet : The official Concordium Dektop Wallet.
  302. ◆ conduction : Tasks? Done. That was quick.
  303. ◆ conky : Light-weight system monitor for X.
  304. ◆ consoleworkbench : Console workbench.
  305. ◆ contour : Modern C++ Terminal Emulator.
  306. ◆ conty : Easy to use unprivileged and portable Arch Linux container.
  307. ◆ conty-lite : Easy to use unprivileged and portable Arch Linux container.
  308. ◆ conty-wine : Easy to use unprivileged and portable Arch Linux container.
  309. ◆ converseen : A batch image converter and resizer.
  310. ◆ converter432hz-appimage : Converts and re-encodes music to 432hz.
  311. ◆ coolercontrol : A program to monitor and control your cooling devices.
  312. ◆ cool-retro-term : Use the command line the old way.
  313. ◆ copytranslator-appimage : Foreign language reading and translation assistant.
  314. ◆ cordlauncher : Cord launcher based on Electron and Wep Application.
  315. ◆ coreaction : A side bar for showing widgets for CuboCore Application Suite.
  316. ◆ corearchiver : Archive manager for CuboCore Application Suite.
  317. ◆ corefm : A lightweight file-manager for C Suite.
  318. ◆ coregarage : A setting manager for CuboCore Application Suite.
  319. ◆ corehunt : A file search utility for CuboCore Application Suite.
  320. ◆ coreimage : An image viewer for CuboCore Application Suite.
  321. ◆ coreinfo : A file information viewer for CuboCore Application Suite.
  322. ◆ corekeyboard : A x11 based virtual keyboard for C Suite.
  323. ◆ corepad : A document editor for CuboCore Application Suite.
  324. ◆ corepaint : A paint app for CuboCore Application Suite.
  325. ◆ corepins : A bookmarking app for CuboCore Application Suite.
  326. ◆ corerenamer : A batch file renamer for CuboCore Application Suite.
  327. ◆ coreshot : A screen capture utility for CuboCore Application Suite.
  328. ◆ corestats : A system resource viewer from the CoreApps family.
  329. ◆ corestuff : An activity viewer for CuboCore Application Suite.
  330. ◆ coreterminal : A terminal emulator for C Suite.
  331. ◆ coretime : A time related task manager for CuboCore Application Suite.
  332. ◆ coreuniverse : Shows releated information of apps from CuboCore App Suite.
  333. ◆ cosmonium : 3D astronomy and space exploration program.
  334. ◆ cozydrive : File Synchronisation for Cozy (cloud).
  335. ◆ cpeditor : Code editor specially designed for competitive programming.
  336. ◆ cpod : A simple, beautiful podcast app.
  337. ◆ cpu-x : Software that gathers information on CPU, motherboard and more.
  338. ◆ craftos-pc : Advanced ComputerCraft emulator written in C++.
  339. ◆ crankshaft : A sensible krunker client written in typescript.
  340. ◆ creality-print : Creality Print is a slicer dedicated to FDM printers.
  341. ◆ crg-data-tool : A tool for working with Games Data files from CRG.
  342. ◆ cric : Custom Runtime Image Creator.
  343. ◆ criteria1d : A one-dimensional agro-hydrological model.
  344. ◆ criteria1d-pro : A one-dimensional agro-hydrological model (PRO).
  345. ◆ criteria-geo : A one-dimensional agro-hydrological model (GIS interface).
  346. ◆ cro-chain-desktop-bin : Crypto.com DeFi Desktop Wallet (AppImage version).
  347. ◆ cromagrally : The wildest racing game since man invented the wheel!
  348. ◆ cromberg : Personal accounting system.
  349. ◆ crosscode-map-editor : Map Editor for CrossCode.
  350. ◆ crossmobile : Create native iOS/Android/Windows apps in Java.
  351. ◆ crow-translate : Translate and speak text using Google, Yandex, Bing and more.
  352. ◆ cryplicity : Electron application boilerplate.
  353. ◆ crypter : An innovative, convenient and secure crypto app.
  354. ◆ cryptocam-companion : GUI to decrypt videos taken by Cryptocam.
  355. ◆ cryptomator : Cloud Storage Encryption Utility.
  356. ◆ cryptr : A GUI for Vault.
  357. ◆ csbooks : Epub reader, pdf reader, mobi book reader and djvu reader.
  358. ◆ cscrypto : A crypto app.
  359. ◆ ctool : Common Tools for Program Development.
  360. ◆ cubicsdr : Software-Defined Radio Application.
  361. ◆ cura : An open source slicing application for 3D printers.
  362. ◆ cura-beta : An open source slicing application for 3D printers (beta).
  363. ◆ cursor : Write, edit, and chat about your code with GPT-4.
  364. ◆ customrpc : An electron-vue project.
  365. ◆ cutechess : Cute Chess is a GUI, a CLI and a library for playing chess.
  366. ◆ cutepeaks : A simple sanger trace file viewer.
  367. ◆ cutevariant : A genetics variant filtering tools
  368. ◆ cutter : Free and Open Source Reverse Engineering Platform.
  369. ◆ czkawka : App to find duplicates, empty folders, similar images etc.
  370. ◆ dana : A desktop client for the Dana learning box.
  371. ◆ dashy-app : Dashboard creation application.
  372. ◆ database-dossier : A User Interface for your databases.
  373. ◆ dataset-annotator : An annotation tool for a dataset.
  374. ◆ datcord : Discord client.
  375. ◆ dawnlightsearch : A Linux version of Everything Search Engine.
  376. ◆ dbet-wallet : DBET Wallet.
  377. ◆ dbgate : Opensource database administration tool
  378. ◆ deadbeef : A modular cross-platform audio player.
  379. ◆ deadbeef-appimage : Unofficial, A modular cross-platform audio player.
  380. ◆ deadbeef-devel : A modular cross-platform audio player (dev-edition).
  381. ◆ deadbeef-devel-appimage : Unofficial, music player (dev-version).
  382. ◆ deadgame-2048 : GUI tool available for ALL platforms.
  383. ◆ deb2appimage : Build AppImages from deb packages on any distro.
  384. ◆ debian-testing-avidemux : Unofficial Avidemux built from deb-multimedia.
  385. ◆ deckboard : Control your PC with your phone in easy way possible.
  386. ◆ dedop-studio : DeDop Studio
  387. ◆ deemix-gui-appimage : A gui electron app for the deemix lib.
  388. ◆ deeptags : Markdown notes manager with support for nested tags.
  389. ◆ deerportal : Full of the diamonds board game.
  390. ◆ deezer : A linux port of Deezer, allows downloading your songs (music).
  391. ◆ defichain-app : DefiChain Wallet AppImage.
  392. ◆ delir : Web Technology driven VFX Application.
  393. ◆ deltachat-desktop : Desktop Application for delta.chat.
  394. ◆ demonizer : Demonic corruption fantasy shmup.
  395. ◆ deployer : Deploy your applications through Jenkins.
  396. ◆ deskreen : Turns any device with a web browser into a secondary screen.
  397. ◆ destiny : Cross-platform Magic Wormhole graphical client.
  398. ◆ devdocs-desktop : Desktop client for devdocs.io.
  399. ◆ devhub : TweetDeck for GitHub
  400. ◆ devsidecar : Dev sidecar/github/git/stackoverflow acceleration (in chinese).
  401. ◆ dexter-dev-env : Dexter Development Environment.
  402. ◆ dezor : The web browser including VPN and Adblocker.
  403. ◆ dfdemo : A thin Tcl/Tk GUI around the df POSIX command.
  404. ◆ dfilemanager : File manager written in Qt and C++.
  405. ◆ dicomautomaton : Tools for working with medical physics data.
  406. ◆ die-engine : Detect It Easy, a program for determining types of files.
  407. ◆ diffuse : Music player, connects to your cloud/distributed storage.
  408. ◆ digikam : Professional and advanced digital photo management application.
  409. ◆ dingtalk : DingTalk desktop version based on electron.
  410. ◆ disass : A simple disassembly tool.
  411. ◆ discord : All-in-one voice and text chat for gamers.
  412. ◆ discord-qt-appimage : Discord client powered by Node.JS and Qt Widgets.
  413. ◆ dockstation : Developing with Docker has never been so easy and convenient.
  414. ◆ dokidokimodmanager : Mod Manager for Doki Doki Literature Club!
  415. ◆ dolphin-emu : GameCube/Nintento Wii emulator for PC with improvements.
  416. ◆ dopamine-preview : The audio player that keeps it simple.
  417. ◆ dosemu : Run DOS programs under linux.
  418. ◆ doublecmd-gtk : Two-panel file manager, also known as Double Commander.
  419. ◆ doublecmd-qt : Two-panel file manager, also known as Double Commander.
  420. ◆ downline : A cross-platform video and audio downloader.
  421. ◆ dragdrop : Small drag-and-drop file source for the command line.
  422. ◆ dragoman : GUI for polyglot.
  423. ◆ draw.io : draw.io desktop.
  424. ◆ drawpile : Drawing program to sketch on the same canvas simultaneously.
  425. ◆ drill : Search files without indexing, but clever crawling.
  426. ◆ droidcam : A DroidCam AppImage for the Steam Deck/SteamOS 3.0.
  427. ◆ dropbox : A free cloud service (Unofficial AppImage).
  428. ◆ droppoint : Drag content without having to open side-by-side windows.
  429. ◆ duckstation : PlayStation 1, aka PSX games Emulator.
  430. ◆ duf : Disk Usage/Free Utility, a better 'df' alternative.
  431. ◆ dukto : Easy and multi-platform file transfer tool.
  432. ◆ duskplayer : A minimal music player built on electron.
  433. ◆ dust3d : 3D modeling software for games, 3D printing, and so on.
  434. ◆ dvdisaster : Additional error protection for CD/DVD media.
  435. ◆ dwarf-fortress : The AppImage of lnp-forge built LinuxDwarfPack.
  436. ◆ dwyco-phoo : Dwyco Phoo Chat and Video Calling.
  437. ◆ e2-sat-editor : Satellite channel lists editor with tabbed nav.
  438. ◆ eaglemode : Zoomable user interface with plugin applications.
  439. ◆ easymercurial : A simple UI for the Mercurial version-control system.
  440. ◆ ecency-surfer : Rewarding communities built, owned and operated by its users.
  441. ◆ ecode : Lightweight code editor designed for modern hardware.
  442. ◆ edex-ui : A cross-platform, customizable science fiction terminal emulator.
  443. ◆ ehdev-shell : An electron based developing tool for feds.
  444. ◆ eka2l1 : A Symbian OS/N-Gage emulator
  445. ◆ eksplode.re : Bomberman game made with Godot under BSD3.
  446. ◆ elcalc : Cross-Platform calculator built with Electron.
  447. ◆ eldumper : A GB Cartridge Dumper.
  448. ◆ electorrent : A remote control Torrent client.
  449. ◆ electrocrud : No coding is required.
  450. ◆ electron-app-store : Simple App Store for Apps Built with Electron.
  451. ◆ electron-cash : Lightweight Bitcoin Cash Client.
  452. ◆ electron-mail : Unofficial ProtonMail Desktop App.
  453. ◆ electronreact-appimage : Desktop application using Electron and React.
  454. ◆ electron-react-boilerplate : A Foundation for Scalable Cross-Platform Apps.
  455. ◆ electron-ssr : Install electron-ssr from appimage.
  456. ◆ electron-utils : Electron Utils for every day usage as a dev.
  457. ◆ electron-wechat : Wechat desktop application.
  458. ◆ electronwmd-appimage : Upload music to NetMD MiniDisc devices.
  459. ◆ electron-xiami : Xiami Electron desktop application.
  460. ◆ electrumfair : Lightweight FairCoin Client.
  461. ◆ electrum : Lightweight Bitcoin Client.
  462. ◆ electrum-nmc : Lightweight Namecoin Client.
  463. ◆ electrum-ravencoin-appimage : Forked from the Electrum Bitcoin base client.
  464. ◆ element : A feature-rich client for Matrix.org.
  465. ◆ elementary-code : AppImage version of Elementary OS "Code" by Maksym Titenko.
  466. ◆ elements : App which displays the periodic table (Education, Science).
  467. ◆ elk : Native version of Elk, a nimble Mastodon web.
  468. ◆ ellas-war : Explore Ancient Greece on Ellas-War.
  469. ◆ elphyre-walletshell : Elphyrecoin GUI Wallet.
  470. ◆ elzabrowser : Elza incognito web browser.
  471. ◆ emacs : FOSS text editor for complete programming language (new AppImage).
  472. ◆ emacs-nox-daily : FOSS text editor for complete programming language.
  473. ◆ emacs-nox : FOSS text editor for complete programming language.
  474. ◆ emacs-pgtk-daily : FOSS text editor for complete programming language.
  475. ◆ emacs-pgtk : FOSS text editor for complete programming language.
  476. ◆ emacs-x11-daily : FOSS text editor for complete programming language.
  477. ◆ emacs-x11 : FOSS text editor for complete programming language.
  478. ◆ embedded-ide : Makefile based IDE for embedded systems.
  479. ◆ ember : Client for the WorldForge virtual world system (game).
  480. ◆ emoji-keyboard-appimage : Virtual keyboard-like emoji palette for Linux.
  481. ◆ emudeck : EmuDeck Desktop Electron Wrapper.
  482. ◆ emulationstation : A flexible emulator front-end supporting custom themes.
  483. ◆ en-croissant : The Ultimate Chess Toolkit.
  484. ◆ encryptpad : Secure text editor and binary encryptor with passwords.
  485. ◆ endless-sky : Space exploration and combat game.
  486. ◆ enoseannotator : View, annotate and store measurements of the eNose sensor.
  487. ◆ ente : Desktop app for ente.io.
  488. ◆ enve : Create 2D Animations.
  489. ◆ envkey : EnvKey’s cross-platform native app.
  490. ◆ eosvc : Application for management of self-employeed people.
  491. ◆ eplee : Sweet, simple epub reader.
  492. ◆ eqonomize : Manage your personal finances.
  493. ◆ erdesigner : ER Diagram tool available for ALL platforms.
  494. ◆ erscaffold : A code generator for websites.
  495. ◆ es-de : EmulationStation Desktop Edition.
  496. ◆ esearch : Screenshot OCR search translate search for picture paste...
  497. ◆ espanso : Cross-platform Text Expander written in Rust.
  498. ◆ espi-appimage : Software recreation of the SP-1200 drum machine.
  499. ◆ etcher : Flash OS images to SD cards and USB drives, safely and easily.
  500. ◆ eternal-lands : 3D fantasy multiplayer online role playing game.
  501. ◆ eternalmodmanager : A cross platform mod manager for DOOM Eternal.
  502. ◆ etherealengine-cc : App for managing Ethereal Engine cluster.
  503. ◆ eudic : Chinese app to learn english (listen statistics/note synch...).
  504. ◆ everinst : An installer for the Everest mod loader.
  505. ◆ evince : Document viewer for popular document formats.
  506. ◆ evoplex : Agent-based modeling.
  507. ◆ excel-parser-processor : Generates an array of items from the rows.
  508. ◆ exe-appimage : A Elearning XHTML/HTML5 editor.
  509. ◆ exeqt : Cross platform tray manager.
  510. ◆ exifcleaner : Clean exif metadata from images, videos, and PDFs.
  511. ◆ eximchain-wallet : Eximchain Wallet web and electron app.
  512. ◆ explorook : Rookout’s site addon to support local files and folders.
  513. ◆ exportoo : Read and search your exports.
  514. ◆ exsplode.re : A Bomberman game made with Godot under BSD3.
  515. ◆ extraterm : The swiss army chainsaw of terminal emulators.
  516. ◆ extrema : Data visualisation and analysis.
  517. ◆ extremetuxracer : 3D racing game with Tux, the Linux penguin.
  518. ◆ eyestalker : Video-based eye tracking using recursive estimation of pupil.
  519. ◆ f1mv-lights-integration : Connect your smart home lights to MultiViewer.
  520. ◆ fairshare : Simplifying the curation and sharing of biomedical research.
  521. ◆ fantasia-archive : A database manager for world building.
  522. ◆ farmhand : A resource management game that puts a farm in your hand.
  523. ◆ fastboot : Tool to flash Android devices (installer for "platform-tools").
  524. ◆ fastfetch : Like neofetch, but much faster because written mostly in C.
  525. ◆ fastqt : Control tool for high throughput genomics sequence data.
  526. ◆ fasttrack : Fast tracking of multiple objects.
  527. ◆ fat-wallet : Wallet for FAT tokens.
  528. ◆ fchat-appimage : The F-Chat 3.0 client.
  529. ◆ fchat-rising-appimage : A customized version of mainline F-Chat 3.0 client.
  530. ◆ f-crm : Customer Relations Management for Freelancers.
  531. ◆ fdc3-sail : Open implementation of the FDC3 standard using Electron.
  532. ◆ feather-wallet : Monero wallet for Linux, Tails, Windows and macOS.
  533. ◆ feebas : Screenshot comparison tool for identifying visual regressions.
  534. ◆ feedseries : Follow your series enthusiast news (french).
  535. ◆ feidao : Feidao Online Course Design Platform (chinese).
  536. ◆ feishin : Sonixd Rewrite, a desktop music player.
  537. ◆ ferdium : All your services in one place, built by the community.
  538. ◆ fflogs-uploader-appimage : FFLogs Uploader appimage.
  539. ◆ ff-password-exporter : Export your saved passwords from Firefox.
  540. ◆ ffwa-facebook : WebApp & Firefox Profile for Facebook.
  541. ◆ ffwa-github : WebApp & Firefox Profile for GitHub.
  542. ◆ ffwa-gmail : WebApp & Firefox Profile for Gmail.
  543. ◆ ffwa-netflix : WebApp & Firefox Profile for Netflix.
  544. ◆ ffwa-reddit : WebApp & Firefox Profile for Reddit.
  545. ◆ ffwa-twitter : WebApp & Firefox Profile for Twitter.
  546. ◆ ffwa-whatsapp : WebApp & Firefox Profile for WhatsApp.
  547. ◆ ffwa-wikipedia : WebApp & Firefox Profile for Wikipedia.
  548. ◆ ffwa-youtube : WebApp & Firefox Profile for YouTube.
  549. ◆ ficus : A software for editing and managing markdown documents.
  550. ◆ fidias-database-migration-app : Migrate SQL-based databases.
  551. ◆ fiery-maui : Web browser with integrated ad-blocker and split views.
  552. ◆ fifo : A modern web browser, built on top of modern web technologies.
  553. ◆ figma-linux : First interface design tool based in the browser (graphics).
  554. ◆ file-converter : Convert between various file formats.
  555. ◆ filelight : View disk usage information (installs "kdeutils").
  556. ◆ filen : Desktop client for Filen.io, end-to-end encrypted cloud storage.
  557. ◆ file-to-c : Tool for generating a C header from a spir-v binary file.
  558. ◆ filezilla : The free FTP solution with support for FTP over TLS and SFTP.
  559. ◆ filmulator-gui : Simplified raw editing with the power of film (graphics).
  560. ◆ firedragon : Web Browser fork of Librewolf (Firefox) from Garuda Linux.
  561. ◆ firefly-desktop : The official IOTA and Shimmer wallet.
  562. ◆ firefox-appimage : Unofficial AppImage of the Web Browser (Stable).
  563. ◆ firefox-beta-appimage : Unofficial AppImage of the Web Browser (Beta).
  564. ◆ firefox-beta : Fast, powerful and extensible Web Browser (Beta Edition).
  565. ◆ firefox-devedition-appimage : Unofficial AppImage of the Web Browser (Dev).
  566. ◆ firefox-dev : Fast, powerful and extensible Web Browser (Developer Edition).
  567. ◆ firefox-esr-appimage : Unofficial AppImage of the Web Browser (ESR).
  568. ◆ firefox-esr : Fast, powerful and extensible Web Browser (ESR Edition).
  569. ◆ firefox : Fast, powerful and extensible Web Browser (Stable).
  570. ◆ firefox-nightly-appimage : Unofficial AppImage of the Web Browser (Nightly).
  571. ◆ firefox-nightly : Fast, powerful and extensible Web Browser (Nightly Edition).
  572. ◆ firetail : An open source music player.
  573. ◆ firetv-toolkit : Android-Toolkit, a GUI for adb, modify android devices.
  574. ◆ fish : AppImage for `fish` shell.
  575. ◆ fishing-funds : Fund, big market, stock, virtual currency status (in chinese).
  576. ◆ flacon : Audio File Encoder. Extracts audio tracks from audio CDs.
  577. ◆ flameshot : Tool to take screenshots with many built-in features (graphics).
  578. ◆ flare : Fantasy action RPG game using the FLARE engine.
  579. ◆ flawesome : Flawesome is a modern productivity tool.
  580. ◆ flb : A beautiful Feature Rich Music Player and Downloader,cross platform.
  581. ◆ flexvdi-client-appimage : Client for connecting to flexVDI desktops.
  582. ◆ flightgear-airports : A software to design Flightgear groundnets.
  583. ◆ flightgear : Free, open source flight simulator developed since 1997.
  584. ◆ flippy-qualitative-testbench : Music sheet reader.
  585. ◆ floorp : Floorp Browser, the most Advanced and Fastest Firefox derivative.
  586. ◆ fluent-reader : Modern desktop RSS reader.
  587. ◆ flycast : A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator.
  588. ◆ fmradio : Cross platform FM Radio App for RTL2832U dongles.
  589. ◆ fms-file-explorer : Access and exploration of data produced.
  590. ◆ focalizzare : A Timer for Pomodoro Technique.
  591. ◆ focusatwill-appimage : Combines neuroscience and music to boost productivity.
  592. ◆ focuswriter : Simple fullscreen word processor.
  593. ◆ fontbase : A lightning fast, beautiful and free font manager for designers.
  594. ◆ fontforge : Free (libre) font editor for Windows, Mac OS X and GNU+Linux.
  595. ◆ fontlet : A package manager for fonts.
  596. ◆ foobar2000 : An advanced freeware audio player for Windows (includes WINE).
  597. ◆ four : Electron App to access All4/Channel4 (UK).
  598. ◆ foxfolio : Cryptocurrency portfolio management application.
  599. ◆ fpm : Faster Project Plus on Linux.
  600. ◆ fractale : 2D modeling of the Von Koch fractal.
  601. ◆ fraidycat : Follow blogs, wikis, YouTube, Twitter, Reddit, Instagram and more.
  602. ◆ fraktal : Podcast Manager in Electron.
  603. ◆ frame-eth-dev-appimage : A privacy focused Ethereum wallet.
  604. ◆ francetv : The france.tv site in an application.
  605. ◆ franz : Messaging app for WhatsApp, Slack, Telegram, HipChat and much more.
  606. ◆ frappebooks : Book-keeping software for small-businesses and freelancers.
  607. ◆ freac : fre:ac, free audio converter and CD ripper for various encoders.
  608. ◆ freecad-assembly3 : Assembly3 workbench for FreeCAD.
  609. ◆ freecad : Free and open source AutoCAD alternative.
  610. ◆ freeman : A free, extensible, cross-platform file manager for power users.
  611. ◆ freetexturepacker : Creates sprite sheets for you game or site (graphics).
  612. ◆ freetube : An Open Source YouTube app for privacy.
  613. ◆ freezer-appimage : An unofficial client for Deezer.
  614. ◆ friture : Real-time audio visualizations (spectrum, spectrogram, etc.).
  615. ◆ fromscratch : Simple autosaving scratchpad.
  616. ◆ fspy : An open source, cross platform app for still image camera matching.
  617. ◆ fukayo : Manga reader.
  618. ◆ gaiasky : Gaia Sky, a real-time 3D space simulator & astronomy visualisation.
  619. ◆ galacteek : IPFS Multi-platform browser for the distributed web.
  620. ◆ gallery-dl : Command-line program to download image galleries and collections.
  621. ◆ gamehub : Unified library for all your games from different platforms.
  622. ◆ gameimage : Pack a runner/emulator/game and it's configs in a single AppImage.
  623. ◆ gams-studio : Development environment of General Algebraic Modeling System.
  624. ◆ ganache : Personal Blockchain for Ethereum (latest AppImage for Linux).
  625. ◆ gaphor : A UML and SysML modeling application written in Python.
  626. ◆ gargoyle-bin : Interactive Fiction multi-int. for all major IF formats.
  627. ◆ gdesktopsuite : Google Suite as a desktop app, made possible with Electron.
  628. ◆ gdevelop : Cross-platform game engine designed to be used by everyone.
  629. ◆ gdlauncher-appimage : Simple, yet powerful Minecraft custom launcher.
  630. ◆ gdm-settings : A settings app for GNOME's Login Manager, GDM.
  631. ◆ gedit : The popular GNOME text editor Gedit.
  632. ◆ geeqie : Claiming to be the best image viewer / photo collection browser.
  633. ◆ geforcenow-electron : Desktop client for Nvidia GeForce NOW game streaming.
  634. ◆ gemalaya : A keyboard-driven Gemini browser written in QML.
  635. ◆ genesis : Open source blockchain platform.
  636. ◆ geofs : GeoFS flight sim as a desktop application.
  637. ◆ geometrize : Images to shapes converter (graphics).
  638. ◆ gerbv : Gerber file viewer for PCB design.
  639. ◆ getthermal : Cross-platform Thermal Camera Viewer.
  640. ◆ gextractwinicons : Extract cursors, icons and images from MS Windows files.
  641. ◆ giada : Hardcore audio music production tool and drum machine for DJs.
  642. ◆ gibs : Generally In-source Build System, build C++ projects without a project.
  643. ◆ gifcurry : The open-source, Haskell-built video editor for GIF makers.
  644. ◆ gimp-aferrero2707 : GNU Image Manipulation Program (version 2.10.25).
  645. ◆ gimp-dev : Cross-platform image and photo editor (Developer Edition).
  646. ◆ gimp-git : Cross-platform image and photo editor (built from GIT).
  647. ◆ gimp : GNU Image Manipulation Program, cross-platform image and photo editor.
  648. ◆ gimp-hybrid : GIMP including third-party plugins and python2 support.
  649. ◆ gingko : Gingko client rewritten in Elm.
  650. ◆ git-good : Just a simple git client using electron and nodegit.
  651. ◆ githoard : Hoard git repositories with ease.
  652. ◆ github-desktop : Electron-based GitHub app.
  653. ◆ gitify : GitHub notifications on your menu bar.
  654. ◆ gitjournal : Mobile first Note Taking integrated with Git.
  655. ◆ gitkraken : GitKraken Client including an intuitive GUI & powerful CLI.
  656. ◆ gitnote : A modern note taking app based on GIT.
  657. ◆ gitqlient : Multi-platform Git client written with Qt.
  658. ◆ glabels : Create labels, business cards and media covers.
  659. ◆ glaxnimate : A simple and fast vector graphics animation program.
  660. ◆ gltf-insight : C++11 based glTF 2.0 data insight tool.
  661. ◆ glulxe : AppImage of the glulxe interactive fiction interpreter.
  662. ◆ gl-warp2mp4 : Utility to pre-warp a movie similar to TGAWarp.
  663. ◆ glyphr-studio-desktop : Professional font design programs.
  664. ◆ gmail-desktop : Nifty Gmail desktop app for macOS, Linux & Windows.
  665. ◆ gmappimager : Graphically Converts GameMaker Studio 2 Linux Games to AppImage.
  666. ◆ gm-companion : A tool for rpg gamemasters.
  667. ◆ gnome-calculator : Perform arithmetic, scientific or financial calculations.
  668. ◆ gnome-system-monitor3 : Version 3.38.0 (for all those who hate GNOME4+ UIs).
  669. ◆ gnome-tweaks : Experimental AppImage port of advanced GNOME 3 settings GUI.
  670. ◆ gnumeric : An open-source spreadsheet program.
  671. ◆ godot : Multi-platform 2D and 3D game engine with a feature-rich editor.
  672. ◆ goldencheetah : Cycling Power Analysis Software.
  673. ◆ goldendict : A feature-rich dictionary lookup program.
  674. ◆ goldendict-ng : The Next Generation GoldenDict.
  675. ◆ gooboxfileshare : Goobox File Share App.
  676. ◆ goofcord : Take control of your Discord experience with GoofCord.
  677. ◆ google-chrome-beta : Web Browser (Beta version, Unofficial AppImage).
  678. ◆ google-chrome-dev : Web Browser (Unstable version, Unofficial AppImage).
  679. ◆ google-chrome : Web Browser (Stable version, Unofficial AppImage).
  680. ◆ google-docs : Google Docs Desktop App made with electron.
  681. ◆ google-tasks-desktop : Unofficial client.
  682. ◆ gospel : Poppler based fast pdf viewer written in PyQt5.
  683. ◆ gpgfrontend : A Cross-Platform OpenPGP Frontend Software.
  684. ◆ gpredict : A satellite tracking application.
  685. ◆ gpt-anywhere : Use GPT anywhere with just one shortcut.
  686. ◆ gptfusion-appimage : GPT Aggregation Ed. (in chinese), supports POE, and more.
  687. ◆ gpupad : A flexible GLSL shader editor and IDE.
  688. ◆ gqrx : Software defined radio receiver (SDR).
  689. ◆ gradestats : Import xls spredsheets, store/analyze student grade.
  690. ◆ granatier : Bomberman clone (installs "kdegames").
  691. ◆ graphql-playground : GraphQL IDE for better development workflows.
  692. ◆ graviton : A simple code editor.
  693. ◆ greenlight : Client for xCloud and Xbox home streaming made in Typescript.
  694. ◆ gridcoin-research : A POS-based cryptocurrency.
  695. ◆ gridea : A static blog writing client (一个静态博客写作客户端).
  696. ◆ gridplayer : Play videos side-by-side.
  697. ◆ gridsync : Synchronize local directories with Tahoe-LAFS storage grids.
  698. ◆ grinplusplus : A C++ Grin Node & Wallet.
  699. ◆ groot : Graphical Editor to create BehaviorTrees.
  700. ◆ grx : Fastest Web Gerber Renderer.
  701. ◆ gsequencer : Tree based audio processing engine.
  702. ◆ gsubs : Finds you the perfect subtitle match.
  703. ◆ guarda-appimage : A secure, easy-to-use cryptocurrency wallet.
  704. ◆ guglielmo : A FM, DAB/DAB+ decoder using Qt and C++.
  705. ◆ guiscrcpy : GUI integration for android screen mirroring system.
  706. ◆ guitar : Graphical git client.
  707. ◆ gum : A tool for glamorous shell scripts.
  708. ◆ gvim : Edit text files.
  709. ◆ gxc-smart-contract-ide : Gxchain smart contract IDE alpha.
  710. ◆ gyroflow-appimage : Video stabilization using gyroscope data.
  711. ◆ hades-emu : A Nintendo Game Boy Advance Emulator.
  712. ◆ hamsket : Free and Open Source messaging and emailing app.
  713. ◆ handbrake : An open-source multiplatform video transcoder.
  714. ◆ hapee : Best cross-platform downloader ever.
  715. ◆ hastyheroes : An endless 2D jumping game.
  716. ◆ hdrmerge : Merge several raw images into a single DNG raw image.
  717. ◆ heat1d : UI for testing the soilFluxex3D library (CRITERIA1D).
  718. ◆ heimer : Simple cross-platform mind map, diagram, and note-taking tool.
  719. ◆ helio : One music sequencer for all major platforms, desktop and mobile.
  720. ◆ helioslauncher : Custom launcher for modded minecraft written in Electron.
  721. ◆ helix : A post-modern modal text editor.
  722. ◆ hermesmessenger : Desktop client version for Hermes Messenger.
  723. ◆ hero-display : App for display on HERO robot.
  724. ◆ heroic-games-launcher : A Native GOG and Epic Games Launcher for Linux.
  725. ◆ hexinator : Hex editor for reverse engineering & binary file analysis.
  726. ◆ hexoclient : A cross-platform hexo client, build on electron.
  727. ◆ hexoeditor : Markdown editor for Hexo built with Electron.
  728. ◆ hiddify-next : Auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria.
  729. ◆ hidpi-fixer : Fractional scaling configuration on X11 desktops.
  730. ◆ hoptodesk : Allows users to share their screens and remotely control access.
  731. ◆ hotspot : The Linux perf GUI for performance analysis.
  732. ◆ houdoku : Manga reader and library manager for the desktop.
  733. ◆ hpack : A fine tool to convert any data into C header.
  734. ◆ hsinstall : Pack a haskell project into a deployable directory structure.
  735. ◆ htop : A CLI utility to monitor system resources (Unofficial AppImage).
  736. ◆ htmldoc : HTML & Markdown Conversion Software to output PostScript and PDF.
  737. ◆ httpie-desktop-appimage : HTTPie for Desktop.
  738. ◆ hugin : Stitch photographs together.
  739. ◆ hugor : A cross-platform, multimedia interpreter for Hugo adventure games.
  740. ◆ huwinterpreter : HuwCode interpreter.
  741. ◆ hw-probe : Probe for hardware and upload result to the Linux hdw database.
  742. ◆ hydrogen-music : The advanced drum machine for Linux, macOS, and Windows.
  743. ◆ hyper : A terminal built on web technologies.
  744. ◆ hyperdex : BarterDEX desktop app.
  745. ◆ hyperfine : A command-line benchmarking tool.
  746. ◆ hyperionide : Hyperion IDE for JIRA.
  747. ◆ hyperkeys : Unleash you keyboard shorcuts.
  748. ◆ hyperspace : A fluffy client for Mastodon in React.
  749. ◆ hypertrader : Trade like a PRO, robust tools to monitor your accounts.
  750. ◆ iagoncloudapp : Iagon Cloud Application.
  751. ◆ ibus-rime : Zhongzhou Yun input method (ibus-rime) in AppImage format.
  752. ◆ icalingua++ : A client for QQ and more.
  753. ◆ icedrive-appimage : The next generation of cloud storage.
  754. ◆ icestudio-appimage : A real gamechanger in the world of Open Source FPGAs.
  755. ◆ ideamaker : 3D slicing software, automatically generates support structure.
  756. ◆ igdm : Desktop application for Instagram DMs.
  757. ◆ imagemagick-clang : CLI to create, edit, compose, or convert digital images.
  758. ◆ imagemagick-gcc : CLI to create, edit, compose, or convert digital images.
  759. ◆ imagemosaicwall : Create an image based on a bunch of other images.
  760. ◆ imageplay : A rapid prototyping app for image processing.
  761. ◆ imagine : PNG/JPEG optimization.
  762. ◆ imapsyncclient : An electron-vue project.
  763. ◆ imgbrd-grabber-appimage : Very customizable imageboard/booru downloader.
  764. ◆ imhex : A Hex Editor for Reverse Engineers and Programmers.
  765. ◆ impact : Music Management and Playback.
  766. ◆ impposter : Post to my own development blog.
  767. ◆ inboxer : Simple client for Google Inbox.
  768. ◆ index-maui : Browse your system files and preview your multimedia.
  769. ◆ infection-monkey : An automated penetration test tool (security).
  770. ◆ infinitex : Editor for academics with cryptography.
  771. ◆ infra-appimage : Infra App for Linux.
  772. ◆ inkscape-next : Vector-based drawing program (SVG, PDF, AutoCAD...), Unstable.
  773. ◆ inkscape : Vector-based drawing program (SVG, PDF, AutoCAD...), Stable.
  774. ◆ insight : The GUI front-end of GDB with Tcl/Tk.
  775. ◆ insomnia : API client for GraphQL, REST, WebSockets and gRPC.
  776. ◆ insomnium : A local API testing tool privacy-focused (fork of Kong/insomnia).
  777. ◆ instead : Simple Text Adventures Interpreter.
  778. ◆ intiface : Desktop Intiface Application.
  779. ◆ invoice-generator : Invoice Generator in Electron.
  780. ◆ iota1k : IOTA based messenging app.
  781. ◆ ipfs-desktop : An unobtrusive and user-friendly app for IPFS on Linux.
  782. ◆ iptvnator : IPTV player application.
  783. ◆ ipuissance-4d : Connect Four video game with a 3-Dimentional rendering.
  784. ◆ iqpuzzle : A diverting I.Q. challenging pentomino puzzle.
  785. ◆ irccloud-desktop : IRCCloud Desktop Client.
  786. ◆ irscrutinizer : Capture/generate/analyze/import/export infrared signals.
  787. ◆ isle-editor : Editor for Integrated Statistics Learning Environment lessons.
  788. ◆ isolate : Lightweight image browser.
  789. ◆ itusb1-manager : Control the ITUSB1 USB Test Switch.
  790. ◆ jag : Program for telemetry veiwing.
  791. ◆ james : HTTP/HTTPS proxy built in Electron and React.
  792. ◆ jan : FOSS Alternative to ChatGPT that runs 100% offline on your computer.
  793. ◆ jazz2 : Open-source reimplementation of Jazz Jackrabbit 2.
  794. ◆ jellyamp-appimage : A client for listening to music from a Jellyfin server.
  795. ◆ jetbrains-toolbox : Essential tools for software developers and teams.
  796. ◆ jexiftoolgui : Java/Swing graphical frontend for ExifTool.
  797. ◆ jfcord : An Jellyfin rich presence client for Discord.
  798. ◆ jgrasp : An IDE with Visualizations for Improving Software Comprehensibility.
  799. ◆ jimud : MUD client for ShadowMUD.com, based on webclient.
  800. ◆ jira-timer : Menubar app for JIRA time logging.
  801. ◆ jitsi-meet : Jitsi Meet Desktop App.
  802. ◆ jklubtv : Chess Round Robin Tournament Manager.
  803. ◆ jmbde : Application to collect data in a company.
  804. ◆ joaldesktop : Electron application boilerplate.
  805. ◆ join-desktop : A companion app for the Join website.
  806. ◆ joplin-beta : A cross-platform note taking and to-do app.
  807. ◆ joplin : Note and to-do application with synchronization capabilities.
  808. ◆ joy2droidx : Turn Android phones into virtual Xbox 360 controller.
  809. ◆ jq : jq is a lightweight and flexible command-line JSON processor.
  810. ◆ jreleaser : The quick way to release your project.
  811. ◆ jrom-manager : A Rom Manager entirely written in Java and released under GPL-2.
  812. ◆ jscad-desktop : Jscad desktop application.
  813. ◆ js-design : A professional UI design software tailored for Chinese designers.
  814. ◆ juggernaut : Decentralized messaging and payments.
  815. ◆ julius : An open source re-implementation of the Caesar III game.
  816. ◆ jumpfm : A file manager that lets you jump.
  817. ◆ junest : Arch Linux based distro that runs rootless on any other Linux distro.
  818. ◆ kade : A desktop application for Q Methodology.
  819. ◆ kage : GUI for Metasploit Meterpreter and Session Handler.
  820. ◆ kaidan : A QtQuick Jabber client.
  821. ◆ kanon : Maturita GPJP designed for use with kanon web app.
  822. ◆ kapman : Pac-Man clone (installs "kdegames").
  823. ◆ kate : A multi-document editor part of KDE.
  824. ◆ katomic : Edu. game based around molecular geometry (installs "kdegames").
  825. ◆ kawanime : Desktop app for anime fans.
  826. ◆ kblackbox : A game of hide and seek (installs "kdegames").
  827. ◆ kblocks : Classic Tetris / falling blocks game (installs "kdegames").
  828. ◆ kbounce : Fill the field game (installs "kdegames").
  829. ◆ kbreakout : Destroy bricks without losing the ball (installs "kdegames").
  830. ◆ kcalc : Scientific Calculator (installs "kdeutils").
  831. ◆ kcharselect : Character Selector (installs "kdeutils").
  832. ◆ kcov : An AppImage of Kcov code coverage tool.
  833. ◆ kdegames : Full & updatable KDE Games suite from Debian Stable (metapackage).
  834. ◆ kdenlive : A powerful Video Editor provided by KDE.
  835. ◆ kdeutils : Full & updatable KDE Utils suite from Debian Stable (metapackage).
  836. ◆ kdf : View Disk Usage (installs "kdeutils").
  837. ◆ kdiamond : Diamond game (installs "kdegames").
  838. ◆ kdiskmark : A simple open-source disk benchmark tool for Linux distros.
  839. ◆ keepassxc : Port of the Windows application “Keepass Password Safe”.
  840. ◆ keeweb : Free cross-platform password manager compatible with KeePass.
  841. ◆ keibo-moneytracker-x86-64 : Track your income and expenses easily.
  842. ◆ kettleclient : Client for Kettle REST service.
  843. ◆ kevedit : ZZT Editor.
  844. ◆ keyboardclient : Keyboard Settings Client.
  845. ◆ keymanager : One-stop certificate app and certificate key management.
  846. ◆ keyrier-json : A CLI/library/webapp to perfom SQL queries on JSON & CSV.
  847. ◆ keys : Key management, signing and encryption.
  848. ◆ kfourinline : 4 in row game (installs "kdegames").
  849. ◆ kgoldrunner : A game with a runner and gold (installs "kdegames").
  850. ◆ kgpg : A GnuPG frontend (installs "kdeutils").
  851. ◆ kicad : Electronic Design Automation suite.
  852. ◆ kigo : Go strategic board game for two players (installs "kdegames").
  853. ◆ kiibohd-configurator : Configuration utility for Input Club keyboards.
  854. ◆ killbots : Port of the classic console game Robots (installs "kdegames").
  855. ◆ kimitzu-client : Kimitzu Client.
  856. ◆ kiriki : A dice game (installs "kdegames").
  857. ◆ kitupiikki : Bookkeeping software for small organizations.
  858. ◆ kjumpingcube : A game of dices on a board (installs "kdegames").
  859. ◆ klickety : Color matching like SameGame (installs "kdegames").
  860. ◆ klines : Inspired by well known game of Color Lines (installs "kdegames").
  861. ◆ klogg : A smart interactive log explorer.
  862. ◆ kmahjongg : Mahjongg game (installs "kdegames").
  863. ◆ kmines : Classic mine game (installs "kdegames").
  864. ◆ knavalbattle : Battle Ship game (installs "kdegames").
  865. ◆ knetwalk : Net constructing game (installs "kdegames").
  866. ◆ knights : Chess interface for the KDE Platform (installs "kdegames").
  867. ◆ knowledge : Save/search/access/explore all your favorite websites and files.
  868. ◆ knowte : Note taking.
  869. ◆ koishi-desktop : Launch Koishi from your desktop.
  870. ◆ kolf : Mini Golf game (installs "kdegames").
  871. ◆ kollision : Dodge red balls in the field (installs "kdegames").
  872. ◆ konquest : Game of planets (installs "kdegames").
  873. ◆ koodo-reader : Modern ebook manager and reader with sync & backup capacities.
  874. ◆ kopia : Cross-platform backup tool for Windows, macOS & Linux.
  875. ◆ koreader : A document viewer.
  876. ◆ kpat : Klondike, Spider, Free Cell and other Solitaire (installs "kdegames").
  877. ◆ kreversi : Reversi game (installs "kdegames").
  878. ◆ krita : A professional FREE and open source painting program (graphics).
  879. ◆ krita-devel : A professional FREE open source painting program (dev-edition).
  880. ◆ kshisen : A game similar to Mahjongg (installs "kdegames").
  881. ◆ ksirk : A strategy board game (installs "kdegames").
  882. ◆ ksnakeduel : A snake race game (installs "kdegames").
  883. ◆ ksnip : Screenshot tool inspired by Windows Snipping Tool and made with Qt.
  884. ◆ kspaceduel : Battleship with satellites in the space (installs "kdegames").
  885. ◆ ksquares : Win with most number of completed squares (installs "kdegames").
  886. ◆ ksudoku : Sudoku game (installs "kdegames").
  887. ◆ ktimer : Countdown Launcher (installs "kdeutils").
  888. ◆ ktuberling : Simple Mr. Potato game for children (installs "kdegames").
  889. ◆ kubeman-appimage : The Hero that Kubernetes deserves.
  890. ◆ kubenav : The navigator for your Kubernetes clusters right in your pocket.
  891. ◆ kubrick : A logic game based on Rubik's Cube (installs "kdegames").
  892. ◆ kuro : An elegant Microsoft ToDo desktop client for Linux (a fork of Ao).
  893. ◆ kwalletmanager5 : Wallet management tool (installs "kdeutils").
  894. ◆ kwave : A sound & audio editor designed for the KDE Desktop Environment.
  895. ◆ lagrange : A Beautiful Gemini Client.
  896. ◆ laigter : Tool to generate normal/specular/occlussion/parallax 2D maps.
  897. ◆ lambda-lantern : A 3D game about functional programming patterns.
  898. ◆ landrop : Drop any files to any devices on your LAN.
  899. ◆ langly : Manage Laravel json language files.
  900. ◆ lanshare : LAN file transfer app for any kind and size of files and folders.
  901. ◆ laravel-kit : Easy Laravel application management.
  902. ◆ launcher : Generic application's launcher.
  903. ◆ lbry-desktop : A browser and wallet for LBRY.
  904. ◆ lcedit : Editor (unknown).
  905. ◆ ldtk : Modern and efficient 2D level editor.
  906. ◆ ldview : LDraw Model Viewer.
  907. ◆ leapp : The DevTool to access your cloud.
  908. ◆ led.custom.palette : Design the lights on your Model01 with an ease.
  909. ◆ ledger-live-desktop : Wallet desktop app for multiple cryptocurrencies.
  910. ◆ left : Distractionless Writing Tool.
  911. ◆ legendary-kingdoms : Implementation of Legendary Kingdoms Gamebooks in C++.
  912. ◆ lemon : A tiny judging environment for OI contest based on Project_LemonPlus.
  913. ◆ lens : App you need to take control of your Kubernetes clusters.
  914. ◆ leocad : Create virtual LEGO models.
  915. ◆ leonflix : Multi-platform desktop application for watching movies & TV shows.
  916. ◆ lepton : Democratizing Code Snippets Management (macOS/Win/Linux).
  917. ◆ lescovex : Lescovex decentralized exchange, wallet and contract issuer.
  918. ◆ levior : Converts web pages on-the-fly to the gemtext format.
  919. ◆ libassist : Library Assistant.
  920. ◆ libertem : Pixelated scanning transmission electron microscopy.
  921. ◆ librecad : 2D CAD program written in C++11 using the Qt framework.
  922. ◆ libreoffice : Free and open source Office suite (choose a version).
  923. ◆ libreoffice-fresh-full-help : Office suite (includes manuals).
  924. ◆ libreoffice-fresh-full : Office suite (latest, includes all languages).
  925. ◆ libreoffice-fresh-standard-help : Office suite (includes manuals).
  926. ◆ libreoffice-fresh-standard : Office suite (latest, european languages only).
  927. ◆ libreoffice-still-full-help : Office suite (includes manuals).
  928. ◆ libreoffice-still-full : Office suite (stable, includes all languages).
  929. ◆ libreoffice-still-standard-help : Office suite (includes manuals).
  930. ◆ libreoffice-still-standard : Office suite (stable, european languages only).
  931. ◆ librepcb : Design Schematics and PCBs.
  932. ◆ libresprite : Animated sprite editor & pixel art tool.
  933. ◆ librewolf : Firefox-based Web Browser focused on privacy, security, freedom.
  934. ◆ lightning : Lightning Wallet Application.
  935. ◆ lightning-peach-wallet : Wallet for lightning network
  936. ◆ liground : A mordern Chess Variant Analysis GUI (game).
  937. ◆ liketaskmanager : Process/performances monitor (CPU, RAM, Disks and Network).
  938. ◆ lime3ds : Nintendo 3DS emulator, continuation of citra.
  939. ◆ linedancer : Arcade game and entry for Ludum Dare 35.
  940. ◆ linked : Daily journaling without distraction.
  941. ◆ linphone : A libre SIP client.
  942. ◆ linuxdeployqt : Convert a linux program to an AppDir or an AppImage.
  943. ◆ linux-intel-undervolt-gui : Undervolting GUI for Intel Linux Systems.
  944. ◆ linuxqq : New Linux QQ based on Electron.
  945. ◆ linwood-butterfly : Powerful, minimalistic, cross-platform, note-taking app.
  946. ◆ lisk-desktop : Lisk graphical user interface for desktop.
  947. ◆ listen1-desktop-appimage : One for all free music in China.
  948. ◆ liteide : LiteIDE is a simple, open source, cross-platform Go IDE.
  949. ◆ lite-xl : A lightweight text editor written in Lua.
  950. ◆ liveme-pro-tools : Browse, search and manage accounts, replays and more.
  951. ◆ lmms : FL Studio® alternative that allows you to produce music with the PC.
  952. ◆ lmstudio : Experimenting with local and open-source Large Language Models.
  953. ◆ local-browser : Share your localhost in a unique way.
  954. ◆ localsend : An open source cross-platform alternative to AirDrop
  955. ◆ loginized : Loginized Gnome GDM Login Theme Manager.
  956. ◆ logseq : A privacy-first platform for knowledge management and collaboration.
  957. ◆ loopauditioneer : Software for loop and cue handling in .wav files.
  958. ◆ losslesscut : The swiss army knife of lossless video/audio editing.
  959. ◆ lovelive : A LoveLiver Music Player.
  960. ◆ love : The unquestionably awesome 2D game engine.
  961. ◆ lpub3d : An LDraw Building Instruction Editor.
  962. ◆ lskat : Fun and engaging card game for two players (installs "kdegames").
  963. ◆ lumi : A tool to create and display interactive content with H5P.
  964. ◆ luminance-hdr : Create and tonemap HDR images.
  965. ◆ luna : Manage npm dependencies through a modern UI.
  966. ◆ lunar-client : Free Minecraft Client, a modpack for all versions of Minecraft.
  967. ◆ lunatask : All-in-one encrypted to-do list, notebook, habit and mood tracker.
  968. ◆ lunyr : Ethereum-based Encyclopedia.
  969. ◆ lux : A free open source image and panorama viewer.
  970. ◆ lx-music-desktop-appimage : 一个基于electron的音乐软件.
  971. ◆ lxtask : A lightweight and desktop-independent task manager.
  972. ◆ magento2-upgrade-gui : Magento 2 Upgrade GUI.
  973. ◆ magicfountain : A novel and screenwriting program.
  974. ◆ makagiga : To-do manager, notepad, RSS reader and much more.
  975. ◆ makoureactor : Can edit field from Final Fantasy VII (PS & PC).
  976. ◆ malice : GUI Programming Tool for iCE40.
  977. ◆ manager-io : Free Accounting Software for Linux (Server).
  978. ◆ mandelbulber2 : Explore trigonometric, hyper-complex and other 3D fractals.
  979. ◆ mangayomi : Application for reading manga and watching anime.
  980. ◆ mangbandclient : A free online multi-player realtime roguelike game.
  981. ◆ manta : Flexible invoicing app with beautiful & customizable templates.
  982. ◆ mapeo : Local-first mapping and monitoring in remote environments.
  983. ◆ mapollage : Photo kml generator for Google Earth.
  984. ◆ mapton : Some kind of map application.
  985. ◆ markman : A markdown editor.
  986. ◆ mark-mind : Multiplatform mind map and outliner editor with markdown support.
  987. ◆ marktext : A simple and elegant markdown editor multiplatform.
  988. ◆ marlin-conf : Configuration tool for Marlin project.
  989. ◆ martian : Websocket testing tool.
  990. ◆ marvin : Open Source record and playback test automation for the web.
  991. ◆ mastervyrn : MasterVyrn is a clean dedicated GBF loader.
  992. ◆ mate-system-monitor : Process viewer and system resource monitor (from MATE).
  993. ◆ mattermost-desktop : Secure collaboration across entire software development.
  994. ◆ mayo : 3D CAD viewer and converter based on Qt + OpenCascade.
  995. ◆ mazesolver : A tool which shows how different algorithms solves mazes.
  996. ◆ mbcord-appimage : An Emby/Jellyfin rich presence client for Discord.
  997. ◆ mcpodcast : Electron app for tasks around Podcast mp3 files.
  998. ◆ m : Data oriented programming language for game developers.
  999. ◆ mdl : MDL wallet.
  1000. ◆ mdview : Application that renders and displays Markdown files.
  1001. ◆ mechvibes : Play mechanical keyboard sounds as you type.
  1002. ◆ mediachips : Manage your videos, add any metadata to them and play them.
  1003. ◆ media-dupes : Content duplicator for common media services like YouTube.
  1004. ◆ mediaelch : Media Manager for Kodi.
  1005. ◆ mediainfo : Supplies technical & tag information about a video or audio file.
  1006. ◆ media-mate : A full media server/player/downloader/etc all in one.
  1007. ◆ median-xl-launcher-appimage : Launcher for Median XL mod, Diablo II overhaul.
  1008. ◆ mediathekview : Searches the online media libraries of various broadcasters.
  1009. ◆ mellowplayer : Cloud music integration for your desktop.
  1010. ◆ melodie : Simple-as-pie music player.
  1011. ◆ memento : A video player for studying Japanese.
  1012. ◆ memocast : Yet another elegant Wiz Note Client.
  1013. ◆ mendeley : Search over 100 million cross-publisher articles and counting.
  1014. ◆ meow-sql : An attempt to port HeidiSQL to C++/Qt (Linux/Windows).
  1015. ◆ mercury-avx2 : Firefox fork, with compiler optim. and patches from Librewolf.
  1016. ◆ mercury : Firefox fork with compiler optimizations and patches from Librewolf.
  1017. ◆ mercury-sse3 : Firefox fork with compiler optim. and patches from Librewolf.
  1018. ◆ mercury-sse4 : Firefox fork with compiler optim. and patches from Librewolf.
  1019. ◆ meshlab : Processor and editor of large 3D triangular meshes.
  1020. ◆ meshmill : The world's greatest open source 3D CAM software (maybe one day).
  1021. ◆ meta-grabber : A tool to grab metadata for tv shows and rename files on PC.
  1022. ◆ mgba : Game Boy Advance Emulator.
  1023. ◆ micropad : µPad is an open digital note taking app.
  1024. ◆ microsoft-edge-beta : Web Browser provided by Microsoft (Beta Edition).
  1025. ◆ microsoft-edge-dev : Web Browser provided by Microsoft (Developer Edition).
  1026. ◆ microsoft-edge : Web Browser provided by Microsoft (Stable Edition).
  1027. ◆ miesimulatorgui : MieSimulatorGUI by Virtual Photonics.
  1028. ◆ mightymike : Pangea Software's Mighty Mike (Power Pete) for modern systems.
  1029. ◆ milkytracker : An FT2 compatible music tracker.
  1030. ◆ mindmapp : Electron application to draw mind maps.
  1031. ◆ minecraft-launcher : Game downloader and launcher for Minecraft.
  1032. ◆ minetest : Multiplayer infinite-world block sandbox.
  1033. ◆ minetime : Smart scheduling assistant.
  1034. ◆ mini-diary : Simple and secure journal app.
  1035. ◆ minififa : OpenGL-powered third-person football (soccer) game.
  1036. ◆ minimal-podcasts-player : Subscribe, listen and download your podcasts.
  1037. ◆ minions : A productive tool inspired by LaunchBar in macOS.
  1038. ◆ mini-qml : Minimal Qt deployment for Linux, Windows, macOS and WebAssembly.
  1039. ◆ minizinc-ide : A free and open-source constraint modeling language.
  1040. ◆ mira-backup : Mira Auto Database Backup app.
  1041. ◆ mirage : Matrix chat client for encrypted and decentralized communication.
  1042. ◆ miru : Bittorrent streaming software for cats. Stream anime torrents.
  1043. ◆ miteiru : An open source Electron video player to learn Japanese.
  1044. ◆ mjml-app : The desktop app for MJML.
  1045. ◆ mki3dgame : A game of searching (in 3D stages).
  1046. ◆ mkvtoolnix : Matroska files creator and tools.
  1047. ◆ mlv-app : All in one MLV processing app (audio/video).
  1048. ◆ mmapper : Graphical MUD client for the game MUME.
  1049. ◆ mmseqs2-search : MMseqs2 app to run on your workstation or servers.
  1050. ◆ moarperf : Front-end for MoarVM's / Rakudo's profilers.
  1051. ◆ mob : .A handsome Himalayan desktop client.
  1052. ◆ mochi : A simple markdown-powered SRS app.
  1053. ◆ mockman : Manage and start the mock servers on your local platform easily.
  1054. ◆ mockoon : Mock servers in seconds.
  1055. ◆ moderndeck : A beautiful, powerful Twitter client for desktop.
  1056. ◆ modv : Modular audio visualisation powered by JavaScript.
  1057. ◆ monit-appimage : Desktop widgets displaying various information (in chinese).
  1058. ◆ moniteur-admin : The admin panel for the lightweight info screen solution.
  1059. ◆ monokle : Lets you create, analyze, and deploy YAML manifests.
  1060. ◆ moolticute : Mooltipass crossplatform daemon/tools.
  1061. ◆ moonfm : A modern, fully featured audio podcast player.
  1062. ◆ moonitor : A desktop app to track cryptocurrencies.
  1063. ◆ moonlight : Stream games from your NVIDIA GameStream-enabled PC.
  1064. ◆ moonplayer : AIO video player to play Youtube, Bilibili... and local videos.
  1065. ◆ moose : An application to stream, cast and download torrents.
  1066. ◆ moosync : Music player capable of playing local audio or from Youtube/Spotify.
  1067. ◆ motrix : A full-featured download manager.
  1068. ◆ movie-monad : Free and simple to use video player made with Haskell.
  1069. ◆ moyu : An online collaborative api interface management tool.
  1070. ◆ mozaic : Massive Online Zeus Artificial Intelligence Competition platform.
  1071. ◆ mp3-tagger-appimage : An Electron app to edit metadata of mp3 files.
  1072. ◆ mpv : A free, open source, and cross-platform media player.
  1073. ◆ mqttcute : An advanced desktop MQTT client for binary protocol development.
  1074. ◆ mqtt-explorer : Explore your message queues.
  1075. ◆ mqttx-appimage : MQTT 5.0 Desktop, CLI, and WebSocket client tools.
  1076. ◆ mr.dclutterer : Minimal App To Aggregate And Rename Files In Bulk.
  1077. ◆ ms-365-electron : Unofficial Microsoft 365 Desktop Wrapper made with Electron.
  1078. ◆ mtcelledit : Lightweight spreadsheet program.
  1079. ◆ mudita-center-appimage : Mudita Center Electron App.
  1080. ◆ muffon : Music streaming browser,retrieves audio, video and metadata.
  1081. ◆ munt : The payment system of the future.
  1082. ◆ mupdf : Lightweight PDF, XPS, and E-book viewer.
  1083. ◆ muse : A digital audio workstation with support for both Audio and MIDI.
  1084. ◆ museeks : A simple, clean and cross-platform music player.
  1085. ◆ musescore : An open source and free music notation software.
  1086. ◆ musicalypse : Audio/Music player and server built with Web technologies.
  1087. ◆ music-blocks : .Exploring Math, Music, and Programming.
  1088. ◆ music-kitten : Use your own soundtrack in Counter-Strike.
  1089. ◆ music-quiz : Jepardy like game, guess as many songs as possible.
  1090. ◆ mutool : All purpose tool for dealing with PDF files.
  1091. ◆ muwire : A file sharing client for I2P.
  1092. ◆ mybelka : Accounting system written in C++ with QTCore.
  1093. ◆ my-budget : Offline cross-platform budgeting solution built with Electron.
  1094. ◆ mycrypto : MyCrypto web and electron app.
  1095. ◆ my-jira : A lite jira desktop.
  1096. ◆ mypaint : Simple drawing and painting program (graphics).
  1097. ◆ mystiq : Qt5/C++ FFmpeg Media Converter.
  1098. ◆ n3h : Nodejs implementation of holochain networking / p2p backend process.
  1099. ◆ naev : A 2d action/rpg space game that combines elements from the action.
  1100. ◆ nanosaur2 : Pangea Software’s Nanosaur II for modern systems.
  1101. ◆ nanosaur : Pangea Software’s game, adventure of a cybernetic dinosaur.
  1102. ◆ nanovault : Wallet for interacting with Nano.
  1103. ◆ naruto-arena : Naruto-based online multiplayer strategy game.
  1104. ◆ nault-bin : Official Nault AppImage client.
  1105. ◆ ncsa-mosaic : One of the first graphical web browsers.
  1106. ◆ neanes : A scorewriter for notating Byzantine chant in Byzantine notation.
  1107. ◆ neon : Light wallet for NEO blockchain.
  1108. ◆ nepaliunicode : An Unicode Converter app for Windows, OS X and Linux.
  1109. ◆ nest-desktop : A web-based GUI application for NEST Simulator.
  1110. ◆ netbeans : Apache NetBeans installers.
  1111. ◆ netpad : A cross-platform C# editor and playground.
  1112. ◆ netpanzer : Online multiplayer tactical warfare game for fast action combat.
  1113. ◆ newlogic : A circuit builder.
  1114. ◆ newton-adventure : A 2D game with a twist, player can rotate gravity at 360°.
  1115. ◆ nextcloud : Client-server software for creating & using file hosting services.
  1116. ◆ nextplayer-appimage : A blue-ray player, originally named TheNewPlayerFree.
  1117. ◆ nexus-wallet : Official interface layers of the Nexus Software Stack.
  1118. ◆ nfctools : A library which allows userspace application access to NFC devices.
  1119. ◆ ngpost : Usenet poster for binaries developped in C++/QT.
  1120. ◆ ngrev : Reverse Engineering for Angular.
  1121. ◆ nheko : Desktop client for Matrix.
  1122. ◆ niffler : A grin gui wallet.
  1123. ◆ nightpdf : Dark Mode PDF Reader built using Electron and PDF.js.
  1124. ◆ nimbus-weather : A beautiful weather app built using the Dark Sky API.
  1125. ◆ nitrokey : Manage your Nitrokey devices.
  1126. ◆ nixnote : Use with Evernote to remember everything.
  1127. ◆ nmeasimulator : NMEA sentence generator utility to broadcast via TCP.
  1128. ◆ nodeflow : An Editor for creating simple or complex OCR workflows.
  1129. ◆ node : NodeJS is a JavaScript runtime built on Chrome's V8 JavaScript engine.
  1130. ◆ no-fwl : NoFWL Desktop Application.
  1131. ◆ nootka : Application for learning musical score notation.
  1132. ◆ nora : An elegant music player built using Electron and React.
  1133. ◆ nordvpn-appimage : A nicer way to connect to NordVPN, electron-based AppImage.
  1134. ◆ normcap : OCR powered screen-capture tool to capture info instead of images.
  1135. ◆ nosqlbooster : Essential admin GUI for mongodb.
  1136. ◆ nostlan : A multiplatform game launcher for video game emulators.
  1137. ◆ notable : The Markdown-based note-taking app that doesn't suck.
  1138. ◆ nota-maui : Text editor with tab support, syntax highlight and more.
  1139. ◆ notekit : A GTK3 hierarchical markdown notetaking app with tablet support.
  1140. ◆ notemaster : Note-taking app to help boost productivity.
  1141. ◆ notepadnext : A cross-platform, reimplementation of Notepad++.
  1142. ◆ notepadqq : Edit source code files.
  1143. ◆ notepad++ : Unofficial Appimage of Notepad++ (with WINE prefix).
  1144. ◆ noter : Simple serial terminal application.
  1145. ◆ noteshrink-qt : GUI for noteshrink.py with preview and pre-processing opt.
  1146. ◆ notesnook : Private note-taking app that encrypts everything on client side.
  1147. ◆ notes : Note-taking application, write down your thoughts.
  1148. ◆ npm : Package manager for Node.js (installer for "node").
  1149. ◆ nrf-connect : Framework for desktop apps for development kits.
  1150. ◆ nteract : An open-source organization.
  1151. ◆ nuclear : Streaming music player that finds free music for you.
  1152. ◆ nuclia : A low-code API to build an AI multi-language semantic search engine.
  1153. ◆ numara : Simple notepad calculator built on Electron.
  1154. ◆ nuxeo-drive : Desktop synchronization client for the Nuxeo platform.
  1155. ◆ nvim : NeoVim, Vim fork focused on extensibility and usability.
  1156. ◆ nvtop : GPUs process monitoring for AMD, Intel and NVIDIA.
  1157. ◆ nxshell : An easy to use new terminal.
  1158. ◆ nx-software-center : A GUI to install and manage AppImages (Nitrux OS).
  1159. ◆ nychess : A python Chess Engine and AI.
  1160. ◆ nym-wallet-appimage : Use the Nym network and take advantage of it.
  1161. ◆ nyrna : Suspend games and applications.
  1162. ◆ obsidian : A powerful knowledge base, plain text Markdown files.
  1163. ◆ obs-studio : Software for video recording and live streaming.
  1164. ◆ ocat : OpenCore Auxiliary Tools, editing config.plist files for Acidanthera.
  1165. ◆ ocenaudio-junest : Audio Editor (ArchImage, replaces ocenaudio).
  1166. ◆ ocenaudio : Multiplatform Audio Editor.
  1167. ◆ ocrmypdf : AppImage for OCRmyPDF.
  1168. ◆ ocvvid2fulldome : Take flat videos, distort them to fit fulldome.
  1169. ◆ ocvwarp : Warping images and videos for planetarium fulldome display.
  1170. ◆ oh-mymd : A markdown editor,support cloud sync.
  1171. ◆ olive-0.1 : Free non-linear video editor (version 0.1).
  1172. ◆ olive : Free open-source non-linear video editor (nightly build).
  1173. ◆ ommpfritt : Semantic, procedural, non-destructive vector modelling.
  1174. ◆ omnispeak : Re-implementation of "Commander Keen in Goodbye Galaxy".
  1175. ◆ onedrive-gui : Microsoft OneDrive Client GUI.
  1176. ◆ one-gpt : Aggregate ChatGPT official version, Wenxin Yiyan, Poe, chatchat.
  1177. ◆ onekey-wallet : Open source crypto wallet.
  1178. ◆ onenote : P3X Onenote Linux.
  1179. ◆ onlyoffice : Office Suite with full support for MS Windows formats and cloud.
  1180. ◆ onnx2bnn : Binary neural networks inference framework for mobile platform.
  1181. ◆ onnx2daq : Wrapper of NNAPI ("DNNLibrary" is for "daquexian's NNAPI libs).
  1182. ◆ onshape : Onshape desktop app (web application shell).
  1183. ◆ onyx : Decentralized messaging application based on PSS.
  1184. ◆ opal : Plays relaxing music in the background.
  1185. ◆ open-ai-translator : Browser extension for translation based on ChatGPT API.
  1186. ◆ openarena : Violent & sexy, multiplayer first person shooter game (ioquake3).
  1187. ◆ openaudible : Download and manage your Audible audiobooks.
  1188. ◆ openblok : A customizable falling block puzzle game like tetris.
  1189. ◆ openbor : Ultimate 2D side scrolling engine for beat em ups, shooters...
  1190. ◆ opencomic : Comic and Manga reader, written with Node.js and using Electron.
  1191. ◆ openhv : A mod for OpenRA based on the Hard Vacuum (game).
  1192. ◆ openlens : OpenLens Binary Build Repository.
  1193. ◆ open-markup-editor : Pluggable markup editor.
  1194. ◆ openop2 : Re-implementation of the game Outpost 2, using the OpenRA engine.
  1195. ◆ openosrs-launcher-appimage : Open-source client for Old School RuneScape.
  1196. ◆ openpilot-workbench : Fix problems with EON/Openpilot.
  1197. ◆ openra-dune : Real-time strategy game engine (MOD Dune 2000).
  1198. ◆ openramodsdk : Dev Kit for building your own games using the OpenRA engine.
  1199. ◆ openra-red-alert : Real-time strategy game engine (MOD Red Alert).
  1200. ◆ openra-tiberian-dawn : Real-time strategy game engine penGL (MOD TD).
  1201. ◆ openrgb : RGB lighting control that doesn't depend on manufacturer software.
  1202. ◆ openscad : The Programmers Solid 3D CAD Modeller.
  1203. ◆ openshot : A powerful Video Editor.
  1204. ◆ openstream-music : The OpenStream Music source.
  1205. ◆ opentodolist : A note and task managing application.
  1206. ◆ opentrons : Opentrons desktop application.
  1207. ◆ open-video-downloader : A cross-platform GUI for youtube-dl made in Electron.
  1208. ◆ openxcom : An open-source clone of the original UFO Enemy Unknown.
  1209. ◆ opera-beta : Fast and secure web browser (Beta version).
  1210. ◆ opera-dev : Fast and secure web browser (Developer version).
  1211. ◆ opera : Fast and secure web browser (Stable version).
  1212. ◆ osrs-tools : Several tools for OSRS.
  1213. ◆ ossia-score : Sequencer for audio-visual artists for interactive shows.
  1214. ◆ ostara : To monitor and interact with Spring Boot Applications via Actuator.
  1215. ◆ osu : A free-to-win rhythm game. Rhythm is just a click away!
  1216. ◆ ottomatic : Pangea Software’s Otto Matic, a game of robots.
  1217. ◆ outer-wilds-mod-manager : The mod manager for the Outer Wilds Mod Loader
  1218. ◆ outline-client : Lean on the Cordova and Electron frameworks.
  1219. ◆ outline-client-wayland : Lean on the Cordova and Electron frameworks.
  1220. ◆ outline-manager : Create and manage access to Outline servers.
  1221. ◆ overte : Overte open source virtual worlds platform.
  1222. ◆ ovideo : Video Editor.
  1223. ◆ owallet : A comprehensive Ontology desktop wallet.
  1224. ◆ owncloud : The most essential productivity tool since email.
  1225. ◆ oxen-gui-wallet-appimage : Oxen electron GUI wallet.
  1226. ◆ p2p-chat : P2P LAN chatting and file sharing tool.
  1227. ◆ p2pderivatives : Enables users to enter into Discreet Log Contracts.
  1228. ◆ p3x-redis-ui : A very functional handy database GUI and works in your pocket.
  1229. ◆ packetsender : Network utility for sending/receiving TCP/UDP/SSL/HTTP.
  1230. ◆ packsquash : A Minecraft Java Edition resource and data pack optimizer.
  1231. ◆ padloc : Electron Wrapper for Padloc app.
  1232. ◆ painel-web : Novo SGA panel.
  1233. ◆ palapeli : Jigsaw puzzle game (installs "kdegames").
  1234. ◆ palemoon : Web browser, a Firefox fork with a classic UI and modern APIs.
  1235. ◆ paletti : Reduces an image into fewer colors to simplify (color palettes).
  1236. ◆ panini : Perspective views from panoramic images.
  1237. ◆ panwriter : Markdown editor with pandoc integration.
  1238. ◆ paper : A CLI Tool to set a random wallpaper from Unsplash.com.
  1239. ◆ papercraft : A tool to unwrap 3D models.
  1240. ◆ parallelcoin : Parallelcoin qt wallet appimage binary.
  1241. ◆ parity-fether : Fether Wallet.
  1242. ◆ parsec-linux-appimage : Parsec game streaming client.
  1243. ◆ passky : Simple and secure password manager.
  1244. ◆ patchbay : An alt. Secure Scuttlebutt client compatible with Patchwork.
  1245. ◆ patchelf : Utility to modify the dynamic linker and RPATH of ELF executables.
  1246. ◆ patchwork : Messaging and sharing app built on top of Secure Scuttlebutt.
  1247. ◆ pathephone : Distributed audio player.
  1248. ◆ patternpaint : Making beautiful light shows is as easy as drawing a picture.
  1249. ◆ pb-for-desktop : Pushbullet Desktop app.
  1250. ◆ pboy : A small .pdf management tool with a command-line UI.
  1251. ◆ pcsx2 : The Playstation 2 Emulator.
  1252. ◆ pdf2htmlex-appimage : Convert PDF to HTML without losing text or format.
  1253. ◆ pdfquirk : Creating PDFs from images or scanner made easy.
  1254. ◆ pdf-sync : PDF Reader in JavaScript with Sync.
  1255. ◆ pdmaner : A relational database modeling tool.
  1256. ◆ peazip-appimage : PeaZip Appimage for linux 64bits.
  1257. ◆ pelusica : Action game, control the blue dot with your keyboard/create music.
  1258. ◆ pencil : Pencil2D is an easy, intuitive tool to make 2D hand-drawn animations.
  1259. ◆ pennywise : Open any website or media in a floating window.
  1260. ◆ perfect-dark : A decompilation of Perfect Dark.
  1261. ◆ perl-executing-browser : HTML5 user interface for Perl 5 desktop apps.
  1262. ◆ peruse : A reader application for comic books.
  1263. ◆ pext : Python-based extendable tool.
  1264. ◆ phinch : Phinch is a framework for visualizing biological data.
  1265. ◆ photoflare : A simple but featureful image editor.
  1266. ◆ photoflow : Edit images from digital cameras.
  1267. ◆ photogimp : A patched version of GIMP for Adobe Photoshop users.
  1268. ◆ photoname : Rename photo image files based on EXIF shoot date.
  1269. ◆ photopea : Advanced Photo Editor for professional use.
  1270. ◆ photoqt : View and manage images.
  1271. ◆ photoquick : Light-weight image viewer (resize, collage, filters...).
  1272. ◆ phototeleport : Upload your photos to multiple services at once.
  1273. ◆ phreshplayer : Electron based media player app.
  1274. ◆ pia : Version Portable Outil PIA.
  1275. ◆ picacg-qt-appimage : PicACG Comic PC Client For Linux.
  1276. ◆ picgo : Easy to upload your pic & copy to write.
  1277. ◆ piclist : Cloud storage platform management & file upload tool based on PicGo.
  1278. ◆ picmi : Single player logic-based puzzle game (installs "kdegames").
  1279. ◆ picocrypt : A very small, very simple, yet very secure encryption tool.
  1280. ◆ picturama : Digital image organizer powered by the web.
  1281. ◆ pigs-n-cows : A relaxing game for children and adults alike.
  1282. ◆ pile : App to organize your piled work at one place.
  1283. ◆ pingendo : ???
  1284. ◆ pingnoo : An open source network ping analyser.
  1285. ◆ pingviewer : Ping viewer interface.
  1286. ◆ pinokio : AI Browser.
  1287. ◆ pix-maui : Image gallery and viewer with basic editing features.
  1288. ◆ pixsrt : Pixel sorter.
  1289. ◆ pkg2appimage : Utility to convert .yml recipes to AppDir (see appimagetool).
  1290. ◆ plagpatrol : Detecting documents tampered to bypass plagiarism detectors.
  1291. ◆ planes : Variant of battleships game.
  1292. ◆ planet-blupi : A delirious spell-binding game.
  1293. ◆ platform-tools : Suite of command line utilities to manage Android devices.
  1294. ◆ platinum-md-appimage : Graphical MiniDisc NetMD conversion and upload.
  1295. ◆ play-2048 : Another implementation of the 2048 game.
  1296. ◆ playbox : An audio playback system for the live production industry.
  1297. ◆ playme : Elegant YouTube Music desktop app.
  1298. ◆ play : PlayStation 2 emulator on your computer or mobile device.
  1299. ◆ playyourdamnturn : Desktop Client to assist with playing your damn turns.
  1300. ◆ plexamp : The best little audio player on the planet.
  1301. ◆ plex : The ultimate home theater experience.
  1302. ◆ plotjuggler : The Time Series Visualization Tool that you deserve.
  1303. ◆ plotly-orca-appimage : CLI generating static images of interactive charts.
  1304. ◆ plover : Stenographic input and translation.
  1305. ◆ pnpm : A single file, powered by AppImage.
  1306. ◆ pocket-browser : A FOSS browser made for privacy and going towards security.
  1307. ◆ pocketcasts-electron : Pocket Casts wrapper with mapped media keys.
  1308. ◆ poddr : Podcast client that uses iTunes RSS feeds and Search API.
  1309. ◆ podman-appimage : AppImage of podman.
  1310. ◆ podman-desktop-companion : Podman command line interface.
  1311. ◆ podman : Free & open source tool to manage containers, pods, and images.
  1312. ◆ poe-ladder : Path of Exile ladder viewer.
  1313. ◆ poi-appimage : Scalable KanColle browser and tool.
  1314. ◆ pokete : A terminal based Pokemon like game.
  1315. ◆ polar-bookshelf : Personal knowledge repository for PDF and web content.
  1316. ◆ polar : One-click Bitcoin Lightning networks for local app development.
  1317. ◆ polkakey : A secure way to generate Polkadot/Kusama/Edgeware address.
  1318. ◆ polypane : Browser for web developers.
  1319. ◆ pomotroid : Simple and visually-pleasing Pomodoro timer.
  1320. ◆ popsicle : Multiple USB File Flasher.
  1321. ◆ positron : Manage your movie and show watchlist.
  1322. ◆ postcat : An extensible API tool.
  1323. ◆ postman : API platform for building and using APIs (AppImage).
  1324. ◆ postybirb : Multimedia crossposter for multimedia websites.
  1325. ◆ postybirb-plus : Helps artists post art to multiple websites more quickly.
  1326. ◆ potatopresenter-appimage : Create presentation slides and exported as PDF.
  1327. ◆ powder-toy : AppImage build of The Powder Toy built from source.
  1328. ◆ powerliminals-player : Powerliminal audios in the background (Audio player).
  1329. ◆ powershell : Microsoft PowerShell.
  1330. ◆ ppet3 : Put a cute girl on your desk for more fun.
  1331. ◆ ppsspp : A PSP emulator written in C++.
  1332. ◆ pretty-handy-privacy : User interface for basic encryption tasks.
  1333. ◆ primate : A modern dashboard for Kong Gateway admins.
  1334. ◆ prime-world-editor : Edit world assets from games by Retro Studios.
  1335. ◆ printerclient : A printer client.
  1336. ◆ prisma-studio-appimage : The easiest way to explore and manipulate your data.
  1337. ◆ prismlauncher : Launcher for Minecraft, manage multiple installations.
  1338. ◆ privacy.sexy : Tool to enforce privacy & security best-practices.
  1339. ◆ privaxy : The next generation tracker and ads/advertisement blocker.
  1340. ◆ procdepmonitor : Obtaining information about loaded process dependencies.
  1341. ◆ procspin : CLI to create a process/progress animation with text.
  1342. ◆ procyon : Note Keeper.
  1343. ◆ promethium : Extensible and innovative web browser with built-in AdBlock.
  1344. ◆ proofkeeper : Desktop tool to automate proof management.
  1345. ◆ prospect-mail : An Outlook mail desktop client powered by Electron.
  1346. ◆ protoman : A Postman-like API client for protobuf-based messages.
  1347. ◆ proton-5.11 : Appimage for Wine Proton 32-bit to run on no-multilib systems.
  1348. ◆ protonmail-desktop : Unofficial Electron wrapper for ProtonMail.
  1349. ◆ protonup-qt : Manage Proton-GE/Luxtorpeda for Steam/Wine-GE for Lutris.
  1350. ◆ proxyman : Modern and Delightful HTTP Debugging Proxy.
  1351. ◆ prusa-slicer : Prusa3d/PrusaSlicer, G-code generator for 3D printers.
  1352. ◆ psi+ : Communicate over the XMPP network.
  1353. ◆ pstube : Watch and download videos without ads.
  1354. ◆ psydoom : A backport of PSX Doom to PC.
  1355. ◆ publii : A desktop-based CMS that makes creating static websites fast.
  1356. ◆ pullp : Pull request monitoring app for Github.
  1357. ◆ pulsar : A Community-led Hyper-Hackable Text Editor.
  1358. ◆ pulse : Pulse desktop client.
  1359. ◆ puppetry : Solution for non-developers on top of Puppeteer and Jest.
  1360. ◆ puush-qt : A GUI frontend for puush on Linux.
  1361. ◆ pyappimage : Simple appimage builder for Python applications.
  1362. ◆ pyfa-appimage : EVE Online Fitting Assistant.
  1363. ◆ python2.7 : Interactive high-level object-oriented language (version 2.7).
  1364. ◆ python3.10 : Interactive high-level object-oriented language (version 3.10).
  1365. ◆ python3.11 : Interactive high-level object-oriented language (version 3.11).
  1366. ◆ python3.12 : Interactive high-level object-oriented language (version 3.12).
  1367. ◆ python3.5 : Interactive high-level object-oriented language (version 3.5).
  1368. ◆ python3.6 : Interactive high-level object-oriented language (version 3.6).
  1369. ◆ python3.7 : Interactive high-level object-oriented language (version 3.7).
  1370. ◆ python3.8 : Interactive high-level object-oriented language (version 3.8).
  1371. ◆ python3.9 : Interactive high-level object-oriented language (version 3.9).
  1372. ◆ qaterialgallery : Demonstrate Qaterial library.
  1373. ◆ qaterialhotreload : Qml HotReload software.
  1374. ◆ qawl : Read the Holy Qur’ān whenever, wherever, however you like.
  1375. ◆ qbittorrent : A powerful QT-based Bittorrent Client (official AppImage).
  1376. ◆ qbittorrent-enhanced : Unofficial qBittorrent Enhanced, based on qBittorrent.
  1377. ◆ qbittorrent-lite : Bittorrent Client.
  1378. ◆ qctools : Quality Control Tools for Video Preservation.
  1379. ◆ qdriverstation : Cross-platform clone of the FRC Driver Station.
  1380. ◆ qelectrotech : Edit electrical diagrams.
  1381. ◆ qemu-appimage : Prove of the concept to run a virtual machine from Appimage.
  1382. ◆ qemu-ppc : Run PowerPC operating systems on 64-bit Intel Linux hosts.
  1383. ◆ qfsm : Qt Finite State Machine Designer.
  1384. ◆ qgroundcontrol-appimage : Ground control for unmanned vehicles.
  1385. ◆ qikqr : Minimal desktop app to create QR codes.
  1386. ◆ qmasterpassword : A password manager based on Qt.
  1387. ◆ qmediathekview : An alternative front-end to the MediathekView database.
  1388. ◆ qmidictl : MIDI Remote Controller via UDP/IP Multicast.
  1389. ◆ qmidinet : MIDI Network Gateway via UDP/IP Multicast.
  1390. ◆ qmplay2 : Video and audio player whit support of most formats and codecs.
  1391. ◆ qnapi : Qt-based, multi-engine, multi-platform subtitle downloader.
  1392. ◆ qortal-ui : Decentralize the world (data storage, communications).
  1393. ◆ qownnotes : Plain text notepad and todo list manager.
  1394. ◆ qpdf : CLI tool to perform content-preserving transformations on PDF files.
  1395. ◆ qppcad : Molecule and crystal editor written in c++
  1396. ◆ qprompt : Personal teleprompter software for all video creators.
  1397. ◆ qqmusic-appimage : A music player from Tencent.
  1398. ◆ qradiolink : Multimode SDR transceiver for GNU radio.
  1399. ◆ qr-code-generator : Create custom QR Codes, resize, save them as PNG image.
  1400. ◆ qrop : Crop planning and recordkeeping software.
  1401. ◆ qsdrswr : Qt SWR analyser using an SDR and soapy_power.
  1402. ◆ qtads : A cross-platform, multimedia interpreter for TADS adventure games.
  1403. ◆ qtalarm : Alarm clock for Computers.
  1404. ◆ qtchan : 4chan browser in qt5.
  1405. ◆ qt-dab : Listening to terrestrial Digital Audio Broadcasting.
  1406. ◆ qtjsondiff : Json difference checker widget and viewer.
  1407. ◆ qtmips : Qt Mips emulator.
  1408. ◆ qtox : Qt 5 based Tox instant messenger for secure communication.
  1409. ◆ qtractor : An Audio/MIDI multi-track sequencer.
  1410. ◆ qt-raster-lines : Lines between points using rasterization (DDA, Bresenham).
  1411. ◆ quamodbusclient : Modbus to OPC UA Gateway
  1412. ◆ quark-player : An Electron based Web Video Services Player.
  1413. ◆ quark : Sketchbook for rapid prototyping and development of your projects.
  1414. ◆ quarto-cli : Scientific and technical publishing system built on Pandoc.
  1415. ◆ quaternion : A Qt5-based IM client for Matrix.
  1416. ◆ quba-appimage : A viewer for electronic invoices.
  1417. ◆ qucs-s : An Universal GUI for Circuit Simulators.
  1418. ◆ quentier : Note taking app integrated with Evernote.
  1419. ◆ quick-clone : Search through gitlab and clone git-repositories.
  1420. ◆ quickredis : A free Redis Desktop manager.
  1421. ◆ quicktwitch : Electron React Redux Boilerplate.
  1422. ◆ quickviewer : A image viewer application for folders/archives.
  1423. ◆ quokkagit : A small, TortoiseGit inspired git log viewer for linux.
  1424. ◆ qv2ray : Cross-platform v2ray GUI Client in Qt.
  1425. ◆ qview : Practical and minimal image viewer.
  1426. ◆ qxgedit : QXGEdit is a Qt GUI XG editor application.
  1427. ◆ r2modman-appimage : Mod manager for several Unity games using Thunderstore.
  1428. ◆ r3play : High-value third-party Netease cloud player (chinese).
  1429. ◆ rabix-composer : A desktop IDE for working with Common Workflow Language.
  1430. ◆ radioit : Automation software for Radios.
  1431. ◆ radix-wallet : Radix DLT desktop wallet.
  1432. ◆ rainbow-board : 22nd Century Whiteboard App for Linux, Windows and Mac.
  1433. ◆ rambox : Free and Open Source messaging and emailing app.
  1434. ◆ rare : GUI for legendary. An Epic Games Launcher open source alternative.
  1435. ◆ rasterdraw : Simple shape drawn using rasterisation.
  1436. ◆ rasterview : Raster Viewer for CUPS-Raster, Apple-Raster and PWG-Raster.
  1437. ◆ rats-search : P2P BitTorrent search engine.
  1438. ◆ raven-reader : Simple Desktop RSS Reader made using VueJS.
  1439. ◆ rawtherapee : An advanced raw photo development program.
  1440. ◆ rbdl-toolkit : Application for visualizing and working with rbdl models.
  1441. ◆ rbdoom-3 : Doom 3 BFG Edition source port with updated DX12/Vulkan renderer.
  1442. ◆ rclone-browser : Simple cross platform GUI for rclone.
  1443. ◆ reactotron : Reactotron desktop mode engage.
  1444. ◆ realm-studio : A tool for everything Realm.
  1445. ◆ record-compare : Record Compare.
  1446. ◆ redeclipse : A great first person 3D arena shooter with online support (game).
  1447. ◆ redis-gui-appimage : Modern graphical user interface to peek into redis DB.
  1448. ◆ redis-viewer-appimage : A Redis visualization client tool.
  1449. ◆ redminetimetracker : Time Tracking tool for Redmine.
  1450. ◆ reliefvalve : Helps manage the Steam client application.
  1451. ◆ remnote : Build your Knowledge Base anywhere and without distractions.
  1452. ◆ reor : AI note-taking app that runs models locally.
  1453. ◆ responsively : A browser for developing responsive web apps.
  1454. ◆ retroarch : Frontend for emulators, game engines and media players.
  1455. ◆ retroshare : Securely share files with your friends.
  1456. ◆ revealed : A platform and store for apps, games, and more.
  1457. ◆ revolt : Revolt Desktop App.
  1458. ◆ rhb : Rapid HTML Builder/Prototyper.
  1459. ◆ rhythmbox : The popular Audio Player Rhythmbox.
  1460. ◆ ricochet : Anonymous peer-to-peer instant messaging.
  1461. ◆ ricochlime : Satisfying slime shooter.
  1462. ◆ ridereceipts : Automation app to download and organize your tax invoices.
  1463. ◆ ripcord : Chat client for group-centric services like Slack and Discord.
  1464. ◆ ripes : Graphical processor simulator and assembly editor for the RISC-V ISA.
  1465. ◆ rmg : Rosalie's Mupen GUI.
  1466. ◆ rmw : A safe-remove utility for the command line.
  1467. ◆ roborock-control-center : Control Your Xiaomi Vacuum.
  1468. ◆ rofi : A window switcher, runs dialogs, dmenu like, etc (Unofficial AppImage).
  1469. ◆ roloviewer : Image slideshow viewer.
  1470. ◆ rotki : A portfolio tracking, asset analytics and tax reporting app.
  1471. ◆ rpan-studio : OBS Studio with RPAN integration.
  1472. ◆ rpcs3 : An open-source PlayStation 3 emulator/debugger written in C++.
  1473. ◆ rquickshare : Rust implementation of NearbyShare/QuickShare from Android.
  1474. ◆ rssguard : Feed reader which supports RSS/ATOM/JSON (no-webengine version).
  1475. ◆ rstudio : RStudio is an integrated development environment (IDE) for R.
  1476. ◆ rtneuron : Framework for geometrically detailed neuron simulations.
  1477. ◆ ruffle : A Flash Player emulator written in Rust.
  1478. ◆ rufus : Logiciel de gestion de cabinet d'Ophtalmologie.
  1479. ◆ runanode : Lets run a node.
  1480. ◆ runelite : Open source Old School RuneScape client.
  1481. ◆ runjs : JavaScript playground. Write code with Node.js & browser APIs access.
  1482. ◆ running-dinner-tool : Running Dinner Tool.
  1483. ◆ rustdesk : Virtual/remote desktop infrastructure, like TeamViewer/Citrix.
  1484. ◆ rx-bin : A modern and extensible pixel editor implemented in Rust.
  1485. ◆ ryowallet : Modern GUI interface for Ryo Currency.
  1486. ◆ ryujinx-appimage : Unofficial AppImage of the Ryujinx emulator.
  1487. ◆ ryujinx : A simple, experimental Nintendo Switch emulator.
  1488. ◆ sabaki : Modern, elegant, cross-platform Go/Baduk/Weiqi game board.
  1489. ◆ saber : A (work-in-progress) cross-platform libre handwritten notes app.
  1490. ◆ safe-multisig : Allowing crypto users manage funds in a safer way.
  1491. ◆ samanager : Manage your Prestashop online Store.
  1492. ◆ saphyr : A C++ like compiler.
  1493. ◆ satisfactory : Satisfactory Mod Manager.
  1494. ◆ saucedacity : Audio editor based on Audacity focusing on general improvements.
  1495. ◆ savvycan : Facilitates reverse engineering of canbus captures.
  1496. ◆ sayonara : Music player and music library admininstration.
  1497. ◆ sbe : An unofficial Scrapbox desktop app.
  1498. ◆ sblauncher : Minecraft Launcher.
  1499. ◆ scatter : Scatter desktop signature server.
  1500. ◆ scavengers : Unity Roguelike tutorial (game).
  1501. ◆ sc-controller : User-mode driver and GTK3 based GUI for Steam Controller.
  1502. ◆ schildichat : A Matrix Client.
  1503. ◆ school-sections : This project was generated with Angular CLI v1.7.4.
  1504. ◆ sciencefair : Desktop science reading app for Linux.
  1505. ◆ scilab : Scientific software package for numerical computations.
  1506. ◆ scraper : Simple desktop scraper app.
  1507. ◆ scratux : Linux client for scratch programming.
  1508. ◆ scrcpy : Display and control your Android device.
  1509. ◆ screencloud : Capture and share screenshots easily.
  1510. ◆ scribus : Powerful desktop publishing software.
  1511. ◆ scrite : Multilingual Screenplay Writing App from TERIFLIX.
  1512. ◆ scrum-retroboard : Electron application based on React.
  1513. ◆ scytale : Scytale Desktop Client for Linux.
  1514. ◆ selenium-ide : Open Source record and playback test automation for the web.
  1515. ◆ sengi : A multi-account desktop client for Mastodon and Pleroma.
  1516. ◆ sentinel-appimage : An open-source decentralized VPN network application.
  1517. ◆ serialplot : Small and simple software for plotting data from serial port.
  1518. ◆ serial-studio : Multi-purpose serial data view program.
  1519. ◆ serioussamtfe : Game engine for Serious Sam Classic (TFE).
  1520. ◆ serioussamtfe-vk : Game engine for Serious Sam Classic (Vulkan support, TFE).
  1521. ◆ serioussamtse : Game engine for Serious Sam Classic (TSE).
  1522. ◆ serioussamtse-vk : Game engine for Serious Sam Classic (Vulkan support, TSE).
  1523. ◆ ser-player : Video player for SER files used for astronomy-imaging.
  1524. ◆ session-desktop : Onion routing based messenger.
  1525. ◆ sfbrename : Bulk file renamer.
  1526. ◆ sfrt-attendance : The attendance tracking program for robotics.
  1527. ◆ sf-tube : Watch and download videos without ads.
  1528. ◆ shadow : Run Windows-based applications on the devices you own.
  1529. ◆ shadowsocks : Shadowsocks GUI client.
  1530. ◆ shannon-calculator : Self-information content of a message text.
  1531. ◆ sharemyhost : One click to share your files in your local network.
  1532. ◆ sharp-tune : Music player build upon the node using the electron.
  1533. ◆ sheikah : A Witnet compatible desktop wallet.
  1534. ◆ shelf-maui : Document viewer for various document formats.
  1535. ◆ shipwright : Ship of Harkinian.
  1536. ◆ shotcut : A powerful Video Editor.
  1537. ◆ shradiko : Make Portable AppImages from Distro Packages.
  1538. ◆ shutter : Professional converter & compression tool designed by video editors.
  1539. ◆ shuttle : The fastest access to your favorite applications.
  1540. ◆ sideload : Utility (from elementaryOS 6) to install Flatpak apps from Flathub.
  1541. ◆ sigdigger : Signal analyzer, using Suscan core and Sigutils DSP library.
  1542. ◆ sigma-file-manager : A free, open-source, modern file manager.
  1543. ◆ sigmaspectra : Semi-automated selection and scaling of time series.
  1544. ◆ sigrok-cli : Control your logic analyzer, oscilloscope, or MSO.
  1545. ◆ siliconsneaker : View runs from your Garmin brand watch
  1546. ◆ silverkey : The best Qt Application Ever.
  1547. ◆ simdock : Small dock with pseudo-transparency and good window handling.
  1548. ◆ simdsp : DSP Simulator.
  1549. ◆ simplechroot : Simple command line chroot with ease.
  1550. ◆ simpleinstabot : Simple Instagram bot.
  1551. ◆ simplenote-electron : Simplenote for Web, Windows, and Linux.
  1552. ◆ simpleos : EOS Blockchain Interface & Wallet.
  1553. ◆ simple-s3-uploader : Easily uploading files and sharing links via AWS S3.
  1554. ◆ simplescreenrecorder : Feature-rich screen recorder supporting X11 & OpenGL.
  1555. ◆ simple-timer : A really simple timer with a customizable logo and heading.
  1556. ◆ simplex-chat : First messaging platform operating without user identifiers.
  1557. ◆ simtoolkitpro-appimage : The all-in-one flight simulation EFB.
  1558. ◆ singlebox : AppView template for WebCatalog.
  1559. ◆ sioyek : PDF viewer designed for reading research papers and technical books.
  1560. ◆ sipgate-softphone : The sipgate softphone is developed directly by sipgate.
  1561. ◆ siril : Astronomical image (pre-)processing program.
  1562. ◆ siyuan-appimage : A local-first personal knowledge management system.
  1563. ◆ skrifa : A simple word processor built with web technologies.
  1564. ◆ skrooge : A personal finances manager, powered by KDE.
  1565. ◆ skype : VoIP-based videoconferencing, voice calls and instant messaging app.
  1566. ◆ slackbackup : An app to archive Slack messages.
  1567. ◆ slacktronic : Connect your Slack workspace to Arduino.
  1568. ◆ slang-ed : An Electron/Ionic app to edit i18n language translations files.
  1569. ◆ sleek : Multiplatform todo.txt manager.
  1570. ◆ slic3r-appimage : Open Source toolpath generator for 3D printers.
  1571. ◆ slippi : Slippi Launcher program for browsing and playing replays.
  1572. ◆ smallbasic : A fast and easy to learn BASIC language interpreter.
  1573. ◆ smartgit : A Git-Client.
  1574. ◆ smartservogui : Scan for servo devices easily view.
  1575. ◆ smath-studio : Tiny, but powerful mathematical program with WYSIWYG editor.
  1576. ◆ smf-dsp : Standard MIDI file player.
  1577. ◆ smplayer : Media Player with built-in codecs for all audio and video formats.
  1578. ◆ smuview-appimage : A Qt based source measure unit GUI for sigrok.
  1579. ◆ snake-js : Canvas/JavaScript based Snake Game with support for controllers.
  1580. ◆ snapshot-slider : Present/print/email Snapshots of modern mathematics.
  1581. ◆ snes9x : Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
  1582. ◆ snippetstore : A snippet management app for developers.
  1583. ◆ snomcontrol : An application to control snom (D)3xx phones from the desktop.
  1584. ◆ snowball : Find and filter literature, fast.
  1585. ◆ soapy-sdr : I/Q recorder and processor using SoapySDR as backend.
  1586. ◆ socnetv : Social Network Analysis and Visualization software.
  1587. ◆ software-challenge-gui : GUI für die Software-Challenge.
  1588. ◆ soil-editor : A tool to edit the soil properties (CRITERIA1D).
  1589. ◆ solarwallet : Stellar wallet. Secure and user-friendly.
  1590. ◆ soniclineup : Comparative visualisation of multiple audio files.
  1591. ◆ sonicvisualiser : Viewing and analysing the contents of music audio files.
  1592. ◆ sonist : Music Player.
  1593. ◆ sonixd : A full-featured Subsonic/Jellyfin compatible desktop music player.
  1594. ◆ soul-arena : Bleach-based online multiplayer strategy game.
  1595. ◆ sourcetrail : Source explorer to get you productive on unfamiliar source code.
  1596. ◆ spacebar-debug : Extendable discord-compatible native Spacebar client (debug).
  1597. ◆ spacebar : Themeable and extendable discord-compatible native Spacebar client.
  1598. ◆ spacecadet : Reverse engineered port of 3D Pinball for Windows XP Space Cadet.
  1599. ◆ spacemesh : Spacemesh App (Smesher + Wallet).
  1600. ◆ spacewars : A re-imagining of the classic game Spacewar using Amethyst engine.
  1601. ◆ spark.payments : Terminal app for processing DASH payments.
  1602. ◆ spark-wallet : A wallet GUI for c-lightning, accessible over web/mobile/pc.
  1603. ◆ speaky-miniplayer : A miniplayer with a synthetic radio speaker.
  1604. ◆ speed-dreams : A Torcs fork, 3d motorsport simulation and race cars game.
  1605. ◆ speedyloader : Speeduino universal firmware loader.
  1606. ◆ speek : Privacy focused messenger.
  1607. ◆ spiritfarer : Spiritfarer (AppImage version).
  1608. ◆ spivak : Karaoke player based on GStreamer and Qt5.
  1609. ◆ spm : A simple CLI package manager written in bash mainly for AppImages.
  1610. ◆ spotify : A proprietary music streaming service (from Arch User Repository).
  1611. ◆ spotube : Open source Spotify client that doesn't require Premium.
  1612. ◆ springboard : Electron-based SpringRTS Launcher app.
  1613. ◆ sqlitebrowser : DB Browser is a light GUI editor for SQLite databases.
  1614. ◆ squirreldisk : Cross-Platform and Super Fast Disk Usage Analysis Tool in Rust.
  1615. ◆ srb2k-appimage : AppImage Package for Sonic Robo Blast 2 Kart (game).
  1616. ◆ ssh-mitm : Server for security audits supporting public key authentication.
  1617. ◆ stacer : Linux System Optimizer and Monitoring.
  1618. ◆ stackandconquer : A challenging tower conquest board game "Mixtour" inspired.
  1619. ◆ standard-notes : A simple and private place for your notes.
  1620. ◆ starc : Story Architect, reinventing the screenwriting software.
  1621. ◆ staruml : A sophisticated software modeler (v3.2.2).
  1622. ◆ stash-electron : The friendly secret storage made for teams.
  1623. ◆ station : A single place for all of your web applications.
  1624. ◆ station-maui : Terminal emulator with quick functions support for touch.
  1625. ◆ statsbook-tool : A tool for error checking WFTDA Statsbooks.
  1626. ◆ statuspilatus : Monitor your PC like never before.
  1627. ◆ steamcad : 2D CAD especially designed to draw steam locomotives.
  1628. ◆ steamdepotdownloadergui : Easily download older versions of games from Steam.
  1629. ◆ steam-rom-manager : An app for managing ROMs in Steam.
  1630. ◆ steam : The ultimate destination for playing, discussing, and creating games.
  1631. ◆ steem-messenger : Messer for Steem.
  1632. ◆ stele : Kiosk app wrapper for museum media exhibits.
  1633. ◆ stellarium : Planetarium that shows a realistic sky in 3D.
  1634. ◆ stereophotoview : 3d stereoscopic photo/video viewer and editor.
  1635. ◆ sticker-convert : Convert (animated) stickers.
  1636. ◆ stockstalk : Your stocks on your desktop.
  1637. ◆ stoplight : The kickass API platform.
  1638. ◆ storaji : The Light/Responsive Inventory Management System.
  1639. ◆ storyboarder : Visualize a story as fast you can draw stick figures.
  1640. ◆ strans : A powerful command-line utility.
  1641. ◆ strata : Semi-automated selection and scaling of time series.
  1642. ◆ strawberry : Music player and collection organizer (Clementine fork).
  1643. ◆ streamcapture2 : Download video streams.
  1644. ◆ streamdock : Streaming service viewer.
  1645. ◆ streamlink : Command-line which pipes video streams from various services.
  1646. ◆ streamlink-twitch-gui : A multi platform Twitch.tv browser for Streamlink.
  1647. ◆ streamon : Create streaming links to instagram live.
  1648. ◆ stretchly : App that reminds you to take breaks when working on your PC.
  1649. ◆ strike-maui : Simple convergent IDE.
  1650. ◆ strongbox : A World of Warcraft Addon Manager aimed at Linux players.
  1651. ◆ structure : A knowledge management tool.
  1652. ◆ stunt-car-remake : Remake of the old game Stunt Car Racer.
  1653. ◆ subillmanager : A simple Flutter app to manage electricity bill.
  1654. ◆ substrate-ide : Graphic IDE for developing Substrate blockchains.
  1655. ◆ subsurface : Official upstream of the Subsurface divelog program.
  1656. ◆ subtitle-composer : KF5/Qt Video Subtitle Editor for KDE.
  1657. ◆ subtitler : Quickly download subtitles.
  1658. ◆ sugarizer : A taste of Sugar on any device.
  1659. ◆ sultanpos : Simple POS for minimarket.
  1660. ◆ summoners.war.exporter : To parse intercepted data from Summoners War.
  1661. ◆ sumoco : Simple Unified Model for Orthopaedics.
  1662. ◆ sunamu : Show your currently playing song in a stylish way.
  1663. ◆ sunsama-appimage : The daily planner for elite professionals.
  1664. ◆ sunshine : Sunshine is a Gamestream host for Moonlight.
  1665. ◆ sup : A Slack client with WhatsApp like UI.
  1666. ◆ superpaper : A cross-platform multi monitor wallpaper manager.
  1667. ◆ superproductivity : An advanced todo list app with integrated Timeboxing.
  1668. ◆ superslicer-bin : G-code generator for 3D printers.
  1669. ◆ superslicer-prerelease-bin : G-code generator for 3D printers.
  1670. ◆ supertag : A tag-based filesystem written in Rust.
  1671. ◆ supertux : Classic 2D jump'n run sidescroller game inspired to Super Mario.
  1672. ◆ supertuxkart-appimage : Racing game focused on Fun (Unofficial AppImage).
  1673. ◆ supertuxkart : The original Free kart racing game focused on Fun!
  1674. ◆ suyu : Open-source, Nintendo Switch emulator, continuation of yuzu.
  1675. ◆ svelte-electron : Create desktop apps with this Svelte boilerplate.
  1676. ◆ swaglyrics : SwagLyrics AppImage (unofficial).
  1677. ◆ swc-minecraft-launcher : SWC Minecraft Launcher.
  1678. ◆ sweeper : System Cleaner (installs "kdeutils").
  1679. ◆ sweethome3d : An interior design app to draw house plans & arrange furniture.
  1680. ◆ swell : Testing for streaming APIs, right at your desktop.
  1681. ◆ swift : Communicate over the Jabber/XMPP network (v4.0.2).
  1682. ◆ swiftnessx : Electron application boilerplate based on React/Webpack.
  1683. ◆ swifty : Free Offline-first Password Manager for MacOS, Windows and Linux.
  1684. ◆ switchhosts : Switch hosts quickly!
  1685. ◆ swradio : Shortwave receiver for use with sdrplay/hackrf/dabsticks/pmsdr.
  1686. ◆ symphonium : A tool to help when learning to play the piano.
  1687. ◆ syncmyl2p : L2P synchronisation tool.
  1688. ◆ syncplay : Synchronize video playback over network.
  1689. ◆ syncthing-tray : Tray application for Syncthing.
  1690. ◆ synfigstudio : A free and open-source 2D animation software (graphics).
  1691. ◆ synthein : A space ship building and combat game.
  1692. ◆ synthv1 : An old school polyphonic synthesizer.
  1693. ◆ szyszka : Szyszka is fast and powerful file renamer.
  1694. ◆ tablo-tools : Tools to Bulk Delete and Export from Tablo DVR.
  1695. ◆ tag-editor : Tag Editor (supports MP4, ID3, Vorbis, Opus, FLAC and Matroska).
  1696. ◆ tagspaces : An offline, open source, document manager with tagging support.
  1697. ◆ tagstoo : Tagstoo tagging application.
  1698. ◆ tagtime-desktop : Time tracking for space cadets, desktop edition.
  1699. ◆ taskizer : A task management app.
  1700. ◆ tastee-ui : Tool helping you write executable specifications in your lang.
  1701. ◆ tc : A desktop chat client for Twitch.
  1702. ◆ teams : Business communication platform developed by Microsoft (AppImage).
  1703. ◆ teledrive : Automatically backup Telegram Saved Messages.
  1704. ◆ telegram : Desktop version of Telegram messaging app.
  1705. ◆ terminalos-sim : A terminalOS simulator.
  1706. ◆ teslacam-browser : A minimal TeslaCam Browser.
  1707. ◆ tesler : The Tesla Sentinel Viewer.
  1708. ◆ tess : A hackable, simple, rapid and beautiful terminal.
  1709. ◆ tesseract : Tesseract Open Source OCR Engine AppImage.
  1710. ◆ texmacs : Free scientific text editor, inspired by TeX and GNU Emacs.
  1711. ◆ texstudio : LaTeX development environment.
  1712. ◆ textosaurus : Cross-platform text editor based on Qt and Scintilla.
  1713. ◆ thedesk : Mastodon Client for PC.
  1714. ◆ theframe : Animation tool.
  1715. ◆ theia-blueprint : Building desktop-based products based on Eclipse Theia.
  1716. ◆ thermusqt : Calculate particle composition of hadronic state.
  1717. ◆ theweb : Web Browser.
  1718. ◆ thief : An innovative cross-platform fishing tool (in chinese).
  1719. ◆ thinktool-desktop : Desktop application for Thinktool.
  1720. ◆ thinreports-section-editor : A template editor for Thinreports.
  1721. ◆ thlink : Touhou Project Game Netplay Tool.
  1722. ◆ thoptv-appimage : Enjoy Ultimate Movies, sports Matches, IPL and Latest Shows.
  1723. ◆ thorium-avx2 : AVX2 Linux builds of Thorium Browser.
  1724. ◆ thorium-client : A locked-down electron kiosk for Thorium.
  1725. ◆ thorium-reader : Desktop application to read ebooks.
  1726. ◆ thorium-sse3 : Web Browser, Chromium fork with Widevine and FFmpeg support.
  1727. ◆ thorium : Web Browser, a Chromium fork including Widevine and FFmpeg support.
  1728. ◆ thunderbird-appimage : Mail client's Unofficial AppImage (Stable).
  1729. ◆ thunderbird-beta-appimage : Mail client's Unofficial AppImage (Beta).
  1730. ◆ thunderbird-beta : Free and open source eMail client (Beta Edition).
  1731. ◆ thunderbird : Free and open source eMail client (Stable).
  1732. ◆ thunderbird-nightly-appimage : Mail client's Unofficial AppImage (Nightly).
  1733. ◆ thunderbird-nightly : Free and open source eMail client (Nightly Edition).
  1734. ◆ tidal-hifi-appimage : The web version of listen.tidal.com running in electron.
  1735. ◆ tilde-podcast : Podcast client to listen to all you favorite podcasts.
  1736. ◆ tiled : Tile map editor.
  1737. ◆ tilinggenerator : Generator of regular and irregular tilings.
  1738. ◆ timenaut-appimage : Desktop time tracking application.
  1739. ◆ timer : Time recurring events.
  1740. ◆ tipitaka-pali-reader : A Pali Reading app made in Flutter.
  1741. ◆ tmon : A simple CLI tool for monitoring/reporting CPU temperatures.
  1742. ◆ tmux-appimage : Tmux AppImage build via Docker.
  1743. ◆ tnt : A computer-assisted translation tool.
  1744. ◆ tockler : An application that tracks your time by monitoring.
  1745. ◆ todo-bash : Todo list for the Bash command line.
  1746. ◆ todoist : Todoist for linux.
  1747. ◆ todorust : Simple ToDoList made in rust.
  1748. ◆ tomatox : An online free VIP video analysis player (in chinese).
  1749. ◆ tonuino-toolbox : SD card manager for your Tonuino.
  1750. ◆ topgrade : Upgrade all the things, this is the universal upgrade manager.
  1751. ◆ tor-browser : Privacy-oriented Web Browser for sites blocked in your country.
  1752. ◆ torcs : The 3D Open Racing Car Game and Simulator.
  1753. ◆ torrenttools : Cli tool to inspect/create/edit BitTorrent metafiles.
  1754. ◆ toughcookies : A modern flash cards study and management app.
  1755. ◆ trader : Play Star Traders, a simple game of interstellar trading.
  1756. ◆ trans : CLI translator using Google/Bing/Yandex Translate, etc...
  1757. ◆ translatium : Translate Any Languages like a Pro.
  1758. ◆ transmission-gtk : Fast, easy, and free BitTorrent client (GTK+ GUI).
  1759. ◆ transmissionic : Remote for Transmission Daemon.
  1760. ◆ trezor-suite : Trezor Suite desktop application.
  1761. ◆ triagem-touch : Novo SGA triage client.
  1762. ◆ trinity-desktop : Desktop wallet for IOTA.
  1763. ◆ tropy : Research photo management.
  1764. ◆ tt : A simple Time Tracker to stay basic and intuitive.
  1765. ◆ tts-now : A chinese text-to-speech assistant based on the speech synthesi.
  1766. ◆ ttth : An electron based desktop app for online services.
  1767. ◆ tulip : Large graphs analysis, drawing and visualization framework.
  1768. ◆ tumblr-downloader-gui : Download Tumblr posts that you liked.
  1769. ◆ tumblr-scraper : Scrape a Tumblr profile for user uploadede posts.
  1770. ◆ tunepack : Finding and download HQ audio files.
  1771. ◆ turbowarp : Scratch mod with a compiler to run projects faster.
  1772. ◆ turntable : Simple youtube DJ app made with Electron and Angular4.
  1773. ◆ tusk : Evernote desktop app.
  1774. ◆ tutanota : The world's most secure email service, easy to use and private.
  1775. ◆ tvalb : Watch your favorite Albanian TV channels through your PC.
  1776. ◆ t.viewer : Cross Platform Tizen Log Viewer.
  1777. ◆ twake : Desktop App for Twake.
  1778. ◆ tweaksophia : An app to automatically renew the books of the SophiA system.
  1779. ◆ tweet-tray : Tweet quickly from the desktop without any distractions.
  1780. ◆ twetter : Client for the pubsub app.
  1781. ◆ twitch-wrapper : An Electron wrapper for Twitch.tv.
  1782. ◆ ubports-installer : A simple tool to install Ubuntu Touch on UBports devices
  1783. ◆ uhk.agent : Configuration app of the Ultimate Hacking Keyboard.
  1784. ◆ uivonim : Fork of the Veonim Neovim GUI.
  1785. ◆ ultragrid : UltraGrid low-latency audio/video network transmission system.
  1786. ◆ ultrascreen : Share your screens with friends.
  1787. ◆ uncov : A tool that collects and processes code coverage reports.
  1788. ◆ unetbootin : Install Linux/BSD distributions to a partition or USB drive.
  1789. ◆ ungoogled-chromium : Chromium Web Browser without Google services.
  1790. ◆ unified-communications : Unified Communication from Mundio Mobiles.
  1791. ◆ unishellect : JSON parser file and menu customizez Hyper-inspired.
  1792. ◆ unityhub : Streamlines the way you find, download and manage your Projects.
  1793. ◆ unoffical-flomo : Unoffical Flomo Appimage Client.
  1794. ◆ unoffical-microsoft-loop : People who want to create together with ease.
  1795. ◆ unoffical-qwerty-learner : Words learning and English muscle memory training.
  1796. ◆ unoffical-sonos-controller : Unoffical sonos controller for linux.
  1797. ◆ unoffical-weread : Unoffical WeRead Appimage Client.
  1798. ◆ unoffical-xiaohongshu : Unoffical xiaohongshu Appimage Client.
  1799. ◆ unoffical-yuque : Unoffical YuQue Appimage Client.
  1800. ◆ unofficial-zalo : Unofficial Zalo App.
  1801. ◆ unreel : A GUI to create Reveal presentations.
  1802. ◆ updatedeployqt : Tool to deploy auto update for qt applications.
  1803. ◆ upscayl : Free and Open Source AI Image Upscaler.
  1804. ◆ upterm : A terminal emulator for the 21st century.
  1805. ◆ urbanterror : A team-based tactical game shooter based on the Quake 3 Engine.
  1806. ◆ utilso : Regex Tester, JWT Verify, Image Converter, Format JSON, Decode...
  1807. ◆ uyou : This is a todo list with electron.
  1808. ◆ v2ray-desktop : V2Ray GUI client for Linux.
  1809. ◆ valentina : Open source pattern-making software.
  1810. ◆ valeronoi : Companion app for Valetudo for generating WiFi heat maps.
  1811. ◆ vcloudcam : Solution for the camera systems of gas and fuel stations.
  1812. ◆ vechain : A browser that empowers DApps on VeChain.
  1813. ◆ ventoy : Tool to create bootable USB drive for ISO/WIM/IMG/VHD(x)/EFI files.
  1814. ◆ verto : A multi-currency crypto wallet with support for EOS & VTX.
  1815. ◆ vesktop : Vesktop gives you the performance of web Discord.
  1816. ◆ vessel : A simple wallet for managing your Steem accounts.
  1817. ◆ vgmtrans : A tool to convert proprietary, sequenced videogame music.
  1818. ◆ vhc-viewer-wayland : Vulkan Hardware Capability Viewer.
  1819. ◆ vhc-viewer-x11 : Vulkan Hardware Capability Viewer.
  1820. ◆ via-appimage : Your keyboard's best friend.
  1821. ◆ vial-appimage : GUI and a QMK fork for configuring your keyboard in real time.
  1822. ◆ viber : Proprietary cross-platform IM and VoIP software.
  1823. ◆ vidcutter : Simple and fast video cutter and joiner.
  1824. ◆ video-hub : A fastest way to browse and search for videos on your computer.
  1825. ◆ videomass : Free, open source and cross-platform GUI for FFmpeg.
  1826. ◆ vieb : Vim Inspired Electron Browser.
  1827. ◆ vifm : File manager with curses interface providing Vim-like environment.
  1828. ◆ vigad : Extract live-data from your screen.
  1829. ◆ vikunja : The open-source, self-hostable to-do app.
  1830. ◆ violetbug : Roku Debugger Graphical Interface.
  1831. ◆ viper-browser : Fast and lightweight Qt web browser.
  1832. ◆ viper : Launcher and Updater for TF2 Northstar.
  1833. ◆ vipster : Visual periodic structure editor.
  1834. ◆ vircadia : Open Source continuation of the High Fidelity metaverse.
  1835. ◆ virtscreen : Make your iPad/tablet/computer into a secondary monitor on Linux.
  1836. ◆ visual-define-xml-editor : Editor for CDISC Define-XML standard.
  1837. ◆ visualfamilytree : Create a family tree with information and pictures.
  1838. ◆ vita3k : Experimental PlayStation Vita emulator.
  1839. ◆ vitomu : Easy to use video to audio converter.
  1840. ◆ vivaldi-snapshot : Advanced Web Browser (Testing Version).
  1841. ◆ vivaldi-stable : Advanced Web Browser (Stable Version).
  1842. ◆ vivifyscrum : Agile Tool for Professionals.
  1843. ◆ vizgraph : A simple tool for Using Graphviz.
  1844. ◆ vk-desktop : Cross-platform client VKontakte.
  1845. ◆ vk-music-fs : Listen to the music from VK.
  1846. ◆ vlc-cmatomic : Video player (version 3.0.11.1) build from source.
  1847. ◆ vlc : Free and Open Source Video & Media player for Audio, streaming and more.
  1848. ◆ vlc-git : Free and Open Source Video & Media player (GIT version).
  1849. ◆ vlc-icflorescu : Video player (version 3.0.3) build from source.
  1850. ◆ vlc+ : Video & Media player for Audio, streaming and more (with JAVA support).
  1851. ◆ vnote : Note-taking application for pleasant Markdown.
  1852. ◆ vocabsieve : Simple sentence mining tool for language learning.
  1853. ◆ voicevox : Offical Frontend for the free VOICEVOX TTS Engine.
  1854. ◆ vpaint : Experimental vector graphics and 2D animation editor.
  1855. ◆ vrest-ng : Zero code API test automation solution.
  1856. ◆ vscodium : Community-driven, freely-licensed binary distribution of MS VSCode.
  1857. ◆ vue-calc : A Simple VueJS's Calculator built with ElectronJS.
  1858. ◆ vuerd : A desktop ERD app.
  1859. ◆ vup : Private and decentralized cloud storage.
  1860. ◆ vvave-maui : Manage your music collection and stream it from the cloud.
  1861. ◆ walc : WhatsApp Linux Client (Unofficial).
  1862. ◆ wallettech : BytechCoin GUI Wallet.
  1863. ◆ warp-terminal : Terminal reimagined with AI and collaborative tools.
  1864. ◆ watched : A media player and a browser for Excellent entertainment.
  1865. ◆ watchflower : Read and plot datas from your Xiaomi devices.
  1866. ◆ watchit : Open movies everywhere.
  1867. ◆ waterfox : Browse the World Wide Web, current version.
  1868. ◆ waterfox-classic-appimage : Browse the World Wide Web (legacy UI).
  1869. ◆ waterfox-classic : Browse the World Wide Web (legacy UI).
  1870. ◆ waterfox-g-appimage : Browse the World Wide Web (current version).
  1871. ◆ wavebox : The next generation of web-desktop communication.
  1872. ◆ wazo-desktop-appimage : Wazo desktop client for wazo VOIP server.
  1873. ◆ weakauras : App to provide missing link between Wago.io and World of Warcraft.
  1874. ◆ weatherdump : A WeatherDump GUI.
  1875. ◆ webamp : Winamp Player 2.9 reimplementation in HTML5 and JS.
  1876. ◆ webcamoid : A full featured and multiplatform webcam suite.
  1877. ◆ webcord : A Discord and Fosscord client implemented without Discord API.
  1878. ◆ webdesktop : WebDesktop make apps with just a text editor and nodejs.
  1879. ◆ webitel-phone : Webitel Phone (Alpha).
  1880. ◆ webkitty : Local web development IDE.
  1881. ◆ webrecorder : A complete packaging of Webrecorder hosted service in Electron.
  1882. ◆ weektodo : WeekToDo is a Free and Open Source Weekly Planner.
  1883. ◆ westeroscraftlauncher : Custom launcher for modded Minecraft (game).
  1884. ◆ wewechat++ : Make weweChat great again!!! 美丽的第三方微信PC客户端
  1885. ◆ wewechat : Unofficial WeChat client built with React, MobX and Electron.
  1886. ◆ wexond : Extensible, fast and innovative web browser with material UI.
  1887. ◆ wezterm : A GPU-accelerated terminal emulator and multiplexer.
  1888. ◆ whalebird : An Electron based Mastodon client.
  1889. ◆ whatsapp-for-linux : WhatsApp Linux Client (Unofficial).
  1890. ◆ whatsapp-nativefier : Electron-based WhatsApp Linux Client (Unofficial).
  1891. ◆ whirlpool-gui-appimage : Desktop GUI for Whirlpool by Samourai-Wallet.
  1892. ◆ whiteboard : Activity-based slideshow for coding webinars and presentations.
  1893. ◆ whu-library-seat : Wuhan University Library Assistant (for Jinan University).
  1894. ◆ widelands : Real-time strategy game with singleplayer campaigns.
  1895. ◆ windows2usb : Flash Drive burning utility (MBR/GPT, BIOS/UEFI, FAT32/NTFS).
  1896. ◆ windows95 : Windows 95 in Electron. Runs on macOS, Linux, and Windows.
  1897. ◆ wine32 : Compatibility layer to run only 32-bit Windows programs (Stable).
  1898. ◆ wine32-deploy : Tool for creating AppImages for 32-bit Microsoft Windows apps.
  1899. ◆ wine-4.21 : Appimage for Wine 32-bit you can run on no-multilib systems.
  1900. ◆ wine-5.11 : Appimage for Wine 32-bit you can run on no-multilib systems.
  1901. ◆ wine-6.0.1 : Appimage for Wine 32-bit you can run on no-multilib systems.
  1902. ◆ wine-devel : Compatibility layer to run x86_64 Windows programs (Dev Edition).
  1903. ◆ wine : Run Windows programs (select a version from mmtrt/WINE_AppImage).
  1904. ◆ wine-stable : Compatibility layer to run x86_64 Windows programs (Stable).
  1905. ◆ wine-staging : Compatibility layer to run x86_64 Windows programs (Staging).
  1906. ◆ wine-staging-ge-proton : Run x86_64 Windows programs (Staging GE Proton).
  1907. ◆ wire : The most secure collaboration platform.
  1908. ◆ wishdemo : A μ Tcl/Tk distribution statically linked (AppImage).
  1909. ◆ wiz : Cloud based note-taking application.
  1910. ◆ wiznoteplus : The third party that supports the plug-in is Zhinote client.
  1911. ◆ wnr : Work/Rest Timer. Stricter. Prettier. More features.
  1912. ◆ woke : A REST client with grand ambitions and limited scope.
  1913. ◆ wolai : A new form of document/note/information system (in chinese).
  1914. ◆ wonderpen-appimage : A professional writing app with markdown support.
  1915. ◆ wonderwall : Wallpaper manager for Linux.
  1916. ◆ woocommerce-pos : Electron Desktop App for WooCommerce POS
  1917. ◆ wootility : Utility for configuring Wooting keyboards.
  1918. ◆ wooting-analog-midi : Virtual MIDI device for (Wooting) analog keyboards.
  1919. ◆ wootomation : The official Wooting Macros software.
  1920. ◆ workflowy : A notetaking tool.
  1921. ◆ wowup : WowUp the World of Warcraft addon updater.
  1922. ◆ wps-office : Unofficial, Office suite built from the official .deb package.
  1923. ◆ wrapbox : An Electron wrapper for web pages.
  1924. ◆ wsjtz : AppImage of WSJT-Z – fork of WSJT-X with automation features.
  1925. ◆ wsocks : A light websocket based proxy.
  1926. ◆ wxmaxima : A document based interface for the computer algebra system Maxima.
  1927. ◆ wxmedit : A cross-platform Text/Hex Editor, an improved version of MadEdit.
  1928. ◆ xchat : Chat with other people using Internet Relay Chat.
  1929. ◆ xclicker : Fast gui autoclicker for x11 linux desktops.
  1930. ◆ xcloud-desktop-appimage : An unoffical desktop app for the XCloud web beta.
  1931. ◆ xde : The Expo Development Environment.
  1932. ◆ xelfviewer : A multiplatform ELF file viewer/editor.
  1933. ◆ xemu : Original Xbox Emulator for Windows, macOS, and Linux.
  1934. ◆ xl-converter : Powerful image converter with support for multithreading.
  1935. ◆ xlights : A sequencer for Lights and sequences manager.
  1936. ◆ x-loc : Extra localizations/translations manager for Stardew Valley.
  1937. ◆ xm8 : PC-8801 emulator for macOS and other platforms.
  1938. ◆ xmedcon : An open-source toolkit for medical image conversion.
  1939. ◆ x-minecraft-launcher : An Open Source Minecraft Launcher with Modern UX.
  1940. ◆ xnviewmp : Graphic viewer, browser, converter.
  1941. ◆ xonsh : Python-powered, cross-platform, Unix-gazing shell.
  1942. ◆ xournal++ : A C++ handwriting notetaking software with PDF annotation support.
  1943. ◆ xournal++nightly : C++ notetaking software with PDF annotation support (DEV).
  1944. ◆ xpeviewer : PE file viewer/editor.
  1945. ◆ xplist : Cross-platform Plist Editor.
  1946. ◆ xplorer : Xplorer, a customizable, modern file manager.
  1947. ◆ xxh-appimage : Bring your favorite shell wherever you go through the ssh.
  1948. ◆ yana : Note-taking app with nested documents, text search/editor, code...
  1949. ◆ yangdownloader-appimage : Downloads best-quality audio and video from YouTube.
  1950. ◆ yank-note : A Hackable Markdown Note Application for Programmers.
  1951. ◆ yaya : Yet Another Yahtzee-esque Application.
  1952. ◆ yesplaymusic : A third party music player for Netease Music.
  1953. ◆ youtube-music : Amazing electron wrapper for YouTube Music featuring plugins.
  1954. ◆ youtubesearchfilter : YouTube searches with/without a pre-filter from CLI.
  1955. ◆ ytdownloader : App for downloading Videos and Audios from hundreds of sites.
  1956. ◆ ytmdesktop : A Desktop App for YouTube Music.
  1957. ◆ yubikey-manager : Configure your YubiKey over all USB transports.
  1958. ◆ yuna : Anime player integrated with AniList, Crunchyroll, and Hidive.
  1959. ◆ yuview : YUV player with an advanced analytic toolset.
  1960. ◆ yuzu : An experimental open-source emulator for the Nintendo Switch.
  1961. ◆ zap : Delightful command line AppImage package manager for appimage.github.io.
  1962. ◆ zapdesktop : Desktop application for the lightning network.
  1963. ◆ zegarek : A simple clock with millisecond resolution.
  1964. ◆ zegrapher : Math graphing software.
  1965. ◆ zenity : A CLI utility that creates dialog boxes (Unofficial AppImage, GTK3).
  1966. ◆ zenkit : A platform for collaboration and project management.
  1967. ◆ zenroomstudio : Extensible IDE which targets multiple dev platforms.
  1968. ◆ zettlr : A Markdown Editor for the 21st century.
  1969. ◆ zmninja : Ionic app for Home/Commerical Security Surveillance.
  1970. ◆ znax : Znax is a cross platform puzzle / arcade game using SDL2 libraries.
  1971. ◆ znote : A Beautiful markdown editor inspired by Jupyter.
  1972. ◆ zograscope : Syntax-aware diff that provides a number of additional tools.
  1973. ◆ zoom : Video Conferencing and Web Conferencing Service.
  1974. ◆ zotero : Collect, organize, cite, and share your research sources.
  1975. ◆ zsync2 : A rewrite of the advanced file download/sync tool zsync.
  1976. ◆ zulip : Zulip Desktop Client for Linux.
  1977. ◆ zxinfo-file-browser : Organize and manage your emulator files for ZX Spectrum.
  1978. ◆ zx-poly : a multi-CPU ZX-Spectrum 128 concept platform.
  1979. ◆ zy-player : Video resource player, simple, ad-free and high-value.