123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980 |
- ◆ 0ad : FOSS historical Real Time Strategy (RTS) game of ancient warfare.
- ◆ 0ad-latest : Real Time Strategy game of ancient warfare (development branch).
- ◆ 3d-puzzles : 3D-Puzzles are Rubik, Dogic and Dogic12.
- ◆ 432hz-player : Because most music is recorded in 440hz (Audio Player).
- ◆ 86box : Emulator of x86-based machines based on PCem.
- ◆ aaaaxy : A nonlinear puzzle platformer (game).
- ◆ abiword : A light and free word processing software.
- ◆ accessimap-lecteur-der : Accessimap Lecteur DER.
- ◆ acreom : Acreom desktop app releases.
- ◆ actual-appimage : A super fast privacy-focused app for managing your finances.
- ◆ adb : Android Debug Bridge (installer for "platform-tools").
- ◆ admin-tools : Administrative tools.
- ◆ advanced-passgen : Advanced Password Generator.
- ◆ advanced-rest-client : Advanced REST Client and API console (by Mulesoft).
- ◆ agregore : A minimal browser for the distributed web (Desktop version).
- ◆ ai-bot-workspace : Electron app including testing workspaces.
- ◆ aillio-ts : The desktop application for Aillio Bullet R1.
- ◆ air-controller-desktop : Android phone assistant,powered by Flutter.
- ◆ airspaces : An online map for your X-Plane flight sessions.
- ◆ aisap : Golang library to make sandboxing AppImages easy.
- ◆ aisleriot : A card game featuring over 80 different solitaire-type card games.
- ◆ akasha : AKASHA community client.
- ◆ alduin : An Atom and RSS feed aggregator.
- ◆ alephium-wallet : The official Alephium wallet for desktop.
- ◆ allusion : A desktop application for managing your visual library.
- ◆ alpine-flatimage : A hybrid of Flatpak sandboxing with AppImage portability.
- ◆ altair : The best graphQL client you will ever need.
- ◆ altitude : The Altitude wallet by Linda Project Inc.
- ◆ altus : Client for WhatsApp Web with themes & multiple account support.
- ◆ alvr-appimage : Stream VR games from your PC to your headset via Wi-Fi.
- ◆ amazingmarvin-appimage : Incorporates principles from behavioral psychology.
- ◆ amdgpu_top : Tool to display AMDGPU usage.
- ◆ amusiz : Unofficial and unpretentious Amazon Music client.
- ◆ anavis : Tool to visualize musical form.
- ◆ anchor : An EOSIO Light Wallet with simple and advanced tools.
- ◆ android-knot : An Android gadget integrating Todo, Notes, Reader and more.
- ◆ android-messages-desktop : Messages for web, as a desktop app.
- ◆ android-tools : AppImage for the Android Platform tools (adb, fastboot, etc)
- ◆ animashooter-junior : User-friendly Stop-Motion Animation Software (FREE).
- ◆ animashooter-pioneer : User-friendly Stop-Motion Animation Software (PRO).
- ◆ animos : Anime-streaming desktop application without any ads.
- ◆ aniship : Allows for easy viewing of anime on PCs and laptops.
- ◆ anklang-appimage : MIDI and Audio Synthesizer and Composer.
- ◆ another-redis-desktop-manager : Faster and better redis desktop manager.
- ◆ antares : An useful SQL client based on Electron.js and Vue.js.
- ◆ ant-downloader : BitTorrent Client developed by golang, angular, electron.
- ◆ antimicrox : Use a gamepad to control a variety of programs.
- ◆ anydesk : Remote desktop application distributed (unofficial AppImage).
- ◆ anytype : The everything app for those who celebrate trust & autonomy.
- ◆ anzeigenchef : AdsChef manages your classified ads.
- ◆ aphelion-wallet : Aphelion desktop wallet application built with Electron.
- ◆ aphototoollibre : Photo editing app for GNU/Linux.
- ◆ apifox : API manager (in chinese). 文档、API 调试、API Mock、API 自动化测试
- ◆ apk-editor-studio : Easy to use APK (Android) reverse-engineering tool.
- ◆ apla : Project was bootstrapped with Create React App.
- ◆ apphub : App that simplifies installation/management of .appImage packages.
- ◆ appimage-builder : GNU/Linux packaging solution using the AppImage format.
- ◆ appimagecraft : Powerful build script generator with a focus on AppImages.
- ◆ appimagedl : Easily download AppImages from AppImageHub (unofficial fork).
- ◆ appimagehelper : Create and organize shortcuts for AppImages.
- ◆ appimagekit : Install appimagetool, appimageupdatetool and pkg2appimage.
- ◆ appimagelauncher : CLI helper for running and integrating AppImages.
- ◆ appimagelint : Check AppImages for compatibility, best practices etc.
- ◆ appimagen : A script that generates a custom AppImage from a PPA.
- ◆ appimagepool : A simple, modern AppImageHub Client, powered by flutter.
- ◆ appimagetool : Tool to generate an AppImage from an existing AppDir.
- ◆ appimageupdatetool : Tool to update an AppImage using embedded information.
- ◆ appimageupdate : Tool to update an AppImage using embedded information.
- ◆ appium-desktop : Graphical interface for the Appium server.
- ◆ app-outlet : A Universal linux app store for Flatpak/Snap/AppImage.
- ◆ aptakube-appimage : A modern and lightweight Kubernetes desktop client.
- ◆ apx-gcs : APX Ground Control.
- ◆ aranym : Virtual Machine for Atari 32-bit applications.
- ◆ arcade-manager : Manage your rom collection (Games/Retropie & Recalbox).
- ◆ arch-deployer : Script to convert Arch Linux packages to AppDir/AppImage.
- ◆ arch-flatimage : A hybrid of Flatpak sandboxing with AppImage portability.
- ◆ archimage-cli : Build AppImage packages using JuNest (Arch Linux).
- ◆ archipelago : Archipelago Multi-Game Randomizer and Server.
- ◆ archipel : Decentralized archiving and media library system.
- ◆ arduino-ide : Open-source electronics platform.
- ◆ arena-tracker : Deck Tracker for Hearthstone game with arena in focus.
- ◆ ark : Archiving tool for .zip/.tar/.rar and more (installs "kdeutils").
- ◆ arkaway : Another Arkanoid clone and make with Pyxel.
- ◆ ark.desktop.wallet : Ark Ecosystem Desktop Wallet.
- ◆ arma3-unix-launcher : ArmA 3 Unix Launcher (game).
- ◆ armagetronad : Multiplayer game in 3d that emulates the movie "Tron".
- ◆ armcord : Custom client designed to enhance your Discord experience.
- ◆ around : Video calls designed for energy, ideas and action.
- ◆ artifact : Win 40 levels of mayhem without getting destroyed (game).
- ◆ artisan : Visualizes the coffee roasting process.
- ◆ artix : One app. All your favorite Artix games.
- ◆ asarui : UI for Asar.
- ◆ asgardex-appimage : Thorchain wallet desktop app.
- ◆ astroffers : Take offers to watch at given nights by the NGC2000 catalog.
- ◆ astrofox : Audio reactive motion graphics program.
- ◆ astroshutter : Ui to control your camera for astrophotography.
- ◆ asunder : Audio CD ripper and encoder (WAV, MP3, OGG, FLAC, Opus, AAC...).
- ◆ atomicwallet : Atomic vue-electron.
- ◆ audacious : An open source audio and music player, descendant of XMMS.
- ◆ audacity : Multiplatform Audio Editor.
- ◆ audiomoth : Configuration app for the AudioMoth acoustic monitoring device.
- ◆ audmonkey : A multiplatform audio editor (Audacity fork).
- ◆ augur : Augur Desktop Application.
- ◆ auryo : An audio/music desktop client for SoundCloud.
- ◆ authme : Simple cross-platform two-factor authenticator app for desktop.
- ◆ autoedit2 : autoEdit2 Desktop Client for Linux.
- ◆ avantgarde : Avalonia XAML Preview.
- ◆ avidemux : Multiplatform Video Editor.
- ◆ avidemux-nightly : Multiplatform Video Editor (nightly build).
- ◆ avocado : PlayStation 1 emulator (games).
- ◆ avogadro2 : Molecular editor for computational chemistry, bioinformatics.
- ◆ awakened-poe-trade : Path of Exile trading app for price checking.
- ◆ axe-electrum : Axe Electrum Wallet.
- ◆ axolotl : A Signal compatible cross plattform client written in Go and Vuejs.
- ◆ baijimangaviewer : Manga viewer that uses Material Design.
- ◆ bambustudio : PC Software for BambuLab's 3D printers.
- ◆ baobab-gtk3 : Disk Usage Analyser (version 3.38, for all GNOME4+ haters).
- ◆ bastyon : Decentralized social network based on the blockchain.
- ◆ batch-explorer : A client tool to create/debug/monitor Azure Batch Apps.
- ◆ bauh : GUI for managing AppImage, Arch/AUR, DEBs, Flatpak, Snap and webapps.
- ◆ bazecor : Graphical configurator for Dygma Raise.
- ◆ bbg-appimage : A static blog generator based on Electron Technology.
- ◆ bdash : A simple business intelligence application.
- ◆ beaker-ng : An experimental peer-to-peer Web browser.
- ◆ beam-wallet : Beam Desktop Wallet.
- ◆ beatconnect-client : Beatconnect power for osu irc.
- ◆ beekeeper-studio : SQL query editor and database UI.
- ◆ beeper : All your chats in one app.
- ◆ bench-cli : CLI tool to benchmark commands, written in `Fortran`.
- ◆ bettercrewlink : Free, open, Among Us proximity voice chat.
- ◆ better-osu-skills : Gets results from the osu! Using your own IRC credentials.
- ◆ bettersis : Modern shell for SIS.
- ◆ beurerscalemanager : AppImage packaging project for BeurerScaleManager.
- ◆ beyond-all-reason : 3D Real-Time Strategy Total Annihilation Inspired (game).
- ◆ bezique : Plays bezique game against the AI.
- ◆ bforartists : 3D modeling, animation, rendering and post-production.
- ◆ bilibili : Bilibili official desktop client.
- ◆ bilibilivideodownload : Bilibili video downloader.
- ◆ biliup-app-appimage : Bilibili uploader.
- ◆ billard-gl : 3D billiards game, play a game of 8-ball or 9-ball.
- ◆ billyfrontier : Pangea Software’s Billy Frontier for modern systems.
- ◆ bingada : Bingo application in GTKAda.
- ◆ bioanimation : CCNY Electrochemical Gradient Simulator.
- ◆ birds-kitchen : Recipe manager.
- ◆ bitbox-wallet : Cryptocurrency hardware wallet desktop app.
- ◆ bitfighter : A 2-D multi-player space combat game.
- ◆ bitshares : Advanced wallet interface for the BitShares financial blockchain.
- ◆ bitwarden : Password manager for individuals, teams and business.
- ◆ biying : Biying Wallpaper for Linux.
- ◆ black-chocobo : FF7 Save Game Editor.
- ◆ blacknut-appimage : Cloud gaming client.
- ◆ blastem : Clone of Mercurial Repo.
- ◆ blender-alpha : Very fast and versatile 3D modeller/renderer (Alpha).
- ◆ blender-beta : Very fast and versatile 3D modeller/renderer (Beta).
- ◆ blender-rc : Very fast and versatile 3D modeller/renderer (Release Candidate).
- ◆ blender : Very fast and versatile 3D modeller/renderer (Stable).
- ◆ blensor : 3D modeling, animation, rendering and post-production.
- ◆ blink : GUI of live indexed grep search for source code.
- ◆ blizzard-4 : Emulator & toolchain for the Blizzard 4 16-bit computer.
- ◆ blockbench : Editor for boxy models and pixel art textures like Minecraft.
- ◆ block-dx : Exchange dApp built on top of the Blocknet Protocol.
- ◆ blockstream-green : Bitcoin wallet compatible with Blockstream Jade.
- ◆ bloks : An electron-vue project.
- ◆ bloomrpc : GRPC GUI client.
- ◆ blowfish : Display your total Ocean Token balances.
- ◆ blubvolley : A fun volleyball game.
- ◆ blueglow : A simple system tray application to watch github notifications.
- ◆ boardgamestar : A platform for playing digital boardgames.
- ◆ bodacious : A bodacious music player.
- ◆ bodhi : Bodhi Prediction Market app.
- ◆ bomber : Arcade spaceship game (installs "kdegames").
- ◆ bonsai-maui : Manage Git repositories from a GUI.
- ◆ book-manager : Simple desktop app to manage personal library.
- ◆ bookmarks-manager : Edit bookmarks, check url.
- ◆ boostchanger : Control CPU turbo boost and the settings of the cpu speed.
- ◆ boost-note : Document driven project management tool to speedup remote DevOps.
- ◆ botclient-appimage : A discord botclient built with Electron and React.
- ◆ botframework-emulator : Test and debug chat bots built with Bot Framework SDK.
- ◆ botim-appimage : Free, Secure, Reliable Messages and Calls.
- ◆ bottlebats : Client for the 2018 edition of the BottleBats AI competition.
- ◆ bottlenose : Bottlenose is a front-end for video game emulators.
- ◆ bottles : Manage wine prefixes and run Windows software & games in a new way.
- ◆ bovo : Five in a row game from (installs "kdegames").
- ◆ brackets : Brackets-Electron.
- ◆ brainverse : Electronic Lab Notebook for Reproducible Neuro Imaging Research.
- ◆ brainwaves : EEG Desktop Application.
- ◆ brave-appimage : Unofficial AppImage (Web Browser, Stable).
- ◆ brave : A privacy oriented Web Browser based on Chromium (Stable).
- ◆ brave-beta-appimage : Unofficial AppImage (Web Browser, Beta Edition).
- ◆ brave-beta : A privacy oriented Web Browser (Beta Edition).
- ◆ brave-nightly-appimage : Unofficial AppImage (Web Browser, Nightly Edition).
- ◆ brave-nightly : A privacy oriented Web Browser (Nightly Edition).
- ◆ bread : Install, update and remove AppImage from GitHub using your CLI.
- ◆ breaktimer-appimage : Save yourself from RSI and eye-strain.
- ◆ brickstore : An offline BrickLink inventory management tool.
- ◆ bridge : The perfect Bridge between Megascans and your favorite tools.
- ◆ brs-emu-app : BrightScript Emulator, runs on browsers and Electron apps.
- ◆ bruno-appimage : An Opensource API Collection Collaboration Suite.
- ◆ bscanfftwebcam : FDOCT tool.
- ◆ btop : A command line utility to monitor system resources, like Htop.
- ◆ bts-ce-lite : Telecommunication network management application.
- ◆ buche : A logger of sorts.
- ◆ buckets : Budgeting fast, simple and private.
- ◆ bugdom2 : Pangea Software’s Bugdom 2 for modern systems.
- ◆ bugdom : Pangea Software's Bugdom game.
- ◆ buho-maui : Easy-to-use note-taking application with “tags” support.
- ◆ bulkreviewer : Identify, review, and remove private information.
- ◆ bulkurlopener : Desktop version of the Bulk URL Opener extension.
- ◆ bunqdesktop : A desktop implementation for the bunq API.
- ◆ burning-series : Watch any series from Burning Series (Unofficial client).
- ◆ buttercup : Free and Open Source password vault.
- ◆ bypass-cors : Unlock browser’s full potential!
- ◆ bytespeichertrayicon : Bytespeicher Status App.
- ◆ cabal-desktop : Cabal p2p offline-first desktop application.
- ◆ cacher : Cacher is a code snippet library for professional developers.
- ◆ cadmus-appimage : Pulse Audio real-time noise suppression plugin.
- ◆ calculist : Desktop version of Calculist.io.
- ◆ calibre : The one stop solution to all your e-book needs
- ◆ calm-circles : Calm down and draw something, in Lisp.
- ◆ calm-fan : Calm down and draw something, in Lisp.
- ◆ calm-meditator : Calm down and draw something, in Lisp.
- ◆ calm-mondrian : Calm down and draw something, in Lisp.
- ◆ candycrisis : Candy Crisis source port for modern operating systems.
- ◆ capbattleship : Battleship game with a pirate theme.
- ◆ caprine : Unofficial, elegant privacy focused Facebook Messenger app.
- ◆ cargo-appimage : Converts your crate into an AppImage.
- ◆ carnet : A complete and rich note taking app with sync capabilities.
- ◆ carpenters : Digital preservation ingest utility.
- ◆ carta : Cube Analysis and Rendering Tool for Astronomy.
- ◆ casm : Corinthian Abstract State Machine (CASM).
- ◆ casterr : Screen recorder, easing recording and clipping in-game.
- ◆ castersoundboard : Soundboard for hot-keying and playing back sounds.
- ◆ catalyst : Catalyst web browser.
- ◆ catcher : Peer-testing of software projects.
- ◆ cate-desktop : GUI for the ESA CCI Toolbox (Cate).
- ◆ cavoke : Cavoke: Platform to create/host multiplayer turn-based board games.
- ◆ cbetar2 : ePub viewer supporting fetching and displaying HTML as ePub.
- ◆ celeste64 : A game made by the Celeste developers.
- ◆ celestia-dev : Real time 3D space simulator (developer edition).
- ◆ celestia-enanched : Real-time 3D space simulator with extra detailed maps.
- ◆ celestia : Real time 3D space simulator.
- ◆ celoterminal-bin : Celo Terminal (AppImage version).
- ◆ cemu : A Nintendo Wii U emulator that is able to run most Wii U games.
- ◆ cerebral-debugger : Cerebral Debugger.
- ◆ cerebro : Open-source productivity booster with a brain.
- ◆ chain-desktop-wallet : Crypto.com DeFi Desktop Wallet.
- ◆ chainx-signer : Manage ChainX account, sign and sign transactions.
- ◆ chatall : Concurrently chat with ChatGPT, Bing Chat, bard, Alpaca and more.
- ◆ chatbox : Chatbox is a desktop app for GPT-4 / GPT-3.5 (OpenAI API).
- ◆ chat-gpt-appimage : ChatGPT Desktop Application (Mac, Windows and Linux).
- ◆ chatgpt-next-web : A cross-platform ChatGPT/Gemini UI.
- ◆ chatpad-ai : Not just another ChatGPT user-interface.
- ◆ chatterino2-appimage : Second installment of the Twitch chat client.
- ◆ chatterino2-nightly-appimage : Second installment of the Twitch chat client.
- ◆ chemcanvas : A very intuitive 2D chemical drawing tool.
- ◆ cherrytree : A hierarchical note taking application.
- ◆ chiaki : PlayStation 4 Remote Play Client.
- ◆ chimeradesk-kvm : Simple, fast and flexible DIY Remote Desktop software.
- ◆ chimeradesk : Simple, fast and flexible DIY Remote Desktop software.
- ◆ chord : A Modern Music Player.
- ◆ chrolog : A automated time tracking tool.
- ◆ chromium-bsu : Fast paced arcade style scrolling space shooter (game).
- ◆ chromium-latest : Web Browser (official unstable build).
- ◆ chromium : Web Browser. Open source base of Google Chrome, Edge and Brave.
- ◆ chrysalis-bin : Graphical configurator for Kaleidoscope-powered keyboards.
- ◆ ciaa-suite : Makefile based IDE for embedded systems.
- ◆ cider : A new cross-platform Apple Music experience with performance in mind.
- ◆ cinelerra-gg : Professional video editing and compositing environment.
- ◆ cinny : Yet another matrix client for desktop.
- ◆ circle-z : A chat client for online math courses.
- ◆ circuitblocks : Helps newbies get into embedded programming.
- ◆ citra : Nintendo 3DS emulator.
- ◆ city-hub : Hub into everything on City Chain/Smart City Platform.
- ◆ clash-verge : A multiplatform Clash GUI based on tauri.
- ◆ cleepdesktop : Desktop application to manage your Cleep devices.
- ◆ clementineremote : Remote for Clementine Music Player.
- ◆ cliniface : 3D Facial Image Visualisation and Analysis.
- ◆ clipgrab : Download and Convert Online Videos.
- ◆ clip-maui : Official movie player of Maui using MPV as backend.
- ◆ clippy : Clipboard History.
- ◆ clipr : The clipboard that syncs.
- ◆ cloud-browser : Access to files located in various cloud services.
- ◆ cncjs : CNC Milling Controller.
- ◆ cncra2yr : C&C Red Alert 2, a real-time strategy game by Westwood Pacific.
- ◆ coal-launcher : A client to view and play games from the AB Coal website.
- ◆ cocomusic : A simple music player built by electron and vue.
- ◆ code-notes-appimage : A simple code snippet amp built with Electron.
- ◆ code-oss : Visual Studio Code OSS Edition.
- ◆ code : Visual Studio (VSCode), Original Editor to build/debug web/cloud apps.
- ◆ coinstac : Collaborative Informatics and Neuroimaging Suite Toolkit.
- ◆ colobot : Colonize with bots (game).
- ◆ colon : A flexible text editor.
- ◆ colorgenerator : Generates color palettes similar to ColorBrewer.
- ◆ colorpicker : Electron app that can show colors with hex/rgb.
- ◆ colorstatic-bash : CLI to generate a random colorful "Static"/"Matrix".
- ◆ comic-book-reader : Reader and converter for cbz, cbr, epub and pdf files.
- ◆ comic-reader : Electron based comic reader.
- ◆ comictagger : A multi-platform app for writing metadata to digital comics.
- ◆ communicator-maui : Create and organize contacts (phone, email, name, etc.).
- ◆ compass : Air Traffic Surveillance DataBase.
- ◆ concordium-desktop-wallet : The official Concordium Dektop Wallet.
- ◆ conduction : Tasks? Done. That was quick.
- ◆ conky : Light-weight system monitor for X.
- ◆ consoleworkbench : Console workbench.
- ◆ contour : Modern C++ Terminal Emulator.
- ◆ conty : Easy to use unprivileged and portable Arch Linux container.
- ◆ conty-lite : Easy to use unprivileged and portable Arch Linux container.
- ◆ conty-wine : Easy to use unprivileged and portable Arch Linux container.
- ◆ converseen : A batch image converter and resizer.
- ◆ converter432hz-appimage : Converts and re-encodes music to 432hz.
- ◆ coolercontrol : A program to monitor and control your cooling devices.
- ◆ cool-retro-term : Use the command line the old way.
- ◆ copytranslator-appimage : Foreign language reading and translation assistant.
- ◆ cordlauncher : Cord launcher based on Electron and Wep Application.
- ◆ coreaction : A side bar for showing widgets for CuboCore Application Suite.
- ◆ corearchiver : Archive manager for CuboCore Application Suite.
- ◆ corefm : A lightweight file-manager for C Suite.
- ◆ coregarage : A setting manager for CuboCore Application Suite.
- ◆ corehunt : A file search utility for CuboCore Application Suite.
- ◆ coreimage : An image viewer for CuboCore Application Suite.
- ◆ coreinfo : A file information viewer for CuboCore Application Suite.
- ◆ corekeyboard : A x11 based virtual keyboard for C Suite.
- ◆ corepad : A document editor for CuboCore Application Suite.
- ◆ corepaint : A paint app for CuboCore Application Suite.
- ◆ corepins : A bookmarking app for CuboCore Application Suite.
- ◆ corerenamer : A batch file renamer for CuboCore Application Suite.
- ◆ coreshot : A screen capture utility for CuboCore Application Suite.
- ◆ corestats : A system resource viewer from the CoreApps family.
- ◆ corestuff : An activity viewer for CuboCore Application Suite.
- ◆ coreterminal : A terminal emulator for C Suite.
- ◆ coretime : A time related task manager for CuboCore Application Suite.
- ◆ coreuniverse : Shows releated information of apps from CuboCore App Suite.
- ◆ cosmonium : 3D astronomy and space exploration program.
- ◆ cozydrive : File Synchronisation for Cozy (cloud).
- ◆ cpeditor : Code editor specially designed for competitive programming.
- ◆ cpod : A simple, beautiful podcast app.
- ◆ cpu-x : Software that gathers information on CPU, motherboard and more.
- ◆ craftos-pc : Advanced ComputerCraft emulator written in C++.
- ◆ crankshaft : A sensible krunker client written in typescript.
- ◆ creality-print : Creality Print is a slicer dedicated to FDM printers.
- ◆ crg-data-tool : A tool for working with Games Data files from CRG.
- ◆ cric : Custom Runtime Image Creator.
- ◆ criteria1d : A one-dimensional agro-hydrological model.
- ◆ criteria1d-pro : A one-dimensional agro-hydrological model (PRO).
- ◆ criteria-geo : A one-dimensional agro-hydrological model (GIS interface).
- ◆ cro-chain-desktop-bin : Crypto.com DeFi Desktop Wallet (AppImage version).
- ◆ cromagrally : The wildest racing game since man invented the wheel!
- ◆ cromberg : Personal accounting system.
- ◆ crosscode-map-editor : Map Editor for CrossCode.
- ◆ crossmobile : Create native iOS/Android/Windows apps in Java.
- ◆ crow-translate : Translate and speak text using Google, Yandex, Bing and more.
- ◆ cryplicity : Electron application boilerplate.
- ◆ crypter : An innovative, convenient and secure crypto app.
- ◆ cryptocam-companion : GUI to decrypt videos taken by Cryptocam.
- ◆ cryptomator : Cloud Storage Encryption Utility.
- ◆ cryptr : A GUI for Vault.
- ◆ csbooks : Epub reader, pdf reader, mobi book reader and djvu reader.
- ◆ cscrypto : A crypto app.
- ◆ ctool : Common Tools for Program Development.
- ◆ cubicsdr : Software-Defined Radio Application.
- ◆ cura : An open source slicing application for 3D printers.
- ◆ cura-beta : An open source slicing application for 3D printers (beta).
- ◆ cursor : Write, edit, and chat about your code with GPT-4.
- ◆ customrpc : An electron-vue project.
- ◆ cutechess : Cute Chess is a GUI, a CLI and a library for playing chess.
- ◆ cutepeaks : A simple sanger trace file viewer.
- ◆ cutevariant : A genetics variant filtering tools
- ◆ cutter : Free and Open Source Reverse Engineering Platform.
- ◆ czkawka : App to find duplicates, empty folders, similar images etc.
- ◆ dana : A desktop client for the Dana learning box.
- ◆ dashy-app : Dashboard creation application.
- ◆ database-dossier : A User Interface for your databases.
- ◆ dataset-annotator : An annotation tool for a dataset.
- ◆ datcord : Discord client.
- ◆ dawnlightsearch : A Linux version of Everything Search Engine.
- ◆ dbet-wallet : DBET Wallet.
- ◆ dbgate : Opensource database administration tool
- ◆ deadbeef : A modular cross-platform audio player.
- ◆ deadbeef-appimage : Unofficial, A modular cross-platform audio player.
- ◆ deadbeef-devel : A modular cross-platform audio player (dev-edition).
- ◆ deadbeef-devel-appimage : Unofficial, music player (dev-version).
- ◆ deadgame-2048 : GUI tool available for ALL platforms.
- ◆ deb2appimage : Build AppImages from deb packages on any distro.
- ◆ debian-testing-avidemux : Unofficial Avidemux built from deb-multimedia.
- ◆ deckboard : Control your PC with your phone in easy way possible.
- ◆ dedop-studio : DeDop Studio
- ◆ deemix-gui-appimage : A gui electron app for the deemix lib.
- ◆ deeptags : Markdown notes manager with support for nested tags.
- ◆ deerportal : Full of the diamonds board game.
- ◆ deezer : A linux port of Deezer, allows downloading your songs (music).
- ◆ defichain-app : DefiChain Wallet AppImage.
- ◆ delir : Web Technology driven VFX Application.
- ◆ deltachat-desktop : Desktop Application for delta.chat.
- ◆ demonizer : Demonic corruption fantasy shmup.
- ◆ deployer : Deploy your applications through Jenkins.
- ◆ deskreen : Turns any device with a web browser into a secondary screen.
- ◆ destiny : Cross-platform Magic Wormhole graphical client.
- ◆ devdocs-desktop : Desktop client for devdocs.io.
- ◆ devhub : TweetDeck for GitHub
- ◆ devsidecar : Dev sidecar/github/git/stackoverflow acceleration (in chinese).
- ◆ dexter-dev-env : Dexter Development Environment.
- ◆ dezor : The web browser including VPN and Adblocker.
- ◆ dfdemo : A thin Tcl/Tk GUI around the df POSIX command.
- ◆ dfilemanager : File manager written in Qt and C++.
- ◆ dicomautomaton : Tools for working with medical physics data.
- ◆ die-engine : Detect It Easy, a program for determining types of files.
- ◆ diffuse : Music player, connects to your cloud/distributed storage.
- ◆ digikam : Professional and advanced digital photo management application.
- ◆ dingtalk : DingTalk desktop version based on electron.
- ◆ disass : A simple disassembly tool.
- ◆ discord : All-in-one voice and text chat for gamers.
- ◆ discord-qt-appimage : Discord client powered by Node.JS and Qt Widgets.
- ◆ dockstation : Developing with Docker has never been so easy and convenient.
- ◆ dokidokimodmanager : Mod Manager for Doki Doki Literature Club!
- ◆ dolphin-emu : GameCube/Nintento Wii emulator for PC with improvements.
- ◆ dopamine-preview : The audio player that keeps it simple.
- ◆ dosemu : Run DOS programs under linux.
- ◆ doublecmd-gtk : Two-panel file manager, also known as Double Commander.
- ◆ doublecmd-qt : Two-panel file manager, also known as Double Commander.
- ◆ downline : A cross-platform video and audio downloader.
- ◆ dragdrop : Small drag-and-drop file source for the command line.
- ◆ dragoman : GUI for polyglot.
- ◆ draw.io : draw.io desktop.
- ◆ drawpile : Drawing program to sketch on the same canvas simultaneously.
- ◆ drill : Search files without indexing, but clever crawling.
- ◆ droidcam : A DroidCam AppImage for the Steam Deck/SteamOS 3.0.
- ◆ dropbox : A free cloud service (Unofficial AppImage).
- ◆ droppoint : Drag content without having to open side-by-side windows.
- ◆ duckstation : PlayStation 1, aka PSX games Emulator.
- ◆ duf : Disk Usage/Free Utility, a better 'df' alternative.
- ◆ dukto : Easy and multi-platform file transfer tool.
- ◆ duskplayer : A minimal music player built on electron.
- ◆ dust3d : 3D modeling software for games, 3D printing, and so on.
- ◆ dvdisaster : Additional error protection for CD/DVD media.
- ◆ dwarf-fortress : The AppImage of lnp-forge built LinuxDwarfPack.
- ◆ dwyco-phoo : Dwyco Phoo Chat and Video Calling.
- ◆ e2-sat-editor : Satellite channel lists editor with tabbed nav.
- ◆ eaglemode : Zoomable user interface with plugin applications.
- ◆ easymercurial : A simple UI for the Mercurial version-control system.
- ◆ ecency-surfer : Rewarding communities built, owned and operated by its users.
- ◆ ecode : Lightweight code editor designed for modern hardware.
- ◆ edex-ui : A cross-platform, customizable science fiction terminal emulator.
- ◆ ehdev-shell : An electron based developing tool for feds.
- ◆ eka2l1 : A Symbian OS/N-Gage emulator
- ◆ eksplode.re : Bomberman game made with Godot under BSD3.
- ◆ elcalc : Cross-Platform calculator built with Electron.
- ◆ eldumper : A GB Cartridge Dumper.
- ◆ electorrent : A remote control Torrent client.
- ◆ electrocrud : No coding is required.
- ◆ electron-app-store : Simple App Store for Apps Built with Electron.
- ◆ electron-cash : Lightweight Bitcoin Cash Client.
- ◆ electron-mail : Unofficial ProtonMail Desktop App.
- ◆ electronreact-appimage : Desktop application using Electron and React.
- ◆ electron-react-boilerplate : A Foundation for Scalable Cross-Platform Apps.
- ◆ electron-ssr : Install electron-ssr from appimage.
- ◆ electron-utils : Electron Utils for every day usage as a dev.
- ◆ electron-wechat : Wechat desktop application.
- ◆ electronwmd-appimage : Upload music to NetMD MiniDisc devices.
- ◆ electron-xiami : Xiami Electron desktop application.
- ◆ electrumfair : Lightweight FairCoin Client.
- ◆ electrum : Lightweight Bitcoin Client.
- ◆ electrum-nmc : Lightweight Namecoin Client.
- ◆ electrum-ravencoin-appimage : Forked from the Electrum Bitcoin base client.
- ◆ element : A feature-rich client for Matrix.org.
- ◆ elementary-code : AppImage version of Elementary OS "Code" by Maksym Titenko.
- ◆ elements : App which displays the periodic table (Education, Science).
- ◆ elk : Native version of Elk, a nimble Mastodon web.
- ◆ ellas-war : Explore Ancient Greece on Ellas-War.
- ◆ elphyre-walletshell : Elphyrecoin GUI Wallet.
- ◆ elzabrowser : Elza incognito web browser.
- ◆ emacs : FOSS text editor for complete programming language (new AppImage).
- ◆ emacs-nox-daily : FOSS text editor for complete programming language.
- ◆ emacs-nox : FOSS text editor for complete programming language.
- ◆ emacs-pgtk-daily : FOSS text editor for complete programming language.
- ◆ emacs-pgtk : FOSS text editor for complete programming language.
- ◆ emacs-x11-daily : FOSS text editor for complete programming language.
- ◆ emacs-x11 : FOSS text editor for complete programming language.
- ◆ embedded-ide : Makefile based IDE for embedded systems.
- ◆ ember : Client for the WorldForge virtual world system (game).
- ◆ emoji-keyboard-appimage : Virtual keyboard-like emoji palette for Linux.
- ◆ emudeck : EmuDeck Desktop Electron Wrapper.
- ◆ emulationstation : A flexible emulator front-end supporting custom themes.
- ◆ en-croissant : The Ultimate Chess Toolkit.
- ◆ encryptpad : Secure text editor and binary encryptor with passwords.
- ◆ endless-sky : Space exploration and combat game.
- ◆ enoseannotator : View, annotate and store measurements of the eNose sensor.
- ◆ ente : Desktop app for ente.io.
- ◆ enve : Create 2D Animations.
- ◆ envkey : EnvKey’s cross-platform native app.
- ◆ eosvc : Application for management of self-employeed people.
- ◆ eplee : Sweet, simple epub reader.
- ◆ eqonomize : Manage your personal finances.
- ◆ erdesigner : ER Diagram tool available for ALL platforms.
- ◆ erscaffold : A code generator for websites.
- ◆ es-de : EmulationStation Desktop Edition.
- ◆ esearch : Screenshot OCR search translate search for picture paste...
- ◆ espanso : Cross-platform Text Expander written in Rust.
- ◆ espi-appimage : Software recreation of the SP-1200 drum machine.
- ◆ etcher : Flash OS images to SD cards and USB drives, safely and easily.
- ◆ eternal-lands : 3D fantasy multiplayer online role playing game.
- ◆ eternalmodmanager : A cross platform mod manager for DOOM Eternal.
- ◆ etherealengine-cc : App for managing Ethereal Engine cluster.
- ◆ eudic : Chinese app to learn english (listen statistics/note synch...).
- ◆ everinst : An installer for the Everest mod loader.
- ◆ evince : Document viewer for popular document formats.
- ◆ evoplex : Agent-based modeling.
- ◆ excel-parser-processor : Generates an array of items from the rows.
- ◆ exe-appimage : A Elearning XHTML/HTML5 editor.
- ◆ exeqt : Cross platform tray manager.
- ◆ exifcleaner : Clean exif metadata from images, videos, and PDFs.
- ◆ eximchain-wallet : Eximchain Wallet web and electron app.
- ◆ explorook : Rookout’s site addon to support local files and folders.
- ◆ exportoo : Read and search your exports.
- ◆ exsplode.re : A Bomberman game made with Godot under BSD3.
- ◆ extraterm : The swiss army chainsaw of terminal emulators.
- ◆ extrema : Data visualisation and analysis.
- ◆ extremetuxracer : 3D racing game with Tux, the Linux penguin.
- ◆ eyestalker : Video-based eye tracking using recursive estimation of pupil.
- ◆ f1mv-lights-integration : Connect your smart home lights to MultiViewer.
- ◆ fairshare : Simplifying the curation and sharing of biomedical research.
- ◆ fantasia-archive : A database manager for world building.
- ◆ farmhand : A resource management game that puts a farm in your hand.
- ◆ fastboot : Tool to flash Android devices (installer for "platform-tools").
- ◆ fastfetch : Like neofetch, but much faster because written mostly in C.
- ◆ fastqt : Control tool for high throughput genomics sequence data.
- ◆ fasttrack : Fast tracking of multiple objects.
- ◆ fat-wallet : Wallet for FAT tokens.
- ◆ fchat-appimage : The F-Chat 3.0 client.
- ◆ fchat-rising-appimage : A customized version of mainline F-Chat 3.0 client.
- ◆ f-crm : Customer Relations Management for Freelancers.
- ◆ fdc3-sail : Open implementation of the FDC3 standard using Electron.
- ◆ feather-wallet : Monero wallet for Linux, Tails, Windows and macOS.
- ◆ feebas : Screenshot comparison tool for identifying visual regressions.
- ◆ feedseries : Follow your series enthusiast news (french).
- ◆ feidao : Feidao Online Course Design Platform (chinese).
- ◆ feishin : Sonixd Rewrite, a desktop music player.
- ◆ ferdium : All your services in one place, built by the community.
- ◆ fflogs-uploader-appimage : FFLogs Uploader appimage.
- ◆ ff-password-exporter : Export your saved passwords from Firefox.
- ◆ ffwa-facebook : WebApp & Firefox Profile for Facebook.
- ◆ ffwa-github : WebApp & Firefox Profile for GitHub.
- ◆ ffwa-gmail : WebApp & Firefox Profile for Gmail.
- ◆ ffwa-netflix : WebApp & Firefox Profile for Netflix.
- ◆ ffwa-reddit : WebApp & Firefox Profile for Reddit.
- ◆ ffwa-twitter : WebApp & Firefox Profile for Twitter.
- ◆ ffwa-whatsapp : WebApp & Firefox Profile for WhatsApp.
- ◆ ffwa-wikipedia : WebApp & Firefox Profile for Wikipedia.
- ◆ ffwa-youtube : WebApp & Firefox Profile for YouTube.
- ◆ ficus : A software for editing and managing markdown documents.
- ◆ fidias-database-migration-app : Migrate SQL-based databases.
- ◆ fiery-maui : Web browser with integrated ad-blocker and split views.
- ◆ fifo : A modern web browser, built on top of modern web technologies.
- ◆ figma-linux : First interface design tool based in the browser (graphics).
- ◆ file-converter : Convert between various file formats.
- ◆ filelight : View disk usage information (installs "kdeutils").
- ◆ filen : Desktop client for Filen.io, end-to-end encrypted cloud storage.
- ◆ file-to-c : Tool for generating a C header from a spir-v binary file.
- ◆ filezilla : The free FTP solution with support for FTP over TLS and SFTP.
- ◆ filmulator-gui : Simplified raw editing with the power of film (graphics).
- ◆ firedragon : Web Browser fork of Librewolf (Firefox) from Garuda Linux.
- ◆ firefly-desktop : The official IOTA and Shimmer wallet.
- ◆ firefox-appimage : Unofficial AppImage of the Web Browser (Stable).
- ◆ firefox-beta-appimage : Unofficial AppImage of the Web Browser (Beta).
- ◆ firefox-beta : Fast, powerful and extensible Web Browser (Beta Edition).
- ◆ firefox-devedition-appimage : Unofficial AppImage of the Web Browser (Dev).
- ◆ firefox-dev : Fast, powerful and extensible Web Browser (Developer Edition).
- ◆ firefox-esr-appimage : Unofficial AppImage of the Web Browser (ESR).
- ◆ firefox-esr : Fast, powerful and extensible Web Browser (ESR Edition).
- ◆ firefox : Fast, powerful and extensible Web Browser (Stable).
- ◆ firefox-nightly-appimage : Unofficial AppImage of the Web Browser (Nightly).
- ◆ firefox-nightly : Fast, powerful and extensible Web Browser (Nightly Edition).
- ◆ firetail : An open source music player.
- ◆ firetv-toolkit : Android-Toolkit, a GUI for adb, modify android devices.
- ◆ fish : AppImage for `fish` shell.
- ◆ fishing-funds : Fund, big market, stock, virtual currency status (in chinese).
- ◆ flacon : Audio File Encoder. Extracts audio tracks from audio CDs.
- ◆ flameshot : Tool to take screenshots with many built-in features (graphics).
- ◆ flare : Fantasy action RPG game using the FLARE engine.
- ◆ flawesome : Flawesome is a modern productivity tool.
- ◆ flb : A beautiful Feature Rich Music Player and Downloader,cross platform.
- ◆ flexvdi-client-appimage : Client for connecting to flexVDI desktops.
- ◆ flightgear-airports : A software to design Flightgear groundnets.
- ◆ flightgear : Free, open source flight simulator developed since 1997.
- ◆ flippy-qualitative-testbench : Music sheet reader.
- ◆ floorp : Floorp Browser, the most Advanced and Fastest Firefox derivative.
- ◆ fluent-reader : Modern desktop RSS reader.
- ◆ flycast : A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator.
- ◆ fmradio : Cross platform FM Radio App for RTL2832U dongles.
- ◆ fms-file-explorer : Access and exploration of data produced.
- ◆ focalizzare : A Timer for Pomodoro Technique.
- ◆ focusatwill-appimage : Combines neuroscience and music to boost productivity.
- ◆ focuswriter : Simple fullscreen word processor.
- ◆ fontbase : A lightning fast, beautiful and free font manager for designers.
- ◆ fontforge : Free (libre) font editor for Windows, Mac OS X and GNU+Linux.
- ◆ fontlet : A package manager for fonts.
- ◆ foobar2000 : An advanced freeware audio player for Windows (includes WINE).
- ◆ four : Electron App to access All4/Channel4 (UK).
- ◆ foxfolio : Cryptocurrency portfolio management application.
- ◆ fpm : Faster Project Plus on Linux.
- ◆ fractale : 2D modeling of the Von Koch fractal.
- ◆ fraidycat : Follow blogs, wikis, YouTube, Twitter, Reddit, Instagram and more.
- ◆ fraktal : Podcast Manager in Electron.
- ◆ frame-eth-dev-appimage : A privacy focused Ethereum wallet.
- ◆ francetv : The france.tv site in an application.
- ◆ franz : Messaging app for WhatsApp, Slack, Telegram, HipChat and much more.
- ◆ frappebooks : Book-keeping software for small-businesses and freelancers.
- ◆ freac : fre:ac, free audio converter and CD ripper for various encoders.
- ◆ freecad-assembly3 : Assembly3 workbench for FreeCAD.
- ◆ freecad : Free and open source AutoCAD alternative.
- ◆ freeman : A free, extensible, cross-platform file manager for power users.
- ◆ freetexturepacker : Creates sprite sheets for you game or site (graphics).
- ◆ freetube : An Open Source YouTube app for privacy.
- ◆ freezer-appimage : An unofficial client for Deezer.
- ◆ friture : Real-time audio visualizations (spectrum, spectrogram, etc.).
- ◆ fromscratch : Simple autosaving scratchpad.
- ◆ fspy : An open source, cross platform app for still image camera matching.
- ◆ fukayo : Manga reader.
- ◆ gaiasky : Gaia Sky, a real-time 3D space simulator & astronomy visualisation.
- ◆ galacteek : IPFS Multi-platform browser for the distributed web.
- ◆ gallery-dl : Command-line program to download image galleries and collections.
- ◆ gamehub : Unified library for all your games from different platforms.
- ◆ gameimage : Pack a runner/emulator/game and it's configs in a single AppImage.
- ◆ gams-studio : Development environment of General Algebraic Modeling System.
- ◆ ganache : Personal Blockchain for Ethereum (latest AppImage for Linux).
- ◆ gaphor : A UML and SysML modeling application written in Python.
- ◆ gargoyle-bin : Interactive Fiction multi-int. for all major IF formats.
- ◆ gdesktopsuite : Google Suite as a desktop app, made possible with Electron.
- ◆ gdevelop : Cross-platform game engine designed to be used by everyone.
- ◆ gdlauncher-appimage : Simple, yet powerful Minecraft custom launcher.
- ◆ gdm-settings : A settings app for GNOME's Login Manager, GDM.
- ◆ gedit : The popular GNOME text editor Gedit.
- ◆ geeqie : Claiming to be the best image viewer / photo collection browser.
- ◆ geforcenow-electron : Desktop client for Nvidia GeForce NOW game streaming.
- ◆ gemalaya : A keyboard-driven Gemini browser written in QML.
- ◆ genesis : Open source blockchain platform.
- ◆ geofs : GeoFS flight sim as a desktop application.
- ◆ geometrize : Images to shapes converter (graphics).
- ◆ gerbv : Gerber file viewer for PCB design.
- ◆ getthermal : Cross-platform Thermal Camera Viewer.
- ◆ gextractwinicons : Extract cursors, icons and images from MS Windows files.
- ◆ giada : Hardcore audio music production tool and drum machine for DJs.
- ◆ gibs : Generally In-source Build System, build C++ projects without a project.
- ◆ gifcurry : The open-source, Haskell-built video editor for GIF makers.
- ◆ gimp-aferrero2707 : GNU Image Manipulation Program (version 2.10.25).
- ◆ gimp-dev : Cross-platform image and photo editor (Developer Edition).
- ◆ gimp-git : Cross-platform image and photo editor (built from GIT).
- ◆ gimp : GNU Image Manipulation Program, cross-platform image and photo editor.
- ◆ gimp-hybrid : GIMP including third-party plugins and python2 support.
- ◆ gingko : Gingko client rewritten in Elm.
- ◆ git-good : Just a simple git client using electron and nodegit.
- ◆ githoard : Hoard git repositories with ease.
- ◆ github-desktop : Electron-based GitHub app.
- ◆ gitify : GitHub notifications on your menu bar.
- ◆ gitjournal : Mobile first Note Taking integrated with Git.
- ◆ gitkraken : GitKraken Client including an intuitive GUI & powerful CLI.
- ◆ gitnote : A modern note taking app based on GIT.
- ◆ gitqlient : Multi-platform Git client written with Qt.
- ◆ glabels : Create labels, business cards and media covers.
- ◆ glaxnimate : A simple and fast vector graphics animation program.
- ◆ gltf-insight : C++11 based glTF 2.0 data insight tool.
- ◆ glulxe : AppImage of the glulxe interactive fiction interpreter.
- ◆ gl-warp2mp4 : Utility to pre-warp a movie similar to TGAWarp.
- ◆ glyphr-studio-desktop : Professional font design programs.
- ◆ gmail-desktop : Nifty Gmail desktop app for macOS, Linux & Windows.
- ◆ gmappimager : Graphically Converts GameMaker Studio 2 Linux Games to AppImage.
- ◆ gm-companion : A tool for rpg gamemasters.
- ◆ gnome-calculator : Perform arithmetic, scientific or financial calculations.
- ◆ gnome-system-monitor3 : Version 3.38.0 (for all those who hate GNOME4+ UIs).
- ◆ gnome-tweaks : Experimental AppImage port of advanced GNOME 3 settings GUI.
- ◆ gnumeric : An open-source spreadsheet program.
- ◆ godot : Multi-platform 2D and 3D game engine with a feature-rich editor.
- ◆ goldencheetah : Cycling Power Analysis Software.
- ◆ goldendict : A feature-rich dictionary lookup program.
- ◆ goldendict-ng : The Next Generation GoldenDict.
- ◆ gooboxfileshare : Goobox File Share App.
- ◆ goofcord : Take control of your Discord experience with GoofCord.
- ◆ google-chrome-beta : Web Browser (Beta version, Unofficial AppImage).
- ◆ google-chrome-dev : Web Browser (Unstable version, Unofficial AppImage).
- ◆ google-chrome : Web Browser (Stable version, Unofficial AppImage).
- ◆ google-docs : Google Docs Desktop App made with electron.
- ◆ google-tasks-desktop : Unofficial client.
- ◆ gospel : Poppler based fast pdf viewer written in PyQt5.
- ◆ gpgfrontend : A Cross-Platform OpenPGP Frontend Software.
- ◆ gpredict : A satellite tracking application.
- ◆ gpt-anywhere : Use GPT anywhere with just one shortcut.
- ◆ gptfusion-appimage : GPT Aggregation Ed. (in chinese), supports POE, and more.
- ◆ gpupad : A flexible GLSL shader editor and IDE.
- ◆ gqrx : Software defined radio receiver (SDR).
- ◆ gradestats : Import xls spredsheets, store/analyze student grade.
- ◆ granatier : Bomberman clone (installs "kdegames").
- ◆ graphql-playground : GraphQL IDE for better development workflows.
- ◆ graviton : A simple code editor.
- ◆ greenlight : Client for xCloud and Xbox home streaming made in Typescript.
- ◆ gridcoin-research : A POS-based cryptocurrency.
- ◆ gridea : A static blog writing client (一个静态博客写作客户端).
- ◆ gridplayer : Play videos side-by-side.
- ◆ gridsync : Synchronize local directories with Tahoe-LAFS storage grids.
- ◆ grinplusplus : A C++ Grin Node & Wallet.
- ◆ groot : Graphical Editor to create BehaviorTrees.
- ◆ grx : Fastest Web Gerber Renderer.
- ◆ gsequencer : Tree based audio processing engine.
- ◆ gsubs : Finds you the perfect subtitle match.
- ◆ guarda-appimage : A secure, easy-to-use cryptocurrency wallet.
- ◆ guglielmo : A FM, DAB/DAB+ decoder using Qt and C++.
- ◆ guiscrcpy : GUI integration for android screen mirroring system.
- ◆ guitar : Graphical git client.
- ◆ gum : A tool for glamorous shell scripts.
- ◆ gvim : Edit text files.
- ◆ gxc-smart-contract-ide : Gxchain smart contract IDE alpha.
- ◆ gyroflow-appimage : Video stabilization using gyroscope data.
- ◆ hades-emu : A Nintendo Game Boy Advance Emulator.
- ◆ hamsket : Free and Open Source messaging and emailing app.
- ◆ handbrake : An open-source multiplatform video transcoder.
- ◆ hapee : Best cross-platform downloader ever.
- ◆ hastyheroes : An endless 2D jumping game.
- ◆ hdrmerge : Merge several raw images into a single DNG raw image.
- ◆ heat1d : UI for testing the soilFluxex3D library (CRITERIA1D).
- ◆ heimer : Simple cross-platform mind map, diagram, and note-taking tool.
- ◆ helio : One music sequencer for all major platforms, desktop and mobile.
- ◆ helioslauncher : Custom launcher for modded minecraft written in Electron.
- ◆ helix : A post-modern modal text editor.
- ◆ hermesmessenger : Desktop client version for Hermes Messenger.
- ◆ hero-display : App for display on HERO robot.
- ◆ heroic-games-launcher : A Native GOG and Epic Games Launcher for Linux.
- ◆ hexinator : Hex editor for reverse engineering & binary file analysis.
- ◆ hexoclient : A cross-platform hexo client, build on electron.
- ◆ hexoeditor : Markdown editor for Hexo built with Electron.
- ◆ hiddify-next : Auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria.
- ◆ hidpi-fixer : Fractional scaling configuration on X11 desktops.
- ◆ hoptodesk : Allows users to share their screens and remotely control access.
- ◆ hotspot : The Linux perf GUI for performance analysis.
- ◆ houdoku : Manga reader and library manager for the desktop.
- ◆ hpack : A fine tool to convert any data into C header.
- ◆ hsinstall : Pack a haskell project into a deployable directory structure.
- ◆ htop : A CLI utility to monitor system resources (Unofficial AppImage).
- ◆ htmldoc : HTML & Markdown Conversion Software to output PostScript and PDF.
- ◆ httpie-desktop-appimage : HTTPie for Desktop.
- ◆ hugin : Stitch photographs together.
- ◆ hugor : A cross-platform, multimedia interpreter for Hugo adventure games.
- ◆ huwinterpreter : HuwCode interpreter.
- ◆ hw-probe : Probe for hardware and upload result to the Linux hdw database.
- ◆ hydrogen-music : The advanced drum machine for Linux, macOS, and Windows.
- ◆ hyper : A terminal built on web technologies.
- ◆ hyperdex : BarterDEX desktop app.
- ◆ hyperfine : A command-line benchmarking tool.
- ◆ hyperionide : Hyperion IDE for JIRA.
- ◆ hyperkeys : Unleash you keyboard shorcuts.
- ◆ hyperspace : A fluffy client for Mastodon in React.
- ◆ hypertrader : Trade like a PRO, robust tools to monitor your accounts.
- ◆ iagoncloudapp : Iagon Cloud Application.
- ◆ ibus-rime : Zhongzhou Yun input method (ibus-rime) in AppImage format.
- ◆ icalingua++ : A client for QQ and more.
- ◆ icedrive-appimage : The next generation of cloud storage.
- ◆ icestudio-appimage : A real gamechanger in the world of Open Source FPGAs.
- ◆ ideamaker : 3D slicing software, automatically generates support structure.
- ◆ igdm : Desktop application for Instagram DMs.
- ◆ imagemagick-clang : CLI to create, edit, compose, or convert digital images.
- ◆ imagemagick-gcc : CLI to create, edit, compose, or convert digital images.
- ◆ imagemosaicwall : Create an image based on a bunch of other images.
- ◆ imageplay : A rapid prototyping app for image processing.
- ◆ imagine : PNG/JPEG optimization.
- ◆ imapsyncclient : An electron-vue project.
- ◆ imgbrd-grabber-appimage : Very customizable imageboard/booru downloader.
- ◆ imhex : A Hex Editor for Reverse Engineers and Programmers.
- ◆ impact : Music Management and Playback.
- ◆ impposter : Post to my own development blog.
- ◆ inboxer : Simple client for Google Inbox.
- ◆ index-maui : Browse your system files and preview your multimedia.
- ◆ infection-monkey : An automated penetration test tool (security).
- ◆ infinitex : Editor for academics with cryptography.
- ◆ infra-appimage : Infra App for Linux.
- ◆ inkscape-next : Vector-based drawing program (SVG, PDF, AutoCAD...), Unstable.
- ◆ inkscape : Vector-based drawing program (SVG, PDF, AutoCAD...), Stable.
- ◆ insight : The GUI front-end of GDB with Tcl/Tk.
- ◆ insomnia : API client for GraphQL, REST, WebSockets and gRPC.
- ◆ insomnium : A local API testing tool privacy-focused (fork of Kong/insomnia).
- ◆ instead : Simple Text Adventures Interpreter.
- ◆ intiface : Desktop Intiface Application.
- ◆ invoice-generator : Invoice Generator in Electron.
- ◆ iota1k : IOTA based messenging app.
- ◆ ipfs-desktop : An unobtrusive and user-friendly app for IPFS on Linux.
- ◆ iptvnator : IPTV player application.
- ◆ ipuissance-4d : Connect Four video game with a 3-Dimentional rendering.
- ◆ iqpuzzle : A diverting I.Q. challenging pentomino puzzle.
- ◆ irccloud-desktop : IRCCloud Desktop Client.
- ◆ irscrutinizer : Capture/generate/analyze/import/export infrared signals.
- ◆ isle-editor : Editor for Integrated Statistics Learning Environment lessons.
- ◆ isolate : Lightweight image browser.
- ◆ itusb1-manager : Control the ITUSB1 USB Test Switch.
- ◆ jag : Program for telemetry veiwing.
- ◆ james : HTTP/HTTPS proxy built in Electron and React.
- ◆ jan : FOSS Alternative to ChatGPT that runs 100% offline on your computer.
- ◆ jazz2 : Open-source reimplementation of Jazz Jackrabbit 2.
- ◆ jellyamp-appimage : A client for listening to music from a Jellyfin server.
- ◆ jetbrains-toolbox : Essential tools for software developers and teams.
- ◆ jexiftoolgui : Java/Swing graphical frontend for ExifTool.
- ◆ jfcord : An Jellyfin rich presence client for Discord.
- ◆ jgrasp : An IDE with Visualizations for Improving Software Comprehensibility.
- ◆ jimud : MUD client for ShadowMUD.com, based on webclient.
- ◆ jira-timer : Menubar app for JIRA time logging.
- ◆ jitsi-meet : Jitsi Meet Desktop App.
- ◆ jklubtv : Chess Round Robin Tournament Manager.
- ◆ jmbde : Application to collect data in a company.
- ◆ joaldesktop : Electron application boilerplate.
- ◆ join-desktop : A companion app for the Join website.
- ◆ joplin-beta : A cross-platform note taking and to-do app.
- ◆ joplin : Note and to-do application with synchronization capabilities.
- ◆ joy2droidx : Turn Android phones into virtual Xbox 360 controller.
- ◆ jq : jq is a lightweight and flexible command-line JSON processor.
- ◆ jreleaser : The quick way to release your project.
- ◆ jrom-manager : A Rom Manager entirely written in Java and released under GPL-2.
- ◆ jscad-desktop : Jscad desktop application.
- ◆ js-design : A professional UI design software tailored for Chinese designers.
- ◆ juggernaut : Decentralized messaging and payments.
- ◆ julius : An open source re-implementation of the Caesar III game.
- ◆ jumpfm : A file manager that lets you jump.
- ◆ junest : Arch Linux based distro that runs rootless on any other Linux distro.
- ◆ kade : A desktop application for Q Methodology.
- ◆ kage : GUI for Metasploit Meterpreter and Session Handler.
- ◆ kaidan : A QtQuick Jabber client.
- ◆ kanon : Maturita GPJP designed for use with kanon web app.
- ◆ kapman : Pac-Man clone (installs "kdegames").
- ◆ kate : A multi-document editor part of KDE.
- ◆ katomic : Edu. game based around molecular geometry (installs "kdegames").
- ◆ kawanime : Desktop app for anime fans.
- ◆ kblackbox : A game of hide and seek (installs "kdegames").
- ◆ kblocks : Classic Tetris / falling blocks game (installs "kdegames").
- ◆ kbounce : Fill the field game (installs "kdegames").
- ◆ kbreakout : Destroy bricks without losing the ball (installs "kdegames").
- ◆ kcalc : Scientific Calculator (installs "kdeutils").
- ◆ kcharselect : Character Selector (installs "kdeutils").
- ◆ kcov : An AppImage of Kcov code coverage tool.
- ◆ kdegames : Full & updatable KDE Games suite from Debian Stable (metapackage).
- ◆ kdenlive : A powerful Video Editor provided by KDE.
- ◆ kdeutils : Full & updatable KDE Utils suite from Debian Stable (metapackage).
- ◆ kdf : View Disk Usage (installs "kdeutils").
- ◆ kdiamond : Diamond game (installs "kdegames").
- ◆ kdiskmark : A simple open-source disk benchmark tool for Linux distros.
- ◆ keepassxc : Port of the Windows application “Keepass Password Safe”.
- ◆ keeweb : Free cross-platform password manager compatible with KeePass.
- ◆ keibo-moneytracker-x86-64 : Track your income and expenses easily.
- ◆ kettleclient : Client for Kettle REST service.
- ◆ kevedit : ZZT Editor.
- ◆ keyboardclient : Keyboard Settings Client.
- ◆ keymanager : One-stop certificate app and certificate key management.
- ◆ keyrier-json : A CLI/library/webapp to perfom SQL queries on JSON & CSV.
- ◆ keys : Key management, signing and encryption.
- ◆ kfourinline : 4 in row game (installs "kdegames").
- ◆ kgoldrunner : A game with a runner and gold (installs "kdegames").
- ◆ kgpg : A GnuPG frontend (installs "kdeutils").
- ◆ kicad : Electronic Design Automation suite.
- ◆ kigo : Go strategic board game for two players (installs "kdegames").
- ◆ kiibohd-configurator : Configuration utility for Input Club keyboards.
- ◆ killbots : Port of the classic console game Robots (installs "kdegames").
- ◆ kimitzu-client : Kimitzu Client.
- ◆ kiriki : A dice game (installs "kdegames").
- ◆ kitupiikki : Bookkeeping software for small organizations.
- ◆ kjumpingcube : A game of dices on a board (installs "kdegames").
- ◆ klickety : Color matching like SameGame (installs "kdegames").
- ◆ klines : Inspired by well known game of Color Lines (installs "kdegames").
- ◆ klogg : A smart interactive log explorer.
- ◆ kmahjongg : Mahjongg game (installs "kdegames").
- ◆ kmines : Classic mine game (installs "kdegames").
- ◆ knavalbattle : Battle Ship game (installs "kdegames").
- ◆ knetwalk : Net constructing game (installs "kdegames").
- ◆ knights : Chess interface for the KDE Platform (installs "kdegames").
- ◆ knowledge : Save/search/access/explore all your favorite websites and files.
- ◆ knowte : Note taking.
- ◆ koishi-desktop : Launch Koishi from your desktop.
- ◆ kolf : Mini Golf game (installs "kdegames").
- ◆ kollision : Dodge red balls in the field (installs "kdegames").
- ◆ konquest : Game of planets (installs "kdegames").
- ◆ koodo-reader : Modern ebook manager and reader with sync & backup capacities.
- ◆ kopia : Cross-platform backup tool for Windows, macOS & Linux.
- ◆ koreader : A document viewer.
- ◆ kpat : Klondike, Spider, Free Cell and other Solitaire (installs "kdegames").
- ◆ kreversi : Reversi game (installs "kdegames").
- ◆ krita : A professional FREE and open source painting program (graphics).
- ◆ krita-devel : A professional FREE open source painting program (dev-edition).
- ◆ kshisen : A game similar to Mahjongg (installs "kdegames").
- ◆ ksirk : A strategy board game (installs "kdegames").
- ◆ ksnakeduel : A snake race game (installs "kdegames").
- ◆ ksnip : Screenshot tool inspired by Windows Snipping Tool and made with Qt.
- ◆ kspaceduel : Battleship with satellites in the space (installs "kdegames").
- ◆ ksquares : Win with most number of completed squares (installs "kdegames").
- ◆ ksudoku : Sudoku game (installs "kdegames").
- ◆ ktimer : Countdown Launcher (installs "kdeutils").
- ◆ ktuberling : Simple Mr. Potato game for children (installs "kdegames").
- ◆ kubeman-appimage : The Hero that Kubernetes deserves.
- ◆ kubenav : The navigator for your Kubernetes clusters right in your pocket.
- ◆ kubrick : A logic game based on Rubik's Cube (installs "kdegames").
- ◆ kuro : An elegant Microsoft ToDo desktop client for Linux (a fork of Ao).
- ◆ kwalletmanager5 : Wallet management tool (installs "kdeutils").
- ◆ kwave : A sound & audio editor designed for the KDE Desktop Environment.
- ◆ lagrange : A Beautiful Gemini Client.
- ◆ laigter : Tool to generate normal/specular/occlussion/parallax 2D maps.
- ◆ lambda-lantern : A 3D game about functional programming patterns.
- ◆ landrop : Drop any files to any devices on your LAN.
- ◆ langly : Manage Laravel json language files.
- ◆ lanshare : LAN file transfer app for any kind and size of files and folders.
- ◆ laravel-kit : Easy Laravel application management.
- ◆ launcher : Generic application's launcher.
- ◆ lbry-desktop : A browser and wallet for LBRY.
- ◆ lcedit : Editor (unknown).
- ◆ ldtk : Modern and efficient 2D level editor.
- ◆ ldview : LDraw Model Viewer.
- ◆ leapp : The DevTool to access your cloud.
- ◆ led.custom.palette : Design the lights on your Model01 with an ease.
- ◆ ledger-live-desktop : Wallet desktop app for multiple cryptocurrencies.
- ◆ left : Distractionless Writing Tool.
- ◆ legendary-kingdoms : Implementation of Legendary Kingdoms Gamebooks in C++.
- ◆ lemon : A tiny judging environment for OI contest based on Project_LemonPlus.
- ◆ lens : App you need to take control of your Kubernetes clusters.
- ◆ leocad : Create virtual LEGO models.
- ◆ leonflix : Multi-platform desktop application for watching movies & TV shows.
- ◆ lepton : Democratizing Code Snippets Management (macOS/Win/Linux).
- ◆ lescovex : Lescovex decentralized exchange, wallet and contract issuer.
- ◆ levior : Converts web pages on-the-fly to the gemtext format.
- ◆ libassist : Library Assistant.
- ◆ libertem : Pixelated scanning transmission electron microscopy.
- ◆ librecad : 2D CAD program written in C++11 using the Qt framework.
- ◆ libreoffice : Free and open source Office suite (choose a version).
- ◆ libreoffice-fresh-full-help : Office suite (includes manuals).
- ◆ libreoffice-fresh-full : Office suite (latest, includes all languages).
- ◆ libreoffice-fresh-standard-help : Office suite (includes manuals).
- ◆ libreoffice-fresh-standard : Office suite (latest, european languages only).
- ◆ libreoffice-still-full-help : Office suite (includes manuals).
- ◆ libreoffice-still-full : Office suite (stable, includes all languages).
- ◆ libreoffice-still-standard-help : Office suite (includes manuals).
- ◆ libreoffice-still-standard : Office suite (stable, european languages only).
- ◆ librepcb : Design Schematics and PCBs.
- ◆ libresprite : Animated sprite editor & pixel art tool.
- ◆ librewolf : Firefox-based Web Browser focused on privacy, security, freedom.
- ◆ lightning : Lightning Wallet Application.
- ◆ lightning-peach-wallet : Wallet for lightning network
- ◆ liground : A mordern Chess Variant Analysis GUI (game).
- ◆ liketaskmanager : Process/performances monitor (CPU, RAM, Disks and Network).
- ◆ lime3ds : Nintendo 3DS emulator, continuation of citra.
- ◆ linedancer : Arcade game and entry for Ludum Dare 35.
- ◆ linked : Daily journaling without distraction.
- ◆ linphone : A libre SIP client.
- ◆ linuxdeployqt : Convert a linux program to an AppDir or an AppImage.
- ◆ linux-intel-undervolt-gui : Undervolting GUI for Intel Linux Systems.
- ◆ linuxqq : New Linux QQ based on Electron.
- ◆ linwood-butterfly : Powerful, minimalistic, cross-platform, note-taking app.
- ◆ lisk-desktop : Lisk graphical user interface for desktop.
- ◆ listen1-desktop-appimage : One for all free music in China.
- ◆ liteide : LiteIDE is a simple, open source, cross-platform Go IDE.
- ◆ lite-xl : A lightweight text editor written in Lua.
- ◆ liveme-pro-tools : Browse, search and manage accounts, replays and more.
- ◆ lmms : FL Studio® alternative that allows you to produce music with the PC.
- ◆ lmstudio : Experimenting with local and open-source Large Language Models.
- ◆ local-browser : Share your localhost in a unique way.
- ◆ localsend : An open source cross-platform alternative to AirDrop
- ◆ loginized : Loginized Gnome GDM Login Theme Manager.
- ◆ logseq : A privacy-first platform for knowledge management and collaboration.
- ◆ loopauditioneer : Software for loop and cue handling in .wav files.
- ◆ losslesscut : The swiss army knife of lossless video/audio editing.
- ◆ lovelive : A LoveLiver Music Player.
- ◆ love : The unquestionably awesome 2D game engine.
- ◆ lpub3d : An LDraw Building Instruction Editor.
- ◆ lskat : Fun and engaging card game for two players (installs "kdegames").
- ◆ lumi : A tool to create and display interactive content with H5P.
- ◆ luminance-hdr : Create and tonemap HDR images.
- ◆ luna : Manage npm dependencies through a modern UI.
- ◆ lunar-client : Free Minecraft Client, a modpack for all versions of Minecraft.
- ◆ lunatask : All-in-one encrypted to-do list, notebook, habit and mood tracker.
- ◆ lunyr : Ethereum-based Encyclopedia.
- ◆ lux : A free open source image and panorama viewer.
- ◆ lx-music-desktop-appimage : 一个基于electron的音乐软件.
- ◆ lxtask : A lightweight and desktop-independent task manager.
- ◆ magento2-upgrade-gui : Magento 2 Upgrade GUI.
- ◆ magicfountain : A novel and screenwriting program.
- ◆ makagiga : To-do manager, notepad, RSS reader and much more.
- ◆ makoureactor : Can edit field from Final Fantasy VII (PS & PC).
- ◆ malice : GUI Programming Tool for iCE40.
- ◆ manager-io : Free Accounting Software for Linux (Server).
- ◆ mandelbulber2 : Explore trigonometric, hyper-complex and other 3D fractals.
- ◆ mangayomi : Application for reading manga and watching anime.
- ◆ mangbandclient : A free online multi-player realtime roguelike game.
- ◆ manta : Flexible invoicing app with beautiful & customizable templates.
- ◆ mapeo : Local-first mapping and monitoring in remote environments.
- ◆ mapollage : Photo kml generator for Google Earth.
- ◆ mapton : Some kind of map application.
- ◆ markman : A markdown editor.
- ◆ mark-mind : Multiplatform mind map and outliner editor with markdown support.
- ◆ marktext : A simple and elegant markdown editor multiplatform.
- ◆ marlin-conf : Configuration tool for Marlin project.
- ◆ martian : Websocket testing tool.
- ◆ marvin : Open Source record and playback test automation for the web.
- ◆ mastervyrn : MasterVyrn is a clean dedicated GBF loader.
- ◆ mate-system-monitor : Process viewer and system resource monitor (from MATE).
- ◆ mattermost-desktop : Secure collaboration across entire software development.
- ◆ mayo : 3D CAD viewer and converter based on Qt + OpenCascade.
- ◆ mazesolver : A tool which shows how different algorithms solves mazes.
- ◆ mbcord-appimage : An Emby/Jellyfin rich presence client for Discord.
- ◆ mcpodcast : Electron app for tasks around Podcast mp3 files.
- ◆ m : Data oriented programming language for game developers.
- ◆ mdl : MDL wallet.
- ◆ mdview : Application that renders and displays Markdown files.
- ◆ mechvibes : Play mechanical keyboard sounds as you type.
- ◆ mediachips : Manage your videos, add any metadata to them and play them.
- ◆ media-dupes : Content duplicator for common media services like YouTube.
- ◆ mediaelch : Media Manager for Kodi.
- ◆ mediainfo : Supplies technical & tag information about a video or audio file.
- ◆ media-mate : A full media server/player/downloader/etc all in one.
- ◆ median-xl-launcher-appimage : Launcher for Median XL mod, Diablo II overhaul.
- ◆ mediathekview : Searches the online media libraries of various broadcasters.
- ◆ mellowplayer : Cloud music integration for your desktop.
- ◆ melodie : Simple-as-pie music player.
- ◆ memento : A video player for studying Japanese.
- ◆ memocast : Yet another elegant Wiz Note Client.
- ◆ mendeley : Search over 100 million cross-publisher articles and counting.
- ◆ meow-sql : An attempt to port HeidiSQL to C++/Qt (Linux/Windows).
- ◆ mercury-avx2 : Firefox fork, with compiler optim. and patches from Librewolf.
- ◆ mercury : Firefox fork with compiler optimizations and patches from Librewolf.
- ◆ mercury-sse3 : Firefox fork with compiler optim. and patches from Librewolf.
- ◆ mercury-sse4 : Firefox fork with compiler optim. and patches from Librewolf.
- ◆ meshlab : Processor and editor of large 3D triangular meshes.
- ◆ meshmill : The world's greatest open source 3D CAM software (maybe one day).
- ◆ meta-grabber : A tool to grab metadata for tv shows and rename files on PC.
- ◆ mgba : Game Boy Advance Emulator.
- ◆ micropad : µPad is an open digital note taking app.
- ◆ microsoft-edge-beta : Web Browser provided by Microsoft (Beta Edition).
- ◆ microsoft-edge-dev : Web Browser provided by Microsoft (Developer Edition).
- ◆ microsoft-edge : Web Browser provided by Microsoft (Stable Edition).
- ◆ miesimulatorgui : MieSimulatorGUI by Virtual Photonics.
- ◆ mightymike : Pangea Software's Mighty Mike (Power Pete) for modern systems.
- ◆ milkytracker : An FT2 compatible music tracker.
- ◆ mindmapp : Electron application to draw mind maps.
- ◆ minecraft-launcher : Game downloader and launcher for Minecraft.
- ◆ minetest : Multiplayer infinite-world block sandbox.
- ◆ minetime : Smart scheduling assistant.
- ◆ mini-diary : Simple and secure journal app.
- ◆ minififa : OpenGL-powered third-person football (soccer) game.
- ◆ minimal-podcasts-player : Subscribe, listen and download your podcasts.
- ◆ minions : A productive tool inspired by LaunchBar in macOS.
- ◆ mini-qml : Minimal Qt deployment for Linux, Windows, macOS and WebAssembly.
- ◆ minizinc-ide : A free and open-source constraint modeling language.
- ◆ mira-backup : Mira Auto Database Backup app.
- ◆ mirage : Matrix chat client for encrypted and decentralized communication.
- ◆ miru : Bittorrent streaming software for cats. Stream anime torrents.
- ◆ miteiru : An open source Electron video player to learn Japanese.
- ◆ mjml-app : The desktop app for MJML.
- ◆ mki3dgame : A game of searching (in 3D stages).
- ◆ mkvtoolnix : Matroska files creator and tools.
- ◆ mlv-app : All in one MLV processing app (audio/video).
- ◆ mmapper : Graphical MUD client for the game MUME.
- ◆ mmseqs2-search : MMseqs2 app to run on your workstation or servers.
- ◆ moarperf : Front-end for MoarVM's / Rakudo's profilers.
- ◆ mob : .A handsome Himalayan desktop client.
- ◆ mochi : A simple markdown-powered SRS app.
- ◆ mockman : Manage and start the mock servers on your local platform easily.
- ◆ mockoon : Mock servers in seconds.
- ◆ moderndeck : A beautiful, powerful Twitter client for desktop.
- ◆ modv : Modular audio visualisation powered by JavaScript.
- ◆ monit-appimage : Desktop widgets displaying various information (in chinese).
- ◆ moniteur-admin : The admin panel for the lightweight info screen solution.
- ◆ monokle : Lets you create, analyze, and deploy YAML manifests.
- ◆ moolticute : Mooltipass crossplatform daemon/tools.
- ◆ moonfm : A modern, fully featured audio podcast player.
- ◆ moonitor : A desktop app to track cryptocurrencies.
- ◆ moonlight : Stream games from your NVIDIA GameStream-enabled PC.
- ◆ moonplayer : AIO video player to play Youtube, Bilibili... and local videos.
- ◆ moose : An application to stream, cast and download torrents.
- ◆ moosync : Music player capable of playing local audio or from Youtube/Spotify.
- ◆ motrix : A full-featured download manager.
- ◆ movie-monad : Free and simple to use video player made with Haskell.
- ◆ moyu : An online collaborative api interface management tool.
- ◆ mozaic : Massive Online Zeus Artificial Intelligence Competition platform.
- ◆ mp3-tagger-appimage : An Electron app to edit metadata of mp3 files.
- ◆ mpv : A free, open source, and cross-platform media player.
- ◆ mqttcute : An advanced desktop MQTT client for binary protocol development.
- ◆ mqtt-explorer : Explore your message queues.
- ◆ mqttx-appimage : MQTT 5.0 Desktop, CLI, and WebSocket client tools.
- ◆ mr.dclutterer : Minimal App To Aggregate And Rename Files In Bulk.
- ◆ ms-365-electron : Unofficial Microsoft 365 Desktop Wrapper made with Electron.
- ◆ mtcelledit : Lightweight spreadsheet program.
- ◆ mudita-center-appimage : Mudita Center Electron App.
- ◆ muffon : Music streaming browser,retrieves audio, video and metadata.
- ◆ munt : The payment system of the future.
- ◆ mupdf : Lightweight PDF, XPS, and E-book viewer.
- ◆ muse : A digital audio workstation with support for both Audio and MIDI.
- ◆ museeks : A simple, clean and cross-platform music player.
- ◆ musescore : An open source and free music notation software.
- ◆ musicalypse : Audio/Music player and server built with Web technologies.
- ◆ music-blocks : .Exploring Math, Music, and Programming.
- ◆ music-kitten : Use your own soundtrack in Counter-Strike.
- ◆ music-quiz : Jepardy like game, guess as many songs as possible.
- ◆ mutool : All purpose tool for dealing with PDF files.
- ◆ muwire : A file sharing client for I2P.
- ◆ mybelka : Accounting system written in C++ with QTCore.
- ◆ my-budget : Offline cross-platform budgeting solution built with Electron.
- ◆ mycrypto : MyCrypto web and electron app.
- ◆ my-jira : A lite jira desktop.
- ◆ mypaint : Simple drawing and painting program (graphics).
- ◆ mystiq : Qt5/C++ FFmpeg Media Converter.
- ◆ n3h : Nodejs implementation of holochain networking / p2p backend process.
- ◆ naev : A 2d action/rpg space game that combines elements from the action.
- ◆ nanosaur2 : Pangea Software’s Nanosaur II for modern systems.
- ◆ nanosaur : Pangea Software’s game, adventure of a cybernetic dinosaur.
- ◆ nanovault : Wallet for interacting with Nano.
- ◆ naruto-arena : Naruto-based online multiplayer strategy game.
- ◆ nault-bin : Official Nault AppImage client.
- ◆ ncsa-mosaic : One of the first graphical web browsers.
- ◆ neanes : A scorewriter for notating Byzantine chant in Byzantine notation.
- ◆ neon : Light wallet for NEO blockchain.
- ◆ nepaliunicode : An Unicode Converter app for Windows, OS X and Linux.
- ◆ nest-desktop : A web-based GUI application for NEST Simulator.
- ◆ netbeans : Apache NetBeans installers.
- ◆ netpad : A cross-platform C# editor and playground.
- ◆ netpanzer : Online multiplayer tactical warfare game for fast action combat.
- ◆ newlogic : A circuit builder.
- ◆ newton-adventure : A 2D game with a twist, player can rotate gravity at 360°.
- ◆ nextcloud : Client-server software for creating & using file hosting services.
- ◆ nextplayer-appimage : A blue-ray player, originally named TheNewPlayerFree.
- ◆ nexus-wallet : Official interface layers of the Nexus Software Stack.
- ◆ nfctools : A library which allows userspace application access to NFC devices.
- ◆ ngpost : Usenet poster for binaries developped in C++/QT.
- ◆ ngrev : Reverse Engineering for Angular.
- ◆ nheko : Desktop client for Matrix.
- ◆ niffler : A grin gui wallet.
- ◆ nightpdf : Dark Mode PDF Reader built using Electron and PDF.js.
- ◆ nimbus-weather : A beautiful weather app built using the Dark Sky API.
- ◆ nitrokey : Manage your Nitrokey devices.
- ◆ nixnote : Use with Evernote to remember everything.
- ◆ nmeasimulator : NMEA sentence generator utility to broadcast via TCP.
- ◆ nodeflow : An Editor for creating simple or complex OCR workflows.
- ◆ node : NodeJS is a JavaScript runtime built on Chrome's V8 JavaScript engine.
- ◆ no-fwl : NoFWL Desktop Application.
- ◆ nootka : Application for learning musical score notation.
- ◆ nora : An elegant music player built using Electron and React.
- ◆ nordvpn-appimage : A nicer way to connect to NordVPN, electron-based AppImage.
- ◆ normcap : OCR powered screen-capture tool to capture info instead of images.
- ◆ nosqlbooster : Essential admin GUI for mongodb.
- ◆ nostlan : A multiplatform game launcher for video game emulators.
- ◆ notable : The Markdown-based note-taking app that doesn't suck.
- ◆ nota-maui : Text editor with tab support, syntax highlight and more.
- ◆ notekit : A GTK3 hierarchical markdown notetaking app with tablet support.
- ◆ notemaster : Note-taking app to help boost productivity.
- ◆ notepadnext : A cross-platform, reimplementation of Notepad++.
- ◆ notepadqq : Edit source code files.
- ◆ notepad++ : Unofficial Appimage of Notepad++ (with WINE prefix).
- ◆ noter : Simple serial terminal application.
- ◆ noteshrink-qt : GUI for noteshrink.py with preview and pre-processing opt.
- ◆ notesnook : Private note-taking app that encrypts everything on client side.
- ◆ notes : Note-taking application, write down your thoughts.
- ◆ npm : Package manager for Node.js (installer for "node").
- ◆ nrf-connect : Framework for desktop apps for development kits.
- ◆ nteract : An open-source organization.
- ◆ nuclear : Streaming music player that finds free music for you.
- ◆ nuclia : A low-code API to build an AI multi-language semantic search engine.
- ◆ numara : Simple notepad calculator built on Electron.
- ◆ nuxeo-drive : Desktop synchronization client for the Nuxeo platform.
- ◆ nvim : NeoVim, Vim fork focused on extensibility and usability.
- ◆ nvtop : GPUs process monitoring for AMD, Intel and NVIDIA.
- ◆ nxshell : An easy to use new terminal.
- ◆ nx-software-center : A GUI to install and manage AppImages (Nitrux OS).
- ◆ nychess : A python Chess Engine and AI.
- ◆ nym-wallet-appimage : Use the Nym network and take advantage of it.
- ◆ nyrna : Suspend games and applications.
- ◆ obsidian : A powerful knowledge base, plain text Markdown files.
- ◆ obs-studio : Software for video recording and live streaming.
- ◆ ocat : OpenCore Auxiliary Tools, editing config.plist files for Acidanthera.
- ◆ ocenaudio-junest : Audio Editor (ArchImage, replaces ocenaudio).
- ◆ ocenaudio : Multiplatform Audio Editor.
- ◆ ocrmypdf : AppImage for OCRmyPDF.
- ◆ ocvvid2fulldome : Take flat videos, distort them to fit fulldome.
- ◆ ocvwarp : Warping images and videos for planetarium fulldome display.
- ◆ oh-mymd : A markdown editor,support cloud sync.
- ◆ olive-0.1 : Free non-linear video editor (version 0.1).
- ◆ olive : Free open-source non-linear video editor (nightly build).
- ◆ ommpfritt : Semantic, procedural, non-destructive vector modelling.
- ◆ omnispeak : Re-implementation of "Commander Keen in Goodbye Galaxy".
- ◆ onedrive-gui : Microsoft OneDrive Client GUI.
- ◆ one-gpt : Aggregate ChatGPT official version, Wenxin Yiyan, Poe, chatchat.
- ◆ onekey-wallet : Open source crypto wallet.
- ◆ onenote : P3X Onenote Linux.
- ◆ onlyoffice : Office Suite with full support for MS Windows formats and cloud.
- ◆ onnx2bnn : Binary neural networks inference framework for mobile platform.
- ◆ onnx2daq : Wrapper of NNAPI ("DNNLibrary" is for "daquexian's NNAPI libs).
- ◆ onshape : Onshape desktop app (web application shell).
- ◆ onyx : Decentralized messaging application based on PSS.
- ◆ opal : Plays relaxing music in the background.
- ◆ open-ai-translator : Browser extension for translation based on ChatGPT API.
- ◆ openarena : Violent & sexy, multiplayer first person shooter game (ioquake3).
- ◆ openaudible : Download and manage your Audible audiobooks.
- ◆ openblok : A customizable falling block puzzle game like tetris.
- ◆ openbor : Ultimate 2D side scrolling engine for beat em ups, shooters...
- ◆ opencomic : Comic and Manga reader, written with Node.js and using Electron.
- ◆ openhv : A mod for OpenRA based on the Hard Vacuum (game).
- ◆ openlens : OpenLens Binary Build Repository.
- ◆ open-markup-editor : Pluggable markup editor.
- ◆ openop2 : Re-implementation of the game Outpost 2, using the OpenRA engine.
- ◆ openosrs-launcher-appimage : Open-source client for Old School RuneScape.
- ◆ openpilot-workbench : Fix problems with EON/Openpilot.
- ◆ openra-dune : Real-time strategy game engine (MOD Dune 2000).
- ◆ openramodsdk : Dev Kit for building your own games using the OpenRA engine.
- ◆ openra-red-alert : Real-time strategy game engine (MOD Red Alert).
- ◆ openra-tiberian-dawn : Real-time strategy game engine penGL (MOD TD).
- ◆ openrgb : RGB lighting control that doesn't depend on manufacturer software.
- ◆ openscad : The Programmers Solid 3D CAD Modeller.
- ◆ openshot : A powerful Video Editor.
- ◆ openstream-music : The OpenStream Music source.
- ◆ opentodolist : A note and task managing application.
- ◆ opentrons : Opentrons desktop application.
- ◆ open-video-downloader : A cross-platform GUI for youtube-dl made in Electron.
- ◆ openxcom : An open-source clone of the original UFO Enemy Unknown.
- ◆ opera-beta : Fast and secure web browser (Beta version).
- ◆ opera-dev : Fast and secure web browser (Developer version).
- ◆ opera : Fast and secure web browser (Stable version).
- ◆ osrs-tools : Several tools for OSRS.
- ◆ ossia-score : Sequencer for audio-visual artists for interactive shows.
- ◆ ostara : To monitor and interact with Spring Boot Applications via Actuator.
- ◆ osu : A free-to-win rhythm game. Rhythm is just a click away!
- ◆ ottomatic : Pangea Software’s Otto Matic, a game of robots.
- ◆ outer-wilds-mod-manager : The mod manager for the Outer Wilds Mod Loader
- ◆ outline-client : Lean on the Cordova and Electron frameworks.
- ◆ outline-client-wayland : Lean on the Cordova and Electron frameworks.
- ◆ outline-manager : Create and manage access to Outline servers.
- ◆ overte : Overte open source virtual worlds platform.
- ◆ ovideo : Video Editor.
- ◆ owallet : A comprehensive Ontology desktop wallet.
- ◆ owncloud : The most essential productivity tool since email.
- ◆ oxen-gui-wallet-appimage : Oxen electron GUI wallet.
- ◆ p2p-chat : P2P LAN chatting and file sharing tool.
- ◆ p2pderivatives : Enables users to enter into Discreet Log Contracts.
- ◆ p3x-redis-ui : A very functional handy database GUI and works in your pocket.
- ◆ packetsender : Network utility for sending/receiving TCP/UDP/SSL/HTTP.
- ◆ packsquash : A Minecraft Java Edition resource and data pack optimizer.
- ◆ padloc : Electron Wrapper for Padloc app.
- ◆ painel-web : Novo SGA panel.
- ◆ palapeli : Jigsaw puzzle game (installs "kdegames").
- ◆ palemoon : Web browser, a Firefox fork with a classic UI and modern APIs.
- ◆ paletti : Reduces an image into fewer colors to simplify (color palettes).
- ◆ panini : Perspective views from panoramic images.
- ◆ panwriter : Markdown editor with pandoc integration.
- ◆ paper : A CLI Tool to set a random wallpaper from Unsplash.com.
- ◆ papercraft : A tool to unwrap 3D models.
- ◆ parallelcoin : Parallelcoin qt wallet appimage binary.
- ◆ parity-fether : Fether Wallet.
- ◆ parsec-linux-appimage : Parsec game streaming client.
- ◆ passky : Simple and secure password manager.
- ◆ patchbay : An alt. Secure Scuttlebutt client compatible with Patchwork.
- ◆ patchelf : Utility to modify the dynamic linker and RPATH of ELF executables.
- ◆ patchwork : Messaging and sharing app built on top of Secure Scuttlebutt.
- ◆ pathephone : Distributed audio player.
- ◆ patternpaint : Making beautiful light shows is as easy as drawing a picture.
- ◆ pb-for-desktop : Pushbullet Desktop app.
- ◆ pboy : A small .pdf management tool with a command-line UI.
- ◆ pcsx2 : The Playstation 2 Emulator.
- ◆ pdf2htmlex-appimage : Convert PDF to HTML without losing text or format.
- ◆ pdfquirk : Creating PDFs from images or scanner made easy.
- ◆ pdf-sync : PDF Reader in JavaScript with Sync.
- ◆ pdmaner : A relational database modeling tool.
- ◆ peazip-appimage : PeaZip Appimage for linux 64bits.
- ◆ pelusica : Action game, control the blue dot with your keyboard/create music.
- ◆ pencil : Pencil2D is an easy, intuitive tool to make 2D hand-drawn animations.
- ◆ pennywise : Open any website or media in a floating window.
- ◆ perfect-dark : A decompilation of Perfect Dark.
- ◆ perl-executing-browser : HTML5 user interface for Perl 5 desktop apps.
- ◆ peruse : A reader application for comic books.
- ◆ pext : Python-based extendable tool.
- ◆ phinch : Phinch is a framework for visualizing biological data.
- ◆ photoflare : A simple but featureful image editor.
- ◆ photoflow : Edit images from digital cameras.
- ◆ photogimp : A patched version of GIMP for Adobe Photoshop users.
- ◆ photoname : Rename photo image files based on EXIF shoot date.
- ◆ photopea : Advanced Photo Editor for professional use.
- ◆ photoqt : View and manage images.
- ◆ photoquick : Light-weight image viewer (resize, collage, filters...).
- ◆ phototeleport : Upload your photos to multiple services at once.
- ◆ phreshplayer : Electron based media player app.
- ◆ pia : Version Portable Outil PIA.
- ◆ picacg-qt-appimage : PicACG Comic PC Client For Linux.
- ◆ picgo : Easy to upload your pic & copy to write.
- ◆ piclist : Cloud storage platform management & file upload tool based on PicGo.
- ◆ picmi : Single player logic-based puzzle game (installs "kdegames").
- ◆ picocrypt : A very small, very simple, yet very secure encryption tool.
- ◆ picturama : Digital image organizer powered by the web.
- ◆ pigs-n-cows : A relaxing game for children and adults alike.
- ◆ pile : App to organize your piled work at one place.
- ◆ pingendo : ???
- ◆ pingnoo : An open source network ping analyser.
- ◆ pingviewer : Ping viewer interface.
- ◆ pinokio : AI Browser.
- ◆ pix-maui : Image gallery and viewer with basic editing features.
- ◆ pixsrt : Pixel sorter.
- ◆ pkg2appimage : Utility to convert .yml recipes to AppDir (see appimagetool).
- ◆ plagpatrol : Detecting documents tampered to bypass plagiarism detectors.
- ◆ planes : Variant of battleships game.
- ◆ planet-blupi : A delirious spell-binding game.
- ◆ platform-tools : Suite of command line utilities to manage Android devices.
- ◆ platinum-md-appimage : Graphical MiniDisc NetMD conversion and upload.
- ◆ play-2048 : Another implementation of the 2048 game.
- ◆ playbox : An audio playback system for the live production industry.
- ◆ playme : Elegant YouTube Music desktop app.
- ◆ play : PlayStation 2 emulator on your computer or mobile device.
- ◆ playyourdamnturn : Desktop Client to assist with playing your damn turns.
- ◆ plexamp : The best little audio player on the planet.
- ◆ plex : The ultimate home theater experience.
- ◆ plotjuggler : The Time Series Visualization Tool that you deserve.
- ◆ plotly-orca-appimage : CLI generating static images of interactive charts.
- ◆ plover : Stenographic input and translation.
- ◆ pnpm : A single file, powered by AppImage.
- ◆ pocket-browser : A FOSS browser made for privacy and going towards security.
- ◆ pocketcasts-electron : Pocket Casts wrapper with mapped media keys.
- ◆ poddr : Podcast client that uses iTunes RSS feeds and Search API.
- ◆ podman-appimage : AppImage of podman.
- ◆ podman-desktop-companion : Podman command line interface.
- ◆ podman : Free & open source tool to manage containers, pods, and images.
- ◆ poe-ladder : Path of Exile ladder viewer.
- ◆ poi-appimage : Scalable KanColle browser and tool.
- ◆ pokete : A terminal based Pokemon like game.
- ◆ polar-bookshelf : Personal knowledge repository for PDF and web content.
- ◆ polar : One-click Bitcoin Lightning networks for local app development.
- ◆ polkakey : A secure way to generate Polkadot/Kusama/Edgeware address.
- ◆ polypane : Browser for web developers.
- ◆ pomotroid : Simple and visually-pleasing Pomodoro timer.
- ◆ popsicle : Multiple USB File Flasher.
- ◆ positron : Manage your movie and show watchlist.
- ◆ postcat : An extensible API tool.
- ◆ postman : API platform for building and using APIs (AppImage).
- ◆ postybirb : Multimedia crossposter for multimedia websites.
- ◆ postybirb-plus : Helps artists post art to multiple websites more quickly.
- ◆ potatopresenter-appimage : Create presentation slides and exported as PDF.
- ◆ powder-toy : AppImage build of The Powder Toy built from source.
- ◆ powerliminals-player : Powerliminal audios in the background (Audio player).
- ◆ powershell : Microsoft PowerShell.
- ◆ ppet3 : Put a cute girl on your desk for more fun.
- ◆ ppsspp : A PSP emulator written in C++.
- ◆ pretty-handy-privacy : User interface for basic encryption tasks.
- ◆ primate : A modern dashboard for Kong Gateway admins.
- ◆ prime-world-editor : Edit world assets from games by Retro Studios.
- ◆ printerclient : A printer client.
- ◆ prisma-studio-appimage : The easiest way to explore and manipulate your data.
- ◆ prismlauncher : Launcher for Minecraft, manage multiple installations.
- ◆ privacy.sexy : Tool to enforce privacy & security best-practices.
- ◆ privaxy : The next generation tracker and ads/advertisement blocker.
- ◆ procdepmonitor : Obtaining information about loaded process dependencies.
- ◆ procspin : CLI to create a process/progress animation with text.
- ◆ procyon : Note Keeper.
- ◆ promethium : Extensible and innovative web browser with built-in AdBlock.
- ◆ proofkeeper : Desktop tool to automate proof management.
- ◆ prospect-mail : An Outlook mail desktop client powered by Electron.
- ◆ protoman : A Postman-like API client for protobuf-based messages.
- ◆ proton-5.11 : Appimage for Wine Proton 32-bit to run on no-multilib systems.
- ◆ protonmail-desktop : Unofficial Electron wrapper for ProtonMail.
- ◆ protonup-qt : Manage Proton-GE/Luxtorpeda for Steam/Wine-GE for Lutris.
- ◆ proxyman : Modern and Delightful HTTP Debugging Proxy.
- ◆ prusa-slicer : Prusa3d/PrusaSlicer, G-code generator for 3D printers.
- ◆ psi+ : Communicate over the XMPP network.
- ◆ pstube : Watch and download videos without ads.
- ◆ psydoom : A backport of PSX Doom to PC.
- ◆ publii : A desktop-based CMS that makes creating static websites fast.
- ◆ pullp : Pull request monitoring app for Github.
- ◆ pulsar : A Community-led Hyper-Hackable Text Editor.
- ◆ pulse : Pulse desktop client.
- ◆ puppetry : Solution for non-developers on top of Puppeteer and Jest.
- ◆ puush-qt : A GUI frontend for puush on Linux.
- ◆ pyappimage : Simple appimage builder for Python applications.
- ◆ pyfa-appimage : EVE Online Fitting Assistant.
- ◆ python2.7 : Interactive high-level object-oriented language (version 2.7).
- ◆ python3.10 : Interactive high-level object-oriented language (version 3.10).
- ◆ python3.11 : Interactive high-level object-oriented language (version 3.11).
- ◆ python3.12 : Interactive high-level object-oriented language (version 3.12).
- ◆ python3.5 : Interactive high-level object-oriented language (version 3.5).
- ◆ python3.6 : Interactive high-level object-oriented language (version 3.6).
- ◆ python3.7 : Interactive high-level object-oriented language (version 3.7).
- ◆ python3.8 : Interactive high-level object-oriented language (version 3.8).
- ◆ python3.9 : Interactive high-level object-oriented language (version 3.9).
- ◆ qaterialgallery : Demonstrate Qaterial library.
- ◆ qaterialhotreload : Qml HotReload software.
- ◆ qawl : Read the Holy Qur’ān whenever, wherever, however you like.
- ◆ qbittorrent : A powerful QT-based Bittorrent Client (official AppImage).
- ◆ qbittorrent-enhanced : Unofficial qBittorrent Enhanced, based on qBittorrent.
- ◆ qbittorrent-lite : Bittorrent Client.
- ◆ qctools : Quality Control Tools for Video Preservation.
- ◆ qdriverstation : Cross-platform clone of the FRC Driver Station.
- ◆ qelectrotech : Edit electrical diagrams.
- ◆ qemu-appimage : Prove of the concept to run a virtual machine from Appimage.
- ◆ qemu-ppc : Run PowerPC operating systems on 64-bit Intel Linux hosts.
- ◆ qfsm : Qt Finite State Machine Designer.
- ◆ qgroundcontrol-appimage : Ground control for unmanned vehicles.
- ◆ qikqr : Minimal desktop app to create QR codes.
- ◆ qmasterpassword : A password manager based on Qt.
- ◆ qmediathekview : An alternative front-end to the MediathekView database.
- ◆ qmidictl : MIDI Remote Controller via UDP/IP Multicast.
- ◆ qmidinet : MIDI Network Gateway via UDP/IP Multicast.
- ◆ qmplay2 : Video and audio player whit support of most formats and codecs.
- ◆ qnapi : Qt-based, multi-engine, multi-platform subtitle downloader.
- ◆ qortal-ui : Decentralize the world (data storage, communications).
- ◆ qownnotes : Plain text notepad and todo list manager.
- ◆ qpdf : CLI tool to perform content-preserving transformations on PDF files.
- ◆ qppcad : Molecule and crystal editor written in c++
- ◆ qprompt : Personal teleprompter software for all video creators.
- ◆ qqmusic-appimage : A music player from Tencent.
- ◆ qradiolink : Multimode SDR transceiver for GNU radio.
- ◆ qr-code-generator : Create custom QR Codes, resize, save them as PNG image.
- ◆ qrop : Crop planning and recordkeeping software.
- ◆ qsdrswr : Qt SWR analyser using an SDR and soapy_power.
- ◆ qtads : A cross-platform, multimedia interpreter for TADS adventure games.
- ◆ qtalarm : Alarm clock for Computers.
- ◆ qtchan : 4chan browser in qt5.
- ◆ qt-dab : Listening to terrestrial Digital Audio Broadcasting.
- ◆ qtjsondiff : Json difference checker widget and viewer.
- ◆ qtmips : Qt Mips emulator.
- ◆ qtox : Qt 5 based Tox instant messenger for secure communication.
- ◆ qtractor : An Audio/MIDI multi-track sequencer.
- ◆ qt-raster-lines : Lines between points using rasterization (DDA, Bresenham).
- ◆ quamodbusclient : Modbus to OPC UA Gateway
- ◆ quark-player : An Electron based Web Video Services Player.
- ◆ quark : Sketchbook for rapid prototyping and development of your projects.
- ◆ quarto-cli : Scientific and technical publishing system built on Pandoc.
- ◆ quaternion : A Qt5-based IM client for Matrix.
- ◆ quba-appimage : A viewer for electronic invoices.
- ◆ qucs-s : An Universal GUI for Circuit Simulators.
- ◆ quentier : Note taking app integrated with Evernote.
- ◆ quick-clone : Search through gitlab and clone git-repositories.
- ◆ quickredis : A free Redis Desktop manager.
- ◆ quicktwitch : Electron React Redux Boilerplate.
- ◆ quickviewer : A image viewer application for folders/archives.
- ◆ quokkagit : A small, TortoiseGit inspired git log viewer for linux.
- ◆ qv2ray : Cross-platform v2ray GUI Client in Qt.
- ◆ qview : Practical and minimal image viewer.
- ◆ qxgedit : QXGEdit is a Qt GUI XG editor application.
- ◆ r2modman-appimage : Mod manager for several Unity games using Thunderstore.
- ◆ r3play : High-value third-party Netease cloud player (chinese).
- ◆ rabix-composer : A desktop IDE for working with Common Workflow Language.
- ◆ radioit : Automation software for Radios.
- ◆ radix-wallet : Radix DLT desktop wallet.
- ◆ rainbow-board : 22nd Century Whiteboard App for Linux, Windows and Mac.
- ◆ rambox : Free and Open Source messaging and emailing app.
- ◆ rare : GUI for legendary. An Epic Games Launcher open source alternative.
- ◆ rasterdraw : Simple shape drawn using rasterisation.
- ◆ rasterview : Raster Viewer for CUPS-Raster, Apple-Raster and PWG-Raster.
- ◆ rats-search : P2P BitTorrent search engine.
- ◆ raven-reader : Simple Desktop RSS Reader made using VueJS.
- ◆ rawtherapee : An advanced raw photo development program.
- ◆ rbdl-toolkit : Application for visualizing and working with rbdl models.
- ◆ rbdoom-3 : Doom 3 BFG Edition source port with updated DX12/Vulkan renderer.
- ◆ rclone-browser : Simple cross platform GUI for rclone.
- ◆ reactotron : Reactotron desktop mode engage.
- ◆ realm-studio : A tool for everything Realm.
- ◆ record-compare : Record Compare.
- ◆ redeclipse : A great first person 3D arena shooter with online support (game).
- ◆ redis-gui-appimage : Modern graphical user interface to peek into redis DB.
- ◆ redis-viewer-appimage : A Redis visualization client tool.
- ◆ redminetimetracker : Time Tracking tool for Redmine.
- ◆ reliefvalve : Helps manage the Steam client application.
- ◆ remnote : Build your Knowledge Base anywhere and without distractions.
- ◆ reor : AI note-taking app that runs models locally.
- ◆ responsively : A browser for developing responsive web apps.
- ◆ retroarch : Frontend for emulators, game engines and media players.
- ◆ retroshare : Securely share files with your friends.
- ◆ revealed : A platform and store for apps, games, and more.
- ◆ revolt : Revolt Desktop App.
- ◆ rhb : Rapid HTML Builder/Prototyper.
- ◆ rhythmbox : The popular Audio Player Rhythmbox.
- ◆ ricochet : Anonymous peer-to-peer instant messaging.
- ◆ ricochlime : Satisfying slime shooter.
- ◆ ridereceipts : Automation app to download and organize your tax invoices.
- ◆ ripcord : Chat client for group-centric services like Slack and Discord.
- ◆ ripes : Graphical processor simulator and assembly editor for the RISC-V ISA.
- ◆ rmg : Rosalie's Mupen GUI.
- ◆ rmw : A safe-remove utility for the command line.
- ◆ roborock-control-center : Control Your Xiaomi Vacuum.
- ◆ rofi : A window switcher, runs dialogs, dmenu like, etc (Unofficial AppImage).
- ◆ roloviewer : Image slideshow viewer.
- ◆ rotki : A portfolio tracking, asset analytics and tax reporting app.
- ◆ rpan-studio : OBS Studio with RPAN integration.
- ◆ rpcs3 : An open-source PlayStation 3 emulator/debugger written in C++.
- ◆ rquickshare : Rust implementation of NearbyShare/QuickShare from Android.
- ◆ rssguard : Feed reader which supports RSS/ATOM/JSON (no-webengine version).
- ◆ rstudio : RStudio is an integrated development environment (IDE) for R.
- ◆ rtneuron : Framework for geometrically detailed neuron simulations.
- ◆ ruffle : A Flash Player emulator written in Rust.
- ◆ rufus : Logiciel de gestion de cabinet d'Ophtalmologie.
- ◆ runanode : Lets run a node.
- ◆ runelite : Open source Old School RuneScape client.
- ◆ runjs : JavaScript playground. Write code with Node.js & browser APIs access.
- ◆ running-dinner-tool : Running Dinner Tool.
- ◆ rustdesk : Virtual/remote desktop infrastructure, like TeamViewer/Citrix.
- ◆ rx-bin : A modern and extensible pixel editor implemented in Rust.
- ◆ ryowallet : Modern GUI interface for Ryo Currency.
- ◆ ryujinx-appimage : Unofficial AppImage of the Ryujinx emulator.
- ◆ ryujinx : A simple, experimental Nintendo Switch emulator.
- ◆ sabaki : Modern, elegant, cross-platform Go/Baduk/Weiqi game board.
- ◆ saber : A (work-in-progress) cross-platform libre handwritten notes app.
- ◆ safe-multisig : Allowing crypto users manage funds in a safer way.
- ◆ samanager : Manage your Prestashop online Store.
- ◆ saphyr : A C++ like compiler.
- ◆ satisfactory : Satisfactory Mod Manager.
- ◆ saucedacity : Audio editor based on Audacity focusing on general improvements.
- ◆ savvycan : Facilitates reverse engineering of canbus captures.
- ◆ sayonara : Music player and music library admininstration.
- ◆ sbe : An unofficial Scrapbox desktop app.
- ◆ sblauncher : Minecraft Launcher.
- ◆ scatter : Scatter desktop signature server.
- ◆ scavengers : Unity Roguelike tutorial (game).
- ◆ sc-controller : User-mode driver and GTK3 based GUI for Steam Controller.
- ◆ schildichat : A Matrix Client.
- ◆ school-sections : This project was generated with Angular CLI v1.7.4.
- ◆ sciencefair : Desktop science reading app for Linux.
- ◆ scilab : Scientific software package for numerical computations.
- ◆ scraper : Simple desktop scraper app.
- ◆ scratux : Linux client for scratch programming.
- ◆ scrcpy : Display and control your Android device.
- ◆ screencloud : Capture and share screenshots easily.
- ◆ scribus : Powerful desktop publishing software.
- ◆ scrite : Multilingual Screenplay Writing App from TERIFLIX.
- ◆ scrum-retroboard : Electron application based on React.
- ◆ scytale : Scytale Desktop Client for Linux.
- ◆ selenium-ide : Open Source record and playback test automation for the web.
- ◆ sengi : A multi-account desktop client for Mastodon and Pleroma.
- ◆ sentinel-appimage : An open-source decentralized VPN network application.
- ◆ serialplot : Small and simple software for plotting data from serial port.
- ◆ serial-studio : Multi-purpose serial data view program.
- ◆ serioussamtfe : Game engine for Serious Sam Classic (TFE).
- ◆ serioussamtfe-vk : Game engine for Serious Sam Classic (Vulkan support, TFE).
- ◆ serioussamtse : Game engine for Serious Sam Classic (TSE).
- ◆ serioussamtse-vk : Game engine for Serious Sam Classic (Vulkan support, TSE).
- ◆ ser-player : Video player for SER files used for astronomy-imaging.
- ◆ session-desktop : Onion routing based messenger.
- ◆ sfbrename : Bulk file renamer.
- ◆ sfrt-attendance : The attendance tracking program for robotics.
- ◆ sf-tube : Watch and download videos without ads.
- ◆ shadow : Run Windows-based applications on the devices you own.
- ◆ shadowsocks : Shadowsocks GUI client.
- ◆ shannon-calculator : Self-information content of a message text.
- ◆ sharemyhost : One click to share your files in your local network.
- ◆ sharp-tune : Music player build upon the node using the electron.
- ◆ sheikah : A Witnet compatible desktop wallet.
- ◆ shelf-maui : Document viewer for various document formats.
- ◆ shipwright : Ship of Harkinian.
- ◆ shotcut : A powerful Video Editor.
- ◆ shradiko : Make Portable AppImages from Distro Packages.
- ◆ shutter : Professional converter & compression tool designed by video editors.
- ◆ shuttle : The fastest access to your favorite applications.
- ◆ sideload : Utility (from elementaryOS 6) to install Flatpak apps from Flathub.
- ◆ sigdigger : Signal analyzer, using Suscan core and Sigutils DSP library.
- ◆ sigma-file-manager : A free, open-source, modern file manager.
- ◆ sigmaspectra : Semi-automated selection and scaling of time series.
- ◆ sigrok-cli : Control your logic analyzer, oscilloscope, or MSO.
- ◆ siliconsneaker : View runs from your Garmin brand watch
- ◆ silverkey : The best Qt Application Ever.
- ◆ simdock : Small dock with pseudo-transparency and good window handling.
- ◆ simdsp : DSP Simulator.
- ◆ simplechroot : Simple command line chroot with ease.
- ◆ simpleinstabot : Simple Instagram bot.
- ◆ simplenote-electron : Simplenote for Web, Windows, and Linux.
- ◆ simpleos : EOS Blockchain Interface & Wallet.
- ◆ simple-s3-uploader : Easily uploading files and sharing links via AWS S3.
- ◆ simplescreenrecorder : Feature-rich screen recorder supporting X11 & OpenGL.
- ◆ simple-timer : A really simple timer with a customizable logo and heading.
- ◆ simplex-chat : First messaging platform operating without user identifiers.
- ◆ simtoolkitpro-appimage : The all-in-one flight simulation EFB.
- ◆ singlebox : AppView template for WebCatalog.
- ◆ sioyek : PDF viewer designed for reading research papers and technical books.
- ◆ sipgate-softphone : The sipgate softphone is developed directly by sipgate.
- ◆ siril : Astronomical image (pre-)processing program.
- ◆ siyuan-appimage : A local-first personal knowledge management system.
- ◆ skrifa : A simple word processor built with web technologies.
- ◆ skrooge : A personal finances manager, powered by KDE.
- ◆ skype : VoIP-based videoconferencing, voice calls and instant messaging app.
- ◆ slackbackup : An app to archive Slack messages.
- ◆ slacktronic : Connect your Slack workspace to Arduino.
- ◆ slang-ed : An Electron/Ionic app to edit i18n language translations files.
- ◆ sleek : Multiplatform todo.txt manager.
- ◆ slic3r-appimage : Open Source toolpath generator for 3D printers.
- ◆ slippi : Slippi Launcher program for browsing and playing replays.
- ◆ smallbasic : A fast and easy to learn BASIC language interpreter.
- ◆ smartgit : A Git-Client.
- ◆ smartservogui : Scan for servo devices easily view.
- ◆ smath-studio : Tiny, but powerful mathematical program with WYSIWYG editor.
- ◆ smf-dsp : Standard MIDI file player.
- ◆ smplayer : Media Player with built-in codecs for all audio and video formats.
- ◆ smuview-appimage : A Qt based source measure unit GUI for sigrok.
- ◆ snake-js : Canvas/JavaScript based Snake Game with support for controllers.
- ◆ snapshot-slider : Present/print/email Snapshots of modern mathematics.
- ◆ snes9x : Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
- ◆ snippetstore : A snippet management app for developers.
- ◆ snomcontrol : An application to control snom (D)3xx phones from the desktop.
- ◆ snowball : Find and filter literature, fast.
- ◆ soapy-sdr : I/Q recorder and processor using SoapySDR as backend.
- ◆ socnetv : Social Network Analysis and Visualization software.
- ◆ software-challenge-gui : GUI für die Software-Challenge.
- ◆ soil-editor : A tool to edit the soil properties (CRITERIA1D).
- ◆ solarwallet : Stellar wallet. Secure and user-friendly.
- ◆ soniclineup : Comparative visualisation of multiple audio files.
- ◆ sonicvisualiser : Viewing and analysing the contents of music audio files.
- ◆ sonist : Music Player.
- ◆ sonixd : A full-featured Subsonic/Jellyfin compatible desktop music player.
- ◆ soul-arena : Bleach-based online multiplayer strategy game.
- ◆ sourcetrail : Source explorer to get you productive on unfamiliar source code.
- ◆ spacebar-debug : Extendable discord-compatible native Spacebar client (debug).
- ◆ spacebar : Themeable and extendable discord-compatible native Spacebar client.
- ◆ spacecadet : Reverse engineered port of 3D Pinball for Windows XP Space Cadet.
- ◆ spacemesh : Spacemesh App (Smesher + Wallet).
- ◆ spacewars : A re-imagining of the classic game Spacewar using Amethyst engine.
- ◆ spark.payments : Terminal app for processing DASH payments.
- ◆ spark-wallet : A wallet GUI for c-lightning, accessible over web/mobile/pc.
- ◆ speaky-miniplayer : A miniplayer with a synthetic radio speaker.
- ◆ speed-dreams : A Torcs fork, 3d motorsport simulation and race cars game.
- ◆ speedyloader : Speeduino universal firmware loader.
- ◆ speek : Privacy focused messenger.
- ◆ spiritfarer : Spiritfarer (AppImage version).
- ◆ spivak : Karaoke player based on GStreamer and Qt5.
- ◆ spm : A simple CLI package manager written in bash mainly for AppImages.
- ◆ spotify : A proprietary music streaming service (from Arch User Repository).
- ◆ spotube : Open source Spotify client that doesn't require Premium.
- ◆ springboard : Electron-based SpringRTS Launcher app.
- ◆ sqlitebrowser : DB Browser is a light GUI editor for SQLite databases.
- ◆ squirreldisk : Cross-Platform and Super Fast Disk Usage Analysis Tool in Rust.
- ◆ srb2k-appimage : AppImage Package for Sonic Robo Blast 2 Kart (game).
- ◆ ssh-mitm : Server for security audits supporting public key authentication.
- ◆ stacer : Linux System Optimizer and Monitoring.
- ◆ stackandconquer : A challenging tower conquest board game "Mixtour" inspired.
- ◆ standard-notes : A simple and private place for your notes.
- ◆ starc : Story Architect, reinventing the screenwriting software.
- ◆ staruml : A sophisticated software modeler (v3.2.2).
- ◆ stash-electron : The friendly secret storage made for teams.
- ◆ station : A single place for all of your web applications.
- ◆ station-maui : Terminal emulator with quick functions support for touch.
- ◆ statsbook-tool : A tool for error checking WFTDA Statsbooks.
- ◆ statuspilatus : Monitor your PC like never before.
- ◆ steamcad : 2D CAD especially designed to draw steam locomotives.
- ◆ steamdepotdownloadergui : Easily download older versions of games from Steam.
- ◆ steam-rom-manager : An app for managing ROMs in Steam.
- ◆ steam : The ultimate destination for playing, discussing, and creating games.
- ◆ steem-messenger : Messer for Steem.
- ◆ stele : Kiosk app wrapper for museum media exhibits.
- ◆ stellarium : Planetarium that shows a realistic sky in 3D.
- ◆ stereophotoview : 3d stereoscopic photo/video viewer and editor.
- ◆ sticker-convert : Convert (animated) stickers.
- ◆ stockstalk : Your stocks on your desktop.
- ◆ stoplight : The kickass API platform.
- ◆ storaji : The Light/Responsive Inventory Management System.
- ◆ storyboarder : Visualize a story as fast you can draw stick figures.
- ◆ strans : A powerful command-line utility.
- ◆ strata : Semi-automated selection and scaling of time series.
- ◆ strawberry : Music player and collection organizer (Clementine fork).
- ◆ streamcapture2 : Download video streams.
- ◆ streamdock : Streaming service viewer.
- ◆ streamlink : Command-line which pipes video streams from various services.
- ◆ streamlink-twitch-gui : A multi platform Twitch.tv browser for Streamlink.
- ◆ streamon : Create streaming links to instagram live.
- ◆ stretchly : App that reminds you to take breaks when working on your PC.
- ◆ strike-maui : Simple convergent IDE.
- ◆ strongbox : A World of Warcraft Addon Manager aimed at Linux players.
- ◆ structure : A knowledge management tool.
- ◆ stunt-car-remake : Remake of the old game Stunt Car Racer.
- ◆ subillmanager : A simple Flutter app to manage electricity bill.
- ◆ substrate-ide : Graphic IDE for developing Substrate blockchains.
- ◆ subsurface : Official upstream of the Subsurface divelog program.
- ◆ subtitle-composer : KF5/Qt Video Subtitle Editor for KDE.
- ◆ subtitler : Quickly download subtitles.
- ◆ sugarizer : A taste of Sugar on any device.
- ◆ sultanpos : Simple POS for minimarket.
- ◆ summoners.war.exporter : To parse intercepted data from Summoners War.
- ◆ sumoco : Simple Unified Model for Orthopaedics.
- ◆ sunamu : Show your currently playing song in a stylish way.
- ◆ sunsama-appimage : The daily planner for elite professionals.
- ◆ sunshine : Sunshine is a Gamestream host for Moonlight.
- ◆ sup : A Slack client with WhatsApp like UI.
- ◆ superpaper : A cross-platform multi monitor wallpaper manager.
- ◆ superproductivity : An advanced todo list app with integrated Timeboxing.
- ◆ superslicer-bin : G-code generator for 3D printers.
- ◆ superslicer-prerelease-bin : G-code generator for 3D printers.
- ◆ supertag : A tag-based filesystem written in Rust.
- ◆ supertux : Classic 2D jump'n run sidescroller game inspired to Super Mario.
- ◆ supertuxkart-appimage : Racing game focused on Fun (Unofficial AppImage).
- ◆ supertuxkart : The original Free kart racing game focused on Fun!
- ◆ suyu : Open-source, Nintendo Switch emulator, continuation of yuzu.
- ◆ svelte-electron : Create desktop apps with this Svelte boilerplate.
- ◆ swaglyrics : SwagLyrics AppImage (unofficial).
- ◆ swc-minecraft-launcher : SWC Minecraft Launcher.
- ◆ sweeper : System Cleaner (installs "kdeutils").
- ◆ sweethome3d : An interior design app to draw house plans & arrange furniture.
- ◆ swell : Testing for streaming APIs, right at your desktop.
- ◆ swift : Communicate over the Jabber/XMPP network (v4.0.2).
- ◆ swiftnessx : Electron application boilerplate based on React/Webpack.
- ◆ swifty : Free Offline-first Password Manager for MacOS, Windows and Linux.
- ◆ switchhosts : Switch hosts quickly!
- ◆ swradio : Shortwave receiver for use with sdrplay/hackrf/dabsticks/pmsdr.
- ◆ symphonium : A tool to help when learning to play the piano.
- ◆ syncmyl2p : L2P synchronisation tool.
- ◆ syncplay : Synchronize video playback over network.
- ◆ syncthing-tray : Tray application for Syncthing.
- ◆ synfigstudio : A free and open-source 2D animation software (graphics).
- ◆ synthein : A space ship building and combat game.
- ◆ synthv1 : An old school polyphonic synthesizer.
- ◆ szyszka : Szyszka is fast and powerful file renamer.
- ◆ tablo-tools : Tools to Bulk Delete and Export from Tablo DVR.
- ◆ tag-editor : Tag Editor (supports MP4, ID3, Vorbis, Opus, FLAC and Matroska).
- ◆ tagspaces : An offline, open source, document manager with tagging support.
- ◆ tagstoo : Tagstoo tagging application.
- ◆ tagtime-desktop : Time tracking for space cadets, desktop edition.
- ◆ taskizer : A task management app.
- ◆ tastee-ui : Tool helping you write executable specifications in your lang.
- ◆ tc : A desktop chat client for Twitch.
- ◆ teams : Business communication platform developed by Microsoft (AppImage).
- ◆ teledrive : Automatically backup Telegram Saved Messages.
- ◆ telegram : Desktop version of Telegram messaging app.
- ◆ terminalos-sim : A terminalOS simulator.
- ◆ teslacam-browser : A minimal TeslaCam Browser.
- ◆ tesler : The Tesla Sentinel Viewer.
- ◆ tess : A hackable, simple, rapid and beautiful terminal.
- ◆ tesseract : Tesseract Open Source OCR Engine AppImage.
- ◆ texmacs : Free scientific text editor, inspired by TeX and GNU Emacs.
- ◆ texstudio : LaTeX development environment.
- ◆ textosaurus : Cross-platform text editor based on Qt and Scintilla.
- ◆ thedesk : Mastodon Client for PC.
- ◆ theframe : Animation tool.
- ◆ theia-blueprint : Building desktop-based products based on Eclipse Theia.
- ◆ thermusqt : Calculate particle composition of hadronic state.
- ◆ theweb : Web Browser.
- ◆ thief : An innovative cross-platform fishing tool (in chinese).
- ◆ thinktool-desktop : Desktop application for Thinktool.
- ◆ thinreports-section-editor : A template editor for Thinreports.
- ◆ thlink : Touhou Project Game Netplay Tool.
- ◆ thoptv-appimage : Enjoy Ultimate Movies, sports Matches, IPL and Latest Shows.
- ◆ thorium-avx2 : AVX2 Linux builds of Thorium Browser.
- ◆ thorium-client : A locked-down electron kiosk for Thorium.
- ◆ thorium-reader : Desktop application to read ebooks.
- ◆ thorium-sse3 : Web Browser, Chromium fork with Widevine and FFmpeg support.
- ◆ thorium : Web Browser, a Chromium fork including Widevine and FFmpeg support.
- ◆ thunderbird-appimage : Mail client's Unofficial AppImage (Stable).
- ◆ thunderbird-beta-appimage : Mail client's Unofficial AppImage (Beta).
- ◆ thunderbird-beta : Free and open source eMail client (Beta Edition).
- ◆ thunderbird : Free and open source eMail client (Stable).
- ◆ thunderbird-nightly-appimage : Mail client's Unofficial AppImage (Nightly).
- ◆ thunderbird-nightly : Free and open source eMail client (Nightly Edition).
- ◆ tidal-hifi-appimage : The web version of listen.tidal.com running in electron.
- ◆ tilde-podcast : Podcast client to listen to all you favorite podcasts.
- ◆ tiled : Tile map editor.
- ◆ tilinggenerator : Generator of regular and irregular tilings.
- ◆ timenaut-appimage : Desktop time tracking application.
- ◆ timer : Time recurring events.
- ◆ tipitaka-pali-reader : A Pali Reading app made in Flutter.
- ◆ tmon : A simple CLI tool for monitoring/reporting CPU temperatures.
- ◆ tmux-appimage : Tmux AppImage build via Docker.
- ◆ tnt : A computer-assisted translation tool.
- ◆ tockler : An application that tracks your time by monitoring.
- ◆ todo-bash : Todo list for the Bash command line.
- ◆ todoist : Todoist for linux.
- ◆ todorust : Simple ToDoList made in rust.
- ◆ tomatox : An online free VIP video analysis player (in chinese).
- ◆ tonuino-toolbox : SD card manager for your Tonuino.
- ◆ topgrade : Upgrade all the things, this is the universal upgrade manager.
- ◆ tor-browser : Privacy-oriented Web Browser for sites blocked in your country.
- ◆ torcs : The 3D Open Racing Car Game and Simulator.
- ◆ torrenttools : Cli tool to inspect/create/edit BitTorrent metafiles.
- ◆ toughcookies : A modern flash cards study and management app.
- ◆ trader : Play Star Traders, a simple game of interstellar trading.
- ◆ trans : CLI translator using Google/Bing/Yandex Translate, etc...
- ◆ translatium : Translate Any Languages like a Pro.
- ◆ transmission-gtk : Fast, easy, and free BitTorrent client (GTK+ GUI).
- ◆ transmissionic : Remote for Transmission Daemon.
- ◆ trezor-suite : Trezor Suite desktop application.
- ◆ triagem-touch : Novo SGA triage client.
- ◆ trinity-desktop : Desktop wallet for IOTA.
- ◆ tropy : Research photo management.
- ◆ tt : A simple Time Tracker to stay basic and intuitive.
- ◆ tts-now : A chinese text-to-speech assistant based on the speech synthesi.
- ◆ ttth : An electron based desktop app for online services.
- ◆ tulip : Large graphs analysis, drawing and visualization framework.
- ◆ tumblr-downloader-gui : Download Tumblr posts that you liked.
- ◆ tumblr-scraper : Scrape a Tumblr profile for user uploadede posts.
- ◆ tunepack : Finding and download HQ audio files.
- ◆ turbowarp : Scratch mod with a compiler to run projects faster.
- ◆ turntable : Simple youtube DJ app made with Electron and Angular4.
- ◆ tusk : Evernote desktop app.
- ◆ tutanota : The world's most secure email service, easy to use and private.
- ◆ tvalb : Watch your favorite Albanian TV channels through your PC.
- ◆ t.viewer : Cross Platform Tizen Log Viewer.
- ◆ twake : Desktop App for Twake.
- ◆ tweaksophia : An app to automatically renew the books of the SophiA system.
- ◆ tweet-tray : Tweet quickly from the desktop without any distractions.
- ◆ twetter : Client for the pubsub app.
- ◆ twitch-wrapper : An Electron wrapper for Twitch.tv.
- ◆ ubports-installer : A simple tool to install Ubuntu Touch on UBports devices
- ◆ uhk.agent : Configuration app of the Ultimate Hacking Keyboard.
- ◆ uivonim : Fork of the Veonim Neovim GUI.
- ◆ ultragrid : UltraGrid low-latency audio/video network transmission system.
- ◆ ultrascreen : Share your screens with friends.
- ◆ uncov : A tool that collects and processes code coverage reports.
- ◆ unetbootin : Install Linux/BSD distributions to a partition or USB drive.
- ◆ ungoogled-chromium : Chromium Web Browser without Google services.
- ◆ unified-communications : Unified Communication from Mundio Mobiles.
- ◆ unishellect : JSON parser file and menu customizez Hyper-inspired.
- ◆ unityhub : Streamlines the way you find, download and manage your Projects.
- ◆ unoffical-flomo : Unoffical Flomo Appimage Client.
- ◆ unoffical-microsoft-loop : People who want to create together with ease.
- ◆ unoffical-qwerty-learner : Words learning and English muscle memory training.
- ◆ unoffical-sonos-controller : Unoffical sonos controller for linux.
- ◆ unoffical-weread : Unoffical WeRead Appimage Client.
- ◆ unoffical-xiaohongshu : Unoffical xiaohongshu Appimage Client.
- ◆ unoffical-yuque : Unoffical YuQue Appimage Client.
- ◆ unofficial-zalo : Unofficial Zalo App.
- ◆ unreel : A GUI to create Reveal presentations.
- ◆ updatedeployqt : Tool to deploy auto update for qt applications.
- ◆ upscayl : Free and Open Source AI Image Upscaler.
- ◆ upterm : A terminal emulator for the 21st century.
- ◆ urbanterror : A team-based tactical game shooter based on the Quake 3 Engine.
- ◆ utilso : Regex Tester, JWT Verify, Image Converter, Format JSON, Decode...
- ◆ uyou : This is a todo list with electron.
- ◆ v2ray-desktop : V2Ray GUI client for Linux.
- ◆ valentina : Open source pattern-making software.
- ◆ valeronoi : Companion app for Valetudo for generating WiFi heat maps.
- ◆ vcloudcam : Solution for the camera systems of gas and fuel stations.
- ◆ vechain : A browser that empowers DApps on VeChain.
- ◆ ventoy : Tool to create bootable USB drive for ISO/WIM/IMG/VHD(x)/EFI files.
- ◆ verto : A multi-currency crypto wallet with support for EOS & VTX.
- ◆ vesktop : Vesktop gives you the performance of web Discord.
- ◆ vessel : A simple wallet for managing your Steem accounts.
- ◆ vgmtrans : A tool to convert proprietary, sequenced videogame music.
- ◆ vhc-viewer-wayland : Vulkan Hardware Capability Viewer.
- ◆ vhc-viewer-x11 : Vulkan Hardware Capability Viewer.
- ◆ via-appimage : Your keyboard's best friend.
- ◆ vial-appimage : GUI and a QMK fork for configuring your keyboard in real time.
- ◆ viber : Proprietary cross-platform IM and VoIP software.
- ◆ vidcutter : Simple and fast video cutter and joiner.
- ◆ video-hub : A fastest way to browse and search for videos on your computer.
- ◆ videomass : Free, open source and cross-platform GUI for FFmpeg.
- ◆ vieb : Vim Inspired Electron Browser.
- ◆ vifm : File manager with curses interface providing Vim-like environment.
- ◆ vigad : Extract live-data from your screen.
- ◆ vikunja : The open-source, self-hostable to-do app.
- ◆ violetbug : Roku Debugger Graphical Interface.
- ◆ viper-browser : Fast and lightweight Qt web browser.
- ◆ viper : Launcher and Updater for TF2 Northstar.
- ◆ vipster : Visual periodic structure editor.
- ◆ vircadia : Open Source continuation of the High Fidelity metaverse.
- ◆ virtscreen : Make your iPad/tablet/computer into a secondary monitor on Linux.
- ◆ visual-define-xml-editor : Editor for CDISC Define-XML standard.
- ◆ visualfamilytree : Create a family tree with information and pictures.
- ◆ vita3k : Experimental PlayStation Vita emulator.
- ◆ vitomu : Easy to use video to audio converter.
- ◆ vivaldi-snapshot : Advanced Web Browser (Testing Version).
- ◆ vivaldi-stable : Advanced Web Browser (Stable Version).
- ◆ vivifyscrum : Agile Tool for Professionals.
- ◆ vizgraph : A simple tool for Using Graphviz.
- ◆ vk-desktop : Cross-platform client VKontakte.
- ◆ vk-music-fs : Listen to the music from VK.
- ◆ vlc-cmatomic : Video player (version 3.0.11.1) build from source.
- ◆ vlc : Free and Open Source Video & Media player for Audio, streaming and more.
- ◆ vlc-git : Free and Open Source Video & Media player (GIT version).
- ◆ vlc-icflorescu : Video player (version 3.0.3) build from source.
- ◆ vlc+ : Video & Media player for Audio, streaming and more (with JAVA support).
- ◆ vnote : Note-taking application for pleasant Markdown.
- ◆ vocabsieve : Simple sentence mining tool for language learning.
- ◆ voicevox : Offical Frontend for the free VOICEVOX TTS Engine.
- ◆ vpaint : Experimental vector graphics and 2D animation editor.
- ◆ vrest-ng : Zero code API test automation solution.
- ◆ vscodium : Community-driven, freely-licensed binary distribution of MS VSCode.
- ◆ vue-calc : A Simple VueJS's Calculator built with ElectronJS.
- ◆ vuerd : A desktop ERD app.
- ◆ vup : Private and decentralized cloud storage.
- ◆ vvave-maui : Manage your music collection and stream it from the cloud.
- ◆ walc : WhatsApp Linux Client (Unofficial).
- ◆ wallettech : BytechCoin GUI Wallet.
- ◆ warp-terminal : Terminal reimagined with AI and collaborative tools.
- ◆ watched : A media player and a browser for Excellent entertainment.
- ◆ watchflower : Read and plot datas from your Xiaomi devices.
- ◆ watchit : Open movies everywhere.
- ◆ waterfox : Browse the World Wide Web, current version.
- ◆ waterfox-classic-appimage : Browse the World Wide Web (legacy UI).
- ◆ waterfox-classic : Browse the World Wide Web (legacy UI).
- ◆ waterfox-g-appimage : Browse the World Wide Web (current version).
- ◆ wavebox : The next generation of web-desktop communication.
- ◆ wazo-desktop-appimage : Wazo desktop client for wazo VOIP server.
- ◆ weakauras : App to provide missing link between Wago.io and World of Warcraft.
- ◆ weatherdump : A WeatherDump GUI.
- ◆ webamp : Winamp Player 2.9 reimplementation in HTML5 and JS.
- ◆ webcamoid : A full featured and multiplatform webcam suite.
- ◆ webcord : A Discord and Fosscord client implemented without Discord API.
- ◆ webdesktop : WebDesktop make apps with just a text editor and nodejs.
- ◆ webitel-phone : Webitel Phone (Alpha).
- ◆ webkitty : Local web development IDE.
- ◆ webrecorder : A complete packaging of Webrecorder hosted service in Electron.
- ◆ weektodo : WeekToDo is a Free and Open Source Weekly Planner.
- ◆ westeroscraftlauncher : Custom launcher for modded Minecraft (game).
- ◆ wewechat++ : Make weweChat great again!!! 美丽的第三方微信PC客户端
- ◆ wewechat : Unofficial WeChat client built with React, MobX and Electron.
- ◆ wexond : Extensible, fast and innovative web browser with material UI.
- ◆ wezterm : A GPU-accelerated terminal emulator and multiplexer.
- ◆ whalebird : An Electron based Mastodon client.
- ◆ whatsapp-for-linux : WhatsApp Linux Client (Unofficial).
- ◆ whatsapp-nativefier : Electron-based WhatsApp Linux Client (Unofficial).
- ◆ whirlpool-gui-appimage : Desktop GUI for Whirlpool by Samourai-Wallet.
- ◆ whiteboard : Activity-based slideshow for coding webinars and presentations.
- ◆ whu-library-seat : Wuhan University Library Assistant (for Jinan University).
- ◆ widelands : Real-time strategy game with singleplayer campaigns.
- ◆ windows2usb : Flash Drive burning utility (MBR/GPT, BIOS/UEFI, FAT32/NTFS).
- ◆ windows95 : Windows 95 in Electron. Runs on macOS, Linux, and Windows.
- ◆ wine32 : Compatibility layer to run only 32-bit Windows programs (Stable).
- ◆ wine32-deploy : Tool for creating AppImages for 32-bit Microsoft Windows apps.
- ◆ wine-4.21 : Appimage for Wine 32-bit you can run on no-multilib systems.
- ◆ wine-5.11 : Appimage for Wine 32-bit you can run on no-multilib systems.
- ◆ wine-6.0.1 : Appimage for Wine 32-bit you can run on no-multilib systems.
- ◆ wine-devel : Compatibility layer to run x86_64 Windows programs (Dev Edition).
- ◆ wine : Run Windows programs (select a version from mmtrt/WINE_AppImage).
- ◆ wine-stable : Compatibility layer to run x86_64 Windows programs (Stable).
- ◆ wine-staging : Compatibility layer to run x86_64 Windows programs (Staging).
- ◆ wine-staging-ge-proton : Run x86_64 Windows programs (Staging GE Proton).
- ◆ wire : The most secure collaboration platform.
- ◆ wishdemo : A μ Tcl/Tk distribution statically linked (AppImage).
- ◆ wiz : Cloud based note-taking application.
- ◆ wiznoteplus : The third party that supports the plug-in is Zhinote client.
- ◆ wnr : Work/Rest Timer. Stricter. Prettier. More features.
- ◆ woke : A REST client with grand ambitions and limited scope.
- ◆ wolai : A new form of document/note/information system (in chinese).
- ◆ wonderpen-appimage : A professional writing app with markdown support.
- ◆ wonderwall : Wallpaper manager for Linux.
- ◆ woocommerce-pos : Electron Desktop App for WooCommerce POS
- ◆ wootility : Utility for configuring Wooting keyboards.
- ◆ wooting-analog-midi : Virtual MIDI device for (Wooting) analog keyboards.
- ◆ wootomation : The official Wooting Macros software.
- ◆ workflowy : A notetaking tool.
- ◆ wowup : WowUp the World of Warcraft addon updater.
- ◆ wps-office : Unofficial, Office suite built from the official .deb package.
- ◆ wrapbox : An Electron wrapper for web pages.
- ◆ wsjtz : AppImage of WSJT-Z – fork of WSJT-X with automation features.
- ◆ wsocks : A light websocket based proxy.
- ◆ wxmaxima : A document based interface for the computer algebra system Maxima.
- ◆ wxmedit : A cross-platform Text/Hex Editor, an improved version of MadEdit.
- ◆ xchat : Chat with other people using Internet Relay Chat.
- ◆ xclicker : Fast gui autoclicker for x11 linux desktops.
- ◆ xcloud-desktop-appimage : An unoffical desktop app for the XCloud web beta.
- ◆ xde : The Expo Development Environment.
- ◆ xelfviewer : A multiplatform ELF file viewer/editor.
- ◆ xemu : Original Xbox Emulator for Windows, macOS, and Linux.
- ◆ xl-converter : Powerful image converter with support for multithreading.
- ◆ xlights : A sequencer for Lights and sequences manager.
- ◆ x-loc : Extra localizations/translations manager for Stardew Valley.
- ◆ xm8 : PC-8801 emulator for macOS and other platforms.
- ◆ xmedcon : An open-source toolkit for medical image conversion.
- ◆ x-minecraft-launcher : An Open Source Minecraft Launcher with Modern UX.
- ◆ xnviewmp : Graphic viewer, browser, converter.
- ◆ xonsh : Python-powered, cross-platform, Unix-gazing shell.
- ◆ xournal++ : A C++ handwriting notetaking software with PDF annotation support.
- ◆ xournal++nightly : C++ notetaking software with PDF annotation support (DEV).
- ◆ xpeviewer : PE file viewer/editor.
- ◆ xplist : Cross-platform Plist Editor.
- ◆ xplorer : Xplorer, a customizable, modern file manager.
- ◆ xxh-appimage : Bring your favorite shell wherever you go through the ssh.
- ◆ yana : Note-taking app with nested documents, text search/editor, code...
- ◆ yangdownloader-appimage : Downloads best-quality audio and video from YouTube.
- ◆ yank-note : A Hackable Markdown Note Application for Programmers.
- ◆ yaya : Yet Another Yahtzee-esque Application.
- ◆ yesplaymusic : A third party music player for Netease Music.
- ◆ youtube-music : Amazing electron wrapper for YouTube Music featuring plugins.
- ◆ youtubesearchfilter : YouTube searches with/without a pre-filter from CLI.
- ◆ ytdownloader : App for downloading Videos and Audios from hundreds of sites.
- ◆ ytmdesktop : A Desktop App for YouTube Music.
- ◆ yubikey-manager : Configure your YubiKey over all USB transports.
- ◆ yuna : Anime player integrated with AniList, Crunchyroll, and Hidive.
- ◆ yuview : YUV player with an advanced analytic toolset.
- ◆ yuzu : An experimental open-source emulator for the Nintendo Switch.
- ◆ zap : Delightful command line AppImage package manager for appimage.github.io.
- ◆ zapdesktop : Desktop application for the lightning network.
- ◆ zegarek : A simple clock with millisecond resolution.
- ◆ zegrapher : Math graphing software.
- ◆ zenity : A CLI utility that creates dialog boxes (Unofficial AppImage, GTK3).
- ◆ zenkit : A platform for collaboration and project management.
- ◆ zenroomstudio : Extensible IDE which targets multiple dev platforms.
- ◆ zettlr : A Markdown Editor for the 21st century.
- ◆ zmninja : Ionic app for Home/Commerical Security Surveillance.
- ◆ znax : Znax is a cross platform puzzle / arcade game using SDL2 libraries.
- ◆ znote : A Beautiful markdown editor inspired by Jupyter.
- ◆ zograscope : Syntax-aware diff that provides a number of additional tools.
- ◆ zoom : Video Conferencing and Web Conferencing Service.
- ◆ zotero : Collect, organize, cite, and share your research sources.
- ◆ zsync2 : A rewrite of the advanced file download/sync tool zsync.
- ◆ zulip : Zulip Desktop Client for Linux.
- ◆ zxinfo-file-browser : Organize and manage your emulator files for ZX Spectrum.
- ◆ zx-poly : a multi-CPU ZX-Spectrum 128 concept platform.
- ◆ zy-player : Video resource player, simple, ad-free and high-value.
|