x86_64-apps 169 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598
  1. ◆ 0ad-latest : Unofficial. Real Time Strategy game of ancient warfare, development branch.
  2. ◆ 0ad : Unofficial. FOSS historical Real Time Strategy, RTS game of ancient warfare.
  3. ◆ 3d-puzzles : 3D-Puzzles are Rubik, Dogic and Dogic12.
  4. ◆ 432hz-player : Because most music is recorded in 440hz, Audio Player.
  5. ◆ 7zip : 7-Zip is a file archiver with a high compression ratio.
  6. ◆ 86box : Emulator of x86-based machines based on PCem.
  7. ◆ 9launcher : An actively maintained and cross platform remake of Touhou Relauncher.
  8. ◆ aaaaxy : A nonlinear puzzle platformer, game.
  9. ◆ abiword : Unofficial. A light and free word processing software.
  10. ◆ accessimap-lecteur-der : Accessimap Lecteur DER.
  11. ◆ acreom : Acreom desktop app releases.
  12. ◆ actual : A super fast privacy-focused app for managing your finances.
  13. ◆ adb : Android Debug Bridge, a command line utility to handle Android devices. This script installs the full "platform-tools" suite.
  14. ◆ admin-tools : Administrative tools.
  15. ◆ advanced-passgen : Advanced Password Generator.
  16. ◆ advanced-rest-client : Advanced REST Client and API console, by Mulesoft.
  17. ◆ afetch : A CLI system information tool written in Rust.
  18. ◆ affine-beta : Next-gen knowledge base that brings planning, sorting and creating.
  19. ◆ affine-canary : Next-gen knowledge base that brings planning/sorting/creating.
  20. ◆ affine : Next-gen knowledge base that brings planning, sorting and creating.
  21. ◆ agregore : A minimal browser for the distributed web, Desktop version.
  22. ◆ ai-bot-workspace : Electron app including testing workspaces.
  23. ◆ aichat : AIO AI CLI tool integrating 20+ AI platforms, including OpenAI.
  24. ◆ aidm : AppImage Desktop Maker.
  25. ◆ aillio-ts : The desktop application for Aillio Bullet R1.
  26. ◆ aim : A command line download/upload tool with resume.
  27. ◆ aiming-pro : Aim trainer to practice, train and improve their FPS aim skills.
  28. ◆ air-controller-desktop : Android phone assistant,powered by Flutter.
  29. ◆ airspaces : An online map for your X-Plane flight sessions.
  30. ◆ aisap : Tool to make sandboxing AppImages easy through bwrap/bubblewrap.
  31. ◆ aisleriot : Unofficial. A card game featuring over 80 different solitaire-type card games.
  32. ◆ akasha : AKASHA community client.
  33. ◆ akuse : Simple and easy to use anime streaming desktop app without ads.
  34. ◆ albafetch : CLI, faster neofetch alternative, written in C. Still improving.
  35. ◆ alduin : An Atom and RSS feed aggregator.
  36. ◆ alephium-wallet : The official Alephium wallet for desktop.
  37. ◆ alexandria : eBook reader built with Tauri, Epub.js, and Typescript.
  38. ◆ alien-tec-ui : Alien-Tec Tron Matrix Like Shell Terminal User Interface.
  39. ◆ allusion : A desktop application for managing your visual library.
  40. ◆ alpine-flatimage : A hybrid of Flatpak sandboxing with AppImage portability.
  41. ◆ altair : The best graphQL client you will ever need.
  42. ◆ altitude : The Altitude wallet by Linda Project Inc.
  43. ◆ altus : Client for WhatsApp Web with themes & multiple account support.
  44. ◆ alvr : Stream VR games from your PC to your headset via Wi-Fi.
  45. ◆ amazingmarvin : Incorporates principles from behavioral psychology.
  46. ◆ ambermoon.net : Ambermoon rewrite in C#.
  47. ◆ amdgpu_top : Tool to display AMDGPU usage.
  48. ◆ amfora : A fancy terminal browser for the Gemini protocol.
  49. ◆ amusiz : Unofficial and unpretentious Amazon Music client.
  50. ◆ anavis : Tool to visualize musical form.
  51. ◆ anchor : An EOSIO Light Wallet with simple and advanced tools.
  52. ◆ android-knot : An Android gadget integrating Todo, Notes, Reader and more.
  53. ◆ android-messages-desktop : Messages for web, as a desktop app.
  54. ◆ android-studio-latest : Unofficial. Android Studio as AppImages, release.
  55. ◆ android-studio : Unofficial. Android Studio as AppImages, stable.
  56. ◆ android-tools : Unofficial AppImage for the Android Platform tools, adb, fastboot, etc.
  57. ◆ ani-cli : A cli tool to browse and play anime.
  58. ◆ animashooter-junior : User-friendly Stop-Motion Animation Software, FREE.
  59. ◆ animashooter-pioneer : User-friendly Stop-Motion Animation Software, PRO.
  60. ◆ animos : Anime-streaming desktop application without any ads.
  61. ◆ aniship : Allows for easy viewing of anime on PCs and laptops.
  62. ◆ ankama-launcher : Ankama is an entertainment and digital creation group.
  63. ◆ anki : Anki's shared backend and web components, and the Qt frontend.
  64. ◆ anklang : MIDI and Audio Synthesizer and Composer.
  65. ◆ another-redis-desktop-manager : Faster and better redis desktop manager.
  66. ◆ antares : An useful SQL client based on Electron.js and Vue.js.
  67. ◆ ant-downloader : BitTorrent Client developed by golang, angular, electron.
  68. ◆ antidot : Cleans up your $HOME from those pesky dotfiles.
  69. ◆ antimicrox : Use a gamepad to control a variety of programs.
  70. ◆ anydesk : Unofficial. Remote desktop application distributed.
  71. ◆ anything-llm : AI business intelligence tool. Any LLM, any document.
  72. ◆ anytype : The everything app for those who celebrate trust & autonomy.
  73. ◆ anzeigenchef : AdsChef manages your classified ads.
  74. ◆ aphelion-wallet : Aphelion desktop wallet application built with Electron.
  75. ◆ aphototoollibre : Photo editing app for GNU/Linux.
  76. ◆ apifox : API manager, in chinese. 文档、API 调试、API Mock、API 自动化测试
  77. ◆ apk-editor-studio : Easy to use APK, Android reverse-engineering tool.
  78. ◆ apla : Project was bootstrapped with Create React App.
  79. ◆ appflowy : Bring projects, wikis, and teams together with AI. Alternative to Notion.
  80. ◆ apphub : App that simplifies installation/management of .appImage packages.
  81. ◆ appimage-builder : GNU/Linux packaging solution using the AppImage format.
  82. ◆ appimagecraft : Powerful build script generator with a focus on AppImages.
  83. ◆ appimagehelper : Create and organize shortcuts for AppImages.
  84. ◆ appimagelauncher : CLI helper for running and integrating AppImages.
  85. ◆ appimagelint : Check AppImages for compatibility, best practices etc.
  86. ◆ appimagen : A script that generates a custom AppImage from a PPA.
  87. ◆ appimagepool : A simple, modern AppImageHub Client, powered by flutter.
  88. ◆ appimagetool : Tool to generate an AppImage from an existing AppDir.
  89. ◆ appimageupdater : AppImage Updater for Humans built with QML/C++ with Qt5.
  90. ◆ appimageupdatetool : Tool to update an AppImage using embedded information.
  91. ◆ appimageupdate : Tool to update an AppImage using embedded information.
  92. ◆ appinstall : AppImage Installer, a tool integrate AppImages to a linux desktop environment.
  93. ◆ appium-desktop : Graphical interface for the Appium server.
  94. ◆ app-outlet : A Universal linux app store for Flatpak/Snap/AppImage.
  95. ◆ aptakube : A modern and lightweight Kubernetes desktop client.
  96. ◆ aptly : Debian repository management CLI tool.
  97. ◆ apx-gcs : APX Ground Control.
  98. ◆ aranym : Virtual Machine for Atari 32-bit applications.
  99. ◆ arcade-manager : Manage your rom collection, Games/Retropie & Recalbox.
  100. ◆ arch-deployer : Script to convert Arch Linux packages to AppDir/AppImage.
  101. ◆ arch-flatimage : A hybrid of Flatpak sandboxing with AppImage portability.
  102. ◆ archimage-cli : Build AppImage packages using JuNest, Arch Linux.
  103. ◆ archimede : Unobtrusive directory information fetcher.
  104. ◆ archipelago : Archipelago Multi-Game Randomizer and Server.
  105. ◆ archipel : Decentralized archiving and media library system.
  106. ◆ archisteamfarm : C# application with primary purpose of farming Steam cards from multiple accounts simultaneously.
  107. ◆ arduino-ide : Open-source electronics platform.
  108. ◆ arena-tracker : Deck Tracker for Hearthstone game with arena in focus.
  109. ◆ aretext : Minimalist text editor with vim-compatible key bindings.
  110. ◆ arkaway : Another Arkanoid clone and make with Pyxel.
  111. ◆ ark.desktop.wallet : Ark Ecosystem Desktop Wallet.
  112. ◆ ark : Unofficial. Archiving tool for .zip/.tar/.rar and more. This script installs the full "kdeutils" suite.
  113. ◆ arma3-unix-launcher : ArmA 3 Unix Launcher, game.
  114. ◆ armagetronad : Multiplayer game in 3d that emulates the movie "Tron".
  115. ◆ armcord : Custom client designed to enhance your Discord experience.
  116. ◆ around : Video calls designed for energy, ideas and action.
  117. ◆ artifact : Win 40 levels of mayhem without getting destroyed, game.
  118. ◆ artisan : Visualizes the coffee roasting process.
  119. ◆ artix : One app. All your favorite Artix games.
  120. ◆ asarui : UI for Asar.
  121. ◆ asgardex : Thorchain wallet desktop app.
  122. ◆ astroffers : Take offers to watch at given nights by the NGC2000 catalog.
  123. ◆ astrofox : Audio reactive motion graphics program.
  124. ◆ astroshutter : Ui to control your camera for astrophotography.
  125. ◆ asunder : Unofficial. Audio CD ripper and encoder, WAV, MP3, OGG, FLAC, Opus, AAC....
  126. ◆ atomicwallet : Atomic vue-electron.
  127. ◆ atuin : Magical shell history.
  128. ◆ audacious : Unofficial. An open source audio and music player, descendant of XMMS.
  129. ◆ audacity : Multiplatform Audio Editor.
  130. ◆ audapolis : An editor for spoken-word audio with automatic transcription.
  131. ◆ audiomoth : Configuration app for the AudioMoth acoustic monitoring device.
  132. ◆ audiorelay : Stream audio between your devices. Turn your phone into a microphone or speakers for PC.
  133. ◆ augur : Augur Desktop Application.
  134. ◆ auryo : An audio/music desktop client for SoundCloud.
  135. ◆ authme : Simple cross-platform two-factor authenticator app for desktop.
  136. ◆ authy : Unofficial, Protect all your accounts with 2FA.
  137. ◆ autoedit2 : autoEdit2 Desktop Client for Linux.
  138. ◆ avantgarde : Avalonia XAML Preview.
  139. ◆ avidemux : Multiplatform Video Editor.
  140. ◆ avidemux-nightly : Multiplatform Video Editor, nightly build.
  141. ◆ avocado : PlayStation 1 emulator, games.
  142. ◆ avogadro2 : Molecular editor for computational chemistry, bioinformatics.
  143. ◆ awakened-poe-trade : Path of Exile trading app for price checking.
  144. ◆ axe-electrum : Axe Electrum Wallet.
  145. ◆ axolotl : A Signal compatible cross plattform client written in Go and Vuejs.
  146. ◆ badlion : Most Complete All-In-One Mod Library for Minecraft with 100+ Mods.
  147. ◆ baijimangaviewer : Manga viewer that uses Material Design.
  148. ◆ bambustudio : PC Software for BambuLab's 3D printers.
  149. ◆ banban : A productivity app inspired by GitHub Projects Kanban.
  150. ◆ bandwhich : Terminal bandwidth utilization tool.
  151. ◆ baobab-gtk3 : Unofficial. Disk Usage Analyser, version 3.38, for all GNOME4+ haters.
  152. ◆ barnacal : A simple menu bar app for viewing a calendar
  153. ◆ bastyon : Decentralized social network based on the blockchain.
  154. ◆ bat : A "cat" clone with wings.
  155. ◆ batch-explorer : A client tool to create/debug/monitor Azure Batch Apps.
  156. ◆ bat-extras : Bash scripts that integrate bat with various command line tools.
  157. ◆ battop : CLI, interactive batteries viewer.
  158. ◆ bauh : GUI for managing AppImage, Arch/AUR, DEBs, Flatpak, Snap and webapps.
  159. ◆ bazecor : Graphical configurator for Dygma Raise.
  160. ◆ bbg : A static blog generator based on Electron Technology.
  161. ◆ bdash : A simple business intelligence application.
  162. ◆ beam-wallet : Beam Desktop Wallet.
  163. ◆ bearly : The world's best AI at your fingertips.
  164. ◆ beatconnect-client : Beatconnect power for osu irc.
  165. ◆ beatmapexporter : osu!lazer beatmap exporter utility. Allowing mass export of beatmaps from the new osu!lazer file storage back into .osz files.
  166. ◆ beaver-notes : Build your knowledge one log at a time.
  167. ◆ beekeeper-studio : SQL query editor and database UI.
  168. ◆ beeper : All your chats in one app.
  169. ◆ bemoji : Emoji picker for bemenu/wofi/rofi/dmenu, remembers your favorites.
  170. ◆ bench-cli : CLI tool to benchmark commands, written in `Fortran`.
  171. ◆ bettercrewlink : Free, open, Among Us proximity voice chat.
  172. ◆ better-kirka-client : A electron js based client for the game kirka.io.
  173. ◆ better-osu-skills : Gets results from the osu! Using your own IRC credentials.
  174. ◆ bettersis : Modern shell for SIS.
  175. ◆ beurerscalemanager : AppImage packaging project for BeurerScaleManager.
  176. ◆ beyond-all-reason : 3D Real-Time Strategy Total Annihilation Inspired, game.
  177. ◆ bezique : Plays bezique game against the AI.
  178. ◆ bforartists : 3D modeling, animation, rendering and post-production.
  179. ◆ biblemultithelife : Bible multi languages, free, offline, no advertising, in English, French, Italian, Spanish, Portuguese.
  180. ◆ bidirectional : Write Arabic text on apps that don't support the bidirectional text.
  181. ◆ bilibili : Bilibili official desktop client.
  182. ◆ bilibilivideodownload : Bilibili video downloader.
  183. ◆ biliup-app : Bilibili uploader.
  184. ◆ billard-gl : Unofficial. 3D billiards game, play a game of 8-ball or 9-ball.
  185. ◆ billyfrontier : Pangea Software’s Billy Frontier for modern systems.
  186. ◆ binclock : Binary clock in terminal.
  187. ◆ bin : Effortless binary manager.
  188. ◆ binfinder : Find binary files not installed through package manager.
  189. ◆ bingada : Bingo application in GTKAda.
  190. ◆ binglite : A lightweight new Bing (AI chat) desktop application based on Tauri.
  191. ◆ bioanimation : CCNY Electrochemical Gradient Simulator.
  192. ◆ biplanes-revival : An old cellphone arcade recreated for PC.
  193. ◆ birds-kitchen : Recipe manager.
  194. ◆ bitbox-wallet : Cryptocurrency hardware wallet desktop app.
  195. ◆ bitfighter : A 2-D multi-player space combat game.
  196. ◆ bitshares : Advanced wallet interface for the BitShares financial blockchain.
  197. ◆ bitwarden : Password manager for individuals, teams and business.
  198. ◆ biying : Biying Wallpaper for Linux.
  199. ◆ bk : Terminal Epub reader.
  200. ◆ black-chocobo : FF7 Save Game Editor.
  201. ◆ blacknut : Cloud gaming client.
  202. ◆ blank : Blank is a minimalist, opinionated markdown editor made for writing.
  203. ◆ blastem : Clone of Mercurial Repo.
  204. ◆ blender-alpha : Very fast and versatile 3D modeller/renderer, Alpha.
  205. ◆ blender-beta : Very fast and versatile 3D modeller/renderer, Beta.
  206. ◆ blender-rc : Very fast and versatile 3D modeller/renderer, Release Candidate.
  207. ◆ blender : Very fast and versatile 3D modeller/renderer, Stable.
  208. ◆ blensor : 3D modeling, animation, rendering and post-production.
  209. ◆ blimp : Customizable terminal UI for monitoring weather information, application status, network latency, and more.
  210. ◆ blink : GUI of live indexed grep search for source code.
  211. ◆ blizzard-4 : Emulator & toolchain for the Blizzard 4 16-bit computer.
  212. ◆ blob-dl : Blob-dl is a yt-dlp CLI interface used to download video and audio files from YouTube.
  213. ◆ blobdrop : Drag and drop files directly out of the terminal.
  214. ◆ blockbench : Editor for boxy models and pixel art textures like Minecraft.
  215. ◆ block-dx : Exchange dApp built on top of the Blocknet Protocol.
  216. ◆ blockstream-green : Bitcoin wallet compatible with Blockstream Jade.
  217. ◆ bloks : An electron-vue project.
  218. ◆ bloomee : Music app designed to bring you ad-free tunes from various sources.
  219. ◆ bloomrpc : GRPC GUI client.
  220. ◆ blowfish : Display your total Ocean Token balances.
  221. ◆ blueglow : A simple system tray application to watch github notifications.
  222. ◆ bluetuith : A TUI bluetooth manager for Linux.
  223. ◆ boardgamestar : A platform for playing digital boardgames.
  224. ◆ bodacious : A bodacious music player.
  225. ◆ bodhi : Bodhi Prediction Market app.
  226. ◆ boilr : Synchronize games from other platforms into your Steam library.
  227. ◆ bomber : Unofficial. Arcade spaceship game. This script installs the full "kdegames" suite.
  228. ◆ bonsai-maui : Manage Git repositories from a GUI.
  229. ◆ book-manager : Simple desktop app to manage personal library.
  230. ◆ bookmarks-manager : Edit bookmarks, check url.
  231. ◆ boostchanger : Control CPU turbo boost and the settings of the cpu speed.
  232. ◆ boost-note : Document driven project management tool to speedup remote DevOps.
  233. ◆ botclient : A discord botclient built with Electron and React.
  234. ◆ botframework-emulator : Test and debug chat bots built with Bot Framework SDK.
  235. ◆ botim : Free, Secure, Reliable Messages and Calls.
  236. ◆ bottlebats : Client for the 2018 edition of the BottleBats AI competition.
  237. ◆ bottlenose : Bottlenose is a front-end for video game emulators.
  238. ◆ bottles : Unofficial. Manage wine prefixes and run Windows software & games in a new way.
  239. ◆ bottom : Yet another cross-platform graphical process/system monitor.
  240. ◆ bovo : Unofficial. Five in a row game from. This script installs the full "kdegames" suite.
  241. ◆ boxxy : Put bad Linux applications in a box with only their files.
  242. ◆ brackets : Brackets-Electron.
  243. ◆ brainverse : Electronic Lab Notebook for Reproducible Neuro Imaging Research.
  244. ◆ brainwaves : EEG Desktop Application.
  245. ◆ brave-appimage : Unofficial, a privacy oriented Web Browser based on Chromium, this is the "stable" release.
  246. ◆ brave : A privacy oriented Web Browser based on Chromium, this is the official "stable" release.
  247. ◆ brave-beta-appimage : Unofficial, a privacy oriented Web Browser based on Chromium, this is the "beta" release.
  248. ◆ brave-beta : A privacy oriented Web Browser based on Chromium, this is the official "beta" release.
  249. ◆ brave-nightly-appimage : Unofficial, a privacy oriented Web Browser based on Chromium, this is the "nightly" release.
  250. ◆ brave-nightly : A privacy oriented Web Browser based on Chromium, this is the official "nightly" release.
  251. ◆ bread : Install, update and remove AppImage from GitHub using your CLI.
  252. ◆ breaktimer : Save yourself from RSI and eye-strain.
  253. ◆ brickstore : An offline BrickLink inventory management tool.
  254. ◆ bridge : The perfect Bridge between Megascans and your favorite tools.
  255. ◆ brisqi : Offline-first Personal Kanban app.
  256. ◆ browservice : Browse the modern web on historical browsers.
  257. ◆ brs-emu-app : BrightScript Emulator, runs on browsers and Electron apps.
  258. ◆ bruno : An Opensource API Collection Collaboration Suite.
  259. ◆ brutespray : Bruteforcing from various scanner output. Automatically attempts default creds on found services.
  260. ◆ bscanfftwebcam : FDOCT tool.
  261. ◆ btop : A command line utility to monitor system resources, like Htop.
  262. ◆ bts-ce-lite : Telecommunication network management application.
  263. ◆ buche : A logger of sorts.
  264. ◆ buckets : Budgeting fast, simple and private.
  265. ◆ bugdom2 : Pangea Software’s Bugdom 2 for modern systems.
  266. ◆ bugdom : Pangea Software's Bugdom game.
  267. ◆ buho-maui : Easy-to-use note-taking application with “tags” support.
  268. ◆ bulkreviewer : Identify, review, and remove private information.
  269. ◆ bulkurlopener : Desktop version of the Bulk URL Opener extension.
  270. ◆ bunnyfetch : A small and fast tool for getting info about your system.
  271. ◆ bunqdesktop : A desktop implementation for the bunq API.
  272. ◆ burning-series : Watch any series from Burning Series, Unofficial client.
  273. ◆ buttercup : Free and Open Source password vault.
  274. ◆ bypass-cors : Unlock browser’s full potential!
  275. ◆ bytespeichertrayicon : Bytespeicher Status App.
  276. ◆ cabal-desktop : Cabal p2p offline-first desktop application.
  277. ◆ cacher : Cacher is a code snippet library for professional developers.
  278. ◆ cadmus : Pulse Audio real-time noise suppression plugin.
  279. ◆ caesium : Image compression software that helps you store, send and share digital pictures, supporting JPG, PNG, WebP and TIFF formats.
  280. ◆ calculist : Desktop version of Calculist.io.
  281. ◆ calibre : Unofficial. The one stop solution to all your e-book needs
  282. ◆ calm-circles : Calm down and draw something, in Lisp.
  283. ◆ calm-fan : Calm down and draw something, in Lisp.
  284. ◆ calmly-writer : Traditional word processors include dozens of options for formatting text, distracting you from what really matters, writing.
  285. ◆ calm-meditator : Calm down and draw something, in Lisp.
  286. ◆ calm-mondrian : Calm down and draw something, in Lisp.
  287. ◆ camelot : Camelot is cross-platform file manager written in C.
  288. ◆ candycrisis : Candy Crisis source port for modern operating systems.
  289. ◆ capbattleship : Battleship game with a pirate theme.
  290. ◆ caprine : Unofficial, elegant privacy focused Facebook Messenger app.
  291. ◆ carbonyl : Chromium running inside your terminal.
  292. ◆ cardo : Podcast client.
  293. ◆ cargo : Converts your crate into an AppImage.
  294. ◆ carnet : A complete and rich note taking app with sync capabilities.
  295. ◆ carpenters : Digital preservation ingest utility.
  296. ◆ carta : Cube Analysis and Rendering Tool for Astronomy.
  297. ◆ cask : A universal, distributed binary file manager.
  298. ◆ casm : Corinthian Abstract State Machine, CASM.
  299. ◆ casterr : Screen recorder, easing recording and clipping in-game.
  300. ◆ castersoundboard : Soundboard for hot-keying and playing back sounds.
  301. ◆ catalyst : Catalyst web browser.
  302. ◆ catapult : A cross-platform launcher for Cataclysm DDA and BN.
  303. ◆ catcher : Peer-testing of software projects.
  304. ◆ cate-desktop : GUI for the ESA CCI Toolbox, Cate.
  305. ◆ cavoke : Cavoke: Platform to create/host multiplayer turn-based board games.
  306. ◆ cbetar2 : ePub viewer supporting fetching and displaying HTML as ePub.
  307. ◆ cccp : Cortex Command, a community-driven effort to continue the development of Cortex Command.
  308. ◆ celeste64 : A game made by the Celeste developers.
  309. ◆ celestia-dev : Real time 3D space simulator, developer edition.
  310. ◆ celestia-enanched : Unofficial. Real-time 3D space simulator with extra detailed maps.
  311. ◆ celestia : Real time 3D space simulator.
  312. ◆ celoterminal-bin : Celo Terminal, AppImage version.
  313. ◆ cemu : A Nintendo Wii U emulator that is able to run most Wii U games.
  314. ◆ cerebral-debugger : Cerebral Debugger.
  315. ◆ cerebro : Open-source productivity booster with a brain.
  316. ◆ chain-desktop-wallet : Crypto.com DeFi Desktop Wallet.
  317. ◆ chainx-signer : Manage ChainX account, sign and sign transactions.
  318. ◆ chatall : Concurrently chat with ChatGPT, Bing Chat, bard, Alpaca and more.
  319. ◆ chatbox : Chatbox is a desktop app for GPT-4 / GPT-3.5, OpenAI API.
  320. ◆ chatgpt-next-web : A cross-platform ChatGPT/Gemini UI.
  321. ◆ chat-gpt : Unofficial. ChatGPT Desktop Application.
  322. ◆ chatpad-ai : Not just another ChatGPT user-interface.
  323. ◆ chatterino2-nightly : Second installment of the Twitch chat client.
  324. ◆ chatterino2 : Second installment of the Twitch chat client.
  325. ◆ cheat : Create and view interactive cheatsheets on the command-line.
  326. ◆ chemcanvas : A very intuitive 2D chemical drawing tool.
  327. ◆ cherry-studio : Cherry Studio is a desktop client that supports for multiple LLM providers.
  328. ◆ cherrytree : A hierarchical note taking application.
  329. ◆ chiaki : PlayStation 4 Remote Play Client.
  330. ◆ chimeradesk-kvm : Simple, fast and flexible DIY Remote Desktop software.
  331. ◆ chimeradesk : Simple, fast and flexible DIY Remote Desktop software.
  332. ◆ chrolog : A automated time tracking tool.
  333. ◆ chromium-beta : Unofficial. FOSS Web Browser, base of Google Chrome, beta edition.
  334. ◆ chromium-bsu : Unofficial. Fast paced arcade style scrolling space shooter, game.
  335. ◆ chromium-edge : Unofficial. FOSS Web Browser, base of Google Chrome, edge edition.
  336. ◆ chromium-latest : FOSS Web Browser, base of Google Chrome, official unstable build.
  337. ◆ chromium-rc : Unofficial. FOSS Web Browser, base of Google Chrome, release candidate.
  338. ◆ chromium : Unofficial. FOSS Web Browser, base of Google Chrome, Edge and Brave, stable.
  339. ◆ chrysalis-bin : Graphical configurator for Kaleidoscope-powered keyboards.
  340. ◆ ciaa-suite : Makefile based IDE for embedded systems.
  341. ◆ cicada : An old-school bash-like Unix shell written in Rust.
  342. ◆ cider : A new cross-platform Apple Music experience with performance in mind.
  343. ◆ cinelerra-gg : Professional video editing and compositing environment.
  344. ◆ cinny : Yet another matrix client for desktop.
  345. ◆ circle-z : A chat client for online math courses.
  346. ◆ circuitblocks : Helps newbies get into embedded programming.
  347. ◆ city-hub : Hub into everything on City Chain/Smart City Platform.
  348. ◆ clamtk : An easy to use, light-weight, on-demand virus scanner for Linux systems
  349. ◆ clash-verge : A multiplatform Clash GUI based on tauri.
  350. ◆ classicimageviewer : A simple image viewer with some editing features.
  351. ◆ cleepdesktop : Desktop application to manage your Cleep devices.
  352. ◆ clementineremote : Remote for Clementine Music Player.
  353. ◆ clifm : The shell-like, command line terminal file manager simple, fast, extensible, and lightweight as hell.
  354. ◆ cliniface : 3D Facial Image Visualisation and Analysis.
  355. ◆ clipgrab : Download and Convert Online Videos.
  356. ◆ clip-maui : Official movie player of Maui using MPV as backend.
  357. ◆ clippy : Clipboard History.
  358. ◆ clipr : The clipboard that syncs.
  359. ◆ clipse : Configurable TUI clipboard manager for Unix.
  360. ◆ cloud-browser : Access to files located in various cloud services.
  361. ◆ clownmaped : Sonic the Hedgehog sprite editor, clone of Xenowhirl's SonMapEd.
  362. ◆ clownmdemu : Reference standalone frontend for clownmdemu.
  363. ◆ cncjs : CNC Milling Controller.
  364. ◆ cncra2yr : C&C Red Alert 2, a real-time strategy game by Westwood Pacific.
  365. ◆ coal-launcher : A client to view and play games from the AB Coal website.
  366. ◆ cocomusic : A simple music player built by electron and vue.
  367. ◆ code-notes : A simple code snippet amp built with Electron.
  368. ◆ code-oss : Visual Studio Code OSS Edition.
  369. ◆ code-radio : A command line music radio client for coderadio.freecodecamp.org, written in Rust.
  370. ◆ code : Visual Studio, VSCode, Original Editor to build/debug web/cloud apps.
  371. ◆ coinstac : Collaborative Informatics and Neuroimaging Suite Toolkit.
  372. ◆ colobot : Colonize with bots, game.
  373. ◆ colon : A flexible text editor.
  374. ◆ colorgenerator : Generates color palettes similar to ColorBrewer.
  375. ◆ colorpicker : Electron app that can show colors with hex/rgb.
  376. ◆ colorstatic-bash : CLI to generate a random colorful "Static"/"Matrix".
  377. ◆ comic-book-reader : Reader and converter for cbz, cbr, epub and pdf files.
  378. ◆ comic-reader : Electron based comic reader.
  379. ◆ comics-downloader : Tool to download comics and manga in pdf/epub/cbr/cbz from a website.
  380. ◆ comictagger : A multi-platform app for writing metadata to digital comics.
  381. ◆ communicator-maui : Create and organize contacts, phone, email, name, etc..
  382. ◆ compass : Air Traffic Surveillance DataBase.
  383. ◆ concordium-desktop-wallet : The official Concordium Dektop Wallet.
  384. ◆ conduction : Tasks? Done. That was quick.
  385. ◆ conky : Light-weight system monitor for X.
  386. ◆ consoleworkbench : Console workbench.
  387. ◆ contour : Modern C++ Terminal Emulator.
  388. ◆ conty : Easy to use unprivileged and portable Arch Linux container.
  389. ◆ conty-lite : Easy to use unprivileged and portable Arch Linux container.
  390. ◆ conty-wine : Easy to use unprivileged and portable Arch Linux container.
  391. ◆ converseen : A batch image converter and resizer.
  392. ◆ converter432hz : Converts and re-encodes music to 432hz.
  393. ◆ coolercontrol : A program to monitor and control your cooling devices.
  394. ◆ coolercontrold : Daemon for coolercontrol, to monitor your cooling devices.
  395. ◆ cool-retro-term : Use the command line the old way.
  396. ◆ copytranslator : Foreign language reading and translation assistant.
  397. ◆ cordlauncher : Cord launcher based on Electron and Wep Application.
  398. ◆ coreaction : A side bar for showing widgets for CuboCore Application Suite.
  399. ◆ corearchiver : Archive manager for CuboCore Application Suite.
  400. ◆ corefm : A lightweight file-manager for C Suite.
  401. ◆ coregarage : A setting manager for CuboCore Application Suite.
  402. ◆ corehunt : A file search utility for CuboCore Application Suite.
  403. ◆ coreimage : An image viewer for CuboCore Application Suite.
  404. ◆ coreinfo : A file information viewer for CuboCore Application Suite.
  405. ◆ corekeyboard : A x11 based virtual keyboard for C Suite.
  406. ◆ corepad : A document editor for CuboCore Application Suite.
  407. ◆ corepaint : A paint app for CuboCore Application Suite.
  408. ◆ corepins : A bookmarking app for CuboCore Application Suite.
  409. ◆ corerenamer : A batch file renamer for CuboCore Application Suite.
  410. ◆ coreshot : A screen capture utility for CuboCore Application Suite.
  411. ◆ corestats : A system resource viewer from the CoreApps family.
  412. ◆ corestuff : An activity viewer for CuboCore Application Suite.
  413. ◆ coreterminal : A terminal emulator for C Suite.
  414. ◆ coretime : A time related task manager for CuboCore Application Suite.
  415. ◆ coreuniverse : Shows releated information of apps from CuboCore App Suite.
  416. ◆ cosmic-comics : Web Server based Comics / Manga Collectionner & viewer.
  417. ◆ cosmonium : 3D astronomy and space exploration program.
  418. ◆ cowitness : A powerful web app testing tool that enhances the accuracy and efficiency of your testing efforts.
  419. ◆ cozydrive : File Synchronisation for Cozy, cloud.
  420. ◆ cpeditor : Code editor specially designed for competitive programming.
  421. ◆ cpod : A simple, beautiful podcast app.
  422. ◆ cpufetch : Simple yet fancy CPU architecture fetching tool.
  423. ◆ cpu-x : Software that gathers information on CPU, motherboard and more.
  424. ◆ crabfetch : Extremely fast, featureful and customizable command-line fetcher.
  425. ◆ craftos-pc : Advanced ComputerCraft emulator written in C++.
  426. ◆ crankshaft : A sensible krunker client written in typescript.
  427. ◆ creality-print : Creality Print is a slicer dedicated to FDM printers.
  428. ◆ crg-data-tool : A tool for working with Games Data files from CRG.
  429. ◆ cric : Custom Runtime Image Creator.
  430. ◆ criteria1d : A one-dimensional agro-hydrological model.
  431. ◆ criteria1d-pro : A one-dimensional agro-hydrological model, PRO.
  432. ◆ criteria-geo : A one-dimensional agro-hydrological model, GIS interface.
  433. ◆ croc : Easily and securely send things from one computer to another.
  434. ◆ cro-chain-desktop-bin : Crypto.com DeFi Desktop Wallet, AppImage version.
  435. ◆ crock : Crock is rock clock.
  436. ◆ cromagrally : The wildest racing game since man invented the wheel!
  437. ◆ cromberg : Personal accounting system.
  438. ◆ crosscode-map-editor : Map Editor for CrossCode.
  439. ◆ crossmobile : Create native iOS/Android/Windows apps in Java.
  440. ◆ crow-translate : Translate and speak text using Google, Yandex, Bing and more.
  441. ◆ cryplicity : Electron application boilerplate.
  442. ◆ crypter : An innovative, convenient and secure crypto app.
  443. ◆ cryptocam-companion : GUI to decrypt videos taken by Cryptocam.
  444. ◆ cryptomator : Cloud Storage Encryption Utility.
  445. ◆ cryptr : A GUI for Vault.
  446. ◆ cscrypto : A crypto app.
  447. ◆ ctool : Common Tools for Program Development.
  448. ◆ ctop : Top-like interface for container metrics.
  449. ◆ cubicsdr : Software-Defined Radio Application.
  450. ◆ cura : An open source slicing application for 3D printers.
  451. ◆ cura-beta : An open source slicing application for 3D printers, beta.
  452. ◆ curlie : The power of curl, the ease of use of httpie.
  453. ◆ cursor : Write, edit, and chat about your code with GPT-4.
  454. ◆ customrpc : An electron-vue project.
  455. ◆ cutechess : Cute Chess is a GUI, a CLI and a library for playing chess.
  456. ◆ cutepeaks : A simple sanger trace file viewer.
  457. ◆ cutevariant : A genetics variant filtering tools
  458. ◆ cutter : Free and Open Source Reverse Engineering Platform.
  459. ◆ czkawka : App to find duplicates, empty folders, similar images etc.
  460. ◆ dana : A desktop client for the Dana learning box.
  461. ◆ darktable-nightly : Photography workflow app and raw developer, nightly.
  462. ◆ darktable : Photography workflow app and raw developer.
  463. ◆ dashy-app : Dashboard creation application.
  464. ◆ database-dossier : A User Interface for your databases.
  465. ◆ dataset-annotator : An annotation tool for a dataset.
  466. ◆ datcord : Discord client.
  467. ◆ dawnlightsearch : A Linux version of Everything Search Engine.
  468. ◆ dbeaver-ce : Unofficial, DBeaver Community is a free cross-platform database tool for developers, database administrators, analysts, and everyone working with data.
  469. ◆ dbee : Fast & Minimalistic Database Browser.
  470. ◆ dbet-wallet : DBET Wallet.
  471. ◆ dbgate : Opensource database administration tool
  472. ◆ dbin : Poor man's package manager. About 3000 statically linked binaries in the repos!
  473. ◆ deadbeef : A modular cross-platform audio player.
  474. ◆ deadbeef-appimage : Unofficial AppImage of the DeaDBeeF music player. Stable build.
  475. ◆ deadbeef-nightly : A modular cross-platform audio player. Nightly build.
  476. ◆ deadbeef-nightly-appimage : Unofficial AppImage of the DeaDBeeF music player. Nightly build.
  477. ◆ deadgame-2048 : GUI tool available for ALL platforms.
  478. ◆ deb2appimage : Build AppImages from deb packages on any distro.
  479. ◆ debian-testing-avidemux : Unofficial, Avidemux built from deb-multimedia.
  480. ◆ deckboard : Control your PC with your phone in easy way possible.
  481. ◆ dedop-studio : DeDop Studio
  482. ◆ deepl-linux-electron : DeepL Integration. Select & translate text in any app.
  483. ◆ deeplx : DeepL Free API, No TOKEN required.
  484. ◆ deepnotes : End-to-end encrypted visual note-taking tool.
  485. ◆ deeptags : Markdown notes manager with support for nested tags.
  486. ◆ deerportal : Full of the diamonds board game.
  487. ◆ deezer : A linux port of Deezer, allows downloading your songs, music.
  488. ◆ defichain-app : DefiChain Wallet AppImage.
  489. ◆ delir : Web Technology driven VFX Application.
  490. ◆ deltachat-desktop : Desktop Application for delta.chat.
  491. ◆ demonizer : Demonic corruption fantasy shmup.
  492. ◆ densify : A GTK+ GUI Application written in Python that simplifies compressing PDF files with Ghostscript.
  493. ◆ deployer : Deploy your applications through Jenkins.
  494. ◆ deskreen : Turns any device with a web browser into a secondary screen.
  495. ◆ destiny : Cross-platform Magic Wormhole graphical client.
  496. ◆ devclean : A CLI and Desktop GUI app to clean dev dependencies (node_modules, cache) and more.
  497. ◆ devdocs-desktop : Desktop client for devdocs.io.
  498. ◆ devhub : TweetDeck for GitHub
  499. ◆ devilutionx : Diablo build for modern operating systems.
  500. ◆ devsidecar : Dev sidecar/github/git/stackoverflow acceleration, in chinese.
  501. ◆ devtools-x : Collection of offline first developer utilities available as desktop application.
  502. ◆ dexter-dev-env : Dexter Development Environment.
  503. ◆ dezor : The web browser including VPN and Adblocker.
  504. ◆ dfdemo : A thin Tcl/Tk GUI around the df POSIX command.
  505. ◆ dfilemanager : File manager written in Qt and C++.
  506. ◆ dicomautomaton : Tools for working with medical physics data.
  507. ◆ didder : An extensive, fast, and accurate command-line image dithering tool.
  508. ◆ die-engine : Detect It Easy, a program for determining types of files.
  509. ◆ diffuse : Music player, connects to your cloud/distributed storage.
  510. ◆ digikam : Professional and advanced digital photo management application.
  511. ◆ dingtalk : DingTalk desktop version based on electron.
  512. ◆ disass : A simple disassembly tool.
  513. ◆ discord-qt : Unofficial. Discord client powered by Node.JS and Qt Widgets.
  514. ◆ discord : Unofficial. All-in-one voice and text chat for gamers.
  515. ◆ diskonaut : Terminal disk space navigator.
  516. ◆ dissent : Tiny native Discord app.
  517. ◆ dl-desktop : Desktop client for the Duolingo language learning application.
  518. ◆ dockstation : Developing with Docker has never been so easy and convenient.
  519. ◆ doggo : :dog: Command-line DNS Client for Humans. Written in Golang
  520. ◆ dokidokimodmanager : Mod Manager for Doki Doki Literature Club!
  521. ◆ dolphin-emu : Unofficial, GameCube/Nintento Wii emulator with improvements.
  522. ◆ domterm : DOM/JavaScript-based terminal-emulator/console.
  523. ◆ dooit : An awesome TUI todo manager.
  524. ◆ dopamine-preview : The audio player that keeps it simple.
  525. ◆ dosemu : Run DOS programs under linux.
  526. ◆ dotto : A portable and modern pixelart editor, written from scratch.
  527. ◆ doublecmd-gtk : Two-panel file manager, also known as Double Commander.
  528. ◆ doublecmd-qt : Two-panel file manager, also known as Double Commander.
  529. ◆ downline : A cross-platform video and audio downloader.
  530. ◆ dra : A command line tool to download release assets from GitHub.
  531. ◆ dragdrop : Small drag-and-drop file source for the command line.
  532. ◆ dragoman : GUI for polyglot.
  533. ◆ dragula : Free Stock Images on Steroids.
  534. ◆ draw : Draw in your terminal.
  535. ◆ draw.io : draw.io desktop.
  536. ◆ drawpile : Drawing program to sketch on the same canvas simultaneously.
  537. ◆ drill : Search files without indexing, but clever crawling.
  538. ◆ droidcam : A DroidCam AppImage for the Steam Deck/SteamOS 3.0.
  539. ◆ dropbox : A free cloud service, Unofficial AppImage.
  540. ◆ droppoint : Drag content without having to open side-by-side windows.
  541. ◆ dstask : Git powered terminal-based todo/note manager, markdown note page per task.
  542. ◆ dtmate : CLI to compute difference between date, time or duration.
  543. ◆ dua : View disk space usage and delete unwanted data, fast.
  544. ◆ duckling : A fast viewer for CSV/Parquet files and databases such as DuckDB, SQLite, PostgreSQL, MySQL, Clickhouse, etc.
  545. ◆ duckstation : PlayStation 1, aka PSX games Emulator.
  546. ◆ duelyst : A digital collectible card game and turn-based strategy hybrid.
  547. ◆ duf : Disk Usage/Free Utility, a better 'df' alternative.
  548. ◆ dukto : Easy and multi-platform file transfer tool.
  549. ◆ dune : A shell by the beach.
  550. ◆ dunst : Lightweight and customizable notification daemon.
  551. ◆ duskplayer : A minimal music player built on electron.
  552. ◆ dust3d : 3D modeling software for games, 3D printing, and so on.
  553. ◆ dust : A more intuitive version of du in rust.
  554. ◆ dvdisaster : Additional error protection for CD/DVD media.
  555. ◆ dwarf-fortress : The AppImage of lnp-forge built LinuxDwarfPack.
  556. ◆ dwyco-phoo : Dwyco Phoo Chat and Video Calling.
  557. ◆ e2-sat-editor : Satellite channel lists editor with tabbed nav.
  558. ◆ eaglemode : Zoomable user interface with plugin applications.
  559. ◆ easymercurial : A simple UI for the Mercurial version-control system.
  560. ◆ ecency-surfer : Rewarding communities built, owned and operated by its users.
  561. ◆ ecode : Lightweight code editor designed for modern hardware.
  562. ◆ edex-ui : A cross-platform, customizable science fiction terminal emulator.
  563. ◆ effer : Encrypted CLI Notepad written in Rust
  564. ◆ eget : Easily install prebuilt binaries from GitHub.
  565. ◆ ehdev-shell : An electron based developing tool for feds.
  566. ◆ eka2l1 : A Symbian OS/N-Gage emulator
  567. ◆ eksplode.re : Bomberman game made with Godot under BSD3.
  568. ◆ elapp : Elapp let's you send files to mobile and desktop devices near you.
  569. ◆ elcalc : Cross-Platform calculator built with Electron.
  570. ◆ eldumper : A GB Cartridge Dumper.
  571. ◆ electorrent : A remote control Torrent client.
  572. ◆ electrocrud : No coding is required.
  573. ◆ electron-app-store : Simple App Store for Apps Built with Electron.
  574. ◆ electron-cash : Lightweight Bitcoin Cash Client.
  575. ◆ electron-mail : Unofficial ProtonMail Desktop App.
  576. ◆ electron-react-boilerplate : A Foundation for Scalable Cross-Platform Apps.
  577. ◆ electronreact : Desktop application using Electron and React.
  578. ◆ electron-ssr : Install electron-ssr from appimage.
  579. ◆ electron-utils : Electron Utils for every day usage as a dev.
  580. ◆ electron-wechat : Wechat desktop application.
  581. ◆ electronwmd : Upload music to NetMD MiniDisc devices.
  582. ◆ electron-xiami : Xiami Electron desktop application.
  583. ◆ electrumfair : Lightweight FairCoin Client.
  584. ◆ electrum : Lightweight Bitcoin Client.
  585. ◆ electrum-ltc : A simple, but powerful Litecoin wallet.
  586. ◆ electrum-nmc : Lightweight Namecoin Client.
  587. ◆ electrum-ravencoin : Forked from the Electrum Bitcoin base client.
  588. ◆ element : A feature-rich client for Matrix.org.
  589. ◆ elementary-code : AppImage version of Elementary OS "Code" by Maksym Titenko.
  590. ◆ elements : App which displays the periodic table, Education, Science.
  591. ◆ elk : Native version of Elk, a nimble Mastodon web.
  592. ◆ ellas-war : Explore Ancient Greece on Ellas-War.
  593. ◆ elphyre-walletshell : Elphyrecoin GUI Wallet.
  594. ◆ elvish : Powerful modern shell scripting.
  595. ◆ elzabrowser : Elza incognito web browser.
  596. ◆ emacs-nox-daily : Unofficial. FOSS text editor for complete programming language.
  597. ◆ emacs-nox : Unofficial. FOSS text editor for complete programming language.
  598. ◆ emacs-pgtk-daily : Unofficial. FOSS text editor for complete programming language.
  599. ◆ emacs-pgtk : Unofficial. FOSS text editor for complete programming language.
  600. ◆ emacs : Unofficial. FOSS text editor for complete programming language.
  601. ◆ emacs-x11-daily : Unofficial. FOSS text editor for complete programming language.
  602. ◆ emacs-x11 : Unofficial. FOSS text editor for complete programming language.
  603. ◆ embedded-ide : Makefile based IDE for embedded systems.
  604. ◆ ember : Client for the WorldForge virtual world system, game.
  605. ◆ emoji-keyboard : Virtual keyboard-like emoji palette for Linux.
  606. ◆ emudeck : EmuDeck Desktop Electron Wrapper.
  607. ◆ en-croissant : The Ultimate Chess Toolkit.
  608. ◆ encryptpad : Secure text editor and binary encryptor with passwords.
  609. ◆ endless-sky : Space exploration and combat game.
  610. ◆ enoseannotator : View, annotate and store measurements of the eNose sensor.
  611. ◆ ente-auth : Fully open source, End to End Encrypted alternative to Google Photos and Apple Photos.
  612. ◆ ente-photos : Binary releases of the Ente Photos desktop app.
  613. ◆ enve : Create 2D Animations.
  614. ◆ envkey : EnvKey’s cross-platform native app.
  615. ◆ eosvc : Application for management of self-employeed people.
  616. ◆ eplee : Sweet, simple epub reader.
  617. ◆ eqonomize : Manage your personal finances.
  618. ◆ era : ERA is your note-taking tool.
  619. ◆ erdesigner : ER Diagram tool available for ALL platforms.
  620. ◆ erscaffold : A code generator for websites.
  621. ◆ escrcpy : Graphical Scrcpy to display and control Android, devices powered by Electron.
  622. ◆ es-de : EmulationStation Desktop Edition.
  623. ◆ esearch : Screenshot OCR search translate search for picture paste...
  624. ◆ espanso : Cross-platform Text Expander written in Rust.
  625. ◆ espi : Software recreation of the SP-1200 drum machine.
  626. ◆ etcher : Flash OS images to SD cards and USB drives, Balena Etcher.
  627. ◆ etcher-latest : Flash OS images to SD cards and USB drives, Balena Etcher.
  628. ◆ eternal-lands : 3D fantasy multiplayer online role playing game.
  629. ◆ eternalmodmanager : A cross platform mod manager for DOOM Eternal.
  630. ◆ etherealengine-cc : App for managing Ethereal Engine cluster.
  631. ◆ etichetta : A YOLO annotator, for human beings.
  632. ◆ eudic : Chinese app to learn english, listen statistics/note synch....
  633. ◆ evalit : A notepad calculator application with JavaScript configuration.
  634. ◆ everdo : A powerful cross-platform GTD app with focus on privacy.
  635. ◆ everinst : An installer for the Everest mod loader.
  636. ◆ evince : Unofficial. Document viewer for popular document formats.
  637. ◆ evoplex : Agent-based modeling.
  638. ◆ excel-parser-processor : Generates an array of items from the rows.
  639. ◆ exe : A Elearning XHTML/HTML5 editor.
  640. ◆ exeqt : Cross platform tray manager.
  641. ◆ exifcleaner : Clean exif metadata from images, videos, and PDFs.
  642. ◆ eximchain-wallet : Eximchain Wallet web and electron app.
  643. ◆ exocortex : An encrypted note taking and personal knowledge management app for those who value privacy and security.
  644. ◆ exodus : Send, receive & exchange cryptocurrency. Bitcoin wallet.
  645. ◆ explorook : Rookout’s site addon to support local files and folders.
  646. ◆ exportoo : Read and search your exports.
  647. ◆ exsplode.re : A Bomberman game made with Godot under BSD3.
  648. ◆ extraterm : The swiss army chainsaw of terminal emulators.
  649. ◆ extrema : Data visualisation and analysis.
  650. ◆ extremetuxracer : Unofficial. 3D racing game with Tux, the Linux penguin.
  651. ◆ eyestalker : Video-based eye tracking using recursive estimation of pupil.
  652. ◆ eza : A modern, maintained replacement for ls.
  653. ◆ ezup : Easy File Upload to Cloud Storage.
  654. ◆ f1mv-lights-integration : Connect your smart home lights to MultiViewer.
  655. ◆ fafarunner : A game developed using flutter and flame.
  656. ◆ fairshare : Simplifying the curation and sharing of biomedical research.
  657. ◆ fakedata : CLI utility for fake data generation.
  658. ◆ fantascene-dynamic-wallpaper : Dynamic wallpaper software for Linux.
  659. ◆ fantasia-archive : A database manager for world building.
  660. ◆ farmhand : A resource management game that puts a farm in your hand.
  661. ◆ fastboot : Tool to flash Android devices. This script installs the full "platform-tools" suite.
  662. ◆ fastcompmgr : A fast compositor for X11.
  663. ◆ fastfetch : Like neofetch, but much faster because written mostly in C.
  664. ◆ fastqt : Control tool for high throughput genomics sequence data.
  665. ◆ fasttrack : Fast tracking of multiple objects.
  666. ◆ fat-wallet : Wallet for FAT tokens.
  667. ◆ fchat-rising : A customized version of mainline F-Chat 3.0 client.
  668. ◆ fchat : The F-Chat 3.0 client.
  669. ◆ fcp : CLI, a significantly faster alternative to the classic Unix cp(1) command, copying large files and directories in a fraction of the time.
  670. ◆ f-crm : Customer Relations Management for Freelancers.
  671. ◆ fd : A simple, fast and user-friendly alternative to 'find'.
  672. ◆ fdc3-sail : Open implementation of the FDC3 standard using Electron.
  673. ◆ feather-wallet : Monero wallet.
  674. ◆ feebas : Screenshot comparison tool for identifying visual regressions.
  675. ◆ feedseries : Follow your series enthusiast news, in french.
  676. ◆ feidao : Feidao Online Course Design Platform, chinese.
  677. ◆ feishin : Sonixd Rewrite, a desktop music player.
  678. ◆ ferdium : All your services in one place, built by the community.
  679. ◆ fetchit : A system fetch tool for Linux, written in Rust.
  680. ◆ ffdec : JPEXS Free Flash Decompiler.
  681. ◆ ffdec-nightly : JPEXS Free Flash Decompiler.
  682. ◆ fflogs-uploader : FFLogs Uploader appimage.
  683. ◆ ff-password-exporter : Export your saved passwords from Firefox.
  684. ◆ ffsend : Easily and securely share files from the command line. A fully featured Firefox Send client.
  685. ◆ ffvim : FIVIM is an editor for encrypted notes and files.
  686. ◆ ffwa-facebook : WebApp & Firefox Profile for Facebook.
  687. ◆ ffwa-github : WebApp & Firefox Profile for GitHub.
  688. ◆ ffwa-gmail : WebApp & Firefox Profile for Gmail.
  689. ◆ ffwa-netflix : WebApp & Firefox Profile for Netflix.
  690. ◆ ffwa-reddit : WebApp & Firefox Profile for Reddit.
  691. ◆ ffwa-twitter : WebApp & Firefox Profile for Twitter.
  692. ◆ ffwa-whatsapp : WebApp & Firefox Profile for WhatsApp.
  693. ◆ ffwa-wikipedia : WebApp & Firefox Profile for Wikipedia.
  694. ◆ ffwa-youtube : WebApp & Firefox Profile for YouTube.
  695. ◆ ficus : A software for editing and managing markdown documents.
  696. ◆ fidias-database-migration-app : Migrate SQL-based databases.
  697. ◆ fiery-maui : Web browser with integrated ad-blocker and split views.
  698. ◆ fifo : A modern web browser, built on top of modern web technologies.
  699. ◆ figma-linux : First interface design tool based in the browser, graphics.
  700. ◆ file-commander : CLI, cross-platform Total Commander-like orthodox file manager.
  701. ◆ file-converter : Convert between various file formats.
  702. ◆ filelight : Unofficial. View disk usage information. This script installs the full "kdeutils" suite.
  703. ◆ filen-cli : Filen CLI for Windows, macOS and Linux
  704. ◆ filen : Desktop client for Filen.io, end-to-end encrypted cloud storage.
  705. ◆ file-to-c : Tool for generating a C header from a spir-v binary file.
  706. ◆ filezilla : The free FTP solution with support for FTP over TLS and SFTP.
  707. ◆ filmulator-gui : Simplified raw editing with the power of film, graphics.
  708. ◆ fingrom : Financial accounting application
  709. ◆ firealpaca : A Free and Multiplatform Digital Painting Software.
  710. ◆ firedragon : A web browser based on Floorp (the Vivaldi of Firefox's) with many opiniated settings by default.
  711. ◆ firefly-desktop : The official IOTA and Shimmer wallet.
  712. ◆ firefox-appimage : Unofficial, AppImage of the Web Browser, Stable.
  713. ◆ firefox-beta-appimage : Unofficial, AppImage of the Web Browser, Beta.
  714. ◆ firefox-beta : Fast, powerful and extensible Web Browser, Beta Edition.
  715. ◆ firefox-devedition-appimage : Unofficial AppImage of the Web Browser, Dev.
  716. ◆ firefox-dev : Fast, powerful and extensible Web Browser, Developer Edition.
  717. ◆ firefox-esr-appimage : Unofficial AppImage of the Web Browser, ESR.
  718. ◆ firefox-esr : Fast, powerful and extensible Web Browser, ESR Edition.
  719. ◆ firefox : Fast, powerful and extensible Web Browser, Stable.
  720. ◆ firefox-nightly-appimage : Unofficial AppImage of the Web Browser, Nightly.
  721. ◆ firefox-nightly : Fast, powerful and extensible Web Browser, Nightly Edition.
  722. ◆ firetail : An open source music player.
  723. ◆ firetv-toolkit : Android-Toolkit, a GUI for adb, modify android devices.
  724. ◆ firework : Easiest way to turn web applications and sites into desktop applications.
  725. ◆ fishing-funds : Fund, big market, stock, virtual currency status, in chinese.
  726. ◆ fishterm : A open-soruce Terminal remote access.
  727. ◆ fish : Unofficial, AppImage for `fish` shell.
  728. ◆ fixit : A utility to fix mistakes in your commands.
  729. ◆ flacon : Audio File Encoder. Extracts audio tracks from audio CDs.
  730. ◆ flameshot : Tool to take screenshots with many built-in features, graphics.
  731. ◆ flare : Fantasy action RPG game using the FLARE engine.
  732. ◆ flashpoint : Flashpoint Archive is a community effort to preserve games and animations from the web.
  733. ◆ flawesome : Flawesome is a modern productivity tool.
  734. ◆ flb : A beautiful Feature Rich Music Player and Downloader,cross platform.
  735. ◆ flightgear-airports : A software to design Flightgear groundnets.
  736. ◆ flightgear : Free, open source flight simulator developed since 1997.
  737. ◆ flippy-qualitative-testbench : Music sheet reader.
  738. ◆ floorp : Floorp Web Browser, the most Advanced and Fastest Firefox derivative.
  739. ◆ flowinity : The versatile all-in-one online platform, for everyone.
  740. ◆ fluent-reader : Modern desktop RSS reader.
  741. ◆ fluffychat : The cutest instant messenger in the matrix.
  742. ◆ flycast : A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator.
  743. ◆ flyctl : Command line tools for fly.io services.
  744. ◆ flyingcarpet : Cross-platform AirDrop. File transfer between Android, iOS, Linux, macOS, and Windows over ad hoc WiFi. No network infrastructure required, just two devices with WiFi chips in close range.
  745. ◆ fman : TUI CLI File Manager.
  746. ◆ fmradio : Cross platform FM Radio App for RTL2832U dongles.
  747. ◆ fms-file-explorer : Access and exploration of data produced.
  748. ◆ focalizzare : A Timer for Pomodoro Technique.
  749. ◆ focus : A fully featured productivity timer for the command line, based on the Pomodoro Technique.
  750. ◆ focusatwill : Combines neuroscience and music to boost productivity.
  751. ◆ focuswriter : Simple fullscreen word processor.
  752. ◆ fontbase : A lightning fast, beautiful and free font manager for designers.
  753. ◆ fontforge : Free, libre font editor.
  754. ◆ fontlet : A package manager for fonts.
  755. ◆ foobar2000 : Unofficial, an advanced freeware audio player for Windows, includes WINE.
  756. ◆ forkgram : Fork of Telegram Desktop messaging app.
  757. ◆ four : Electron App to access All4/Channel4, UK.
  758. ◆ foxfolio : Cryptocurrency portfolio management application.
  759. ◆ fpm : Faster Project Plus on Linux.
  760. ◆ fractale : 2D modeling of the Von Koch fractal.
  761. ◆ fraidycat : Follow blogs, wikis, YouTube, Twitter, Reddit, Instagram and more.
  762. ◆ fraktal : Podcast Manager in Electron.
  763. ◆ frame-eth-dev : A privacy focused Ethereum wallet.
  764. ◆ francetv : The france.tv site in an application.
  765. ◆ francis : Pomodoro technique, get more productive. This script installs the full "kdeutils" suite.
  766. ◆ franz : Messaging app for WhatsApp, Slack, Telegram, HipChat and much more.
  767. ◆ frappebooks : Book-keeping software for small-businesses and freelancers.
  768. ◆ freac : fre:ac, free audio converter and CD ripper for various encoders.
  769. ◆ freecad-assembly3 : Assembly3 workbench for FreeCAD.
  770. ◆ freecad : Free and open source AutoCAD alternative.
  771. ◆ freefilesync : folder comparison and synchronization software.
  772. ◆ freeman : A free, extensible, cross-platform file manager for power users.
  773. ◆ freeshow : User-friendly presenter software.
  774. ◆ freetexturepacker : Creates sprite sheets for you game or site, graphics.
  775. ◆ freetube : An Open Source YouTube app for privacy.
  776. ◆ freeze : Generate images of code and terminal output.
  777. ◆ freezer : An unofficial client for Deezer.
  778. ◆ freshfetch : An alternative to Neofetch in Rust with a focus on customization.
  779. ◆ friction : Flexible, user expandable 2D animation software.
  780. ◆ friture : Real-time audio visualizations, spectrum, spectrogram, etc..
  781. ◆ fromscratch : Simple autosaving scratchpad.
  782. ◆ frontimer : Desktop timer application always displayed in the forefront of the screen.
  783. ◆ fspy : An open source, cross platform app for still image camera matching.
  784. ◆ fukayo : Manga reader.
  785. ◆ funkin : A rhythm game made with HaxeFlixel
  786. ◆ funkin-psych : Engine originally used on Mind Games mod, forked only for ease of use for Linux users who don't know how to compile code.
  787. ◆ funterm : A Linux Terminal Emulator.
  788. ◆ fx : Terminal JSON viewer & processor.
  789. ◆ fynodoro : Fynodoro, the Pomodoro Widget.
  790. ◆ fzf : A command-line fuzzy finder.
  791. ◆ gaiasky : Gaia Sky, a real-time 3D space simulator & astronomy visualisation.
  792. ◆ galacteek : IPFS Multi-platform browser for the distributed web.
  793. ◆ gallery-dl : Command-line program to download image galleries and collections.
  794. ◆ gamehub : Unified library for all your games from different platforms.
  795. ◆ gameimage : Pack a runner/emulator/game and it's configs in a single AppImage.
  796. ◆ gams-studio : Development environment of General Algebraic Modeling System.
  797. ◆ ganache : Personal Blockchain for Ethereum, latest AppImage for Linux.
  798. ◆ gaphor : A UML and SysML modeling application written in Python.
  799. ◆ gargoyle-bin : Interactive Fiction multi-int. for all major IF formats.
  800. ◆ gaucho : Minimalist task launcher
  801. ◆ gdesktopsuite : Google Suite as a desktop app, made possible with Electron.
  802. ◆ gdevelop : Cross-platform game engine designed to be used by everyone.
  803. ◆ gdlauncher : Simple, yet powerful Minecraft custom launcher.
  804. ◆ gdm-settings : A settings app for GNOME's Login Manager, GDM.
  805. ◆ geany : Unofficial, a fast and lightweight IDE.
  806. ◆ gearlever : Manage AppImages with ease (unofficial AppImage).
  807. ◆ gedit : Unofficial. The popular GNOME text editor Gedit.
  808. ◆ geforcenow-electron : Desktop client for Nvidia GeForce NOW game streaming.
  809. ◆ gemalaya : A keyboard-driven Gemini browser written in QML.
  810. ◆ gemget : Command line downloader for the Gemini protocol.
  811. ◆ genact : A nonsense activity generator.
  812. ◆ genesis : Open source blockchain platform.
  813. ◆ geofs : GeoFS flight sim as a desktop application.
  814. ◆ geometrize : Images to shapes converter, graphics.
  815. ◆ gerbv : Gerber file viewer for PCB design.
  816. ◆ gert : A command line tool to download media from Reddit.
  817. ◆ getthermal : Cross-platform Thermal Camera Viewer.
  818. ◆ gextractwinicons : Extract cursors, icons and images from MS Windows files.
  819. ◆ ghdl : A much more convenient way to download GitHub release binaries on the command line.
  820. ◆ gh-eco : gh cli extension to explore the ecosystem.
  821. ◆ gh : GitHub’s official command line tool.
  822. ◆ ghrel : Download and verify GitHub release.
  823. ◆ giada : Hardcore audio music production tool and drum machine for DJs.
  824. ◆ gibs : Generally In-source Build System, build C++ projects without a project.
  825. ◆ gickup : Backup your Git repositories with ease.
  826. ◆ gifcurry : The open-source, Haskell-built video editor for GIF makers.
  827. ◆ gimp-dev : Unofficial, Cross-platform image and photo editor, Developer Edition.
  828. ◆ gimp-git : Unofficial, Cross-platform image and photo editor, built from GIT.
  829. ◆ gimp-hybrid : Unofficial, GIMP including third-party plugins and python2 support.
  830. ◆ gimp : Unofficial, GNU Image Manipulation Program, cross-platform image and photo editor.
  831. ◆ gingko : Gingko client rewritten in Elm.
  832. ◆ git-cliff : A highly customizable Changelog Generator that follows Conventional Commit specifications.
  833. ◆ git-good : Just a simple git client using electron and nodegit.
  834. ◆ githoard : Hoard git repositories with ease.
  835. ◆ github-desktop : Electron-based GitHub app.
  836. ◆ gitify : GitHub notifications on your menu bar.
  837. ◆ gitjournal : Mobile first Note Taking integrated with Git.
  838. ◆ gitkraken : GitKraken Client including an intuitive GUI & powerful CLI.
  839. ◆ gitleaks : Protect and discover secrets using Gitleaks.
  840. ◆ gitlight : GitHub & GitLab notifications on your desktop.
  841. ◆ gitnote : A modern note taking app based on GIT.
  842. ◆ gitql : A git query language.
  843. ◆ gitqlient : Multi-platform Git client written with Qt.
  844. ◆ gitui : Blazing fast terminal-ui for git written in rust.
  845. ◆ glab : A GitLab CLI tool bringing GitLab to your command line.
  846. ◆ glabels : Create labels, business cards and media covers.
  847. ◆ glaxnimate : A simple and fast vector graphics animation program.
  848. ◆ glow : Render markdown on the CLI, with pizzazz!
  849. ◆ gltf-insight : C++11 based glTF 2.0 data insight tool.
  850. ◆ glulxe : AppImage of the glulxe interactive fiction interpreter.
  851. ◆ gl-warp2mp4 : Utility to pre-warp a movie similar to TGAWarp.
  852. ◆ glyphr-studio-desktop : Professional font design programs.
  853. ◆ gmail-desktop : Unofficial. Nifty Gmail desktop app.
  854. ◆ gmappimager : Graphically Converts GameMaker Studio 2 Linux Games to AppImage.
  855. ◆ gm-companion : A tool for rpg gamemasters.
  856. ◆ gncdu : Implements NCurses Disk Usage(ncdu) with golang.
  857. ◆ gnome-boxes : Unofficial, A simple GNOME application to access virtual machines.
  858. ◆ gnome-calculator : Unofficial, Perform arithmetic, scientific or financial calculations.
  859. ◆ gnome-system-monitor3 : Unofficial, Version 3.38.0, for all those who hate GNOME4+ UIs.
  860. ◆ gnome-tweaks : Unofficial, Experimental AppImage port of advanced GNOME 3 settings GUI.
  861. ◆ gnumeric : Unofficial. An open-source spreadsheet program.
  862. ◆ godmode : AI Chat Browser fast, full webapp access to ChatGPT/Claude/Bard/Bing/Llama2.
  863. ◆ godot : Multi-platform 2D and 3D game engine with a feature-rich editor.
  864. ◆ gojq : Pure Go implementation of jq.
  865. ◆ gokey : A simple vaultless password manager in Go.
  866. ◆ goland : Capable and Ergonomic Go IDE.
  867. ◆ goldencheetah : Cycling Power Analysis Software.
  868. ◆ goldendict : A feature-rich dictionary lookup program.
  869. ◆ gooboxfileshare : Goobox File Share App.
  870. ◆ goodls : This is a CLI tool to download shared files and folders from Google Drive.
  871. ◆ goofcord : Take control of your Discord experience with GoofCord.
  872. ◆ google-chrome-beta : Unofficial, Web Browser, Beta version.
  873. ◆ google-chrome-dev : Unofficial, Web Browser, Unstable version.
  874. ◆ google-chrome : Unofficial, Web Browser, Stable version.
  875. ◆ google-docs : Unofficial, Google Docs Desktop App made with electron.
  876. ◆ google-tasks-desktop : Unofficial Google Tasks Desktop Client.
  877. ◆ google-task-tauri : An Unofficial Desktop Client for Google Tasks.
  878. ◆ gooseberry : A command line utility to generate a knowledge base from Hypothesis annotations.
  879. ◆ gopass : The slightly more awesome standard unix password manager for teams.
  880. ◆ go-pd : A free easy to use pixeldrain.com go client pkg and CLI upload tool.
  881. ◆ go-pd-gui : DRAINY is a free easy to use cross plattform upload tool for pixeldrain.com.
  882. ◆ gopeed : A modern download manager that supports all platforms.
  883. ◆ gospel : Poppler based fast pdf viewer written in PyQt5.
  884. ◆ go-spotify-cli : Control Spotify with CLI commands.
  885. ◆ gost-shred : GOST R 50739-95 Data Sanitization Method (2 passes).
  886. ◆ gotimer : A simple terminal based digital timer for Pomodoro.
  887. ◆ goto : A simple terminal SSH manager that lists favorite SSH servers.
  888. ◆ got : Simple golang package and CLI tool to download large files faster than cURL and Wget!
  889. ◆ goverlay : An opensource project that aims to create a Graphical UI to help manage Linux overlays.
  890. ◆ gpgfrontend : A Cross-Platform OpenPGP Frontend Software.
  891. ◆ gpg-tui : CLI, manage your GnuPG keys with ease!
  892. ◆ gping : Ping, but with a graph.
  893. ◆ gpredict : A satellite tracking application.
  894. ◆ gpt-anywhere : Use GPT anywhere with just one shortcut.
  895. ◆ gptfusion : GPT Aggregation Ed., in chinese, supports POE, and more.
  896. ◆ gpupad : A flexible GLSL shader editor and IDE.
  897. ◆ gqrx : Software defined radio receiver, SDR.
  898. ◆ grabscr : Yet another screenshot maker.
  899. ◆ gradestats : Import xls spredsheets, store/analyze student grade.
  900. ◆ granatier : Bomberman clone. This script installs the full "kdegames" suite.
  901. ◆ graphql-playground : GraphQL IDE for better development workflows.
  902. ◆ graviton : A simple code editor.
  903. ◆ greenlight : Client for xCloud and Xbox home streaming made in Typescript.
  904. ◆ gridcoin-research : POS-based cryptocurrency.
  905. ◆ gridea : A static blog writing client, 一个静态博客写作客户端.
  906. ◆ gridplayer : Play videos side-by-side.
  907. ◆ gridsync : Synchronize local directories with Tahoe-LAFS storage grids.
  908. ◆ grinplusplus : A C++ Grin Node & Wallet.
  909. ◆ grist-desktop : Desktop Grist, packaged with Electron.
  910. ◆ gron.awk : True JSON parser in pure Awk. fast with Gawk/Mawk/GoAWK.
  911. ◆ gron : Make JSON greppable! Transform JSON into discrete assignments to grep.
  912. ◆ groot : Graphical Editor to create BehaviorTrees.
  913. ◆ grx : Fastest Web Gerber Renderer.
  914. ◆ gsequencer : Tree based audio processing engine.
  915. ◆ gsubs : Finds you the perfect subtitle match.
  916. ◆ guarda : A secure, easy-to-use cryptocurrency wallet.
  917. ◆ guglielmo : A FM, DAB/DAB+ decoder using Qt and C++.
  918. ◆ guiscrcpy : GUI integration for android screen mirroring system.
  919. ◆ guitar : Graphical git client.
  920. ◆ gum : A tool for glamorous shell scripts.
  921. ◆ gvim : Edit text files.
  922. ◆ gxc-smart-contract-ide : Gxchain smart contract IDE alpha.
  923. ◆ gyroflow : Video stabilization using gyroscope data.
  924. ◆ hades-emu : A Nintendo Game Boy Advance Emulator.
  925. ◆ hamsket : Free and Open Source messaging and emailing app.
  926. ◆ handbrake : Unofficial, An open-source multiplatform video transcoder.
  927. ◆ handlr : fork of the original handlr, with support for regular expressions.
  928. ◆ hapee : Best cross-platform downloader ever.
  929. ◆ harmonoid : Plays & manages your music library. Looks beautiful & juicy. Playlists, visuals, synced lyrics, pitch shift, volume boost & more.
  930. ◆ hascard : Flashcard TUI CLI with markdown cards.
  931. ◆ hashsum : A universal tool for finding file duplicates and modified files.
  932. ◆ hastyheroes : An endless 2D jumping game.
  933. ◆ hctl : A tool to control your Home Assistant devices from the command-line.
  934. ◆ hdrmerge : Merge several raw images into a single DNG raw image.
  935. ◆ heat1d : UI for testing the soilFluxex3D library, CRITERIA1D.
  936. ◆ heimer : Simple cross-platform mind map, diagram, and note-taking tool.
  937. ◆ helio : One music sequencer for all major platforms, desktop and mobile.
  938. ◆ helioslauncher : Custom launcher for modded minecraft written in Electron.
  939. ◆ helix : A post-modern modal text editor.
  940. ◆ henson : A puppet manager for NationStates.
  941. ◆ hermesmessenger : Desktop client version for Hermes Messenger.
  942. ◆ hero-display : App for display on HERO robot.
  943. ◆ heroic-games-launcher : A Native GOG and Epic Games Launcher for Linux.
  944. ◆ hexinator : Hex editor for reverse engineering & binary file analysis.
  945. ◆ hexoclient : A cross-platform hexo client, build on electron.
  946. ◆ hexoeditor : Markdown editor for Hexo built with Electron.
  947. ◆ heynote : A dedicated scratchpad for developers.
  948. ◆ hiddify-next : Auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria.
  949. ◆ hide.me : Hide.me CLI VPN client for Linux.
  950. ◆ hidpi-fixer : Fractional scaling configuration on X11 desktops.
  951. ◆ hilbish : The Moon-powered shell! A comfy and extensible shell for Lua fans!
  952. ◆ himalaya : CLI to manage emails.
  953. ◆ hmcl : A Minecraft Launcher which is multi-functional, cross-platform and popular.
  954. ◆ hoptodesk : Allows users to share their screens and remotely control access.
  955. ◆ hotspot : The Linux perf GUI for performance analysis.
  956. ◆ houdoku : Manga reader and library manager for the desktop.
  957. ◆ hpack : A fine tool to convert any data into C header.
  958. ◆ hsinstall : Pack a haskell project into a deployable directory structure.
  959. ◆ htmldoc : HTML & Markdown Conversion Software to output PostScript and PDF.
  960. ◆ htop : Unofficial, CLI utility to monitor system resources.
  961. ◆ httpie-desktop : HTTPie for Desktop.
  962. ◆ hugin : Stitch photographs together.
  963. ◆ hugor : A cross-platform, multimedia interpreter for Hugo adventure games.
  964. ◆ humanlog : Logs for humans to read.
  965. ◆ huwinterpreter : HuwCode interpreter.
  966. ◆ hw-probe : Probe for hardware and upload result to the Linux hdw database.
  967. ◆ hydra : Game launcher with its own embedded bittorrent client.
  968. ◆ hydrogen-music : The advanced drum machine.
  969. ◆ hyper : A terminal built on web technologies.
  970. ◆ hyperdex : BarterDEX desktop app.
  971. ◆ hyperfine : A command-line benchmarking tool.
  972. ◆ hyperionide : Hyperion IDE for JIRA.
  973. ◆ hyperkeys : Unleash you keyboard shorcuts.
  974. ◆ hypersomnia : Hardcore arena mixing eSports with pixely nostalgia.
  975. ◆ hyperspace : A fluffy client for Mastodon in React.
  976. ◆ i3-auto-layout : Automatic, optimal tiling for i3wm. Fork of dead version.
  977. ◆ i3lock-color : The world's most popular non-default computer lockscreen.
  978. ◆ i3 : Unofficial, A tiling window manager for X11.
  979. ◆ iagoncloudapp : Iagon Cloud Application.
  980. ◆ ibus-rime : Zhongzhou Yun input method, ibus-rime in AppImage format.
  981. ◆ icalingua++ : A client for QQ and more.
  982. ◆ icecat : GNU IceCat is the GNU version of the Firefox web browser.
  983. ◆ icedrive : The next generation of cloud storage.
  984. ◆ icestudio : A real gamechanger in the world of Open Source FPGAs.
  985. ◆ ideamaker : 3D slicing software, automatically generates support structure.
  986. ◆ ideamerit : Diagramming tool. Software for drawing Objectives and Key Results.
  987. ◆ igdm : Desktop application for Instagram DMs.
  988. ◆ iheartradio-webapp : Election WebApp for iHeartRadio.
  989. ◆ imagemagick-clang : CLI to create, edit, compose, or convert digital images.
  990. ◆ imagemagick-gcc : CLI to create, edit, compose, or convert digital images.
  991. ◆ imagemosaicwall : Create an image based on a bunch of other images.
  992. ◆ imageplay : A rapid prototyping app for image processing.
  993. ◆ imagine : PNG/JPEG optimization.
  994. ◆ imapsyncclient : An electron-vue project.
  995. ◆ imgbrd-grabber : Very customizable imageboard/booru downloader.
  996. ◆ imgcat : Display images and gifs in your terminal.
  997. ◆ imhex : A Hex Editor for Reverse Engineers and Programmers.
  998. ◆ impact : Music Management and Playback.
  999. ◆ impposter : Post to my own development blog.
  1000. ◆ inboxer : Simple client for Google Inbox.
  1001. ◆ index-maui : Browse your system files and preview your multimedia.
  1002. ◆ infection-monkey : An automated penetration test tool, security.
  1003. ◆ infinitex : Editor for academics with cryptography.
  1004. ◆ infra-app : Infra App for Linux.
  1005. ◆ inkdown : A WYSIWYG Markdown editor, improve reading and editing experience and generate your Markdown files.
  1006. ◆ inkscape-next : Vector-based drawing program, SVG, PDF, AutoCAD..., Unstable.
  1007. ◆ inkscape : Vector-based drawing program, SVG, PDF, AutoCAD..., Stable.
  1008. ◆ innerbreeze : Guided breathing meditation app based on the Wim Hof breathing method.
  1009. ◆ insight : The GUI front-end of GDB with Tcl/Tk.
  1010. ◆ insomnia : API client for GraphQL, REST, WebSockets and gRPC.
  1011. ◆ insomnium : A local API testing tool privacy-focused, fork of Kong/insomnia.
  1012. ◆ instead : Simple Text Adventures Interpreter.
  1013. ◆ internxt-drive : Electron React Boilerplate uses Electron and React.
  1014. ◆ intiface : Desktop Intiface Application.
  1015. ◆ invoice-generator : Invoice Generator in Electron.
  1016. ◆ iota1k : IOTA based messenging app.
  1017. ◆ ipfs-desktop : An unobtrusive and user-friendly app for IPFS on Linux.
  1018. ◆ iptracker : Desktop tool to keep track of your IP address and update you when it changes.
  1019. ◆ iptvnator : IPTV player application.
  1020. ◆ ipuissance-4d : Connect Four video game with a 3-Dimentional rendering.
  1021. ◆ iqpuzzle : A diverting I.Q. challenging pentomino puzzle.
  1022. ◆ irccloud-desktop : IRCCloud Desktop Client.
  1023. ◆ irscrutinizer : Capture/generate/analyze/import/export infrared signals.
  1024. ◆ isle-editor : Editor for Integrated Statistics Learning Environment lessons.
  1025. ◆ isoimagewriter : Write an ISO Image to a USB Disk. This script installs the full "kdeutils" suite.
  1026. ◆ isolate : Lightweight image browser.
  1027. ◆ itusb1-manager : Control the ITUSB1 USB Test Switch.
  1028. ◆ jabref : Graphical Java application for managing BibTeX and biblatex (.bib) databases.
  1029. ◆ jag : Program for telemetry veiwing.
  1030. ◆ james : HTTP/HTTPS proxy built in Electron and React.
  1031. ◆ jan : FOSS Alternative to ChatGPT that runs 100% offline on your computer.
  1032. ◆ jazz2 : Open-source reimplementation of Jazz Jackrabbit 2.
  1033. ◆ jdappstreamedit : A graphical Program to create and edit AppStream files.
  1034. ◆ jddesktopentryedit : A graphical Program to create and edit Desktop Entries.
  1035. ◆ jdminecraftlauncher : Unofficial classic styled Minecraft Launcher.
  1036. ◆ jdmrpackinstaller : Install Modrinth modpacks.
  1037. ◆ jdnbtexplorer : A Editor for Minecraft NBT files.
  1038. ◆ jdreplace : With jdReplace you can replace a text in all files of a directory.
  1039. ◆ jdtextedit : jdTextEdit is a powerful texteditor with a lot of features.
  1040. ◆ jellyamp : A client for listening to music from a Jellyfin server.
  1041. ◆ jellyfin : Media player. Stream to any device from your own server.
  1042. ◆ jetbrains-toolbox : Essential tools for software developers and teams.
  1043. ◆ jexiftoolgui : Java/Swing graphical frontend for ExifTool.
  1044. ◆ jfcord : An Jellyfin rich presence client for Discord.
  1045. ◆ jgrasp : An IDE with Visualizations for Improving Software Comprehensibility.
  1046. ◆ jimud : MUD client for ShadowMUD.com, based on webclient.
  1047. ◆ jira-timer : Menubar app for JIRA time logging.
  1048. ◆ jitsi-meet : Jitsi Meet Desktop App.
  1049. ◆ jklubtv : Chess Round Robin Tournament Manager.
  1050. ◆ jless : CLI JSON viewer designed for reading, exploring, and searching.
  1051. ◆ jmbde : Application to collect data in a company.
  1052. ◆ jnv : Interactive JSON filter using jq.
  1053. ◆ joaldesktop : Electron application boilerplate.
  1054. ◆ join-desktop : A companion app for the Join website.
  1055. ◆ joplin-beta : A cross-platform note taking and to-do app.
  1056. ◆ joplin : Note and to-do application with synchronization capabilities.
  1057. ◆ jottem : A lean, low friction terminal app for managing markdown notes.
  1058. ◆ journalv : Journaling app for your days and dreams.
  1059. ◆ joy2droidx : Turn Android phones into virtual Xbox 360 controller.
  1060. ◆ jpg-glitch-electron : Desktop app for glitching images.
  1061. ◆ jq : Command-line JSON processor.
  1062. ◆ jqp : A TUI playground to experiment with jq.
  1063. ◆ jreleaser : The quick way to release your project.
  1064. ◆ jrom-manager : A Rom Manager entirely written in Java and released under GPL-2.
  1065. ◆ jscad-desktop : Jscad desktop application.
  1066. ◆ js-design : A professional UI design software tailored for Chinese designers.
  1067. ◆ juggernaut : Decentralized messaging and payments.
  1068. ◆ julius : An open source re-implementation of the Caesar III game.
  1069. ◆ jumpfm : A file manager that lets you jump.
  1070. ◆ junest : Arch Linux based distro that runs rootless on any other Linux distro.
  1071. ◆ kade : A desktop application for Q Methodology.
  1072. ◆ kadium : App for staying ontop of YouTube channels' uploads.
  1073. ◆ kage : GUI for Metasploit Meterpreter and Session Handler.
  1074. ◆ kaidan : A QtQuick Jabber client.
  1075. ◆ kajongg : Unofficial, An ancient Chinese board game for 4 players. This script installs the full "kdegames" suite.
  1076. ◆ kalba : Sentence mining tool.
  1077. ◆ kalc : Complex numbers, 2d/3d graphing, arbitrary precision cli calculator.
  1078. ◆ kalker : Scientific calculator with math syntax for user-defined variables.
  1079. ◆ kalm : Unofficial, Teach you different breathing techniques. This script installs the full "kdeutils" suite.
  1080. ◆ kando : The Cross-Platform Pie Menu.
  1081. ◆ kanon : Maturita GPJP designed for use with kanon web app.
  1082. ◆ kanri : Modern offline Kanban board app. Built with simplicity and user experience in mind.
  1083. ◆ kapman : Pac-Man clone. This script installs the full "kdegames" suite.
  1084. ◆ kardi : Application for taking notes with capabilities to view all content from any device while keeping all data accessible by you only.
  1085. ◆ kate : Unofficial, A multi-document editor part of KDE. This script installs the full "kdeutils" suite.
  1086. ◆ katomic : Edu. game based around molecular geometry. This script installs the full "kdegames" suite.
  1087. ◆ katvan : A bare-bones editor for Typst files, with a bias for Right-to-Left editing.
  1088. ◆ kawanime : Desktop app for anime fans.
  1089. ◆ kbackup : Back up your data. This script installs the full "kdeutils" suite.
  1090. ◆ kblackbox : Unofficial, A game of hide and seek. This script installs the full "kdegames" suite.
  1091. ◆ kblocks : Unofficial, Classic Tetris / falling blocks game. This script installs the full "kdegames" suite.
  1092. ◆ kboard : Terminal game to practice keyboard typing.
  1093. ◆ kbounce : Unofficial, Fill the field game. This script installs the full "kdegames" suite.
  1094. ◆ kbreakout : Unofficial, Destroy bricks without losing the ball. This script installs the full "kdegames" suite.
  1095. ◆ kcalc : Unofficial, Scientific Calculator. This script installs the full "kdeutils" suite.
  1096. ◆ kcharselect : Unofficial, Character Selector. This script installs the full "kdeutils" suite.
  1097. ◆ kclock : Unofficial, A universal clock application. This script installs the full "kdeutils" suite.
  1098. ◆ kcov : Unofficial, An AppImage of Kcov code coverage tool.
  1099. ◆ kdebugsettings : Unofficial, Edits displayed QLoggingCategory. This script installs the full "kdeutils" suite.
  1100. ◆ kdegames : Unofficial, Full & updatable KDE Games suite, metapackage.
  1101. ◆ kdenlive : A powerful Video Editor provided by KDE.
  1102. ◆ kdenlive-daily : A powerful Video Editor provided by KDE (daily builds).
  1103. ◆ kdeutils : Unofficial, Full & updatable KDE Utils suite, metapackage.
  1104. ◆ kdf : Unofficial, view Disk Usage. This script installs the full "kdeutils" suite.
  1105. ◆ kdialog : Unofficial, a dialog utility. This script installs the full "kdeutils" suite.
  1106. ◆ kdiamond : Unofficial, Diamond game. This script installs the full "kdegames" suite.
  1107. ◆ kdiskmark : A simple open-source disk benchmark tool for Linux distros.
  1108. ◆ keditbookmarks : Unofficial, Bookmarks editor. This script installs the full "kdeutils" suite.
  1109. ◆ keepassxc-devel : Port of the Windows application “Keepass Password Safe”, dev-edition.
  1110. ◆ keepassxc : Port of the Windows application “Keepass Password Safe”.
  1111. ◆ keep : Desktop app for Google Keep.
  1112. ◆ keeweb : Free cross-platform password manager compatible with KeePass.
  1113. ◆ keibo-moneytracker-x86-64 : Track your income and expenses easily.
  1114. ◆ kettleclient : Client for Kettle REST service.
  1115. ◆ kevedit : ZZT Editor.
  1116. ◆ keyboardclient : Keyboard Settings Client.
  1117. ◆ keycombiner : Learn exactly the keyboard shortcuts you need.
  1118. ◆ keymanager : One-stop certificate app and certificate key management.
  1119. ◆ keyrier-json : A CLI/library/webapp to perfom SQL queries on JSON & CSV.
  1120. ◆ keys : Key management, signing and encryption.
  1121. ◆ keysmith : Generates tokens for your two-factor logins. This script installs the full "kdeutils" suite.
  1122. ◆ kfind : A search tool. This script installs the full "kdeutils" suite.
  1123. ◆ kfourinline : Unofficial, 4 in row game. This script installs the full "kdegames" suite.
  1124. ◆ kgoldrunner : Unofficial, A game with a runner and gold. This script installs the full "kdegames" suite.
  1125. ◆ kgpg : A GnuPG frontend. This script installs the full "kdeutils" suite.
  1126. ◆ kibi : A text editor in ≤1024 lines of code, written in Rust.
  1127. ◆ kicad : Electronic Design Automation suite.
  1128. ◆ kigo : Unofficial, Go strategic board game for two players. This script installs the full "kdegames" suite.
  1129. ◆ kiibohd-configurator : Configuration utility for Input Club keyboards.
  1130. ◆ kiku : Play music from youtube on desktop. Supports local api, invidious and piped as source.
  1131. ◆ killbots : Unofficial, Port of the classic console game Robots. This script installs the full "kdegames" suite.
  1132. ◆ kimitzu-client : Kimitzu Client.
  1133. ◆ kinopio : Thinking canvas for new ideas and hard problems.
  1134. ◆ kiriki : A dice game. This script installs the full "kdegames" suite.
  1135. ◆ kitty : Cross-platform, fast, feature-rich, GPU based terminal
  1136. ◆ kitupiikki : Bookkeeping software for small organizations.
  1137. ◆ kjumpingcube : A game of dices on a board. This script installs the full "kdegames" suite.
  1138. ◆ klickety : Color matching like SameGame. This script installs the full "kdegames" suite.
  1139. ◆ klines : Inspired by well known game of Color Lines. This script installs the full "kdegames" suite.
  1140. ◆ klogg : A smart interactive log explorer.
  1141. ◆ kmahjongg : Unofficial, Mahjongg game. This script installs the full "kdegames" suite.
  1142. ◆ kmines : Unofficial, Classic mine game. This script installs the full "kdegames" suite.
  1143. ◆ kmonad : An advanced keyboard manager.
  1144. ◆ kmon : Linux Kernel Manager and Activity Monitor.
  1145. ◆ knavalbattle : Unofficial, Battle Ship game. This script installs the full "kdegames" suite.
  1146. ◆ knetwalk : Unofficial, Net constructing game. This script installs the full "kdegames" suite.
  1147. ◆ knights : Unofficial, Chess interface for the KDE Platform. This script installs the full "kdegames" suite.
  1148. ◆ knowledge : Save/search/access/explore all your favorite websites and files.
  1149. ◆ knowte : Note taking.
  1150. ◆ koboldcpp : Simple 1-file way to run GGML and GGUF models with KoboldAI's UI.
  1151. ◆ koishi-desktop : Launch Koishi from your desktop.
  1152. ◆ kolf : Unofficial, Mini Golf game. This script installs the full "kdegames" suite.
  1153. ◆ kollision : Unofficial, Dodge red balls in the field. This script installs the full "kdegames" suite.
  1154. ◆ kondo : Cleans dependencies and build artifacts from your projects.
  1155. ◆ kongress : Unofficial, A companion application for conferences. This script installs the full "kdeutils" suite.
  1156. ◆ konquest : Game of planets. This script installs the full "kdegames" suite.
  1157. ◆ koodo-reader : Modern ebook manager and reader with sync & backup capacities.
  1158. ◆ kopia : Cross-platform backup tool.
  1159. ◆ koreader : A document viewer.
  1160. ◆ kpat : Unofficial, Klondike, Spider, Free Cell and other Solitaire. This script installs the full "kdegames" suite.
  1161. ◆ krecorder : Unofficial, An audio recording application. This script installs the full "kdeutils" suite.
  1162. ◆ kreversi : Reversi game. This script installs the full "kdegames" suite.
  1163. ◆ kristall : A web browser without support for css/js/wasm or graphical websites.
  1164. ◆ krita : A professional FREE and open source painting program, graphics.
  1165. ◆ krita-devel : A professional FREE open source painting program, dev-edition.
  1166. ◆ krunker : Krunker (.io) is a fast-paced first-person shooter game with pixel graphics.
  1167. ◆ kshisen : A game similar to Mahjongg. This script installs the full "kdegames" suite.
  1168. ◆ ksirk : A strategy board game. This script installs the full "kdegames" suite.
  1169. ◆ ksnakeduel : A snake race game. This script installs the full "kdegames" suite.
  1170. ◆ ksnip : Screenshot tool inspired by Windows Snipping Tool and made with Qt.
  1171. ◆ kspaceduel : Unofficial, Battleship with satellites in the space. This script installs the full "kdegames" suite.
  1172. ◆ ksquares : Unofficial, Win with most number of completed squares. This script installs the full "kdegames" suite.
  1173. ◆ ksudoku : Unofficial, Sudoku game. This script installs the full "kdegames" suite.
  1174. ◆ kteatime : Unofficial, A handy timer for steeping tea. This script installs the full "kdeutils" suite.
  1175. ◆ ktimer : Unofficial, Countdown Launcher. This script installs the full "kdeutils" suite.
  1176. ◆ ktrip : Unofficial, KTrip helps you navigate in public transport. This script installs the full "kdeutils" suite.
  1177. ◆ ktuberling : Unofficial, Simple Mr. Potato game for children. This script installs the full "kdegames" suite.
  1178. ◆ kubeman : The Hero that Kubernetes deserves.
  1179. ◆ kubenav : The navigator for your Kubernetes clusters right in your pocket.
  1180. ◆ kubrick : Unofficial, A logic game based on Rubik's Cube. This script installs the full "kdegames" suite.
  1181. ◆ kure : CLI password manager with sessions.
  1182. ◆ kuro : An elegant Microsoft ToDo desktop client for Linux, a fork of Ao.
  1183. ◆ kvrt : Official Kaspersky Virus Removal Tool for Linux.
  1184. ◆ kwave : A sound & audio editor designed for the KDE Desktop Environment.
  1185. ◆ kweather : A convergent weather application. This script installs the full "kdeutils" suite.
  1186. ◆ kwrite : Unofficial, KWrite is a text editor by KDE. This script installs the full "kdeutils" suite.
  1187. ◆ labplot : Data Visualization and Analysis software accessible to everyone and trusted by professionals.
  1188. ◆ lagrange : A Beautiful Gemini Client.
  1189. ◆ laidout : Laidout, desktop publishing software
  1190. ◆ laigter : Tool to generate normal/specular/occlussion/parallax 2D maps.
  1191. ◆ lambda-lantern : A 3D game about functional programming patterns.
  1192. ◆ landrop : Drop any files to any devices on your LAN.
  1193. ◆ langly : Manage Laravel json language files.
  1194. ◆ lan-mouse : Mouse & keyboard sharing via LAN.
  1195. ◆ lanshare : LAN file transfer app for any kind and size of files and folders.
  1196. ◆ lapce : Lightning-fast and Powerful Code Editor written in Rust.
  1197. ◆ laravel-kit : Easy Laravel application management.
  1198. ◆ launcher : Generic application's launcher.
  1199. ◆ lbry-desktop : A browser and wallet for LBRY.
  1200. ◆ lcedit : Editor, unknown.
  1201. ◆ ldtk : Modern and efficient 2D level editor.
  1202. ◆ ldview : LDraw Model Viewer.
  1203. ◆ leaflet : POSP official notes application, written in flutter, beautiful, fast and secure.
  1204. ◆ leapp : The DevTool to access your cloud.
  1205. ◆ led.custom.palette : Design the lights on your Model01 with an ease.
  1206. ◆ ledger-live-desktop : Wallet desktop app for multiple cryptocurrencies.
  1207. ◆ left : Distractionless Writing Tool.
  1208. ◆ legcord : Legcord is a custom client designed to enhance your Discord experience while keeping everything lightweight.
  1209. ◆ legendary-kingdoms : Implementation of Legendary Kingdoms Gamebooks in C++.
  1210. ◆ lemon : A tiny judging environment for OI contest based on Project_LemonPlus.
  1211. ◆ lens : App you need to take control of your Kubernetes clusters.
  1212. ◆ leocad : Create virtual LEGO models.
  1213. ◆ leonflix : Multi-platform desktop application for watching movies & TV shows.
  1214. ◆ lepton : Democratizing Code Snippets Management.
  1215. ◆ lescovex : Lescovex decentralized exchange, wallet and contract issuer.
  1216. ◆ levior : Converts web pages on-the-fly to the gemtext format.
  1217. ◆ lexido : A terminal assistant, powered by Generative AI.
  1218. ◆ lf : lf, as in "list files" is a terminal file manager written in Go.
  1219. ◆ libassist : Library Assistant.
  1220. ◆ libertem : Pixelated scanning transmission electron microscopy.
  1221. ◆ librecad : 2D CAD program written in C++11 using the Qt framework.
  1222. ◆ libreoffice : Free and powerful office suite, and a successor to OpenOffice.
  1223. ◆ librepcb : Design Schematics and PCBs.
  1224. ◆ libresprite : Animated sprite editor & pixel art tool. Fork of the last GPLv2 commit of Aseprite.
  1225. ◆ librewolf : Firefox-based Web Browser focused on privacy, security, freedom.
  1226. ◆ lightning : Lightning Wallet Application.
  1227. ◆ lightning-peach-wallet : Wallet for lightning network
  1228. ◆ liground : A mordern Chess Variant Analysis GUI, game.
  1229. ◆ liketaskmanager : Process/performances monitor, CPU, RAM, Disks and Network.
  1230. ◆ lime3ds : Nintendo 3DS emulator, continuation of citra.
  1231. ◆ linedancer : Arcade game and entry for Ludum Dare 35.
  1232. ◆ linked : Daily journaling without distraction.
  1233. ◆ linphone : A libre SIP client.
  1234. ◆ linuxdeployqt : Convert a linux program to an AppDir or an AppImage.
  1235. ◆ linux-intel-undervolt-gui : Undervolting GUI for Intel Linux Systems.
  1236. ◆ linuxqq : New Linux QQ based on Electron.
  1237. ◆ linwood-butterfly : Powerful, minimalistic, cross-platform, note-taking app.
  1238. ◆ lisk-desktop : Lisk graphical user interface for desktop.
  1239. ◆ listen1-desktop : One for all free music in China.
  1240. ◆ listen.moe : Official LISTEN.moe Desktop Client.
  1241. ◆ liteide : LiteIDE is a simple, open source, cross-platform Go IDE.
  1242. ◆ lite-xl : A lightweight text editor written in Lua.
  1243. ◆ litime : A terminal literature clock telling time with quotes from literature.
  1244. ◆ liveme-pro-tools : Browse, search and manage accounts, replays and more.
  1245. ◆ lmms : FL Studio® alternative that allows you to produce music with the PC.
  1246. ◆ lmstudio : Experimenting with local and open-source Large Language Models.
  1247. ◆ local-browser : Share your localhost in a unique way.
  1248. ◆ localsend : An open source cross-platform alternative to AirDrop
  1249. ◆ lockbook-cli : The private, polished note-taking platform, CLI.
  1250. ◆ lockbook-desktop : The private, polished note-taking platform.
  1251. ◆ lofi : A mini Spotify player with WebGL visualizations.
  1252. ◆ loginized : Loginized Gnome GDM Login Theme Manager.
  1253. ◆ logseq : A privacy-first platform for knowledge management and collaboration.
  1254. ◆ looofix : Minimalist Desktop Lofi Player To Relax and Enjoy.
  1255. ◆ loopauditioneer : Software for loop and cue handling in .wav files.
  1256. ◆ lore-forge : The app for writers & worldbuilders.
  1257. ◆ lorien : Infinite canvas drawing/whiteboarding app.
  1258. ◆ losslesscut : The swiss army knife of lossless video/audio editing.
  1259. ◆ lovelive : A LoveLiver Music Player.
  1260. ◆ lovesay : Cowsay, but full of love and now a little rusty.
  1261. ◆ love : The unquestionably awesome 2D game engine.
  1262. ◆ lovr : Lua Virtual Reality Framework.
  1263. ◆ lowfi : An extremely simple lofi player. CLI.
  1264. ◆ lpub3d : An LDraw Building Instruction Editor.
  1265. ◆ lsd : The next gen ls command.
  1266. ◆ lskat : Unofficial, Fun and engaging card game for two players. This script installs the full "kdegames" suite.
  1267. ◆ lumi : A tool to create and display interactive content with H5P.
  1268. ◆ luminance-hdr : Create and tonemap HDR images.
  1269. ◆ luna : Manage npm dependencies through a modern UI.
  1270. ◆ lunar-client : Free Minecraft Client, a modpack for all versions of Minecraft.
  1271. ◆ lunatask : All-in-one encrypted to-do list, notebook, habit and mood tracker.
  1272. ◆ lunyr : Ethereum-based Encyclopedia.
  1273. ◆ lux : A free open source image and panorama viewer.
  1274. ◆ lx-music-desktop : 一个基于electron的音乐软件.
  1275. ◆ lxtask : A lightweight and desktop-independent task manager.
  1276. ◆ lyricistant : A helpful writing assistant for lyricists.
  1277. ◆ macchina : A system information frontend with an emphasis on performance.
  1278. ◆ magento2-upgrade-gui : Magento 2 Upgrade GUI.
  1279. ◆ magicfountain : A novel and screenwriting program.
  1280. ◆ makagiga : To-do manager, notepad, RSS reader and much more.
  1281. ◆ makoureactor : Can edit field from Final Fantasy VII, PS & PC.
  1282. ◆ malice : GUI Programming Tool for iCE40.
  1283. ◆ manager-io : Free Accounting Software for Linux, Server.
  1284. ◆ mandelbulber2 : Explore trigonometric, hyper-complex and other 3D fractals.
  1285. ◆ mangadesk : Terminal client for MangaDex.
  1286. ◆ mangal : Most advanced, yet simple CLI manga downloader in the universe!
  1287. ◆ manga-tui : Terminal-based manga reader and downloader with image support.
  1288. ◆ mangayomi : Application for reading manga and watching anime.
  1289. ◆ mangbandclient : A free online multi-player realtime roguelike game.
  1290. ◆ manta : Flexible invoicing app with beautiful & customizable templates.
  1291. ◆ mapeo : Local-first mapping and monitoring in remote environments.
  1292. ◆ mapollage : Photo kml generator for Google Earth.
  1293. ◆ mapton : Some kind of map application.
  1294. ◆ markflowy : Modern markdown editor application, Build fast and efficient workflows.
  1295. ◆ markman : A markdown editor.
  1296. ◆ mark-mind : Multiplatform mind map and outliner editor with markdown support.
  1297. ◆ marktext : A simple and elegant markdown editor multiplatform.
  1298. ◆ marlin-conf : Configuration tool for Marlin project.
  1299. ◆ martian : Websocket testing tool.
  1300. ◆ marvin : Open Source record and playback test automation for the web.
  1301. ◆ mastervyrn : MasterVyrn is a clean dedicated GBF loader.
  1302. ◆ materialious : Modern material design for Invidious.
  1303. ◆ mate-system-monitor : Unofficial, Process viewer and system resource monitor, from MATE.
  1304. ◆ mathcha-notebook : Desktop version of Mathcha, built for your privacy.
  1305. ◆ matm : Watch anime, movies, tv shows and read manga from comfort of the cli.
  1306. ◆ mattermost-desktop : Secure collaboration across entire software development.
  1307. ◆ mayo : 3D CAD viewer and converter based on Qt + OpenCascade.
  1308. ◆ mazesolver : A tool which shows how different algorithms solves mazes.
  1309. ◆ mbcord : An Emby/Jellyfin rich presence client for Discord.
  1310. ◆ mcfly : Fly through your shell history. Great Scott!
  1311. ◆ mcpelauncher : The main repo for the Linux Bedrock edition Minecraft launcher.
  1312. ◆ mcpodcast : Electron app for tasks around Podcast mp3 files.
  1313. ◆ m : Data oriented programming language for game developers.
  1314. ◆ mdcat : Command line, "cat" for markdown.
  1315. ◆ mdl : MDL wallet.
  1316. ◆ mdsilo-app : Lightweight Knowledge Base and Feed Reader.
  1317. ◆ mdview : Application that renders and displays Markdown files.
  1318. ◆ measur : Energy efficiency calculation app for use with industrial equipment.
  1319. ◆ mechtype : A lightweight app designed to elevate your typing experience by allowing you to enjoy custom soundtracks with every keystroke.
  1320. ◆ mechvibes : Play mechanical keyboard sounds as you type.
  1321. ◆ mediachips : Manage your videos, add any metadata to them and play them.
  1322. ◆ media-downloader : Cross-platform audio/video downloader.
  1323. ◆ media-dupes : Content duplicator for common media services like YouTube.
  1324. ◆ mediaelch : Media Manager for Kodi.
  1325. ◆ mediainfo : Supplies technical & tag information about a video or audio file.
  1326. ◆ median-xl : Launcher for Median XL mod, Diablo II overhaul.
  1327. ◆ mediathekview : Searches the online media libraries of various broadcasters.
  1328. ◆ mellowplayer : Cloud music integration for your desktop.
  1329. ◆ melodie : Simple-as-pie music player.
  1330. ◆ melonds : DS emulator, sorta.
  1331. ◆ memento : A video player for studying Japanese.
  1332. ◆ memocast : Yet another elegant Wiz Note Client.
  1333. ◆ memospot : Memospot is a self-contained desktop version of Memos -a privacy-first, lightweight note-taking service.
  1334. ◆ mendeley : Search over 100 million cross-publisher articles and counting.
  1335. ◆ menyoki : Screen{shot,cast} and perform ImageOps on the command line.
  1336. ◆ meow-sql : An attempt to port HeidiSQL to C++/Qt.
  1337. ◆ mercury-avx2 : Firefox fork, with compiler optim. and patches from Librewolf.
  1338. ◆ mercury : Firefox fork with compiler optimizations and patches from Librewolf.
  1339. ◆ mercury-sse3 : Firefox fork with compiler optim. and patches from Librewolf.
  1340. ◆ mercury-sse4 : Firefox fork with compiler optim. and patches from Librewolf.
  1341. ◆ meshlab : Processor and editor of large 3D triangular meshes.
  1342. ◆ meshmill : The world's greatest open source 3D CAM software, maybe one day.
  1343. ◆ meta-grabber : A tool to grab metadata for tv shows and rename files on PC.
  1344. ◆ mgba : Game Boy Advance Emulator.
  1345. ◆ micropad : µPad is an open digital note taking app.
  1346. ◆ microsoft-edge-beta : Web Browser provided by Microsoft, Beta Edition.
  1347. ◆ microsoft-edge-dev : Web Browser provided by Microsoft, Developer Edition.
  1348. ◆ microsoft-edge : Web Browser provided by Microsoft, Stable Edition.
  1349. ◆ miesimulatorgui : MieSimulatorGUI by Virtual Photonics.
  1350. ◆ mightymike : Pangea Software's Mighty Mike, Power Pete for modern systems.
  1351. ◆ migu : Stream anime torrents, real-time with no waiting for downloads.
  1352. ◆ milkytracker : An FT2 compatible music tracker.
  1353. ◆ mindmapp : Electron application to draw mind maps.
  1354. ◆ mine-craft.io : Minecraft and even more!
  1355. ◆ minecraft-launcher : Game downloader and launcher for Minecraft.
  1356. ◆ minetest : Multiplayer infinite-world block sandbox.
  1357. ◆ minetime : Smart scheduling assistant.
  1358. ◆ mini-diary : Simple and secure journal app.
  1359. ◆ minififa : OpenGL-powered third-person football, soccer game.
  1360. ◆ minimal-podcasts-player : Subscribe, listen and download your podcasts.
  1361. ◆ minions : A productive tool inspired by LaunchBar in macOS.
  1362. ◆ mini-qml : Minimal Qt deployment.
  1363. ◆ minizinc-ide : A free and open-source constraint modeling language.
  1364. ◆ mira-backup : Mira Auto Database Backup app.
  1365. ◆ mirage : Matrix chat client for encrypted and decentralized communication.
  1366. ◆ miru : Bittorrent streaming software for cats. Stream anime torrents.
  1367. ◆ mission-center : Monitor your CPU, Memory, Disk, Network and GPU usage.
  1368. ◆ miteiru : An open source Electron video player to learn Japanese.
  1369. ◆ mjml-app : The desktop app for MJML.
  1370. ◆ mki3dgame : A game of searching, in 3D stages.
  1371. ◆ mk : Interactive Task Runner for Makefile.
  1372. ◆ mkvtoolnix : Matroska files creator and tools.
  1373. ◆ mlv-app : All in one MLV processing app, audio/video.
  1374. ◆ mmapper : Graphical MUD client for the game MUME.
  1375. ◆ mmseqs2-search : MMseqs2 app to run on your workstation or servers.
  1376. ◆ moarperf : Front-end for MoarVM's / Rakudo's profilers.
  1377. ◆ mob : A handsome Himalayan desktop client.
  1378. ◆ mochi : A simple markdown-powered SRS app.
  1379. ◆ mockman : Manage and start the mock servers on your local platform easily.
  1380. ◆ mockoon : Mock servers in seconds.
  1381. ◆ moderndeck : A beautiful, powerful Twitter client for desktop.
  1382. ◆ modrinth : Open source launcher that allows you to play your favorite mods.
  1383. ◆ modv : Modular audio visualisation powered by JavaScript.
  1384. ◆ monit : Desktop widgets displaying various information, in chinese.
  1385. ◆ moniteur-admin : The admin panel for the lightweight info screen solution.
  1386. ◆ monokle : Lets you create, analyze, and deploy YAML manifests.
  1387. ◆ monoline : Your personal micro journal.
  1388. ◆ mood-fi : App with 30+ lo-fi live streams between 8 different lo-fi types.
  1389. ◆ moolticute : Mooltipass crossplatform daemon/tools.
  1390. ◆ moonfm : A modern, fully featured audio podcast player.
  1391. ◆ moonlight : Stream games from your NVIDIA GameStream-enabled PC.
  1392. ◆ moonplayer : AIO video player to play Youtube, Bilibili... and local videos.
  1393. ◆ moose : An application to stream, cast and download torrents.
  1394. ◆ moosync : Music player capable of playing local audio or from Youtube/Spotify.
  1395. ◆ motrix : A full-featured download manager.
  1396. ◆ movie-monad : Free and simple to use video player made with Haskell.
  1397. ◆ moyu : An online collaborative api interface management tool.
  1398. ◆ mozaic : Massive Online Zeus Artificial Intelligence Competition platform.
  1399. ◆ mp3-tagger : An Electron app to edit metadata of mp3 files.
  1400. ◆ mp4grep : CLI for transcribing and searching audio/video files.
  1401. ◆ mpv : Unofficial, A free, open source, and cross-platform media player, Multiple-choices.
  1402. ◆ mqttcute : An advanced desktop MQTT client for binary protocol development.
  1403. ◆ mqtt-explorer : Explore your message queues.
  1404. ◆ mqttx : MQTT 5.0 Desktop, CLI, and WebSocket client tools.
  1405. ◆ mrcode : An opinionated editor based on VSCodium / VSCode.
  1406. ◆ mr.dclutterer : Minimal App To Aggregate And Rename Files In Bulk.
  1407. ◆ mrwriter : Notetaking and blackboard replacement application. Inspired by Xournal. Written in C++/Qt.
  1408. ◆ ms-365-electron : Unofficial Microsoft 365 Desktop Wrapper made with Electron.
  1409. ◆ mtcelledit : Lightweight spreadsheet program.
  1410. ◆ mudita-center : Mudita Center Electron App.
  1411. ◆ mudlet : Play immersive, multiplayer, pure-text games on Mudlet.
  1412. ◆ muffon : Music streaming browser,retrieves audio, video and metadata.
  1413. ◆ mullvad-browser : A Tor-based Web Browser.
  1414. ◆ multimc : A Minecraft launcher.
  1415. ◆ munt : The payment system of the future.
  1416. ◆ mupdf : Lightweight PDF, XPS, and E-book viewer.
  1417. ◆ muse : A digital audio workstation with support for both Audio and MIDI.
  1418. ◆ museeks : A simple, clean and cross-platform music player.
  1419. ◆ musescore : An open source and free music notation software.
  1420. ◆ musicalypse : Audio/Music player and server built with Web technologies.
  1421. ◆ music-assistant-companion : The desktop companion app for Music Assistant.
  1422. ◆ music-blocks : .Exploring Math, Music, and Programming.
  1423. ◆ music-kitten : Use your own soundtrack in Counter-Strike.
  1424. ◆ music-player : Desktop Electron app for playing and downloading music.
  1425. ◆ music-quiz : Jepardy like game, guess as many songs as possible.
  1426. ◆ mutool : All purpose tool for dealing with PDF files.
  1427. ◆ muwire : A file sharing client for I2P.
  1428. ◆ mybelka : Accounting system written in C++ with QTCore.
  1429. ◆ my-budget : Offline cross-platform budgeting solution built with Electron.
  1430. ◆ mycroft-ai : Qt5 Frontend for Mycroft Ai
  1431. ◆ mycrypto : MyCrypto web and electron app.
  1432. ◆ my-jira : A lite jira desktop.
  1433. ◆ mypaint : Simple drawing and painting program, graphics.
  1434. ◆ mystiq : Qt5/C++ FFmpeg Media Converter.
  1435. ◆ mytonwallet : Feature-rich web wallet and browser extension for TON Network.
  1436. ◆ n3h : Nodejs implementation of holochain networking / p2p backend process.
  1437. ◆ naev : A 2d action/rpg space game that combines elements from the action.
  1438. ◆ nami : A clean and tidy decentralized package manager.
  1439. ◆ nanosaur2 : Pangea Software’s Nanosaur II for modern systems.
  1440. ◆ nanosaur : Pangea Software’s game, adventure of a cybernetic dinosaur.
  1441. ◆ nanovault : Wallet for interacting with Nano.
  1442. ◆ nap : Code spippets in your terminal.
  1443. ◆ naruto-arena : Naruto-based online multiplayer strategy game.
  1444. ◆ nault-bin : Official Nault AppImage client.
  1445. ◆ navi : An interactive cheatsheet tool for the command-line.
  1446. ◆ nazuna : Download Twitter videos using your terminal!
  1447. ◆ ncsa-mosaic : One of the first graphical web browsers.
  1448. ◆ ncspot : Cross-platform ncurses Spotify client written in Rust, inspired by ncmpc and the likes.
  1449. ◆ neanes : A scorewriter for notating Byzantine chant in Byzantine notation.
  1450. ◆ neko : Neko is a cross-platform cursor-chasing cat.
  1451. ◆ neohtop : htop on steroids.
  1452. ◆ neon : Light wallet for NEO blockchain.
  1453. ◆ neovide : No Nonsense Neovim Client in Rust
  1454. ◆ nepaliunicode : An Unicode Converter app.
  1455. ◆ nerdfetch : A POSIX *nix fetch script using Nerdfonts.
  1456. ◆ nerimity-desktop : Electron desktop app for Nerimity.
  1457. ◆ nest-desktop : A web-based GUI application for NEST Simulator.
  1458. ◆ netbeans : Apache NetBeans installers.
  1459. ◆ netpad : A cross-platform C# editor and playground.
  1460. ◆ netpanzer : Online multiplayer tactical warfare game for fast action combat.
  1461. ◆ newlogic : A circuit builder.
  1462. ◆ newton-adventure : A 2D game with a twist, player can rotate gravity at 360°.
  1463. ◆ nextcloud : Client-server software for creating & using file hosting services.
  1464. ◆ nextplayer : A blue-ray player, originally named TheNewPlayerFree.
  1465. ◆ nexus-mods : A mod installer, creator and manager for all your popular games.
  1466. ◆ nexus-wallet : Official interface layers of the Nexus Software Stack.
  1467. ◆ nfctools : A library which allows userspace application access to NFC devices.
  1468. ◆ ngpost : Usenet poster for binaries developped in C++/QT.
  1469. ◆ ngrev : Reverse Engineering for Angular.
  1470. ◆ nheko : Desktop client for Matrix.
  1471. ◆ niffler : A grin gui wallet.
  1472. ◆ nightpdf : Dark Mode PDF Reader built using Electron and PDF.js.
  1473. ◆ nightwave-plaza-electron : https://plaza.one/ radio station desktop app.
  1474. ◆ nimbus-weather : A beautiful weather app built using the Dark Sky API.
  1475. ◆ nitch : Incredibly fast system fetch written in nim.
  1476. ◆ nitrokey : Manage your Nitrokey devices.
  1477. ◆ nix-bucks : A money tracker. Your income and expenses at your control. Finance.
  1478. ◆ nixnote : Use with Evernote to remember everything.
  1479. ◆ nmeasimulator : NMEA sentence generator utility to broadcast via TCP.
  1480. ◆ nnn : n³ The unorthodox terminal file manager
  1481. ◆ nodeflow : An Editor for creating simple or complex OCR workflows.
  1482. ◆ nodes : A new way to create with code.
  1483. ◆ node : This is the official suite of Node.js tools, also known as "NodeJS", a JavaScript runtime built on Chrome's V8 JavaScript engine.
  1484. ◆ no-fwl : NoFWL Desktop Application.
  1485. ◆ nootka : Application for learning musical score notation.
  1486. ◆ nora : An elegant music player built using Electron and React.
  1487. ◆ nordvpn-appimage : Unofficial. A nicer way to connect to NordVPN, in electron.
  1488. ◆ normcap : OCR powered screen-capture tool to capture info instead of images.
  1489. ◆ nosqlbooster : Essential admin GUI for mongodb.
  1490. ◆ nostlan : A multiplatform game launcher for video game emulators.
  1491. ◆ notable : The Markdown-based note-taking app that doesn't suck.
  1492. ◆ nota-maui : Text editor with tab support, syntax highlight and more.
  1493. ◆ notedown : Note taking with react + rust.
  1494. ◆ notekit : A GTK3 hierarchical markdown notetaking app with tablet support.
  1495. ◆ notemaster : Note-taking app to help boost productivity.
  1496. ◆ notepadnext : A cross-platform, reimplementation of Notepad++.
  1497. ◆ notepadqq : Edit source code files.
  1498. ◆ notepad++ : Unofficial Appimage of Notepad++, with WINE prefix.
  1499. ◆ noter : Simple serial terminal application.
  1500. ◆ noteshrink-qt : GUI for noteshrink.py with preview and pre-processing opt.
  1501. ◆ notes-nc : Cross-platform Notes desktop application for markdown notes.
  1502. ◆ notesnook : Private note-taking app that encrypts everything on client side.
  1503. ◆ notes : Note-taking application, write down your thoughts.
  1504. ◆ novelwriter : Plain text editor designed for writing novels, supports a minimal markdown-like syntax for formatting text.
  1505. ◆ npm : Package manager for Node.js. This script installs the full "node" suite.
  1506. ◆ nrf-connect : Framework for desktop apps for development kits.
  1507. ◆ nteract : An open-source organization.
  1508. ◆ ntfydesktop : A desktop client for ntfy. Allows you to subscribe to topics from any ntfy server and recieve notifications natively on the desktop.
  1509. ◆ nu : A new type of shell.
  1510. ◆ nuclear : Streaming music player that finds free music for you.
  1511. ◆ nuclia : A low-code API to build an AI multi-language semantic search engine.
  1512. ◆ nuclino : Bring knowledge, docs, and projects together in one place.
  1513. ◆ numara : Simple notepad calculator built on Electron.
  1514. ◆ nuranotes : NuraNote is your all-in-one solution for effortless note-taking and organization.
  1515. ◆ nuxeo-drive : Desktop synchronization client for the Nuxeo platform.
  1516. ◆ nvim : NeoVim, Vim fork focused on extensibility and usability.
  1517. ◆ nvim-nightly : NeoVim, Vim fork, the most recent development build.
  1518. ◆ nvtop : GPUs process monitoring for AMD, Intel and NVIDIA.
  1519. ◆ nxshell : An easy to use new terminal.
  1520. ◆ nx-software-center : A GUI to install and manage AppImages, Nitrux OS.
  1521. ◆ nyaa : A nyaa.si tui tool for browsing and downloading torrents.
  1522. ◆ nyan : CLI, colored "cat" command.
  1523. ◆ nychess : A python Chess Engine and AI.
  1524. ◆ nym-wallet : Use the Nym network and take advantage of it.
  1525. ◆ nyrna : Suspend games and applications.
  1526. ◆ obliqoro : A cross-platform tauri gui where Oblique Strategies meets Pomodoro.
  1527. ◆ obsidian : A powerful knowledge base, plain text Markdown files.
  1528. ◆ obsidian-cli : Interact with Obsidian in the terminal. Open, search, create, update, move and delete notes!
  1529. ◆ obs-studio : Unofficial. Software for video recording and live streaming.
  1530. ◆ ocat : OpenCore Auxiliary Tools, editing config.plist files for Acidanthera.
  1531. ◆ ocenaudio : Unofficial. Multiplatform Audio Editor.
  1532. ◆ ocvvid2fulldome : Take flat videos, distort them to fit fulldome.
  1533. ◆ ocvwarp : Warping images and videos for planetarium fulldome display.
  1534. ◆ odicto : An offline English dictionary app for desktop.
  1535. ◆ oh : A new Unix shell.
  1536. ◆ oh-my-git : An open source game about learning Git!
  1537. ◆ oh-mymd : A markdown editor,support cloud sync.
  1538. ◆ olive : Free open-source non-linear video editor, nightly build.
  1539. ◆ olive-legacy : Free non-linear video editor, version 0.1.
  1540. ◆ ollama : Get up and running with Llama 3, Mistral, Gemma, and other LLMs.
  1541. ◆ omekasy : Command line application that converts alphanumeric characters to various styles 𝚍𝚎𝚏𝚒𝚗𝚎𝚍 𝚒𝚗 𝚄𝚗𝚒𝚌𝚘𝚍𝚎.
  1542. ◆ ommpfritt : Semantic, procedural, non-destructive vector modelling.
  1543. ◆ omnispeak : Re-implementation of "Commander Keen in Goodbye Galaxy".
  1544. ◆ onedrive-gui : Microsoft OneDrive Client GUI.
  1545. ◆ onefetch : Command-line Git information tool.
  1546. ◆ one-gpt : Aggregate ChatGPT official version, Wenxin Yiyan, Poe, chatchat.
  1547. ◆ onekey-wallet : Open source crypto wallet.
  1548. ◆ onenote : P3X Onenote Linux.
  1549. ◆ onionmediax : OnionMedia X. Convert and download videos and music quickly and easily.
  1550. ◆ onlyoffice : Office Suite with full support for MS Windows formats and cloud.
  1551. ◆ onlyrefs : Organize all of your references, notes, bookmarks and more.
  1552. ◆ onnx2bnn : Binary neural networks inference framework for mobile platform.
  1553. ◆ onnx2daq : Wrapper of NNAPI, "DNNLibrary" is for "daquexian's NNAPI libs.
  1554. ◆ onshape : Onshape desktop app, web application shell.
  1555. ◆ onyx : Decentralized messaging application based on PSS.
  1556. ◆ opal : Plays relaxing music in the background.
  1557. ◆ open-ai-translator : Browser extension for translation based on ChatGPT API.
  1558. ◆ openapi-tui : Terminal UI to list, browse and run APIs defined with openapi.
  1559. ◆ openarena : Violent & sexy, multiplayer first person shooter game, ioquake3.
  1560. ◆ openaudible : Download and manage your Audible audiobooks.
  1561. ◆ openblok : A customizable falling block puzzle game like tetris.
  1562. ◆ openbor : Ultimate 2D side scrolling engine for beat em ups, shooters...
  1563. ◆ opencomic : Comic and Manga reader, written with Node.js and using Electron.
  1564. ◆ openhv : A mod for OpenRA based on the Hard Vacuum, game.
  1565. ◆ openlens : OpenLens Binary Build Repository.
  1566. ◆ open-markup-editor : Pluggable markup editor.
  1567. ◆ openmw : OpenMW is an open-source open-world RPG game engine that supports playing Morrowind.
  1568. ◆ openop2 : Re-implementation of the game Outpost 2, using the OpenRA engine.
  1569. ◆ openosrs-launcher : Open-source client for Old School RuneScape.
  1570. ◆ openpilot-workbench : Fix problems with EON/Openpilot.
  1571. ◆ openra-dune : Real-time strategy game engine, MOD Dune 2000.
  1572. ◆ openramodsdk : Dev Kit for building your own games using the OpenRA engine.
  1573. ◆ openra-red-alert : Real-time strategy game engine, MOD Red Alert.
  1574. ◆ openra-tiberian-dawn : Real-time strategy game engine penGL, MOD TD.
  1575. ◆ openrct2 : Re-implementation of RollerCoaster Tycoon 2 (RCT2), expanding the game with new features.
  1576. ◆ openrgb : RGB lighting control that doesn't depend on manufacturer software.
  1577. ◆ openscad : The Programmers Solid 3D CAD Modeller.
  1578. ◆ openshot : A powerful Video Editor.
  1579. ◆ openstream-music : The OpenStream Music source.
  1580. ◆ opentodolist : A note and task managing application.
  1581. ◆ opentrons : Opentrons desktop application.
  1582. ◆ open-typer : A free and open source typing tutor program.
  1583. ◆ open-video-downloader : A cross-platform GUI for youtube-dl made in Electron.
  1584. ◆ openxcom : An open-source clone of the original UFO Enemy Unknown.
  1585. ◆ opera-beta : Unofficial. Fast and secure web browser, Beta version.
  1586. ◆ opera-dev : Unofficial. Fast and secure web browser, Developer version.
  1587. ◆ opera : Unofficial. Fast and secure web browser, Stable version.
  1588. ◆ orange : Cross-platform local file search engine.
  1589. ◆ orcaslicer-any : G-code generator for 3D printers, the most recent release.
  1590. ◆ orcaslicer-beta : G-code generator for 3D printers, Beta release.
  1591. ◆ orcaslicer : G-code generator for 3D printers, Stable release.
  1592. ◆ orcaslicer-rc : G-code generator for 3D printers, Release Candidate.
  1593. ◆ osrs-tools : Several tools for OSRS.
  1594. ◆ ossia-score : Sequencer for audio-visual artists for interactive shows.
  1595. ◆ ostara : To monitor and interact with Spring Boot Applications via Actuator.
  1596. ◆ osu : A free-to-win rhythm game. Rhythm is just a click away!
  1597. ◆ ots : Share end-to-end encrypted secrets with others via a one-time URL.
  1598. ◆ ottomatic : Pangea Software’s Otto Matic, a game of robots.
  1599. ◆ outer-wilds-mod-manager : The mod manager for the Outer Wilds Mod Loader
  1600. ◆ outline-client : Lean on the Cordova and Electron frameworks.
  1601. ◆ outline-client-wayland : Lean on the Cordova and Electron frameworks.
  1602. ◆ outline-manager : Create and manage access to Outline servers.
  1603. ◆ overte : Overte open source virtual worlds platform.
  1604. ◆ ovideo : Video Editor.
  1605. ◆ owallet : A comprehensive Ontology desktop wallet.
  1606. ◆ ow-mod-man : The mod manager for the Outer Wilds Mod Loader.
  1607. ◆ owncloud : The most essential productivity tool since email.
  1608. ◆ oxen-gui-wallet : Oxen electron GUI wallet.
  1609. ◆ p2p-chat : P2P LAN chatting and file sharing tool.
  1610. ◆ p2pderivatives : Enables users to enter into Discreet Log Contracts.
  1611. ◆ p3x-redis-ui : A very functional handy database GUI and works in your pocket.
  1612. ◆ packetsender : Network utility for sending/receiving TCP/UDP/SSL/HTTP.
  1613. ◆ packsquash : A Minecraft Java Edition resource and data pack optimizer.
  1614. ◆ paclear : CLI, paclear is a clear command with PAC-MAN animation.
  1615. ◆ padloc : Electron Wrapper for Padloc app.
  1616. ◆ painel-web : Novo SGA panel.
  1617. ◆ paket : A simple and fast package manager for the Fish shell written in Rust.
  1618. ◆ palapeli : Jigsaw puzzle game. This script installs the full "kdegames" suite.
  1619. ◆ palemoon : Web browser, a Firefox fork with a classic UI and modern APIs.
  1620. ◆ paletti : Reduces an image into fewer colors to simplify, color palettes.
  1621. ◆ panini : Perspective views from panoramic images.
  1622. ◆ panwriter : Markdown editor with pandoc integration.
  1623. ◆ paper : A CLI Tool to set a random wallpaper from Unsplash.com.
  1624. ◆ papercraft : A tool to unwrap 3D models.
  1625. ◆ parallelcoin : Parallelcoin qt wallet appimage binary.
  1626. ◆ parchment : A minimal minimal text editor written using web technologies.
  1627. ◆ parity-fether : Fether Wallet.
  1628. ◆ parsec-linux : Parsec game streaming client.
  1629. ◆ parsec : Open source Dropbox-like file sharing with full client encryption.
  1630. ◆ passky : Simple and secure password manager.
  1631. ◆ passphraser : Phrase-based password generator that can use your own list of words.
  1632. ◆ pastel : A command-line tool to generate, analyze, convert and manipulate colors.
  1633. ◆ patchbay : An alt. Secure Scuttlebutt client compatible with Patchwork.
  1634. ◆ patchelf : Utility to modify the dynamic linker and RPATH of ELF executables.
  1635. ◆ patchwork : Messaging and sharing app built on top of Secure Scuttlebutt.
  1636. ◆ pathephone : Distributed audio player.
  1637. ◆ patternpaint : Making beautiful light shows is as easy as drawing a picture.
  1638. ◆ pavo : A mini desktop wallpaper application.
  1639. ◆ pavucontrol-qt : Qt port of pavucontrol Pulseaudio mixer, unofficial AppImage.
  1640. ◆ pay-respects : Terminal command correction, alternative to thefuck written in Rust.
  1641. ◆ pb-for-desktop : Pushbullet Desktop app.
  1642. ◆ pboy : A small .pdf management tool with a command-line UI.
  1643. ◆ pcloud : Europe's most secure cloud storage trusted by 20 million people.
  1644. ◆ pcsx2 : The Playstation 2 Emulator.
  1645. ◆ pcsx-redux : The PCSX-Redux project is a collection of tools, research, hardware design, and libraries aiming at development and reverse engineering on the PlayStation 1. The core product itself, PCSX-Redux, is yet another fork of the Playstation emulator, PCSX.
  1646. ◆ pdf2htmlex : Convert PDF to HTML without losing text or format.
  1647. ◆ pdf4qt : Open source PDF editor.
  1648. ◆ pdfcompress : A utility to compress PDF documentas based on Ghostscript and YAD.
  1649. ◆ pdfcrackgui : GUI overlay for the popular and highly regarded pdfcrack.
  1650. ◆ pdf-diff : A CLI tool for visualizing differences between two pdf files.
  1651. ◆ pdfquirk : Creating PDFs from images or scanner made easy.
  1652. ◆ pdf-sync : PDF Reader in JavaScript with Sync.
  1653. ◆ pdmaner : A relational database modeling tool.
  1654. ◆ peazip : Unofficial. PeaZip Appimage for linux 64bits.
  1655. ◆ peep : The CLI text viewer tool that works like less command on small pane within the terminal window.
  1656. ◆ pelusica : Action game, control the blue dot with your keyboard/create music.
  1657. ◆ pencil : Pencil2D is an easy, intuitive tool to make 2D hand-drawn animations.
  1658. ◆ pennywise : Open any website or media in a floating window.
  1659. ◆ penpot-desktop : Unofficial desktop app fo Penpot, the open-source design tool for design and code collaboration.
  1660. ◆ perl-executing-browser : HTML5 user interface for Perl 5 desktop apps.
  1661. ◆ permastead : Desktop software for managing a homestead using permaculture design.
  1662. ◆ peruse : A reader application for comic books.
  1663. ◆ pet : Simple command-line snippet manager.
  1664. ◆ pext : Python-based extendable tool.
  1665. ◆ pfetch-rs : A rewrite of the pfetch system information tool in Rust.
  1666. ◆ pget : The fastest, resumable file download CLI client.
  1667. ◆ phinch : Phinch is a framework for visualizing biological data.
  1668. ◆ pho : The AppImage Manager that Linux always deserved.
  1669. ◆ photocrea : Unofficial Photopea wrapper, image editor that includes all the familiar features like layers, filters, magic wand selection, etc.
  1670. ◆ photoflare : A simple but featureful image editor.
  1671. ◆ photoflow : Edit images from digital cameras.
  1672. ◆ photogimp : A patched version of GIMP for Adobe Photoshop users.
  1673. ◆ photoname : Rename photo image files based on EXIF shoot date.
  1674. ◆ photon : Cross-platform file-transfer application built using flutter. It uses http to transfer files between devices.
  1675. ◆ photopealoader : Photopea desktop app that loads local files and plugins.
  1676. ◆ photoqt : View and manage images.
  1677. ◆ photoquick : Light-weight image viewer, resize, collage, filters....
  1678. ◆ phototeleport : Upload your photos to multiple services at once.
  1679. ◆ phreshplayer : Electron based media player app.
  1680. ◆ pia : Version Portable Outil PIA.
  1681. ◆ picacg-qt : PicACG Comic PC Client For Linux.
  1682. ◆ picgo : Easy to upload your pic & copy to write.
  1683. ◆ piclist : Cloud storage platform management & file upload tool based on PicGo.
  1684. ◆ picmi : Single player logic-based puzzle game. This script installs the full "kdegames" suite.
  1685. ◆ picocrypt : A very small, very simple, yet very secure encryption tool.
  1686. ◆ picterm : CLI, TUI image viewer.
  1687. ◆ picturama : Digital image organizer powered by the web.
  1688. ◆ pigs-n-cows : A relaxing game for children and adults alike.
  1689. ◆ pile : App to organize your piled work at one place.
  1690. ◆ pince : Reverse engineering tool for linux games.
  1691. ◆ pingendo : ???
  1692. ◆ pingnoo : An open source network ping analyser.
  1693. ◆ pingu : CLI, ping command but with pingu.
  1694. ◆ pingviewer : Ping viewer interface.
  1695. ◆ pinokio : AI Browser.
  1696. ◆ pinta-dev : Simple GTK Paint Program (developer edition).
  1697. ◆ pipes-rs : An over-engineered rewrite of pipes.sh in Rust. CLI.
  1698. ◆ pixelhopper : Animated GIF player for Linux (X11).
  1699. ◆ pixelorama : A powerful and accessible open-source pixel art multitool. Whether you want to create sprites, tiles, animations, or just express yourself in the language of pixel art.
  1700. ◆ pixfetch : Another CLI fetch program with pixelized images written in Rust.
  1701. ◆ pix-maui : Image gallery and viewer with basic editing features.
  1702. ◆ pixsrt : Pixel sorter.
  1703. ◆ pizarra : A digital, vectorial and infinite chalkboard.
  1704. ◆ pkg2appimage : Utility to convert .yml recipes to AppDir, see appimagetool.
  1705. ◆ plagpatrol : Detecting documents tampered to bypass plagiarism detectors.
  1706. ◆ planes : Variant of battleships game.
  1707. ◆ planet-blupi : A delirious spell-binding game.
  1708. ◆ platform-tools : Official Suite of command line utilities to manage Android devices.
  1709. ◆ platinum-md : Graphical MiniDisc NetMD conversion and upload.
  1710. ◆ play-2048 : Another implementation of the 2048 game.
  1711. ◆ playback : Play and manage your cartridges and replay your childhood games.
  1712. ◆ playbox : An audio playback system for the live production industry.
  1713. ◆ playerctl : Unofficial, MPRIS media player command-line controller.
  1714. ◆ playit : Want to run an online game server? playit.gg is a global proxy that allows anyone to host a server without port forwarding.
  1715. ◆ playme : Elegant YouTube Music desktop app.
  1716. ◆ play : PlayStation 2 emulator on your computer or mobile device.
  1717. ◆ playyourdamnturn : Desktop Client to assist with playing your damn turns.
  1718. ◆ plexamp : The best little audio player on the planet.
  1719. ◆ plex : The ultimate home theater experience.
  1720. ◆ plotjuggler : The Time Series Visualization Tool that you deserve.
  1721. ◆ plotly-orca : CLI generating static images of interactive charts.
  1722. ◆ plover : Stenographic input and translation.
  1723. ◆ plume : A note-taking app written in Qt C++ and QML.
  1724. ◆ png2svg : CLI, convert small PNG images to SVG Tiny 1.2.
  1725. ◆ pnpm : A single file, powered by AppImage.
  1726. ◆ pocket-browser : A FOSS browser made for privacy and going towards security.
  1727. ◆ pocketcasts-electron : Pocket Casts wrapper with mapped media keys.
  1728. ◆ poddr : Podcast client that uses iTunes RSS feeds and Search API.
  1729. ◆ podium : A Markdown-based native presentation tool.
  1730. ◆ podman-appimage : AppImage of podman.
  1731. ◆ podman-desktop-companion : Podman command line interface.
  1732. ◆ podman : Free & open source tool to manage containers, pods, and images.
  1733. ◆ poe-ladder : Path of Exile ladder viewer.
  1734. ◆ pointless : An endless drawing canvas desktop app made with Tauri (Rust) and React.
  1735. ◆ poi : Scalable KanColle browser and tool.
  1736. ◆ pokeget-rs : A better rust version of pokeget. CLI.
  1737. ◆ pokego : Command-line tool that lets you display Pokémon sprites in color directly in your terminal.
  1738. ◆ pokete : A terminal based Pokemon like game.
  1739. ◆ polar-bookshelf : Personal knowledge repository for PDF and web content.
  1740. ◆ polar : One-click Bitcoin Lightning networks for local app development.
  1741. ◆ polkakey : A secure way to generate Polkadot/Kusama/Edgeware address.
  1742. ◆ polybar : Unofficial AppImage of polybar. A fast easy-to-use status bar.
  1743. ◆ polypane : Browser for web developers.
  1744. ◆ pomatez : Stay Focused. Take a Break.
  1745. ◆ pomodorolm : A simple, good looking and multi-platform pomodoro tracker.
  1746. ◆ pomotroid : Simple and visually-pleasing Pomodoro timer.
  1747. ◆ popcorn : BitTorrent client with integrated media player.
  1748. ◆ pop : Send emails from your terminal.
  1749. ◆ popsicle : Multiple USB File Flasher.
  1750. ◆ positron : Manage your movie and show watchlist.
  1751. ◆ postcat : An extensible API tool.
  1752. ◆ postman : API platform for building and using APIs, AppImage.
  1753. ◆ postybirb : Multimedia crossposter for multimedia websites.
  1754. ◆ postybirb-plus : Helps artists post art to multiple websites more quickly.
  1755. ◆ potatopresenter : Create presentation slides and exported as PDF.
  1756. ◆ pot-desktop : A cross-platform software for text translation and recognition.
  1757. ◆ powder-toy : AppImage build of The Powder Toy built from source.
  1758. ◆ powerliminals-player : Powerliminal audios in the background, Audio player.
  1759. ◆ powershell : Microsoft PowerShell.
  1760. ◆ ppet3 : Put a cute girl on your desk for more fun.
  1761. ◆ ppsspp : Unofficial, PSP emulator written in C++.
  1762. ◆ pragtical : The practical and pragmatic code editor.
  1763. ◆ pretty-handy-privacy : User interface for basic encryption tasks.
  1764. ◆ primate : A modern dashboard for Kong Gateway admins.
  1765. ◆ prime-world-editor : Edit world assets from games by Retro Studios.
  1766. ◆ principia : Open source physics-based sandbox game.
  1767. ◆ printerclient : A printer client.
  1768. ◆ prisma-studio : The easiest way to explore and manipulate your data.
  1769. ◆ prismlauncher : Launcher for Minecraft, manage multiple installations.
  1770. ◆ prismlauncher-qt5 : Launcher for Minecraft, manage multiple installations (Qt5 version).
  1771. ◆ privacy.sexy : Tool to enforce privacy & security best-practices.
  1772. ◆ privaxy : The next generation tracker and ads/advertisement blocker.
  1773. ◆ procdepmonitor : Obtaining information about loaded process dependencies.
  1774. ◆ procs : A modern replacement for ps written in Rust.
  1775. ◆ procspin : CLI to create a process/progress animation with text.
  1776. ◆ procyon : Note Keeper.
  1777. ◆ programmer-browser : A fast-searching and space-saving browser specially designed for programmers.
  1778. ◆ promethium : Extensible and innovative web browser with built-in AdBlock.
  1779. ◆ proofkeeper : Desktop tool to automate proof management.
  1780. ◆ prospect-mail : An Outlook mail desktop client powered by Electron.
  1781. ◆ protoman : A Postman-like API client for protobuf-based messages.
  1782. ◆ protonmail-desktop : Unofficial Electron wrapper for ProtonMail.
  1783. ◆ protonup-qt : Manage Proton-GE/Luxtorpeda for Steam/Wine-GE for Lutris.
  1784. ◆ proxyman : Modern and Delightful HTTP Debugging Proxy.
  1785. ◆ prusa-slicer : Prusa3d/PrusaSlicer, G-code generator for 3D printers.
  1786. ◆ psi+ : Communicate over the XMPP network.
  1787. ◆ pstube : Watch and download videos without ads.
  1788. ◆ psydoom : A backport of PSX Doom to PC.
  1789. ◆ publii : A desktop-based CMS that makes creating static websites fast.
  1790. ◆ puddletag : Unofficial, Powerful, simple, audio tag editor for GNU/Linux.
  1791. ◆ pullp : Pull request monitoring app for Github.
  1792. ◆ pulsar : A Community-led Hyper-Hackable Text Editor.
  1793. ◆ pulse : Pulse desktop client.
  1794. ◆ puppetry : Solution for non-developers on top of Puppeteer and Jest.
  1795. ◆ puush-qt : A GUI frontend for puush on Linux.
  1796. ◆ pyappimage : Simple appimage builder for Python applications.
  1797. ◆ pyfa : EVE Online Fitting Assistant.
  1798. ◆ python2.7 : Unofficial. Interactive high-level object-oriented language, version 2.7.
  1799. ◆ python3.10 : Unofficial. Interactive high-level object-oriented language, version 3.10.
  1800. ◆ python3.11 : Unofficial. Interactive high-level object-oriented language, version 3.11.
  1801. ◆ python3.12 : Unofficial. Interactive high-level object-oriented language, version 3.12.
  1802. ◆ python3.5 : Unofficial. Interactive high-level object-oriented language, version 3.5.
  1803. ◆ python3.6 : Unofficial. Interactive high-level object-oriented language, version 3.6.
  1804. ◆ python3.7 : Unofficial. Interactive high-level object-oriented language, version 3.7.
  1805. ◆ python3.8 : Unofficial. Interactive high-level object-oriented language, version 3.8.
  1806. ◆ python3.9 : Unofficial. Interactive high-level object-oriented language, version 3.9.
  1807. ◆ qaddapp : Qt5 Gui app that helps you add AppImages and binary archives into your Desktop environment.
  1808. ◆ qaterialgallery : Demonstrate Qaterial library.
  1809. ◆ qaterialhotreload : Qml HotReload software.
  1810. ◆ qawl : Read the Holy Qur’ān whenever, wherever, however you like.
  1811. ◆ qbittorrent : A powerful QT-based Bittorrent Client, official AppImage.
  1812. ◆ qbittorrent-enhanced : Unofficial qBittorrent Enhanced, based on qBittorrent.
  1813. ◆ qctools : Quality Control Tools for Video Preservation.
  1814. ◆ qdriverstation : Cross-platform clone of the FRC Driver Station.
  1815. ◆ qelectrotech : Edit electrical diagrams.
  1816. ◆ qemu-appimage : Unofficial. Prove of the concept to run a virtual machine from Appimage.
  1817. ◆ qemu-ppc : Run PowerPC operating systems on 64-bit Intel Linux hosts.
  1818. ◆ qflipper : Flipper Zero multitool for pentesters and geeks in a toy-like body.
  1819. ◆ qfsm : Qt Finite State Machine Designer.
  1820. ◆ qgroundcontrol : Ground control for unmanned vehicles.
  1821. ◆ qikqr : Minimal desktop app to create QR codes.
  1822. ◆ qmasterpassword : A password manager based on Qt.
  1823. ◆ qmediathekview : An alternative front-end to the MediathekView database.
  1824. ◆ qmidictl : MIDI Remote Controller via UDP/IP Multicast.
  1825. ◆ qmidinet : MIDI Network Gateway via UDP/IP Multicast.
  1826. ◆ qmplay2 : Video and audio player whit support of most formats and codecs.
  1827. ◆ qnapi : Qt-based, multi-engine, multi-platform subtitle downloader.
  1828. ◆ qortal-ui : Decentralize the world, data storage, communications.
  1829. ◆ qownnotes : Plain text notepad and todo list manager.
  1830. ◆ qpdf : CLI tool to perform content-preserving transformations on PDF files.
  1831. ◆ qppcad : Molecule and crystal editor written in c++
  1832. ◆ qprompt : Personal teleprompter software for all video creators.
  1833. ◆ qqmusic : A music player from Tencent.
  1834. ◆ qrab : Grabs text of QR code from a screen and copies it to clipboard.
  1835. ◆ qradiolink : Multimode SDR transceiver for GNU radio.
  1836. ◆ qr-code-generator : Create custom QR Codes, resize, save them as PNG image.
  1837. ◆ qrop : Crop planning and recordkeeping software.
  1838. ◆ qrscan : Scan a QR code in the terminal using the system camera or an image.
  1839. ◆ qsdrswr : Qt SWR analyser using an SDR and soapy_power.
  1840. ◆ qtads : A cross-platform, multimedia interpreter for TADS adventure games.
  1841. ◆ qtalarm : Alarm clock for Computers.
  1842. ◆ qtchan : 4chan browser in qt5.
  1843. ◆ qt-dab : Listening to terrestrial Digital Audio Broadcasting.
  1844. ◆ qtjsondiff : Json difference checker widget and viewer.
  1845. ◆ qtmips : Qt Mips emulator.
  1846. ◆ qtox : Qt 5 based Tox instant messenger for secure communication.
  1847. ◆ qtractor : An Audio/MIDI multi-track sequencer.
  1848. ◆ qt-raster-lines : Lines between points using rasterization, DDA, Bresenham.
  1849. ◆ qtrfpowermeter : Improve usage of chinese RF power meter RF8000.
  1850. ◆ quamodbusclient : Modbus to OPC UA Gateway
  1851. ◆ quark-player : An Electron based Web Video Services Player.
  1852. ◆ quark : Sketchbook for rapid prototyping and development of your projects.
  1853. ◆ quarto-cli : Scientific and technical publishing system built on Pandoc.
  1854. ◆ quaternion : A Qt5-based IM client for Matrix.
  1855. ◆ quba : A viewer for electronic invoices.
  1856. ◆ qucs-s : An Universal GUI for Circuit Simulators.
  1857. ◆ quentier : Note taking app integrated with Evernote.
  1858. ◆ quick-clone : Search through gitlab and clone git-repositories.
  1859. ◆ quickgui : An elegant virtual machine manager for the desktop.
  1860. ◆ quicknote : QuickNote helps to paste some random text or take some notes right from your taskbar!
  1861. ◆ quickredis : A free Redis Desktop manager.
  1862. ◆ quicktwitch : Electron React Redux Boilerplate.
  1863. ◆ quickviewer : A image viewer application for folders/archives.
  1864. ◆ quokkagit : A small, TortoiseGit inspired git log viewer for linux.
  1865. ◆ quran-companion : Free and open-source desktop Quran reader and player.
  1866. ◆ qv2ray : Cross-platform v2ray GUI Client in Qt.
  1867. ◆ qview : Practical and minimal image viewer.
  1868. ◆ qxgedit : QXGEdit is a Qt GUI XG editor application.
  1869. ◆ r2modman : Mod manager for several Unity games using Thunderstore.
  1870. ◆ r3play : High-value third-party Netease cloud player, chinese.
  1871. ◆ rabix-composer : A desktop IDE for working with Common Workflow Language.
  1872. ◆ radioit : Automation software for Radios.
  1873. ◆ radix-wallet : Radix DLT desktop wallet.
  1874. ◆ rainbow-board : 22nd Century Whiteboard App.
  1875. ◆ rambox : Free and Open Source messaging and emailing app.
  1876. ◆ rare : GUI for legendary. An Epic Games Launcher open source alternative.
  1877. ◆ raspirus : A user and resources-friendly signatures-based malware scanner.
  1878. ◆ rasterdraw : Simple shape drawn using rasterisation.
  1879. ◆ rasterview : Raster Viewer for CUPS-Raster, Apple-Raster and PWG-Raster.
  1880. ◆ rats-search : P2P BitTorrent search engine.
  1881. ◆ raven-reader : Simple Desktop RSS Reader made using VueJS.
  1882. ◆ rawtherapee : An advanced raw photo development program.
  1883. ◆ rbdl-toolkit : Application for visualizing and working with rbdl models.
  1884. ◆ rbdoom-3 : Doom 3 BFG Edition source port with updated DX12/Vulkan renderer.
  1885. ◆ rbw : Unofficial Bitwarden password manager cli.
  1886. ◆ rclone-browser : Simple cross platform GUI for rclone.
  1887. ◆ rclone : "rsync for cloud storage", CLI that supports Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Wasabi, Google Cloud Storage, Azure Blob, Azure Files, Yandex Files.
  1888. ◆ reactotron : Reactotron desktop mode engage.
  1889. ◆ realm-studio : A tool for everything Realm.
  1890. ◆ real-video-enhancer : Interpolate and Upscale easily.
  1891. ◆ reaper : A complete digital audio production app, offering a full multitrack audio and MIDI recording, editing, processing, mixing and mastering toolset.
  1892. ◆ rebaslight : An easy to use special effects video editor.
  1893. ◆ recoll : Full-text search for your desktop.
  1894. ◆ record-compare : Record Compare.
  1895. ◆ recordscript : Cross-platform screen recorder, transcript, subtitle.
  1896. ◆ redeclipse : A great first person 3D arena shooter with online support, game.
  1897. ◆ redis-gui : Modern graphical user interface to peek into redis DB.
  1898. ◆ redis-viewer : A Redis visualization client tool.
  1899. ◆ redminetimetracker : Time Tracking tool for Redmine.
  1900. ◆ reliefvalve : Helps manage the Steam client application.
  1901. ◆ remind-me-again : Toggleable cron reminders app.
  1902. ◆ remnote : Build your Knowledge Base anywhere and without distractions.
  1903. ◆ rendertune : Electron app that uses ffmpeg to combine audio.+image files into video files.
  1904. ◆ reor : AI note-taking app that runs models locally.
  1905. ◆ repath-studio : A cross-platform vector graphics editor.
  1906. ◆ responsively : A browser for developing responsive web apps.
  1907. ◆ retroarch : Frontend for emulators, game engines and media players.
  1908. ◆ retroshare : Securely share files with your friends.
  1909. ◆ revealed : A platform and store for apps, games, and more.
  1910. ◆ revealgo : Markdown driven presentation tool written in Go!
  1911. ◆ revolt : Revolt Desktop App.
  1912. ◆ rhb : Rapid HTML Builder/Prototyper.
  1913. ◆ rhythmbox : The popular Audio Player Rhythmbox.
  1914. ◆ ricochet : Anonymous peer-to-peer instant messaging.
  1915. ◆ ricochlime : Satisfying slime shooter.
  1916. ◆ ridereceipts : Automation app to download and organize your tax invoices.
  1917. ◆ riichi-city : A competitive urban-style Anime mahjong game, featuring beginner-friendly mahjong tutorials.
  1918. ◆ rimage : This is CLI tool inspired by squoosh.
  1919. ◆ ripcord : Chat client for group-centric services like Slack and Discord.
  1920. ◆ ripes : Graphical processor simulator and assembly editor for the RISC-V ISA.
  1921. ◆ ripgrep-all : A ripgrep version to also search in documents and archives.
  1922. ◆ ripgrep : Search directories for regex pattern while respecting gitignore.
  1923. ◆ rmg : Rosalie's Mupen GUI.
  1924. ◆ rmw : A safe-remove utility for the command line.
  1925. ◆ roborock-control-center : Control Your Xiaomi Vacuum.
  1926. ◆ rocketfetch : A WIP command line system information tool written with multithreading in rust for performance with toml file configuration.
  1927. ◆ rock.so : Messaging + Tasks.
  1928. ◆ rofi : Unofficial, A window switcher, runs dialogs, dmenu like, etc.
  1929. ◆ roloviewer : Image slideshow viewer.
  1930. ◆ rotki : A portfolio tracking, asset analytics and tax reporting app.
  1931. ◆ rpan-studio : OBS Studio with RPAN integration.
  1932. ◆ rpcs3 : An open-source PlayStation 3 emulator/debugger written in C++.
  1933. ◆ rquickshare : Rust implementation of NearbyShare/QuickShare from Android.
  1934. ◆ rrip : Bulk image downloader for reddit.
  1935. ◆ rssguard : Feed reader which supports RSS/ATOM/JSON, no-webengine version.
  1936. ◆ rstudio : RStudio is an integrated development environment, IDE for R.
  1937. ◆ rtneuron : Framework for geometrically detailed neuron simulations.
  1938. ◆ rubikscube : Rubik's cube in OpenGL.
  1939. ◆ rucola : Terminal-based markdown note manager.
  1940. ◆ ruffle : A Flash Player emulator written in Rust.
  1941. ◆ runanode : Lets run a node.
  1942. ◆ runelite : Open source Old School RuneScape client.
  1943. ◆ runjs : JavaScript playground. Write code with Node.js & browser APIs access.
  1944. ◆ running-dinner-tool : Running Dinner Tool.
  1945. ◆ rustdesk : Virtual/remote desktop infrastructure, like TeamViewer/Citrix.
  1946. ◆ rustdict : A dictionary CLI tool in Rust inspired by BetaPictoris's dict.
  1947. ◆ rustypaste : A minimal file upload/pastebin service.
  1948. ◆ rusty-rain : CLI, a cross platform matrix rain made with Rust.
  1949. ◆ rx-bin : A modern and extensible pixel editor implemented in Rust.
  1950. ◆ ryowallet : Modern GUI interface for Ryo Currency.
  1951. ◆ ryujinx : Ryujinx Nintendo Switch emulator.
  1952. ◆ s3drive : Convert S3, SFTP, WebDAV or Rclone back-end into your encrypted storage.
  1953. ◆ sabaki : Modern, elegant, cross-platform Go/Baduk/Weiqi game board.
  1954. ◆ saber : A work-in-progress cross-platform libre handwritten notes app.
  1955. ◆ safe-multisig : Allowing crypto users manage funds in a safer way.
  1956. ◆ samrewritten : Steam Achievement Manager For Linux. Rewritten in C++.
  1957. ◆ saphyr : A C++ like compiler.
  1958. ◆ satisfactory : Satisfactory Mod Manager.
  1959. ◆ saucedacity : Audio editor based on Audacity focusing on general improvements.
  1960. ◆ savvycan : Facilitates reverse engineering of canbus captures.
  1961. ◆ sayonara : Music player and music library admininstration.
  1962. ◆ sbe : An unofficial Scrapbox desktop app.
  1963. ◆ sblauncher : Minecraft Launcher.
  1964. ◆ scatter : Scatter desktop signature server.
  1965. ◆ scavengers : Unity Roguelike tutorial, game.
  1966. ◆ sc-controller : User-mode driver and GTK3 based GUI for Steam Controller.
  1967. ◆ schilbidi-chat : Matrix client / Element Web/Desktop fork.
  1968. ◆ schildichat : A Matrix Client.
  1969. ◆ school-sections : This project was generated with Angular CLI v1.7.4.
  1970. ◆ sciencefair : Desktop science reading app for Linux.
  1971. ◆ scilab : Scientific software package for numerical computations.
  1972. ◆ scraper : Simple desktop scraper app.
  1973. ◆ scratux : Linux client for scratch programming.
  1974. ◆ scrcpy : Display and control your Android device.
  1975. ◆ screencloud : Capture and share screenshots easily.
  1976. ◆ scribus : Powerful desktop publishing software.
  1977. ◆ scrite : Multilingual Screenplay Writing App from TERIFLIX.
  1978. ◆ scrum-retroboard : Electron application based on React.
  1979. ◆ scytale : Scytale Desktop Client for Linux.
  1980. ◆ sd : Intuitive find & replace CLI, sed alternative.
  1981. ◆ secops : A Linux Desktop Application for managing security.
  1982. ◆ seismic : A taskbar app for displaying USGS magnitude 2.5+ earthquakes from the past day.
  1983. ◆ selenium-ide : Open Source record and playback test automation for the web.
  1984. ◆ sengi : A multi-account desktop client for Mastodon and Pleroma.
  1985. ◆ senpa-io-client : Official Client for Senpa.io
  1986. ◆ sentinel : An open-source decentralized VPN network application.
  1987. ◆ serialplot : Small and simple software for plotting data from serial port.
  1988. ◆ serial-studio : Multi-purpose serial data view program.
  1989. ◆ serioussamtfe : Game engine for Serious Sam Classic, TFE.
  1990. ◆ serioussamtfe-vk : Game engine for Serious Sam Classic, Vulkan support, TFE.
  1991. ◆ serioussamtse : Game engine for Serious Sam Classic, TSE.
  1992. ◆ serioussamtse-vk : Game engine for Serious Sam Classic, Vulkan support, TSE.
  1993. ◆ ser-player : Video player for SER files used for astronomy-imaging.
  1994. ◆ session-desktop : Onion routing based messenger.
  1995. ◆ setcolors : Another way to set colors in Linux shells.
  1996. ◆ sfbrename : Bulk file renamer.
  1997. ◆ sfrt-attendance : The attendance tracking program for robotics.
  1998. ◆ sf-tube : Watch and download videos without ads.
  1999. ◆ shadowsocks : Shadowsocks GUI client.
  2000. ◆ shadow-tech : Shadow.tech, cloud computing service.
  2001. ◆ shadps4 : An early PlayStation 4 emulator written in C++.
  2002. ◆ shadps4-nightly : An early PlayStation 4 emulator written in C++.
  2003. ◆ shannon-calculator : Self-information content of a message text.
  2004. ◆ sharemyhost : One click to share your files in your local network.
  2005. ◆ sharp-tune : Music player build upon the node using the electron.
  2006. ◆ sheikah : A Witnet compatible desktop wallet.
  2007. ◆ shelf-maui : Document viewer for various document formats.
  2008. ◆ shell-assistant : Ad free Terminal SSH & SFTP client File manager and Code editor.
  2009. ◆ shellcheck : ShellCheck, a static analysis tool for shell scripts.
  2010. ◆ shellharden : The corrective bash syntax highlighter.
  2011. ◆ shipwright : Ship of Harkinian.
  2012. ◆ shotcut : A powerful Video Editor.
  2013. ◆ shradiko : Make Portable AppImages from Distro Packages.
  2014. ◆ shutter : Professional converter & compression tool designed by video editors.
  2015. ◆ shuttle : The fastest access to your favorite applications.
  2016. ◆ sideka : Platform Tata Kelola Desa
  2017. ◆ sideload : Utility, from elementaryOS 6 to install Flatpak apps from Flathub.
  2018. ◆ sidenote : A CLI tool that helps to manage plain text notes per working directory.
  2019. ◆ sigdigger : Signal analyzer, using Suscan core and Sigutils DSP library.
  2020. ◆ sigma-file-manager : A free, open-source, modern file manager.
  2021. ◆ sigmaspectra : Semi-automated selection and scaling of time series.
  2022. ◆ signal : Unofficial AppImage package for Signal (communication).
  2023. ◆ sigrok-cli : Control your logic analyzer, oscilloscope, or MSO.
  2024. ◆ silex-desktop : This is the official Silex desktop version.
  2025. ◆ siliconsneaker : View runs from your Garmin brand watch
  2026. ◆ silverkey : The best Qt Application Ever.
  2027. ◆ simdock : Small dock with pseudo-transparency and good window handling.
  2028. ◆ simdsp : DSP Simulator.
  2029. ◆ simplechroot : Simple command line chroot with ease.
  2030. ◆ simpleinstabot : Simple Instagram bot.
  2031. ◆ simplenote-electron : Simplenote.
  2032. ◆ simpleos : EOS Blockchain Interface & Wallet.
  2033. ◆ simple-s3-uploader : Easily uploading files and sharing links via AWS S3.
  2034. ◆ simplescreenrecorder : Unofficial. Feature-rich screen recorder supporting X11 & OpenGL.
  2035. ◆ simplest-file-renamer : Simplest file renamer, rename your files quickly and easily.
  2036. ◆ simple-timer : A really simple timer with a customizable logo and heading.
  2037. ◆ simplex-chat : First messaging platform operating without user identifiers.
  2038. ◆ simtoolkitpro : The all-in-one flight simulation EFB.
  2039. ◆ singlebox : AppView template for WebCatalog.
  2040. ◆ sinon : A handy video tool.
  2041. ◆ sioyek : PDF viewer designed for reading research papers and technical books.
  2042. ◆ sipgate-softphone : The sipgate softphone is developed directly by sipgate.
  2043. ◆ siril : Astronomical image pre-processing program.
  2044. ◆ siyuan : A local-first personal knowledge management system.
  2045. ◆ skanpage : A simple scanning application. This script installs the full "kdeutils" suite.
  2046. ◆ skrifa : A simple word processor built with web technologies.
  2047. ◆ skrooge : A personal finances manager, powered by KDE.
  2048. ◆ skyemu : Game Boy Advance, Game Boy, Game Boy Color, and DS Emulator.
  2049. ◆ skype : Unofficial. VoIP-based videoconferencing, voice calls and instant messaging app.
  2050. ◆ slackbackup : An app to archive Slack messages.
  2051. ◆ slacktronic : Connect your Slack workspace to Arduino.
  2052. ◆ slang-ed : An Electron/Ionic app to edit i18n language translations files.
  2053. ◆ sleek : Multiplatform todo.txt manager.
  2054. ◆ slic3r : Open Source toolpath generator for 3D printers.
  2055. ◆ slippi : Slippi Launcher program for browsing and playing replays.
  2056. ◆ slogidex : Task management and automation tool.
  2057. ◆ smallbasic : A fast and easy to learn BASIC language interpreter.
  2058. ◆ smartgit : A Git-Client.
  2059. ◆ smart-media-cutter : The fastest way to cut and trim streams and long videos.
  2060. ◆ smartservogui : Scan for servo devices easily view.
  2061. ◆ smassh : Smassh your Keyboard, TUI Edition.
  2062. ◆ smath-studio : Tiny, but powerful mathematical program with WYSIWYG editor.
  2063. ◆ smf-dsp : Standard MIDI file player.
  2064. ◆ smplayer : Media Player with built-in codecs for all audio and video formats.
  2065. ◆ smuview : A Qt based source measure unit GUI for sigrok.
  2066. ◆ snake-js : Canvas/JavaScript based Snake Game with support for controllers.
  2067. ◆ snapshot-slider : Present/print/email Snapshots of modern mathematics.
  2068. ◆ snes9x : Snes9x - Portable Super Nintendo Entertainment System TM emulator.
  2069. ◆ snippetstore : A snippet management app for developers.
  2070. ◆ snomcontrol : An application to control snom D3xx phones from the desktop.
  2071. ◆ snowball : Find and filter literature, fast.
  2072. ◆ soapy-sdr : I/Q recorder and processor using SoapySDR as backend.
  2073. ◆ soar : A fast modern package manager for static binaries, portable apps & more.
  2074. ◆ socnetv : Social Network Analysis and Visualization software.
  2075. ◆ soft-serve : The mighty, self-hostable Git server for the command line.
  2076. ◆ software-challenge-gui : GUI für die Software-Challenge.
  2077. ◆ soil-editor : A tool to edit the soil properties, CRITERIA1D.
  2078. ◆ solars : Visualize the planets of our solar system.
  2079. ◆ solarwallet : Stellar wallet. Secure and user-friendly.
  2080. ◆ soniclineup : Comparative visualisation of multiple audio files.
  2081. ◆ sonicvisualiser : Viewing and analysing the contents of music audio files.
  2082. ◆ sonixd : A full-featured Subsonic/Jellyfin compatible desktop music player.
  2083. ◆ sonusmix : Next-gen Pipewire audio routing tool.
  2084. ◆ s : Open a web search in your terminal.
  2085. ◆ sortty : sortty - sorting algorithms in the terminal.
  2086. ◆ soul-arena : Bleach-based online multiplayer strategy game.
  2087. ◆ soundcloud-rpc : A SoundCloud client with Discord Rich Presence and AdBlock.
  2088. ◆ sourcetrail : Source explorer to get you productive on unfamiliar source code.
  2089. ◆ sozi : A "zooming" presentation editor.
  2090. ◆ spacebar-debug : Extendable discord-compatible native Spacebar client, debug.
  2091. ◆ spacebar : Themeable and extendable discord-compatible native Spacebar client.
  2092. ◆ spacecadet : Unofficial. Reverse engineered port of 3D Pinball for Windows XP Space Cadet.
  2093. ◆ spacemesh : Spacemesh App, Smesher + Wallet.
  2094. ◆ spacewars : A re-imagining of the classic game Spacewar using Amethyst engine.
  2095. ◆ spark.payments : Terminal app for processing DASH payments.
  2096. ◆ spark-wallet : A wallet GUI for c-lightning, accessible over web/mobile/pc.
  2097. ◆ speaky-miniplayer : A miniplayer with a synthetic radio speaker.
  2098. ◆ special-eureka : A desktop mangareader built in Tauri and React
  2099. ◆ speedcrunch : A high-precision scientific calculator featuring a fast, keyboard-driven user interface.
  2100. ◆ speedcrunch-appimage : Unofficial AppImage of the SpeedCrunch Calculator.
  2101. ◆ speed-dreams : A Torcs fork, 3d motorsport simulation and race cars game.
  2102. ◆ speedyloader : Speeduino universal firmware loader.
  2103. ◆ speek : Privacy focused messenger.
  2104. ◆ sphia : A Proxy Handling Intuitive Application.
  2105. ◆ spicy-launcher : Cross-platform launcher for Spicy Lobster games.
  2106. ◆ spiritfarer : Spiritfarer, AppImage version.
  2107. ◆ spivak : Karaoke player based on GStreamer and Qt5.
  2108. ◆ spm : A simple CLI package manager written in bash mainly for AppImages.
  2109. ◆ spmp : A YouTube Music client with a focus on customisation of colours and song metadata.
  2110. ◆ spotifetch : A simple and beautiful CLI fetch tool for spotify, now rusty.
  2111. ◆ spotify-dl : A command-line utility to download songs and playlists directly from Spotify's servers.
  2112. ◆ spotify-player : A Spotify player in the terminal with full feature parity.
  2113. ◆ spotify-tui : Spotify for the terminal written in Rust.
  2114. ◆ spotify : Unofficial. A proprietary music streaming service.
  2115. ◆ spotube : Open source Spotify client that doesn't require Premium.
  2116. ◆ spritemate4electron : A simple Electron-wrapper for Esshahn's awesome Spritemate-webapp.
  2117. ◆ sptlrx : Synchronized lyrics in your terminal.
  2118. ◆ spyglass : A personal search engine to create a searchable library from your personal documents, interests, and more.
  2119. ◆ sqlitebrowser : DB Browser is a light GUI editor for SQLite databases.
  2120. ◆ squirrel-disk : Cross-Platform and Super Fast Disk Usage Analysis Tool.
  2121. ◆ srb2k : AppImage Package for Sonic Robo Blast 2 Kart, game.
  2122. ◆ ssh-mitm : Server for security audits supporting public key authentication.
  2123. ◆ ssplot : A simple plotting utility for dynamical systems.
  2124. ◆ stacer : Linux System Optimizer and Monitoring.
  2125. ◆ stackandconquer : A challenging tower conquest board game "Mixtour" inspired.
  2126. ◆ standard-notes : A simple and private place for your notes.
  2127. ◆ starc : Story Architect, reinventing the screenwriting software.
  2128. ◆ stash-electron : The friendly secret storage made for teams.
  2129. ◆ station : A single place for all of your web applications.
  2130. ◆ station-maui : Terminal emulator with quick functions support for touch.
  2131. ◆ statsbook-tool : A tool for error checking WFTDA Statsbooks.
  2132. ◆ statuspilatus : Monitor your PC like never before.
  2133. ◆ steamcad : 2D CAD especially designed to draw steam locomotives.
  2134. ◆ steamdepotdownloadergui : Easily download older versions of games from Steam.
  2135. ◆ steam-rom-manager : An app for managing ROMs in Steam.
  2136. ◆ steam-tui : Rust TUI client for steamcmd.
  2137. ◆ steam : Unofficial. The ultimate destination for playing, discussing, and creating games.
  2138. ◆ steem-messenger : Messer for Steem.
  2139. ◆ stele : Kiosk app wrapper for museum media exhibits.
  2140. ◆ stellarium : Planetarium that shows a realistic sky in 3D.
  2141. ◆ stereophotoview : 3d stereoscopic photo/video viewer and editor.
  2142. ◆ stew : An independent package manager for compiled binaries.
  2143. ◆ sticker-convert : Convert animated stickers.
  2144. ◆ stockstalk : Your stocks on your desktop.
  2145. ◆ stoplight : The kickass API platform.
  2146. ◆ storadit : Minimalistic Todo list/notes taking app.
  2147. ◆ storaji : The Light/Responsive Inventory Management System.
  2148. ◆ storyboarder : Visualize a story as fast you can draw stick figures.
  2149. ◆ strans : A powerful command-line utility.
  2150. ◆ strata : Semi-automated selection and scaling of time series.
  2151. ◆ strawberry : Unofficial AppImage of the strawberry music player.
  2152. ◆ streamcapture2 : Download video streams.
  2153. ◆ streamdock : Streaming service viewer.
  2154. ◆ streamlink : Command-line which pipes video streams from various services.
  2155. ◆ streamlink-twitch-gui : A multi platform Twitch.tv browser for Streamlink.
  2156. ◆ streamon : Create streaming links to instagram live.
  2157. ◆ stretchly : App that reminds you to take breaks when working on your PC.
  2158. ◆ strike-maui : Simple convergent IDE.
  2159. ◆ strongbox : A World of Warcraft Addon Manager aimed at Linux players.
  2160. ◆ structure : A knowledge management tool.
  2161. ◆ studymd : Flashcards from Markdown.
  2162. ◆ stunt-car-remake : Remake of the old game Stunt Car Racer.
  2163. ◆ subillmanager : A simple Flutter app to manage electricity bill.
  2164. ◆ substrate-ide : Graphic IDE for developing Substrate blockchains.
  2165. ◆ subsurface : Official upstream of the Subsurface divelog program.
  2166. ◆ subtitle-composer : KF5/Qt Video Subtitle Editor for KDE.
  2167. ◆ subtitler : Quickly download subtitles.
  2168. ◆ sugarizer : A taste of Sugar on any device.
  2169. ◆ sultanpos : Simple POS for minimarket.
  2170. ◆ summoners.war.exporter : To parse intercepted data from Summoners War.
  2171. ◆ sumoco : Simple Unified Model for Orthopaedics.
  2172. ◆ sunamu : Show your currently playing song in a stylish way.
  2173. ◆ sunny : Screenshot software that supports OCR and image translation features.
  2174. ◆ sunsama : The daily planner for elite professionals.
  2175. ◆ sunshine : Sunshine is a Gamestream host for Moonlight.
  2176. ◆ sup : A Slack client with WhatsApp like UI.
  2177. ◆ superfile : Pretty fancy and modern terminal file manager.
  2178. ◆ supernotes : Enjoy efficient note-taking without the hassle.
  2179. ◆ superpaper : A cross-platform multi monitor wallpaper manager.
  2180. ◆ superproductivity : An advanced todo list app with integrated Timeboxing.
  2181. ◆ superslicer-bin : G-code generator for 3D printers.
  2182. ◆ superslicer-prerelease-bin : G-code generator for 3D printers.
  2183. ◆ supertag : A tag-based filesystem written in Rust.
  2184. ◆ supertux : Classic 2D jump'n run sidescroller game inspired to Super Mario.
  2185. ◆ supertuxkart-appimage : Unofficial. Racing game focused on Fun.
  2186. ◆ supertuxkart : The original Free kart racing game focused on Fun!
  2187. ◆ surrealist : Surrealist is the ultimate way to visually manage your SurrealDB database.
  2188. ◆ suyu : Open-source, Nintendo Switch emulator, continuation of yuzu.
  2189. ◆ svelte-electron : Create desktop apps with this Svelte boilerplate.
  2190. ◆ svgwall : SVG Wallpaper Utility for Xorg.
  2191. ◆ swaglyrics : SwagLyrics AppImage, unofficial.
  2192. ◆ swc-minecraft-launcher : SWC Minecraft Launcher.
  2193. ◆ sweeper : Unofficial. System Cleaner. This script installs the full "kdeutils" suite.
  2194. ◆ sweethome3d : An interior design app to draw house plans & arrange furniture.
  2195. ◆ swell : Testing for streaming APIs, right at your desktop.
  2196. ◆ swift : Communicate over the Jabber/XMPP network, v4.0.2.
  2197. ◆ swiftnessx : Electron application boilerplate based on React/Webpack.
  2198. ◆ swifty : Free Offline-first Password Manager.
  2199. ◆ swish : Command Line Interface for Swisstransfer Infomaniak's free service.
  2200. ◆ switchhosts : Switch hosts quickly!
  2201. ◆ switchshuttle : Run predefined commands in various terminal applications.
  2202. ◆ swradio : Shortwave receiver for use with sdrplay/hackrf/dabsticks/pmsdr.
  2203. ◆ symphonium : A tool to help when learning to play the piano.
  2204. ◆ syncmyl2p : L2P synchronisation tool.
  2205. ◆ syncplay : Synchronize video playback over network.
  2206. ◆ syncthing-tray : Tray application for Syncthing.
  2207. ◆ synfigstudio : A free and open-source 2D animation software, graphics.
  2208. ◆ synthein : A space ship building and combat game.
  2209. ◆ synthv1 : An old school polyphonic synthesizer.
  2210. ◆ sysz : An fzf terminal UI for systemctl.
  2211. ◆ szyszka : Szyszka is fast and powerful file renamer.
  2212. ◆ tabby : A terminal for a more modern age
  2213. ◆ tablo-tools : Tools to Bulk Delete and Export from Tablo DVR.
  2214. ◆ tag-editor : Tag Editor, supports MP4, ID3, Vorbis, Opus, FLAC and Matroska.
  2215. ◆ tagspaces : An offline, open source, document manager with tagging support.
  2216. ◆ tagstoo : Tagstoo tagging application.
  2217. ◆ tagtime-desktop : Time tracking for space cadets, desktop edition.
  2218. ◆ taskade : AI-Powered productivity.
  2219. ◆ taskell : Command-line Kanban board/task manager with support for Trello boards and GitHub projects.
  2220. ◆ taskizer : A task management app.
  2221. ◆ tastee-ui : Tool helping you write executable specifications in your lang.
  2222. ◆ tb : Tasks, boards & notes for the command-line habitat.
  2223. ◆ tc : A desktop chat client for Twitch.
  2224. ◆ tdlib-rs : Rust wrapper around the Telegram Database Library.
  2225. ◆ teams : Unofficial, Business communication platform developed by Microsoft.
  2226. ◆ teamviewer : Deliver remote IT support to your customers and colleagues, anytime, anywhere. Communication, network.
  2227. ◆ teamviewer-host : Host utility for TeamViewer, if you want to set up unattended access to a device.
  2228. ◆ teamviewer-qs : QuickSupport utility for TeamViewer, if you want to receive support.
  2229. ◆ teledrive : Automatically backup Telegram Saved Messages.
  2230. ◆ telegram : Official desktop version of Telegram messaging app.
  2231. ◆ telly-skout : A convergent Kirigami TV guide. This script installs the full "kdeutils" suite.
  2232. ◆ tenacity : An easy-to-use, cross-platform multi-track audio editor/recorder.
  2233. ◆ tere : Terminal file explorer.
  2234. ◆ terminalos-sim : A terminalOS simulator.
  2235. ◆ termshot : Creates screenshots based on terminal command output.
  2236. ◆ teslacam-browser : A minimal TeslaCam Browser.
  2237. ◆ tesler : The Tesla Sentinel Viewer.
  2238. ◆ tess : A hackable, simple, rapid and beautiful terminal.
  2239. ◆ tesseract : Tesseract Open Source OCR Engine AppImage.
  2240. ◆ testdisk : TestDisk & PhotoRec, tools to recover lost partitions and files.
  2241. ◆ texmacs : Free scientific text editor, inspired by TeX and GNU Emacs.
  2242. ◆ texstudio : LaTeX development environment.
  2243. ◆ textnote : Simple tool for creating and organizing daily notes on the command line.
  2244. ◆ textosaurus : Cross-platform text editor based on Qt and Scintilla.
  2245. ◆ tgpt : AI Chatbots in terminal without needing API keys.
  2246. ◆ thedesk : Mastodon Client for PC.
  2247. ◆ theframe : Animation tool.
  2248. ◆ theia-blueprint : Building desktop-based products based on Eclipse Theia.
  2249. ◆ thermusqt : Calculate particle composition of hadronic state.
  2250. ◆ the-way : A code snippets manager for your terminal.
  2251. ◆ theweb : Web Browser.
  2252. ◆ thief : An innovative cross-platform fishing tool, in chinese.
  2253. ◆ thinktool-desktop : Desktop application for Thinktool.
  2254. ◆ thinreports-section-editor : A template editor for Thinreports.
  2255. ◆ thlink : Touhou Project Game Netplay Tool.
  2256. ◆ thoptv : Enjoy Ultimate Movies, sports Matches, IPL and Latest Shows.
  2257. ◆ thorium-avx2 : AVX2 Linux builds of Thorium Browser.
  2258. ◆ thorium-client : A locked-down electron kiosk for Thorium.
  2259. ◆ thorium-reader : Desktop application to read ebooks.
  2260. ◆ thorium-sse3 : Web Browser, Chromium fork with Widevine and FFmpeg support.
  2261. ◆ thorium-sse4 : Web Browser, Chromium fork with Widevine and FFmpeg support.
  2262. ◆ thorium : Web Browser, a Chromium fork including Widevine and FFmpeg support.
  2263. ◆ thunderbird-appimage : Unofficial. Mail client's Unofficial AppImage, Stable.
  2264. ◆ thunderbird-beta-appimage : Unofficial. Mail client's Unofficial AppImage, Beta.
  2265. ◆ thunderbird-beta : Free and open source eMail client, Beta Edition.
  2266. ◆ thunderbird : Free and open source eMail client, Stable.
  2267. ◆ thunderbird-nightly-appimage : Unofficial. Mail client's Unofficial AppImage, Nightly.
  2268. ◆ thunderbird-nightly : Free and open source eMail client, Nightly Edition.
  2269. ◆ ticker : Terminal stock ticker with live updates and position tracking.
  2270. ◆ tidal-hifi : The web version of listen.tidal.com running in electron.
  2271. ◆ tilde-podcast : Podcast client to listen to all you favorite podcasts.
  2272. ◆ tiled : Tile map editor.
  2273. ◆ tilinggenerator : Generator of regular and irregular tilings.
  2274. ◆ timely : The release branch for Timely electron apps.
  2275. ◆ timenaut : Desktop time tracking application.
  2276. ◆ timer : Time recurring events.
  2277. ◆ tipitaka-pali-reader : A Pali Reading app made in Flutter.
  2278. ◆ tlock : Two-Factor Authentication Tokens Manager in Terminal.
  2279. ◆ tmon : A simple CLI tool for monitoring/reporting CPU temperatures.
  2280. ◆ tmux : Tmux AppImage build via Docker.
  2281. ◆ tnt : A computer-assisted translation tool.
  2282. ◆ tockler : An application that tracks your time by monitoring.
  2283. ◆ tod : An unofficial Todoist command line client written in Rust.
  2284. ◆ todesktop : Web app to desktop app in minutes.
  2285. ◆ todo-bash : Todo list for the Bash command line.
  2286. ◆ todoist : The to-do list to organize work & life.
  2287. ◆ todorant : Todorant releases.
  2288. ◆ todorust : Simple ToDoList made in rust.
  2289. ◆ toerings : A clone of Conky Seamod using Tauri.
  2290. ◆ toipe : yet another typing test, but crab flavoured.
  2291. ◆ tomatox : An online free VIP video analysis player, in chinese.
  2292. ◆ tonuino-toolbox : SD card manager for your Tonuino.
  2293. ◆ topgrade : Upgrade all the things, this is the universal upgrade manager.
  2294. ◆ tor-browser-alpha : Privacy-oriented Web Browser for sites blocked in your country.
  2295. ◆ tor-browser : Privacy-oriented Web Browser for sites blocked in your country.
  2296. ◆ torcs : The 3D Open Racing Car Game and Simulator.
  2297. ◆ torrenttools : Cli tool to inspect/create/edit BitTorrent metafiles.
  2298. ◆ toru : Bittorrent streaming CLI tool. Stream anime torrents real-time.
  2299. ◆ toughcookies : A modern flash cards study and management app.
  2300. ◆ trackaudio : A next generation Audio-For-VATSIM ATC Client.
  2301. ◆ trader : Play Star Traders, a simple game of interstellar trading.
  2302. ◆ trans : CLI translator using Google/Bing/Yandex Translate, etc...
  2303. ◆ transfernow : TransferNow is a simple and free way to safely share your data.
  2304. ◆ translatium : Translate Any Languages like a Pro.
  2305. ◆ transmission-gtk : Unofficial. Fast, easy, and free BitTorrent client, GTK+ GUI.
  2306. ◆ transmissionic : Remote for Transmission Daemon.
  2307. ◆ trezor-suite : Trezor Suite desktop application.
  2308. ◆ trgui-ng : Remote GUI for Transmission torrent daemon.
  2309. ◆ triagem-touch : Novo SGA triage client.
  2310. ◆ trilium : Build your personal knowledge base with Trilium Notes.
  2311. ◆ trinity-desktop : Desktop wallet for IOTA.
  2312. ◆ tropy : Research photo management.
  2313. ◆ tssh : trzsz-ssh is an alternative to ssh client, offers additional features.
  2314. ◆ tt : A simple Time Tracker to stay basic and intuitive.
  2315. ◆ tts-now : A chinese text-to-speech assistant based on the speech synthesi.
  2316. ◆ ttth : An electron based desktop app for online services.
  2317. ◆ ttyper : Terminal-based typing test.
  2318. ◆ tulip : Large graphs analysis, drawing and visualization framework.
  2319. ◆ tumblr-downloader-gui : Download Tumblr posts that you liked.
  2320. ◆ tumblr-scraper : Scrape a Tumblr profile for user uploadede posts.
  2321. ◆ tunepack : Finding and download HQ audio files.
  2322. ◆ turbowarp : Scratch mod with a compiler to run projects faster.
  2323. ◆ turntable : Simple youtube DJ app made with Electron and Angular4.
  2324. ◆ tusk : Evernote desktop app.
  2325. ◆ tutanota : The world's most secure email service, easy to use and private.
  2326. ◆ tuxplorer : Tuxplorer is a terminal based file explorer.
  2327. ◆ tvalb : Watch your favorite Albanian TV channels through your PC.
  2328. ◆ t.viewer : Cross Platform Tizen Log Viewer.
  2329. ◆ twake : Desktop App for Twake.
  2330. ◆ tweaksophia : An app to automatically renew the books of the SophiA system.
  2331. ◆ tweet-tray : Tweet quickly from the desktop without any distractions.
  2332. ◆ twetter : Client for the pubsub app.
  2333. ◆ twitch-wrapper : An Electron wrapper for Twitch.tv.
  2334. ◆ typioca : Cozy typing speed tester in terminal.
  2335. ◆ tzared : Real-time strategy game.
  2336. ◆ uad-ng : GUI Rust wrapper for ADB to debloat non-rooted Android devices.
  2337. ◆ ubiquity : A cross-platform markdown editor.
  2338. ◆ ubports-installer : A simple tool to install Ubuntu Touch on UBports devices
  2339. ◆ uhk.agent : Configuration app of the Ultimate Hacking Keyboard.
  2340. ◆ uivonim : Fork of the Veonim Neovim GUI.
  2341. ◆ ultragrid : UltraGrid low-latency audio/video network transmission system.
  2342. ◆ ultrascreen : Share your screens with friends.
  2343. ◆ ums : Unofficial AppImage for Universal Media Server. A DLNA, UPnP and HTTP(S) Media Server.
  2344. ◆ uncov : A tool that collects and processes code coverage reports.
  2345. ◆ unetbootin : Install Linux/BSD distributions to a partition or USB drive.
  2346. ◆ ungoogled-chromium : Chromium Web Browser without Google services.
  2347. ◆ unified-communications : Unified Communication from Mundio Mobiles.
  2348. ◆ unishellect : JSON parser file and menu customizez Hyper-inspired.
  2349. ◆ unityhub : Streamlines the way you find, download and manage your Projects.
  2350. ◆ unoffical-flomo : Unofficial Flomo Appimage Client.
  2351. ◆ unoffical-microsoft-loop : Unofficial. People who want to create together with ease.
  2352. ◆ unoffical-qwerty-learner : Unofficial. Words learning and English muscle memory training.
  2353. ◆ unoffical-sonos-controller : Unofficial sonos controller for linux.
  2354. ◆ unoffical-weread : Unofficial WeRead Appimage Client.
  2355. ◆ unoffical-xiaohongshu : Unofficial xiaohongshu Appimage Client.
  2356. ◆ unoffical-yuque : Unofficial YuQue Appimage Client.
  2357. ◆ unofficial-homestuck-collection : An offline collection of Homestuck and its related works.
  2358. ◆ unofficial-zalo : Unofficial Zalo App.
  2359. ◆ unreel : A GUI to create Reveal presentations.
  2360. ◆ unveil : Unveil Rs is a tool to create presentations from markdown inspired by reveal.js, mdbook and zola.
  2361. ◆ unyo : Anime streaming and Manga reader desktop app without ads.
  2362. ◆ updatedeployqt : Tool to deploy auto update for qt applications.
  2363. ◆ upgit : CLI, another upload hub that supports clipboard. It works well with Typora, Snipaste, VSCode.
  2364. ◆ upnotes : A notes app for software developers.
  2365. ◆ upnote : Stay focused and productive with a clean and clutter-free note space.
  2366. ◆ upscayl : Free and Open Source AI Image Upscaler.
  2367. ◆ upterm : A terminal emulator for the 21st century.
  2368. ◆ urbanterror : A team-based tactical game shooter based on the Quake 3 Engine.
  2369. ◆ utilso : Regex Tester, JWT Verify, Image Converter, Format JSON, Decode...
  2370. ◆ uwufetch : A meme system info tool for Linux, based on nyan/uwu trend.
  2371. ◆ uyou : This is a todo list with electron.
  2372. ◆ v2ray-desktop : V2Ray GUI client for Linux.
  2373. ◆ valentina : Open source pattern-making software.
  2374. ◆ valeronoi : Companion app for Valetudo for generating WiFi heat maps.
  2375. ◆ vcloudcam : Solution for the camera systems of gas and fuel stations.
  2376. ◆ vechain : A browser that empowers DApps on VeChain.
  2377. ◆ vegeta : HTTP load testing tool and library. It's over 9000!
  2378. ◆ ventoy : Tool to create bootable USB drive for ISO/WIM/IMG/VHDx/EFI files.
  2379. ◆ verto : A multi-currency crypto wallet with support for EOS & VTX.
  2380. ◆ vesktop : Vesktop gives you the performance of web Discord.
  2381. ◆ vessel : A simple wallet for managing your Steem accounts.
  2382. ◆ vgmtrans : A tool to convert proprietary, sequenced videogame music.
  2383. ◆ vhc-viewer-wayland : Vulkan Hardware Capability Viewer.
  2384. ◆ vhc-viewer-x11 : Vulkan Hardware Capability Viewer.
  2385. ◆ vhs : Your CLI home video recorder.
  2386. ◆ vial : GUI and a QMK fork for configuring your keyboard in real time.
  2387. ◆ via : Your keyboard's best friend.
  2388. ◆ viber : Proprietary cross-platform IM and VoIP software.
  2389. ◆ vidcutter : Simple and fast video cutter and joiner.
  2390. ◆ viddy : A modern watch command line utility. Time machine and pager etc.
  2391. ◆ video-hub : A fastest way to browse and search for videos on your computer.
  2392. ◆ videomass : Free, open source and cross-platform GUI for FFmpeg.
  2393. ◆ vieb : Vim Inspired Electron Browser.
  2394. ◆ vifm : File manager with curses interface providing Vim-like environment.
  2395. ◆ vigad : Extract live-data from your screen.
  2396. ◆ vikunja : The open-source, self-hostable to-do app.
  2397. ◆ vimeo-dl : A cli tool to download private videos on vimeo. Written in golang.
  2398. ◆ violetbug : Roku Debugger Graphical Interface.
  2399. ◆ viper-browser : Fast and lightweight Qt web browser.
  2400. ◆ viper : Launcher and Updater for TF2 Northstar.
  2401. ◆ vipster : Visual periodic structure editor.
  2402. ◆ vircadia : Open Source continuation of the High Fidelity metaverse.
  2403. ◆ virtscreen : Make your iPad/tablet/computer into a secondary monitor on Linux.
  2404. ◆ virtualbox : Powerful x86 virtualization for enterprise as well as home use.
  2405. ◆ visipics : Windows software to find and remove duplicate pictures. Unofficial AppImage built using "wine32-deploy" and powered by "wine".
  2406. ◆ visual-define-xml-editor : Editor for CDISC Define-XML standard.
  2407. ◆ visualfamilytree : Create a family tree with information and pictures.
  2408. ◆ vita3k : Experimental PlayStation Vita emulator.
  2409. ◆ vitomu : Easy to use video to audio converter.
  2410. ◆ viu : Terminal image viewer with native support for iTerm and Kitty.
  2411. ◆ vivaldi-snapshot : Unofficial. Advanced Web Browser, Testing Version.
  2412. ◆ vivaldi-stable : Unofficial. Advanced Web Browser, Stable Version.
  2413. ◆ vivifyscrum : Agile Tool for Professionals.
  2414. ◆ vizgraph : A simple tool for Using Graphviz.
  2415. ◆ vk-desktop : Cross-platform client VKontakte.
  2416. ◆ vk-music-fs : Listen to the music from VK.
  2417. ◆ vlc-git : Unofficial. Free and Open Source Video & Media player, GIT version.
  2418. ◆ vlc : Unofficial. Free and Open Source Video & Media player for Audio, streaming and more.
  2419. ◆ vlc+ : Unofficial. Video & Media player for Audio, streaming and more, with JAVA support.
  2420. ◆ vnote : Note-taking application for pleasant Markdown.
  2421. ◆ vocabsieve : Simple sentence mining tool for language learning.
  2422. ◆ voicevox : Offical Frontend for the free VOICEVOX TTS Engine.
  2423. ◆ volaris : Volaris-Gui is the wrapper for Volaris, a secure file encryption software.
  2424. ◆ vpaint : Experimental vector graphics and 2D animation editor.
  2425. ◆ vrest-ng : Zero code API test automation solution.
  2426. ◆ vrew : Your first video editor, your easiest choice.
  2427. ◆ vscodium : Community-driven, freely-licensed binary distribution of MS VSCode.
  2428. ◆ vterm : Extensible terminal emulator.
  2429. ◆ vtm : Text-based desktop environment.
  2430. ◆ vt : VirusTotal Command Line Interface.
  2431. ◆ vue-calc : A Simple VueJS's Calculator built with ElectronJS.
  2432. ◆ vuerd : A desktop ERD app.
  2433. ◆ vup : Private and decentralized cloud storage.
  2434. ◆ vvave-maui : Manage your music collection and stream it from the cloud.
  2435. ◆ w2vgrep : semantic-grep for words with similar meaning to the query.
  2436. ◆ waifu2x-gui : An app that upscales anime-styled images, gifs, videos, pdfs.
  2437. ◆ walc : WhatsApp Linux Client, Unofficial.
  2438. ◆ walk : Terminal file manager.
  2439. ◆ wallettech : BytechCoin GUI Wallet.
  2440. ◆ warp-terminal : Terminal reimagined with AI and collaborative tools.
  2441. ◆ wasistlos : Unofficial, WhatsApp Linux Client, formerly known as "whatsapp-for-linux".
  2442. ◆ watched : A media player and a browser for Excellent entertainment.
  2443. ◆ watchflower : Read and plot datas from your Xiaomi devices.
  2444. ◆ watchit : Open movies everywhere.
  2445. ◆ waterfox-appimage : Browse the World Wide Web, current version.
  2446. ◆ waterfox : Browse the World Wide Web, current version.
  2447. ◆ wavebox : The next generation of web-desktop communication.
  2448. ◆ waydroid-helper : App that provides a user-friendly way to configure Waydroid and install extensions, including Magisk and ARM translation (android).
  2449. ◆ wazo-desktop : Wazo desktop client for wazo VOIP server.
  2450. ◆ weakauras : App to provide missing link between Wago.io and World of Warcraft.
  2451. ◆ weatherdump : A WeatherDump GUI.
  2452. ◆ webamp : Winamp Player 2.9 reimplementation in HTML5 and JS.
  2453. ◆ webcamoid : A multi-platform camera capture app focused on providing all major features required by power users with a very simple and intuitive interface.
  2454. ◆ webcatalog : App store for web apps. Find the right software and services.
  2455. ◆ webcord : A Discord and Fosscord client implemented without Discord API.
  2456. ◆ webdesktop : WebDesktop make apps with just a text editor and nodejs.
  2457. ◆ webitel-phone : Webitel Phone, Alpha.
  2458. ◆ webkitty : Local web development IDE.
  2459. ◆ webrecorder : A complete packaging of Webrecorder hosted service in Electron.
  2460. ◆ weektodo : WeekToDo is a Free and Open Source Weekly Planner.
  2461. ◆ westeroscraftlauncher : Custom launcher for modded Minecraft, game.
  2462. ◆ wethr : Command line weather tool.
  2463. ◆ wewechat : Unofficial WeChat client built with React, MobX and Electron.
  2464. ◆ wexond : Extensible, fast and innovative web browser with material UI.
  2465. ◆ wezterm : A GPU-accelerated terminal emulator and multiplexer.
  2466. ◆ whalebird : An Electron based Mastodon client.
  2467. ◆ whatsapp-nativefier : Unofficial, Electron-based WhatsApp Linux Client.
  2468. ◆ whatstron : Unofficial WhatsApp desktop client for Linux.
  2469. ◆ whirlpool-gui : Desktop GUI for Whirlpool by Samourai-Wallet.
  2470. ◆ whiteboard : Activity-based slideshow for coding webinars and presentations.
  2471. ◆ whu-library-seat : Wuhan University Library Assistant, for Jinan University.
  2472. ◆ widelands : Real-time strategy game with singleplayer campaigns.
  2473. ◆ window-pet : Pet overlay app that lets you have adorable companion such as pets, anime characters on your screen.
  2474. ◆ windows2usb : Flash Drive burning utility, MBR/GPT, BIOS/UEFI, FAT32/NTFS.
  2475. ◆ windows95 : Unofficial. Windows 95 in Electron.
  2476. ◆ wine32-deploy : Tool for creating AppImages for 32-bit Microsoft Windows apps.
  2477. ◆ wine-devel : Unofficial. Compatibility layer to run x86_64 Windows programs, Dev Edition.
  2478. ◆ wine-stable : Unofficial. Compatibility layer to run x86_64 Windows programs, Stable.
  2479. ◆ wine-staging-ge-proton : Unofficial. Run x86_64 Windows programs, Staging GE Proton.
  2480. ◆ wine-staging : Unofficial. Compatibility layer to run x86_64 Windows programs, Staging.
  2481. ◆ wine : Unofficial. Run Windows programs, select a version from mmtrt/WINE_AppImage.
  2482. ◆ winrar : Unofficial, data compression, encryption and archiving tool.
  2483. ◆ wireframesketcher : A wireframing tool that helps designers, developers and product managers. A desktop app and a plug-in for any Eclipse IDE.
  2484. ◆ wireguard-gui : A wireguard client GUI for Debian/Linux made with nextauri.
  2485. ◆ wireshark : Unofficial, the world's most popular network protocol analyze.
  2486. ◆ wire : The most secure collaboration platform.
  2487. ◆ wishdemo : A μ Tcl/Tk distribution statically linked, AppImage.
  2488. ◆ wives : A beautiful, modern & feature-rich Terminal Emulator.
  2489. ◆ wiznote : Create a powerful knowledge graph from personal notes to team wiki.
  2490. ◆ wiznoteplus : The third party that supports the plug-in is Zhinote client.
  2491. ◆ wkp : A CLI tool designed to fetch Wikipedia excerpts written in Rust.
  2492. ◆ wnr : Work/Rest Timer. Stricter. Prettier. More features.
  2493. ◆ woke : A REST client with grand ambitions and limited scope.
  2494. ◆ wolai : A new form of document/note/information system, in chinese.
  2495. ◆ wonderpen : A professional writing app with markdown support.
  2496. ◆ wonderwall : Wallpaper manager for Linux.
  2497. ◆ woocommerce-pos : Electron Desktop App for WooCommerce POS
  2498. ◆ wootility : Utility for configuring Wooting keyboards.
  2499. ◆ wooting-analog-midi : Virtual MIDI device for, Wooting analog keyboards.
  2500. ◆ wootomation : The official Wooting Macros software.
  2501. ◆ wordtsar : Document mode clone for Wordstar, supports Wordstar, RTF and DOCX.
  2502. ◆ workflowy : A notetaking tool.
  2503. ◆ wournal : Simple "digitial paper" for note taking and PDF annotation. Heavily inspired by Xournal.
  2504. ◆ wowup : WowUp the World of Warcraft addon updater.
  2505. ◆ wps-office : Unofficial, Office suite built from the official .deb package.
  2506. ◆ wrapbox : An Electron wrapper for web pages.
  2507. ◆ writemonkey : A Windows zenware writing application with an extremely stripped down user interface, leaving you alone with your thoughts and your words.
  2508. ◆ wsjtz : AppImage of WSJT-Z – fork of WSJT-X with automation features.
  2509. ◆ wsocks : A light websocket based proxy.
  2510. ◆ wtfutil : The personal information dashboard for your terminal.
  2511. ◆ wthrr : Weather companion for the terminal.
  2512. ◆ wxmaxima : A document based interface for the computer algebra system Maxima.
  2513. ◆ wxmedit : A cross-platform Text/Hex Editor, an improved version of MadEdit.
  2514. ◆ xchat : Chat with other people using Internet Relay Chat.
  2515. ◆ xclicker : Fast gui autoclicker for x11 linux desktops.
  2516. ◆ xcloud-desktop : An unoffical desktop app for the XCloud web beta.
  2517. ◆ xde : The Expo Development Environment.
  2518. ◆ xdg-ninja : Script that checks your $HOME for unwanted files and directories.
  2519. ◆ xelfviewer : A multiplatform ELF file viewer/editor.
  2520. ◆ xemu : Original Xbox Emulator.
  2521. ◆ xgetter : Download video on Youtube, Facebook, X(Twitter), Instagram, Tiktok, Bilibili, Douyin and more.
  2522. ◆ xilinota : Note-taking app boasting instant syncing among devices and direct keeping of markdown files.
  2523. ◆ xl-converter : Powerful image converter with support for multithreading.
  2524. ◆ xlights : A sequencer for Lights and sequences manager.
  2525. ◆ x-loc : Extra localizations/translations manager for Stardew Valley.
  2526. ◆ xm8 : PC-8801 emulator.
  2527. ◆ xmedcon : An open-source toolkit for medical image conversion.
  2528. ◆ x-minecraft-launcher : An Open Source Minecraft Launcher with Modern UX.
  2529. ◆ xnviewmp : Graphic viewer, browser, converter.
  2530. ◆ xonsh : Python-powered, cross-platform, Unix-gazing shell.
  2531. ◆ xournal++ : A C++ handwriting notetaking software with PDF annotation support.
  2532. ◆ xournal++nightly : C++ notetaking software with PDF annotation support, DEV.
  2533. ◆ xpeviewer : PE file viewer/editor.
  2534. ◆ x-pixiv : CLI, pixiv downloader.
  2535. ◆ xplist : Cross-platform Plist Editor.
  2536. ◆ xplorer : Xplorer, a customizable, modern file manager.
  2537. ◆ xtuber : Simple YouTube Downloader.
  2538. ◆ xxh : Bring your favorite shell wherever you go through the ssh.
  2539. ◆ yaf : Yet another system CLI fetch that is minimal and customizable.
  2540. ◆ yaka : No fuss todo-list manager with full keyboard navigation.
  2541. ◆ yam : Unofficial Game Updater for the F95Zone platform.
  2542. ◆ yana : Note-taking app with nested documents, text search/editor, code...
  2543. ◆ yandex-browser-beta : Unofficial Yandex Browser AppImage, Beta.
  2544. ◆ yandex-browser-corporate : Unofficial Yandex Browser AppImage, Corporate.
  2545. ◆ yandex-browser : Unofficial Yandex Browser AppImage, Stable.
  2546. ◆ yangdownloader : Downloads best-quality audio and video from YouTube.
  2547. ◆ yank-note : A Hackable Markdown Note Application for Programmers.
  2548. ◆ yaya : Yet Another Yahtzee-esque Application.
  2549. ◆ yazi : Blazing fast terminal file manager written in Rust.
  2550. ◆ yesplaymusic : A third party music player for Netease Music.
  2551. ◆ ym-desktop : The YouTube music desktop app.
  2552. ◆ youtubeanddownloader : An app to use youtube and download videos as mp3s or mp4s.
  2553. ◆ youtube-downloader : Download video/audio from youtube (and instagram) videos.
  2554. ◆ youtube-download : GUI and CLI for downloading YouTube video/audio.
  2555. ◆ youtube-music : Unofficial. Amazing electron wrapper for YouTube Music featuring plugins.
  2556. ◆ youtubesearchfilter : YouTube searches with/without a pre-filter from CLI.
  2557. ◆ youtube-tui : An aesthetically pleasing YouTube TUI CLI written in Rust.
  2558. ◆ ytarchive : Garbage Youtube livestream downloader CLI.
  2559. ◆ yt-dlandcut : Download and cut Youtube videos by providing url and time range.
  2560. ◆ yt-dlg : A front-end GUI of the popular youtube-dl written in wxPython.
  2561. ◆ yt-dlp : A feature-rich command-line audio/video downloader.
  2562. ◆ ytdownloader : App for downloading Videos and Audios from hundreds of sites.
  2563. ◆ ytermusic : An in terminal youtube music client with focus on privacy, simplicity and performance.
  2564. ◆ ytmdesktop2 : Unofficial Youtube Music Desktop App, with LastFM support.
  2565. ◆ ytmdesktop : A Desktop App for YouTube Music.
  2566. ◆ yts-streaming : Stream or play yts and torrent movies.
  2567. ◆ yubikey-manager : Configure your YubiKey over all USB transports.
  2568. ◆ yup : Arch Linux AUR Helper with ncurses functionality and better searching and sorting.
  2569. ◆ yuview : YUV player with an advanced analytic toolset.
  2570. ◆ zap : Delightful command line AppImage package manager for appimage.github.io.
  2571. ◆ zapdesktop : Desktop application for the lightning network.
  2572. ◆ zapzap : WhatsApp desktop application written in Pyqt6 + PyQt6-WebEngine.
  2573. ◆ zed : High-performance, multiplayer code editor from the creators of Atom.
  2574. ◆ zegarek : A simple clock with millisecond resolution.
  2575. ◆ zegrapher : Math graphing software.
  2576. ◆ zellij : A terminal workspace with batteries included.
  2577. ◆ zen-browser : Experience tranquillity while browsing the web without tracking.
  2578. ◆ zenity : Unofficial, A CLI utility that creates dialog boxes, GTK3 version.
  2579. ◆ zenkit : A platform for collaboration and project management.
  2580. ◆ zenroomstudio : Extensible IDE which targets multiple dev platforms.
  2581. ◆ zettlr : A Markdown Editor for the 21st century.
  2582. ◆ zfind : Search files, even inside tar/zip/7z/rar using a SQL-WHERE filter.
  2583. ◆ zfxtop : [WIP] fetch top for gen Z with X written by bubbletea enjoyer.
  2584. ◆ zk : A plain text note-taking assistant
  2585. ◆ zmninja : Ionic app for Home/Commerical Security Surveillance.
  2586. ◆ znax : Znax is a cross platform puzzle / arcade game using SDL2 libraries.
  2587. ◆ znote : A Beautiful markdown editor inspired by Jupyter.
  2588. ◆ zograscope : Syntax-aware diff that provides a number of additional tools.
  2589. ◆ zoom : Unofficial. Video Conferencing and Web Conferencing Service.
  2590. ◆ zotero : Collect, organize, cite, and share your research sources.
  2591. ◆ zoxide : A smarter cd command. Supports all major shells.
  2592. ◆ zramen : Manage zram swap space.
  2593. ◆ zsync2 : A rewrite of the advanced file download/sync tool zsync.
  2594. ◆ zulip : Zulip Desktop Client for Linux.
  2595. ◆ zxinfo-file-browser : Organize and manage your emulator files for ZX Spectrum.
  2596. ◆ zx-poly : a multi-CPU ZX-Spectrum 128 concept platform.
  2597. ◆ zy-player : Video resource player, simple, ad-free and high-value.