diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml new file mode 100644 index 000000000..416a983ad --- /dev/null +++ b/.github/workflows/static.yml @@ -0,0 +1,59 @@ +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + build-and-deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v6 + + - name: Build App Files + run: | + [ ! -x ./simple2json ] && chmod a+x ./simple2json + ./simple2json 2>&1 | tee build-log.txt + + echo "json conversion done" | tee -a build-log.txt + + [ ! -x ./am2pla-site ] && chmod a+x ./am2pla-site + ./am2pla-site 2>&1 | tee -a build-log.txt + + - name: Upload Build Log + uses: actions/upload-artifact@v6 + with: + name: build-log + path: build-log.txt + + - name: Setup Pages + uses: actions/configure-pages@v6 + - name: Upload artifact + uses: actions/upload-pages-artifact@v5 + with: + # Upload entire repository + path: '.' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v5 diff --git a/.github/workflows/sync-with-AM.yml b/.github/workflows/sync-with-AM.yml index 81eb92f9c..957367490 100644 --- a/.github/workflows/sync-with-AM.yml +++ b/.github/workflows/sync-with-AM.yml @@ -21,35 +21,19 @@ jobs: - name: "Checkout source repository" uses: actions/checkout@v7 - - name: "Update lists" - run: | - AM2PLA_SCRIPT=$(curl -Ls https://raw.githubusercontent.com/ivan-hc/AM/main/tools/am2pla-site) - [ -n "$AM2PLA_SCRIPT" ] && echo "$AM2PLA_SCRIPT" | grep -q "^AMREPO=" && echo "◆ Update am2pla-site script..." && echo "$AM2PLA_SCRIPT" > ./am2pla-site - sed -i 's/^cd "$(xdg-user-dir DESKTOP)"/#cd "$(xdg-user-dir DESKTOP)"/g' ./am2pla-site - [ ! -x ./am2pla-site ] && chmod a+x ./am2pla-site - ./am2pla-site - - name: "Remove unneeded pages/icons" run: | AMD64_LIST=$(curl -Ls https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64-apps) if [ -n "$AMD64_LIST" ] && echo "$AMD64_LIST" 2>/dev/null | grep -q "^◆ "; then - - MDS=$(ls apps/* | sed 's:.*/::; s/.md$//g') - for m in $MDS; do - if ! echo "$AMD64_LIST" 2>/dev/null | grep -q "◆ $m :"; then - rm -f "apps/$m.md" - echo "Removed apps/$m.md" + rm -f apps/*.json apps/*.md + for f in apps/*; do + name=$(echo "$f" | sed 's:.*/::; s/\.\(md\|json\)$//') + if ! echo "$AMD64_LIST" 2>/dev/null | grep -q "◆ $name :"; then + rm -f "apps/$name" + echo "Removed apps/$name" fi done - #PNGS=$(ls icons/* | sed 's:.*/::; s/.png$//g') - #for p in $PNGS; do - # if ! echo "$AMD64_LIST" 2>/dev/null | grep -q "◆ $p :"; then - # rm -f "icons/$p.png" - # echo "Removed icons/$p.png" - # fi - #done - fi - name: "Create dumb pages/icons if missing" @@ -59,10 +43,9 @@ jobs: APPS=$(echo "$AMD64_LIST" 2>/dev/null | awk '{print $2}' | xargs) for a in $APPS; do - if ! test -f apps/"$a".md; then + if ! test -f apps/"$a"; then INSTALLATION_SCRIPT=$(curl -Ls https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/"$a") if [ -n "$INSTALLATION_SCRIPT" ] && echo "$INSTALLATION_SCRIPT" 2>/dev/null | grep -q "^APP=$a"; then - APP=$(echo "$a" | tr '[:lower:]' '[:upper:]') DESCRIPTION=$(echo "$AMD64_LIST" 2>/dev/null | grep "^◆ $a :" | sed "s/^◆ $a ://g") if echo "$INSTALLATION_SCRIPT" 2>/dev/null | grep -q "^SITE="; then @@ -83,36 +66,26 @@ jobs: else SITE="https://$(echo "$INSTALLATION_SCRIPT" 2>/dev/null | grep -Eo "(http|https)://[a-zA-Z0-9./?=_%:-]*" | head -1 | awk -F[/:] '{print $4}')" fi - - printf "# $APP\n\n" > apps/"$a".md - echo "$DESCRIPTION" >> apps/"$a".md - printf "\n SITE: $SITE\n\n" >> apps/"$a".md - printf " | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io)\n | --- | --- |" >> apps/"$a".md - echo "Adding apps/$a.md" + ESC_DESC=$(echo "$DESCRIPTION" | sed 's/"/\\"/g') + printf '# %s\n%s\n# SCREENSHOTS: %s\n# SITES: %s\n' \ + "$a" "$ESC_DESC" "/contribute_ss.png /contribute_ss.png" "$SITE" > apps/"$a" + + echo "Adding apps/$a" fi fi done - MDS=$(ls apps/* | sed 's:.*/::; s/.md$//g') - for m in $MDS; do - if ! test -f icons/"$m".png; then - cp -r no-icon.png "icons/$m.png" - echo "Adding icons/$m.png" - fi - done - rm -f icons/*.md - fi - name: "Push to Source" run: | git config --global user.name "Portable-Linux-Apps" git config --global user.email "noreply@github.com" - git add *.md *.json am2pla-site apps icons - if git diff-index --quiet HEAD; then - echo "No changes to commit." >> $GITHUB_STEP_SUMMARY - else + git add 'apps/' 'icons/*.png' + if ! git diff-index --cached --quiet HEAD; then git commit -m "Sync files from source repository" - git push && echo "Sync to Source succeeded" >> $GITHUB_STEP_SUMMARY + git push origin + else + echo "No changes to commit." fi diff --git a/.gitignore b/.gitignore index e1c1b28a2..c9148f53c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,15 +1,11 @@ -# Jekyll -_site/ -.jekyll-cache/ -.jekyll-metadata/ -.sass-cache/ - -# Gemfile dependencies -Gemfile.lock - -# Bundler files -.bundle/ - # System files .DS_Store # macOS Thumbs.db # Windows + +# Python cache +__pycache__ + +# Kate backup +*~ + +test diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2edc3a4ac..ba481f1d7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -7,13 +7,13 @@ This catalog is updated every half hour and is based entirely on this list: http If an app is added to this list, it means that an installation script has also been added here: https://github.com/ivan-hc/AM/tree/main/programs/x86_64 ## If an app is **added** to AM - - All lists will be automatically updated via https://github.com/ivan-hc/AM/blob/main/tools/am2pla-site - - A new .md page will be created. It will use the description in that list and the URL specified in the installation script ("SITE" variable). + - All lists will be automatically updated via https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/blob/main/tools/am2pla-site + - A new .json file will be created. It will use the description in that list and the URL specified in the installation script ("SITE" variable). - A new generic icon will be created using https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/blob/main/no-icon.png ## If an app is **removed** from AM - All references to it in the lists will be removed - - The .md page will be removed + - The .json file will be removed - The icon will be retained in case the application is added again in the future ## This project is powered by github actions, so... @@ -32,9 +32,7 @@ This catalog is for everyone, so anyone can make a [pull request](https://github - Icons must be 128x128 or smaller ## Update app's pages - - Write whatever you want, but leave the header (first line, the one starting with #) as is. - - You can add buttons to the ones at the bottom, including a donation link. - - You can add screenshots or GIFs. +See FAQ #5 on the website ------------------------------------ diff --git a/Gemfile b/Gemfile deleted file mode 100644 index 22bf31a13..000000000 --- a/Gemfile +++ /dev/null @@ -1,10 +0,0 @@ -# frozen_string_literal: true - -source "https://rubygems.org" - -# gem "rails" -gem "github-pages", group: :jekyll_plugins - -# Needed for `jekyll serve` on Ruby 3.0+ (webrick was removed from the stdlib). -# GitHub Pages production doesn't use this. -gem "webrick", "~> 1.8", group: :development diff --git a/PortableLinuxApps.html b/PortableLinuxApps.html deleted file mode 100644 index c619c2ffe..000000000 --- a/PortableLinuxApps.html +++ /dev/null @@ -1,12102 +0,0 @@ - - - - - - - - - - - - - - - - - - - - -PortableLinuxApps — - -Census, cataloging and distribution of all AppImages and -portable apps for GNU/Linux, through the "AM" package manager. Largest AppImages collection! - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - diff --git a/README.md b/README.md index 4b9625cdd..28135fdb9 100644 --- a/README.md +++ b/README.md @@ -1,128 +1,2 @@ -
- -###### *Welcome to the most complete database of all AppImage packages and portable applications for GNU/Linux.* - -# PORTABLE LINUX APPS - -### *the first AUR-inspired AppImage Software Center!* - --------- - -# Main page "[Portable-Linux-Apps.github.io](https://portable-linux-apps.github.io)" - --------- - -| *[Go to the applications list](https://portable-linux-apps.github.io/apps.html)* | *[Install "AM", the package manager](https://github.com/ivan-hc/AM)* | -| - | - | -| [](https://portable-linux-apps.github.io/apps.html) | [](https://github.com/ivan-hc/AM) | - -### Testing - -Most pages on this site are auto-generated by `tools/am2pla-site` in -the [`ivan-hc/AM`](https://github.com/ivan-hc/AM) repository — a -GitHub Actions workflow runs that script every 30 minutes and pushes -the output back to `main`. Hand-edits to generated files (`index.md`, -`apps.md`, `appimages.md`, the 24 category pages, `apps.json`, the -`am2pla-site` copy in this repo) are overwritten on the next sync. -Durable changes live in `_layouts/`, `assets/css/`, `assets/js/`, -`_config.yml`, `Gemfile`, this README, and `.github/workflows/`. - -To test changes to the website before pushing or while working on a -pull request, pick one of the three options below. Docker is -recommended because the container matches the GitHub Pages build -environment and works on any host Ruby version. - -
- -#### Option 1: Docker (recommended, no local Ruby needed) - -Uses the official `ruby:3.3` image, which matches the Ruby version GitHub -Pages itself builds with. The first run takes a few minutes while -`bundle install` compiles native gems; the named `jekyll-bundle` volume -caches them so later runs start quickly. - -```sh -# delete any host-generated lockfile so the container can regenerate one -rm -f Gemfile.lock - -docker run --rm -it -p 4000:4000 \ - -v "$PWD:/srv/jekyll" -w /srv/jekyll \ - -v jekyll-bundle:/usr/local/bundle \ - ruby:3.3 \ - bash -c "bundle install && bundle exec jekyll serve --host 0.0.0.0" -``` - -#### Option 2: Local Jekyll - -* [Install Jekyll](https://jekyllrb.com/docs/installation/) -* In a terminal, change to the repository root directory -* run `bundle install` (only needed the first time, or after `Gemfile` - changes) -* run `bundle exec jekyll serve` - -Requires **Ruby 3.0 - 3.3**. The `github-pages` gem currently pins an old -version of `jekyll-github-metadata` (2.16.1) that crashes on Ruby 3.4+ -with an `instance_variable_defined?` `NameError`. If your distribution -ships Ruby 3.4 or newer, use Docker (Option 1) or install Ruby 3.3 via a -version manager such as [`rbenv`](https://github.com/rbenv/rbenv) or -[`asdf`](https://asdf-vm.com/). The `Gemfile` declares `webrick` in the -`:development` group so `jekyll serve` works on Ruby 3.0+ (GitHub Pages -production does not use `webrick`). - -#### Option 3: Testing changes to the site generation script - -If you are changing `tools/am2pla-site` in the `ivan-hc/AM` repository -(the script that produces the catalog pages on every sync), run it -against a detached worktree of this site so the output doesn't pollute -your main checkout. The `sed` mirrors what the sync workflow does — it -neutralises the script's `cd "$(xdg-user-dir DESKTOP)"` so output lands -in the worktree instead of your Desktop directory. - -```sh -# Adjust to wherever you have ivan-hc/AM cloned -AM_REPO=~/src/AM - -# Detached worktree of this repo's main branch -git worktree add -d ../pla-site-test main - -# Run the patched script inside the worktree -sed 's|^cd "$(xdg-user-dir|#&|' "$AM_REPO/tools/am2pla-site" > /tmp/am2pla-site-test -cd ../pla-site-test && bash /tmp/am2pla-site-test - -# Preview with the Docker command from Option 1 (or use Option 2) -docker run --rm -it -p 4000:4000 \ - -v "$PWD:/srv/jekyll" -w /srv/jekyll \ - -v jekyll-bundle:/usr/local/bundle \ - ruby:3.3 \ - bash -c "bundle install && bundle exec jekyll serve --host 0.0.0.0" - -# Clean up when done -cd - && git worktree remove --force ../pla-site-test -``` - -When the Docker container runs as root it leaves a root-owned -`_site/` and `Gemfile.lock` inside the worktree; `git worktree remove ---force` will fail to delete those, so finish with -`sudo rm -rf ../pla-site-test` if the remove complains. - -#### Viewing the site - -You will see messages that confirm that site has generated and the server is -running. Then in your browser, navigate to http://127.0.0.1:4000 to confirm -the changes you made are what you expected. Error messages will appear in the -terminal window from where you ran Jekyll. When you change a file, the site -will rebuild automatically (it will take a few moments and you'll be informed -in the terminal when it's done). However, if you change '_config.yml', you -must kill Jekyll with ctrl-c and run it again to test the change. - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - ------------------------------------------------------------------------- - -| [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) | [**PayPal.me**](https://paypal.me/IvanAlexHC) | -| - | - | - ------------------------------------------------------------------------- - +# Portable Linux Apps +[Goto Website](https://portable-linux-apps.github.io/) diff --git a/_config.yml b/_config.yml deleted file mode 100644 index 60b238a67..000000000 --- a/_config.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: PORTABLE LINUX APPS -collections: - categories: - output: true -description: >- # this means to ignore newlines until "baseurl:" - The first AUR-inspired Software Center of all AppImage packages and portable - applications for GNU/Linux. -baseurl: "" -url: https://portable-linux-apps.github.io/ -repository: Portable-Linux-Apps/portable-linux-apps.github.io -avatar: favicon.ico - -google_analytics: -piwik_analytics: - -exclude: - - node_modules - - script - - .jekyll-cache/ - - .sass-cache/ - - Gemfile - - Gemfile.lock - - README.md - - LICENSE - - .github/ - - .gitignore - - .git/ - -sass: - style: :compressed - -theme: jekyll-theme-primer -plugins: - - jekyll-seo-tag - - jekyll-redirect-from - - jekyll-sitemap - -markdown: GFM -github: - private: false - repository_url: "https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io" diff --git a/_includes/head-custom.html b/_includes/head-custom.html deleted file mode 100644 index 8b5dc22c4..000000000 --- a/_includes/head-custom.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/ai.md b/ai.md deleted file mode 100644 index d6baacfa2..000000000 --- a/ai.md +++ /dev/null @@ -1,209 +0,0 @@ -# AI - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **93** programs for this category. - - - - -#### *Categories* - -
- AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
- ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***5ire***](apps/5ire.md) | *5ire is a cross-platform desktop AI assistant, MCP client. It compatible with major service providers, supports local knowledge base and tools via model context protocol servers.*..[ *read more* ](apps/5ire.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/5ire) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/5ire) | -| | [***acestep-cpp-ui***](apps/acestep-cpp-ui.md) | *AceStep-cpp UI, 100% local and free Suno alternative powered by acestep-cpp. Native C++ bundle for local AI music generation with 0% python.*..[ *read more* ](apps/acestep-cpp-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/acestep-cpp-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/acestep-cpp-ui) | -| | [***aichat***](apps/aichat.md) | *AIO AI CLI tool integrating 20+ AI platforms, including OpenAI.*..[ *read more* ](apps/aichat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aichat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aichat) | -| | [***alma***](apps/alma.md) | *Elegant AI Provider Orchestration. A beautiful desktop application that unifies your AI experience. Seamlessly switch between OpenAI, Anthropic, Google Gemini, and custom providers.*..[ *read more* ](apps/alma.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alma) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alma) | -| | [***amfora***](apps/amfora.md) | *A fancy terminal browser for the Gemini protocol.*..[ *read more* ](apps/amfora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amfora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amfora) | -| | [***any-code***](apps/any-code.md) | *Claude Code CLI, OpenAI Codex, and Google Gemini CLI.*..[ *read more* ](apps/any-code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/any-code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/any-code) | -| | [***anything-llm***](apps/anything-llm.md) | *AI business intelligence tool. Any LLM, any document.*..[ *read more* ](apps/anything-llm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anything-llm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anything-llm) | -| | [***apiflow***](apps/apiflow.md) | *A modern API workspace that works both online and offlinecombining API documentation, testing, mock, and AI-powered automation in one lightweight tool.*..[ *read more* ](apps/apiflow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apiflow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apiflow) | -| | [***appflowy***](apps/appflowy.md) | *Bring projects, wikis, and teams together with AI. AppFlowy is the AI collaborative workspace where you achieve more without losing control of your data. The leading open source Notion alternative.*..[ *read more* ](apps/appflowy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appflowy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appflowy) | -| | [***auto-claude***](apps/auto-claude.md) | *Autonomous multi-session AI coding framework that plans, builds, and validates software for you.*..[ *read more* ](apps/auto-claude.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/auto-claude) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/auto-claude) | -| | [***bearly***](apps/bearly.md) | *The world's best AI at your fingertips.*..[ *read more* ](apps/bearly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bearly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bearly) | -| | [***bezique***](apps/bezique.md) | *Plays bezique game against the AI.*..[ *read more* ](apps/bezique.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bezique) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bezique) | -| | [***binglite***](apps/binglite.md) | *A lightweight new Bing (AI chat) desktop application based on Tauri.*..[ *read more* ](apps/binglite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/binglite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/binglite) | -| | [***bottlebats***](apps/bottlebats.md) | *Client for the 2018 edition of the BottleBats AI competition.*..[ *read more* ](apps/bottlebats.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottlebats) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottlebats) | -| | [***chat-gpt***](apps/chat-gpt.md) | *Unofficial. ChatGPT Desktop Application.*..[ *read more* ](apps/chat-gpt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chat-gpt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chat-gpt) | -| | [***chatall***](apps/chatall.md) | *Concurrently chat with ChatGPT, Bing Chat, bard, Alpaca and more.*..[ *read more* ](apps/chatall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatall) | -| | [***chatbox***](apps/chatbox.md) | *Chatbox is a desktop app for GPT-4 / GPT-3.5, OpenAI API.*..[ *read more* ](apps/chatbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatbox) | -| | [***chatgpt-next-web***](apps/chatgpt-next-web.md) | *A cross-platform ChatGPT/Gemini UI.*..[ *read more* ](apps/chatgpt-next-web.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatgpt-next-web) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatgpt-next-web) | -| | [***chatpad-ai***](apps/chatpad-ai.md) | *Not just another ChatGPT user-interface.*..[ *read more* ](apps/chatpad-ai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatpad-ai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatpad-ai) | -| | [***chemcanvas***](apps/chemcanvas.md) | *A very intuitive 2D chemical drawing tool.*..[ *read more* ](apps/chemcanvas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chemcanvas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chemcanvas) | -| | [***cherry-studio***](apps/cherry-studio.md) | *Agentic AI desktop with autonomous coding, intelligent automation, and unified access to frontier LLMs.*..[ *read more* ](apps/cherry-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cherry-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cherry-studio) | -| | [***clagrange***](apps/clagrange.md) | *Lagrange is a cross-platform client for browsing Geminispace (CLI Version).*..[ *read more* ](apps/clagrange.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clagrange) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clagrange) | -| | [***claude-code***](apps/claude-code.md) | *Unofficial AppImage of claude-code.*..[ *read more* ](apps/claude-code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/claude-code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/claude-code) | -| | [***claude-desktop***](apps/claude-desktop.md) | *Unofficial, Claude is a next generation AI assistant built by Anthropic and trained to be safe, accurate, and secure to help you do your best work.*..[ *read more* ](apps/claude-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/claude-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/claude-desktop) | -| | [***cmux***](apps/cmux.md) | *Cmux/ManaflowX is an X feed for coding agents that lets you run + compare Claude Code, Codex CLI, Amp, Gemini CLI, Cursor CLI, Opencode, and other coding agent CLIs in parallel across multiple tasks.*..[ *read more* ](apps/cmux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cmux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cmux) | -| | [***cursor***](apps/cursor.md) | *Built to make you extraordinarily productive, Cursor is the best way to code with AI.*..[ *read more* ](apps/cursor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cursor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cursor) | -| | [***cursor-cli***](apps/cursor-cli.md) | *Unofficial, AI-assisted development CLI tool.*..[ *read more* ](apps/cursor-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cursor-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cursor-cli) | -| | [***drawpile***](apps/drawpile.md) | *Drawing program to sketch on the same canvas simultaneously.*..[ *read more* ](apps/drawpile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drawpile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drawpile) | -| | [***firefly-desktop***](apps/firefly-desktop.md) | *The official IOTA and Shimmer wallet.*..[ *read more* ](apps/firefly-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefly-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefly-desktop) | -| | [***folo***](apps/folo.md) | *Folo is the AI Reader.*..[ *read more* ](apps/folo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/folo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/folo) | -| | [***gemalaya***](apps/gemalaya.md) | *A keyboard-driven Gemini browser written in QML.*..[ *read more* ](apps/gemalaya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gemalaya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gemalaya) | -| | [***gemget***](apps/gemget.md) | *Command line downloader for the Gemini protocol.*..[ *read more* ](apps/gemget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gemget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gemget) | -| | [***gextractwinicons***](apps/gextractwinicons.md) | *Extract cursors, icons and images from MS Windows files.*..[ *read more* ](apps/gextractwinicons.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gextractwinicons) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gextractwinicons) | -| | [***go-pd-gui***](apps/go-pd-gui.md) | *DRAINY is a free easy to use cross plattform upload tool for pixeldrain.com.*..[ *read more* ](apps/go-pd-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-pd-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-pd-gui) | -| | [***godmode***](apps/godmode.md) | *AI Chat Browser fast, full webapp access to ChatGPT/Claude/Bard/Bing/Llama2.*..[ *read more* ](apps/godmode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/godmode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/godmode) | -| | [***hugin***](apps/hugin.md) | *Stitch photographs together.*..[ *read more* ](apps/hugin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hugin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hugin) | -| | [***inkscape***](apps/inkscape.md) | *Unofficial. Vector-based drawing program and graphics editor for both artistic and technical illustrations. It can import and export various file formats, including SVG, AI, EPS, PDF, AutoCAD, PS and PNG.*..[ *read more* ](apps/inkscape.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/inkscape) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/inkscape) | -| | [***jan***](apps/jan.md) | *FOSS Alternative to ChatGPT that runs 100% offline on your computer.*..[ *read more* ](apps/jan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jan) | -| | [***kftray***](apps/kftray.md) | *Kubectl port-forward manager and reverse tunnel (ngrok-like) for exposing local services publicly, with TLS termination, HTTP traffic inspection, UDP forwarding, multi-hop proxy routing through k8s clusters, stateful config via filesystem or git.*..[ *read more* ](apps/kftray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kftray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kftray) | -| | [***kinopio***](apps/kinopio.md) | *Thinking canvas for new ideas and hard problems.*..[ *read more* ](apps/kinopio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kinopio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kinopio) | -| | [***koboldcpp***](apps/koboldcpp.md) | *Simple 1-file way to run GGML and GGUF models with KoboldAI's UI.*..[ *read more* ](apps/koboldcpp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koboldcpp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koboldcpp) | -| | [***lagrange***](apps/lagrange.md) | *Lagrange is a cross-platform client for browsing Geminispace (GUI Version).*..[ *read more* ](apps/lagrange.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lagrange) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lagrange) | -| | [***lazpaint***](apps/lazpaint.md) | *Cross-platform image editor with raster and vector layers similar to Paint.Net written in Lazarus (Free Pascal).*..[ *read more* ](apps/lazpaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lazpaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lazpaint) | -| | [***lexido***](apps/lexido.md) | *A terminal assistant, powered by Generative AI.*..[ *read more* ](apps/lexido.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lexido) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lexido) | -| | [***lmstudio***](apps/lmstudio.md) | *Experimenting with local and open-source Large Language Models.*..[ *read more* ](apps/lmstudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lmstudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lmstudio) | -| | [***lobe-chat***](apps/lobe-chat.md) | *LobeHub - an open-source, modern design AI Agent Workspace. Supports multiple AI providers, Knowledge Base (file upload / RAG ), one click install MCP Marketplace and Artifacts / Thinking. One-click FREE deployment of your private AI Agent application.*..[ *read more* ](apps/lobe-chat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lobe-chat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lobe-chat) | -| | [***lorien***](apps/lorien.md) | *Infinite canvas drawing/whiteboarding app.*..[ *read more* ](apps/lorien.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lorien) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lorien) | -| | [***mapic***](apps/mapic.md) | *MaPic is a Image Viewer with AI Metadata Reader.*..[ *read more* ](apps/mapic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mapic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mapic) | -| | [***moonplayer***](apps/moonplayer.md) | *AIO video player to play Youtube, Bilibili... and local videos.*..[ *read more* ](apps/moonplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moonplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moonplayer) | -| | [***mrrss***](apps/mrrss.md) | *A modern, cross-platform, and free AI RSS reader.*..[ *read more* ](apps/mrrss.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mrrss) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mrrss) | -| | [***neko***](apps/neko.md) | *Neko is a cross-platform cursor-chasing cat.*..[ *read more* ](apps/neko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neko) | -| | [***noi***](apps/noi.md) | *🚀 an AI-enhanced, customizable browser designed to streamline your digital experience.*..[ *read more* ](apps/noi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/noi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/noi) | -| | [***nuclia***](apps/nuclia.md) | *A low-code API to build an AI multi-language semantic search engine.*..[ *read more* ](apps/nuclia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nuclia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nuclia) | -| | [***nuclino***](apps/nuclino.md) | *Bring knowledge, docs, and projects together in one place.*..[ *read more* ](apps/nuclino.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nuclino) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nuclino) | -| | [***nychess***](apps/nychess.md) | *A python Chess Engine and AI.*..[ *read more* ](apps/nychess.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nychess) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nychess) | -| | [***ollama***](apps/ollama.md) | *Get up and running with Llama 3, Mistral, Gemma, and other LLMs.*..[ *read more* ](apps/ollama.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ollama) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ollama) | -| | [***omniroute***](apps/omniroute.md) | *an OpenAI-compatible endpoint with smart routing, load balancing, retries, and fallbacks. Add policies, rate limits, caching, and observability for reliable, cost-aware inference.*..[ *read more* ](apps/omniroute.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omniroute) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omniroute) | -| | [***one-gpt***](apps/one-gpt.md) | *Aggregate ChatGPT official version, Wenxin Yiyan, Poe, chatchat.*..[ *read more* ](apps/one-gpt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/one-gpt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/one-gpt) | -| | [***open-ai-translator***](apps/open-ai-translator.md) | *Browser extension for translation based on ChatGPT API.*..[ *read more* ](apps/open-ai-translator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-ai-translator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-ai-translator) | -| | [***open-pencil***](apps/open-pencil.md) | *AI-native design editor. Open-source Figma alternative.*..[ *read more* ](apps/open-pencil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-pencil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-pencil) | -| | [***open-webui***](apps/open-webui.md) | *Your AI, right on your desktop. Open WebUI as a native app. Run models locally or connect to any server. No Docker, no terminal, no setup. Download, launch, chat.*..[ *read more* ](apps/open-webui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-webui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-webui) | -| | [***paper-design***](apps/paper-design.md) | *Paper is a modern and powerful design tool that helps you create, share, and ship your best work. Design incredible, the connected canvas for teams shipping with agents.*..[ *read more* ](apps/paper-design.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paper-design) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paper-design) | -| | [***perplexity-ai-app***](apps/perplexity-ai-app.md) | *Perplexity AI Desktop app eases the process to access Perplexity AI.*..[ *read more* ](apps/perplexity-ai-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/perplexity-ai-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/perplexity-ai-app) | -| | [***pinokio***](apps/pinokio.md) | *AI Browser.*..[ *read more* ](apps/pinokio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pinokio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pinokio) | -| | [***pointless***](apps/pointless.md) | *An endless drawing canvas desktop app made with Tauri (Rust) and React.*..[ *read more* ](apps/pointless.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pointless) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pointless) | -| | [***pulseview***](apps/pulseview.md) | *PulseView (sometimes abbreviated as "PV") is a Qt based logic analyzer, oscilloscope and MSO GUI for sigrok.*..[ *read more* ](apps/pulseview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pulseview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pulseview) | -| | [***rclip***](apps/rclip.md) | *AI-Powered Semantic Photo Search for the Command Line.*..[ *read more* ](apps/rclip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rclip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rclip) | -| | [***reor***](apps/reor.md) | *AI note-taking app that runs models locally.*..[ *read more* ](apps/reor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/reor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/reor) | -| | [***seafile***](apps/seafile.md) | *Seafile GUI version. Beyond just syncing and sharing files, it lets you add custom file properties and organize your files in different views. With AI-powered automation for generating properties, Seafile offers a smarter, more efficient way to manage your files.*..[ *read more* ](apps/seafile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seafile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seafile) | -| | [***seafile-cli***](apps/seafile-cli.md) | *Seafile CLI version. Beyond just syncing and sharing files, it lets you add custom file properties and organize your files in different views. With AI-powered automation for generating properties, Seafile offers a smarter, more efficient way to manage your files.*..[ *read more* ](apps/seafile-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seafile-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seafile-cli) | -| | [***smuview***](apps/smuview.md) | *A Qt based source measure unit GUI for sigrok.*..[ *read more* ](apps/smuview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smuview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smuview) | -| | [***snake-js***](apps/snake-js.md) | *Canvas/JavaScript based Snake Game with support for controllers.*..[ *read more* ](apps/snake-js.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snake-js) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snake-js) | -| | [***snapclear***](apps/snapclear.md) | *Remove Image Background with AI for Free Offline.*..[ *read more* ](apps/snapclear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snapclear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snapclear) | -| | [***speak-to-ai***](apps/speak-to-ai.md) | *Speak to AI - native Linux voice-to-text app.*..[ *read more* ](apps/speak-to-ai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/speak-to-ai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/speak-to-ai) | -| | [***stabilitymatrix***](apps/stabilitymatrix.md) | *Multi-Platform Package Manager for Stable Diffusion, a deep AI learning model used for converting text to images.*..[ *read more* ](apps/stabilitymatrix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stabilitymatrix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stabilitymatrix) | -| | [***t3code***](apps/t3code.md) | *T3 Code is a minimal web GUI for coding agents (currently Codex and Claude, more coming soon).*..[ *read more* ](apps/t3code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/t3code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/t3code) | -| | [***tgpt***](apps/tgpt.md) | *AI Chatbots in terminal without needing API keys.*..[ *read more* ](apps/tgpt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tgpt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tgpt) | -| | [***transformer***](apps/transformer.md) | *A command-line utility for splitting large files into chunks/pieces and merging them back together.*..[ *read more* ](apps/transformer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transformer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transformer) | -| | [***tura***](apps/tura.md) | *Tura is an open-source, local-first AI coding agent that works with existing AI subscriptions and coding tools.*..[ *read more* ](apps/tura.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tura) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tura) | -| | [***upscayl***](apps/upscayl.md) | *Free and Open Source AI Image Upscaler.*..[ *read more* ](apps/upscayl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/upscayl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/upscayl) | -| | [***warp-terminal***](apps/warp-terminal.md) | *Terminal reimagined with AI and collaborative tools.*..[ *read more* ](apps/warp-terminal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/warp-terminal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/warp-terminal) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/am-utils.md b/am-utils.md deleted file mode 100644 index 68efd464b..000000000 --- a/am-utils.md +++ /dev/null @@ -1,306 +0,0 @@ -# AM UTILS - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **178** static binaries built for [AM](https://github.com/ivan-hc/AM) and [AppMan](https://github.com/ivan-hc/AppMan) and which can be used as a fallback in case the system does not have them. - - - - -#### *Categories* - -
- AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
- ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***7z***](apps/7z.md) | *Archiver with a high compression ratio. This is part of "am-utils" suite.*..[ *read more* ](apps/7z.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/7z) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/7z) | -| | [***addr2line***](apps/addr2line.md) | *Or symbol+offset into file names and. This is part of "am-utils" suite.*..[ *read more* ](apps/addr2line.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/addr2line) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/addr2line) | -| | [***ar***](apps/ar.md) | *Create, modify, and extract from .deb archives. This is part of "am-utils" suite.*..[ *read more* ](apps/ar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ar) | -| | [***arch***](apps/arch.md) | *Hardware name (same as uname -m). This is part of "am-utils" suite.*..[ *read more* ](apps/arch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arch) | -| | [***as***](apps/as.md) | *GNU assembler.. This is part of "am-utils" suite.*..[ *read more* ](apps/as.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/as) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/as) | -| | [***b2sum***](apps/b2sum.md) | *Check BLAKE2 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/b2sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/b2sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/b2sum) | -| | [***base32***](apps/base32.md) | *Base32 encode/decode data and print to standard. This is part of "am-utils" suite.*..[ *read more* ](apps/base32.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/base32) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/base32) | -| | [***base64***](apps/base64.md) | *Base64 encode/decode data and print to standard. This is part of "am-utils" suite.*..[ *read more* ](apps/base64.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/base64) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/base64) | -| | [***basename***](apps/basename.md) | *Strip directory and suffix from filenames. This is part of "am-utils" suite.*..[ *read more* ](apps/basename.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basename) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basename) | -| | [***basenc***](apps/basenc.md) | *Encode and decode with multiple base encodings.. This is part of "am-utils" suite.*..[ *read more* ](apps/basenc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basenc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basenc) | -| | [***bzip2***](apps/bzip2.md) | *A high-quality data compression program. This is part of "am-utils" suite.*..[ *read more* ](apps/bzip2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bzip2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bzip2) | -| | [***c++filt***](apps/c++filt.md) | *And Java symbols. This is part of "am-utils" suite.*..[ *read more* ](apps/c++filt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/c++filt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/c++filt) | -| | [***cat***](apps/cat.md) | *Concatenate files and print on the standard output. This is part of "am-utils" suite.*..[ *read more* ](apps/cat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cat) | -| | [***chcon***](apps/chcon.md) | *Security context. This is part of "am-utils" suite.*..[ *read more* ](apps/chcon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chcon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chcon) | -| | [***chgrp***](apps/chgrp.md) | *Change group ownership. This is part of "am-utils" suite.*..[ *read more* ](apps/chgrp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chgrp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chgrp) | -| | [***chmod***](apps/chmod.md) | *Change file mode bits. This is part of "am-utils" suite.*..[ *read more* ](apps/chmod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chmod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chmod) | -| | [***chown***](apps/chown.md) | *Change file owner and group. This is part of "am-utils" suite.*..[ *read more* ](apps/chown.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chown) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chown) | -| | [***chroot***](apps/chroot.md) | *Run command or interactive shell with special root. This is part of "am-utils" suite.*..[ *read more* ](apps/chroot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chroot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chroot) | -| | [***cksum***](apps/cksum.md) | *Compute and verify file checksums. This is part of "am-utils" suite.*..[ *read more* ](apps/cksum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cksum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cksum) | -| | [***clear***](apps/clear.md) | *Clear the terminal screen. This is part of "am-utils" suite.*..[ *read more* ](apps/clear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clear) | -| | [***col***](apps/col.md) | *Line feeds from input. This is part of "am-utils" suite.*..[ *read more* ](apps/col.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/col) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/col) | -| | [***colcrt***](apps/colcrt.md) | *Output for CRT previewing. This is part of "am-utils" suite.*..[ *read more* ](apps/colcrt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colcrt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colcrt) | -| | [***colrm***](apps/colrm.md) | *From a file. This is part of "am-utils" suite.*..[ *read more* ](apps/colrm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colrm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colrm) | -| | [***column***](apps/column.md) | *Columnate lists. This is part of "am-utils" suite.*..[ *read more* ](apps/column.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/column) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/column) | -| | [***comm***](apps/comm.md) | *Compare two sorted files line by line. This is part of "am-utils" suite.*..[ *read more* ](apps/comm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comm) | -| | [***cp***](apps/cp.md) | *Copy files and directories. This is part of "am-utils" suite.*..[ *read more* ](apps/cp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cp) | -| | [***csplit***](apps/csplit.md) | *File into sections determined by context. This is part of "am-utils" suite.*..[ *read more* ](apps/csplit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/csplit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/csplit) | -| | [***curl***](apps/curl.md) | *Command line tool and library for transferring data with URLs. This is part of "am-utils" suite.*..[ *read more* ](apps/curl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/curl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/curl) | -| | [***cut***](apps/cut.md) | *From each line of files. This is part of "am-utils" suite.*..[ *read more* ](apps/cut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cut) | -| | [***date***](apps/date.md) | *A header-only library which builds upon . This is part of "am-utils" suite.*..[ *read more* ](apps/date.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/date) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/date) | -| | [***dd***](apps/dd.md) | *Convert and copy a file. This is part of "am-utils" suite.*..[ *read more* ](apps/dd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dd) | -| | [***df***](apps/df.md) | *Report file system space usage. This is part of "am-utils" suite.*..[ *read more* ](apps/df.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/df) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/df) | -| | [***diff***](apps/diff.md) | *Compare files line by line. This is part of "am-utils" suite.*..[ *read more* ](apps/diff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diff) | -| | [***dir***](apps/dir.md) | *List directory contents. This is part of "am-utils" suite.*..[ *read more* ](apps/dir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dir) | -| | [***dircolors***](apps/dircolors.md) | *For ls. This is part of "am-utils" suite.*..[ *read more* ](apps/dircolors.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dircolors) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dircolors) | -| | [***dirname***](apps/dirname.md) | *Strip last component from file name. This is part of "am-utils" suite.*..[ *read more* ](apps/dirname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dirname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dirname) | -| | [***du***](apps/du.md) | *Estimate file space usage. This is part of "am-utils" suite.*..[ *read more* ](apps/du.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/du) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/du) | -| | [***echo***](apps/echo.md) | *Display a line of text. This is part of "am-utils" suite.*..[ *read more* ](apps/echo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/echo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/echo) | -| | [***elfedit***](apps/elfedit.md) | *Header and program property of ELF files. This is part of "am-utils" suite.*..[ *read more* ](apps/elfedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elfedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elfedit) | -| | [***env***](apps/env.md) | *Run a program in a modified environment. This is part of "am-utils" suite.*..[ *read more* ](apps/env.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/env) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/env) | -| | [***expand***](apps/expand.md) | *Convert tabs to spaces. This is part of "am-utils" suite.*..[ *read more* ](apps/expand.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/expand) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/expand) | -| | [***expr***](apps/expr.md) | *Evaluate expressions. This is part of "am-utils" suite.*..[ *read more* ](apps/expr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/expr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/expr) | -| | [***factor***](apps/factor.md) | *A general purpose, dynamically typed, stack-based programming language.. This is part of "am-utils" suite.*..[ *read more* ](apps/factor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/factor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/factor) | -| | [***false***](apps/false.md) | *Do nothing, unsuccessfully. This is part of "am-utils" suite.*..[ *read more* ](apps/false.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/false) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/false) | -| | [***file***](apps/file.md) | *Determine the type of a file from its contents. This is part of "am-utils" suite.*..[ *read more* ](apps/file.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file) | -| | [***find***](apps/find.md) | *Files in a directory hierarchy. This is part of "am-utils" suite.*..[ *read more* ](apps/find.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/find) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/find) | -| | [***fmt***](apps/fmt.md) | *Text formatter. This is part of "am-utils" suite.*..[ *read more* ](apps/fmt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fmt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fmt) | -| | [***fold***](apps/fold.md) | *Wrap each input line to fit in specified width. This is part of "am-utils" suite.*..[ *read more* ](apps/fold.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fold) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fold) | -| | [***gawk***](apps/gawk.md) | *GNU version of awk. This is part of "am-utils" suite.*..[ *read more* ](apps/gawk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gawk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gawk) | -| | [***gp-archive***](apps/gp-archive.md) | *Archive profiling experiment data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-archive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-archive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-archive) | -| | [***gp-collect-app***](apps/gp-collect-app.md) | *Collect application performance profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-collect-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-collect-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-collect-app) | -| | [***gp-display-html***](apps/gp-display-html.md) | *Generate HTML reports from profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-display-html.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-display-html) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-display-html) | -| | [***gp-display-src***](apps/gp-display-src.md) | *Display source code annotated with profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-display-src.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-display-src) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-display-src) | -| | [***gp-display-text***](apps/gp-display-text.md) | *Display profiling data in plain text format. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-display-text.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-display-text) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-display-text) | -| | [***gprof***](apps/gprof.md) | *Graph profile data. This is part of "am-utils" suite.*..[ *read more* ](apps/gprof.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprof) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprof) | -| | [***gprofng***](apps/gprofng.md) | *Generation GNU application profiling tool. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng) | -| | [***gprofng-archive***](apps/gprofng-archive.md) | *Experiment data. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-archive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-archive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-archive) | -| | [***gprofng-collect-app***](apps/gprofng-collect-app.md) | *Data for the target. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-collect-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-collect-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-collect-app) | -| | [***gprofng-display-html***](apps/gprofng-display-html.md) | *HTML based directory structure. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-display-html.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-display-html) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-display-html) | -| | [***gprofng-display-src***](apps/gprofng-display-src.md) | *Code and optionally. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-display-src.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-display-src) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-display-src) | -| | [***gprofng-display-text***](apps/gprofng-display-text.md) | *Performance data in plain text. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-display-text.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-display-text) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-display-text) | -| | [***gprofng-gmon***](apps/gprofng-gmon.md) | *Display or convert GNU gmon profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-gmon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-gmon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-gmon) | -| | [***grep***](apps/grep.md) | *A string search utility. This is part of "am-utils" suite.*..[ *read more* ](apps/grep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grep) | -| | [***groups***](apps/groups.md) | *Print the groups a user is in. This is part of "am-utils" suite.*..[ *read more* ](apps/groups.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/groups) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/groups) | -| | [***hd***](apps/hd.md) | *Small hex dumper utility (with optional HexII output). This is part of "am-utils" suite.*..[ *read more* ](apps/hd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hd) | -| | [***head***](apps/head.md) | *Output the first part of files. This is part of "am-utils" suite.*..[ *read more* ](apps/head.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/head) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/head) | -| | [***hexdump***](apps/hexdump.md) | *Display file contents in hexadecimal format. This is part of "am-utils" suite.*..[ *read more* ](apps/hexdump.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hexdump) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hexdump) | -| | [***hostid***](apps/hostid.md) | *Print the numeric identifier for the current host. This is part of "am-utils" suite.*..[ *read more* ](apps/hostid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hostid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hostid) | -| | [***id***](apps/id.md) | *Print real and effective user and group IDs. This is part of "am-utils" suite.*..[ *read more* ](apps/id.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/id) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/id) | -| | [***install***](apps/install.md) | *Copy files and set attributes. This is part of "am-utils" suite.*..[ *read more* ](apps/install.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/install) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/install) | -| | [***join***](apps/join.md) | *Of two files on a common field. This is part of "am-utils" suite.*..[ *read more* ](apps/join.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/join) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/join) | -| | [***kill***](apps/kill.md) | *Terminate a process. This is part of "am-utils" suite.*..[ *read more* ](apps/kill.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kill) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kill) | -| | [***killall***](apps/killall.md) | *Kill processes by name. This is part of "am-utils" suite.*..[ *read more* ](apps/killall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/killall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/killall) | -| | [***ld***](apps/ld.md) | *Standalone Linker Compiler. This is part of "am-utils" suite.*..[ *read more* ](apps/ld.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ld) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ld) | -| | [***ld.bfd***](apps/ld.bfd.md) | *The GNU linker with BFD libraries. This is part of "am-utils" suite.*..[ *read more* ](apps/ld.bfd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ld.bfd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ld.bfd) | -| | [***less***](apps/less.md) | *A terminal based program for viewing text files. This is part of "am-utils" suite.*..[ *read more* ](apps/less.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/less) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/less) | -| | [***link***](apps/link.md) | *Call the link function to create a link to a file. This is part of "am-utils" suite.*..[ *read more* ](apps/link.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/link) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/link) | -| | [***ln***](apps/ln.md) | *Make links between files. This is part of "am-utils" suite.*..[ *read more* ](apps/ln.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ln) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ln) | -| | [***logname***](apps/logname.md) | *Print user's login name. This is part of "am-utils" suite.*..[ *read more* ](apps/logname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/logname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/logname) | -| | [***look***](apps/look.md) | *Beginning with a given string. This is part of "am-utils" suite.*..[ *read more* ](apps/look.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/look) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/look) | -| | [***ls***](apps/ls.md) | *List directory contents. This is part of "am-utils" suite.*..[ *read more* ](apps/ls.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ls) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ls) | -| | [***mawk***](apps/mawk.md) | *And text processing language. This is part of "am-utils" suite.*..[ *read more* ](apps/mawk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mawk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mawk) | -| | [***md5sum***](apps/md5sum.md) | *Compute and check MD5 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/md5sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/md5sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/md5sum) | -| | [***mkdir***](apps/mkdir.md) | *Make directories. This is part of "am-utils" suite.*..[ *read more* ](apps/mkdir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mkdir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mkdir) | -| | [***mkfifo***](apps/mkfifo.md) | *Make FIFOs (named pipes). This is part of "am-utils" suite.*..[ *read more* ](apps/mkfifo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mkfifo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mkfifo) | -| | [***mknod***](apps/mknod.md) | *Make block or character special files. This is part of "am-utils" suite.*..[ *read more* ](apps/mknod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mknod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mknod) | -| | [***mktemp***](apps/mktemp.md) | *Create a temporary file or directory. This is part of "am-utils" suite.*..[ *read more* ](apps/mktemp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mktemp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mktemp) | -| | [***more***](apps/more.md) | *Display the contents of a file in a terminal. This is part of "am-utils" suite.*..[ *read more* ](apps/more.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/more) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/more) | -| | [***mount***](apps/mount.md) | *Mount a filesystem. This is part of "am-utils" suite.*..[ *read more* ](apps/mount.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mount) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mount) | -| | [***mv***](apps/mv.md) | *Move (rename) files. This is part of "am-utils" suite.*..[ *read more* ](apps/mv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mv) | -| | [***nice***](apps/nice.md) | *Run a program with modified scheduling priority. This is part of "am-utils" suite.*..[ *read more* ](apps/nice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nice) | -| | [***nl***](apps/nl.md) | *Number lines of files. This is part of "am-utils" suite.*..[ *read more* ](apps/nl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nl) | -| | [***nm***](apps/nm.md) | *From object files. This is part of "am-utils" suite.*..[ *read more* ](apps/nm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nm) | -| | [***nohup***](apps/nohup.md) | *Run a command immune to hangups, with output to a. This is part of "am-utils" suite.*..[ *read more* ](apps/nohup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nohup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nohup) | -| | [***notify-send***](apps/notify-send.md) | *A program to send desktop notifications. This is part of "am-utils" suite.*..[ *read more* ](apps/notify-send.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notify-send) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notify-send) | -| | [***nproc***](apps/nproc.md) | *Print the number of processing units available. This is part of "am-utils" suite.*..[ *read more* ](apps/nproc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nproc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nproc) | -| | [***numfmt***](apps/numfmt.md) | *From/to human-readable strings. This is part of "am-utils" suite.*..[ *read more* ](apps/numfmt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/numfmt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/numfmt) | -| | [***objcopy***](apps/objcopy.md) | *Translate object files. This is part of "am-utils" suite.*..[ *read more* ](apps/objcopy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/objcopy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/objcopy) | -| | [***objdump***](apps/objdump.md) | *From object files. This is part of "am-utils" suite.*..[ *read more* ](apps/objdump.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/objdump) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/objdump) | -| | [***od***](apps/od.md) | *Dump files in octal and other formats. This is part of "am-utils" suite.*..[ *read more* ](apps/od.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/od) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/od) | -| | [***paste***](apps/paste.md) | *Merge lines of files. This is part of "am-utils" suite.*..[ *read more* ](apps/paste.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paste) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paste) | -| | [***pathchk***](apps/pathchk.md) | *File names are valid or portable. This is part of "am-utils" suite.*..[ *read more* ](apps/pathchk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pathchk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pathchk) | -| | [***pinky***](apps/pinky.md) | *Lightweight finger. This is part of "am-utils" suite.*..[ *read more* ](apps/pinky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pinky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pinky) | -| | [***pr***](apps/pr.md) | *Files for printing. This is part of "am-utils" suite.*..[ *read more* ](apps/pr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pr) | -| | [***printenv***](apps/printenv.md) | *Print all or part of environment. This is part of "am-utils" suite.*..[ *read more* ](apps/printenv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/printenv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/printenv) | -| | [***printf***](apps/printf.md) | *Format and print data. This is part of "am-utils" suite.*..[ *read more* ](apps/printf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/printf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/printf) | -| | [***ptx***](apps/ptx.md) | *Permuted index of file contents. This is part of "am-utils" suite.*..[ *read more* ](apps/ptx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ptx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ptx) | -| | [***pwd***](apps/pwd.md) | *Print name of current/working directory. This is part of "am-utils" suite.*..[ *read more* ](apps/pwd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pwd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pwd) | -| | [***ranlib***](apps/ranlib.md) | *Index to an archive. This is part of "am-utils" suite.*..[ *read more* ](apps/ranlib.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ranlib) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ranlib) | -| | [***readelf***](apps/readelf.md) | *About ELF files. This is part of "am-utils" suite.*..[ *read more* ](apps/readelf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readelf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readelf) | -| | [***readlink***](apps/readlink.md) | *Print resolved symbolic links or canonical file. This is part of "am-utils" suite.*..[ *read more* ](apps/readlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readlink) | -| | [***realpath***](apps/realpath.md) | *Print the resolved path. This is part of "am-utils" suite.*..[ *read more* ](apps/realpath.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/realpath) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/realpath) | -| | [***rev***](apps/rev.md) | *Reverse lines characterwise. This is part of "am-utils" suite.*..[ *read more* ](apps/rev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rev) | -| | [***rm***](apps/rm.md) | *Remove files or directories. This is part of "am-utils" suite.*..[ *read more* ](apps/rm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rm) | -| | [***rmdir***](apps/rmdir.md) | *Remove empty directories. This is part of "am-utils" suite.*..[ *read more* ](apps/rmdir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rmdir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rmdir) | -| | [***runcon***](apps/runcon.md) | *With specified security context. This is part of "am-utils" suite.*..[ *read more* ](apps/runcon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/runcon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/runcon) | -| | [***sed***](apps/sed.md) | *GNU stream editor for filtering and transforming text. This is part of "am-utils" suite.*..[ *read more* ](apps/sed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sed) | -| | [***seq***](apps/seq.md) | *Print a sequence of numbers. This is part of "am-utils" suite.*..[ *read more* ](apps/seq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seq) | -| | [***sh***](apps/sh.md) | *GNU Bourne-Again Shell, the de facto standard shell on Linux. This is part of "am-utils" suite.*..[ *read more* ](apps/sh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sh) | -| | [***sha1sum***](apps/sha1sum.md) | *Compute and check SHA1 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha1sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha1sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha1sum) | -| | [***sha224sum***](apps/sha224sum.md) | *Check SHA224 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha224sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha224sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha224sum) | -| | [***sha256sum***](apps/sha256sum.md) | *Compute and check SHA256 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha256sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha256sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha256sum) | -| | [***sha384sum***](apps/sha384sum.md) | *Check SHA384 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha384sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha384sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha384sum) | -| | [***sha512sum***](apps/sha512sum.md) | *Compute and check SHA512 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha512sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha512sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha512sum) | -| | [***shred***](apps/shred.md) | *Overwrite a file to hide its contents, and optionally. This is part of "am-utils" suite.*..[ *read more* ](apps/shred.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shred) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shred) | -| | [***shuf***](apps/shuf.md) | *Generate random permutations. This is part of "am-utils" suite.*..[ *read more* ](apps/shuf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shuf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shuf) | -| | [***size***](apps/size.md) | *Sizes and total size of binary files. This is part of "am-utils" suite.*..[ *read more* ](apps/size.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/size) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/size) | -| | [***sleep***](apps/sleep.md) | *Delay for a specified amount of time. This is part of "am-utils" suite.*..[ *read more* ](apps/sleep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sleep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sleep) | -| | [***sort***](apps/sort.md) | *Sort lines of text files. This is part of "am-utils" suite.*..[ *read more* ](apps/sort.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sort) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sort) | -| | [***split***](apps/split.md) | *Divide a file into multiple smaller files. This is part of "am-utils" suite.*..[ *read more* ](apps/split.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/split) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/split) | -| | [***stat***](apps/stat.md) | *Display file or file system status. This is part of "am-utils" suite.*..[ *read more* ](apps/stat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stat) | -| | [***stdbuf***](apps/stdbuf.md) | *With modified buffering operations for its. This is part of "am-utils" suite.*..[ *read more* ](apps/stdbuf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stdbuf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stdbuf) | -| | [***strace***](apps/strace.md) | *Trace system calls and signals. This is part of "am-utils" suite.*..[ *read more* ](apps/strace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strace) | -| | [***strings***](apps/strings.md) | *Strings is another bad static string library, written in C. This is part of "am-utils" suite.*..[ *read more* ](apps/strings.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strings) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strings) | -| | [***strip***](apps/strip.md) | *And other data from object files. This is part of "am-utils" suite.*..[ *read more* ](apps/strip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strip) | -| | [***stty***](apps/stty.md) | *Change and print terminal line settings. This is part of "am-utils" suite.*..[ *read more* ](apps/stty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stty) | -| | [***sum***](apps/sum.md) | *Checksum and count the blocks in a file. This is part of "am-utils" suite.*..[ *read more* ](apps/sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sum) | -| | [***swapoff***](apps/swapoff.md) | *Enable/disable devices and files for paging and. This is part of "am-utils" suite.*..[ *read more* ](apps/swapoff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swapoff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swapoff) | -| | [***swapon***](apps/swapon.md) | *Enable/disable devices and files for paging and. This is part of "am-utils" suite.*..[ *read more* ](apps/swapon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swapon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swapon) | -| | [***sync***](apps/sync.md) | *Backup and synchronization service. This is part of "am-utils" suite.*..[ *read more* ](apps/sync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sync) | -| | [***tac***](apps/tac.md) | *Concatenate and print files in reverse. This is part of "am-utils" suite.*..[ *read more* ](apps/tac.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tac) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tac) | -| | [***tail***](apps/tail.md) | *Output the last part of files. This is part of "am-utils" suite.*..[ *read more* ](apps/tail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tail) | -| | [***tar***](apps/tar.md) | *Utility used to store, backup, and transport files. This is part of "am-utils" suite.*..[ *read more* ](apps/tar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tar) | -| | [***tee***](apps/tee.md) | *Read from standard input and write to standard output and. This is part of "am-utils" suite.*..[ *read more* ](apps/tee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tee) | -| | [***test***](apps/test.md) | *Check file types and compare values. This is part of "am-utils" suite.*..[ *read more* ](apps/test.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/test) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/test) | -| | [***timeout***](apps/timeout.md) | *Run a command with a time limit. This is part of "am-utils" suite.*..[ *read more* ](apps/timeout.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/timeout) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/timeout) | -| | [***top***](apps/top.md) | *Display Linux processes. This is part of "am-utils" suite.*..[ *read more* ](apps/top.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/top) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/top) | -| | [***touch***](apps/touch.md) | *Change file timestamps. This is part of "am-utils" suite.*..[ *read more* ](apps/touch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/touch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/touch) | -| | [***tput***](apps/tput.md) | *tput - initialize a terminal, exercise its capabilities, or query terminfo database. This is part of "am-utils" suite.*..[ *read more* ](apps/tput.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tput) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tput) | -| | [***tr***](apps/tr.md) | *Translate or delete characters. This is part of "am-utils" suite.*..[ *read more* ](apps/tr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tr) | -| | [***true***](apps/true.md) | *Do nothing, successfully. This is part of "am-utils" suite.*..[ *read more* ](apps/true.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/true) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/true) | -| | [***truncate***](apps/truncate.md) | *Shrink or extend the size of a file to the specified. This is part of "am-utils" suite.*..[ *read more* ](apps/truncate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/truncate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/truncate) | -| | [***tsort***](apps/tsort.md) | *Perform a topological sort. This is part of "am-utils" suite.*..[ *read more* ](apps/tsort.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tsort) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tsort) | -| | [***tty***](apps/tty.md) | *Print the file name of the terminal connected to standard. This is part of "am-utils" suite.*..[ *read more* ](apps/tty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tty) | -| | [***ul***](apps/ul.md) | *Translate underline sequences for terminals. This is part of "am-utils" suite.*..[ *read more* ](apps/ul.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ul) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ul) | -| | [***umount***](apps/umount.md) | *Unmount filesystems. This is part of "am-utils" suite.*..[ *read more* ](apps/umount.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/umount) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/umount) | -| | [***uname***](apps/uname.md) | *Print system information. This is part of "am-utils" suite.*..[ *read more* ](apps/uname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uname) | -| | [***uncompress***](apps/uncompress.md) | *Zcat - compress and expand data. This is part of "am-utils" suite.*..[ *read more* ](apps/uncompress.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uncompress) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uncompress) | -| | [***unexpand***](apps/unexpand.md) | *Convert spaces to tabs. This is part of "am-utils" suite.*..[ *read more* ](apps/unexpand.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unexpand) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unexpand) | -| | [***uniq***](apps/uniq.md) | *Report or omit repeated lines. This is part of "am-utils" suite.*..[ *read more* ](apps/uniq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uniq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uniq) | -| | [***unlink***](apps/unlink.md) | *Call the unlink function to remove the specified file. This is part of "am-utils" suite.*..[ *read more* ](apps/unlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unlink) | -| | [***unshare***](apps/unshare.md) | *Run program in new namespaces. This is part of "am-utils" suite.*..[ *read more* ](apps/unshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unshare) | -| | [***unxz***](apps/unxz.md) | *Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of "am-utils" suite.*..[ *read more* ](apps/unxz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unxz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unxz) | -| | [***unzip***](apps/unzip.md) | *For extracting and viewing files in .zip archives. This is part of "am-utils" suite.*..[ *read more* ](apps/unzip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unzip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unzip) | -| | [***uptime***](apps/uptime.md) | *Tell how long the system has been running.. This is part of "am-utils" suite.*..[ *read more* ](apps/uptime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uptime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uptime) | -| | [***users***](apps/users.md) | *Print the user names of users currently logged in to the. This is part of "am-utils" suite.*..[ *read more* ](apps/users.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/users) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/users) | -| | [***vdir***](apps/vdir.md) | *List directory contents. This is part of "am-utils" suite.*..[ *read more* ](apps/vdir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vdir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vdir) | -| | [***watch***](apps/watch.md) | *Watches for changes in a directory tree and reruns a command in an acme win or just on the terminal. This is part of "am-utils" suite.*..[ *read more* ](apps/watch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/watch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/watch) | -| | [***wc***](apps/wc.md) | *Print newline, word, and byte counts for each file. This is part of "am-utils" suite.*..[ *read more* ](apps/wc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wc) | -| | [***wget***](apps/wget.md) | *Network utility to retrieve files from the web. This is part of "am-utils" suite.*..[ *read more* ](apps/wget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wget) | -| | [***who***](apps/who.md) | *Show who is logged on. This is part of "am-utils" suite.*..[ *read more* ](apps/who.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/who) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/who) | -| | [***whoami***](apps/whoami.md) | *Print effective user name. This is part of "am-utils" suite.*..[ *read more* ](apps/whoami.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whoami) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whoami) | -| | [***xargs***](apps/xargs.md) | *Build and execute command lines from standard input. This is part of "am-utils" suite.*..[ *read more* ](apps/xargs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xargs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xargs) | -| | [***xz***](apps/xz.md) | *Library and command line tools for XZ and LZMA compressed files. This is part of "am-utils" suite.*..[ *read more* ](apps/xz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xz) | -| | [***xzcat***](apps/xzcat.md) | *Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of "am-utils" suite.*..[ *read more* ](apps/xzcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xzcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xzcat) | -| | [***yes***](apps/yes.md) | *Output a string repeatedly until killed. This is part of "am-utils" suite.*..[ *read more* ](apps/yes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yes) | -| | [***zcat***](apps/zcat.md) | *Zcat - compress or expand files. This is part of "am-utils" suite.*..[ *read more* ](apps/zcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zcat) | -| | [***zsync***](apps/zsync.md) | *Partial/differential file download client over HTTP. This is part of "am-utils" suite.*..[ *read more* ](apps/zsync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zsync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zsync) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/am2pla-site b/am2pla-site index f5f3a9f26..ac5069c13 100755 --- a/am2pla-site +++ b/am2pla-site @@ -1,863 +1,375 @@ -#!/usr/bin/env bash - -# This is a script I use to create and update the application list on https://portable-linux-apps.github.io/ -# Once created, the page will appear like this: https://portable-linux-apps.github.io/apps.html -# First of all, we need to create a file containing all the arguments that this script must read - -AMREPO="https://raw.githubusercontent.com/ivan-hc/AM/main" -arch="x86_64" - -# ENTER THE DESKTOP DIRECTORY -#cd "$(xdg-user-dir DESKTOP)" || exit 1 - -# GET THE NAMES OF ALL APPLICATION -curl -Ls "$AMREPO"/programs/"$arch"-apps > "$arch"-apps || exit 1 -curl -Ls "$AMREPO"/programs/stats-appimages > stats-appimages || exit 1 -curl -Ls "$AMREPO"/programs/stats-portable > stats-portable || exit 1 - -# Lists for the other architectures, used only to tag each app with the -# architectures it is available on (for the site's architecture filter). A -# failed/empty fetch is non-fatal: the app is then treated as x86_64-only. -curl -Ls "$AMREPO"/programs/aarch64-apps > aarch64-apps || : -curl -Ls "$AMREPO"/programs/i686-apps > i686-apps || : - -if ! grep -q "^◆ " "$arch"-apps; then exit 0; fi -if ! grep -q "^◆ " stats-appimages; then exit 0; fi -if ! grep -q "^◆ " stats-portable; then exit 0; fi - -ARGS=$(sort -u "$arch"-apps | awk -v FS="(◆ | : )" '{print $2}') -APPIMAGES=$(sort -u stats-appimages | awk -v FS="(◆ | : )" '{print $2}') -PORTABLE=$(sort -u stats-portable | grep -v "#itsappimageonthefly" | awk -v FS="(◆ | : )" '{print $2}') - -# Architecture membership. Every listed app is x86_64 (the catalog is built from -# the x86_64 list); these sets mark the subset that is also available on aarch64 -# and i686. Names are space-padded so a whole-word "case" match can be used. -AARCH64_NAMES=" $(awk -v FS="(◆ | : )" '/^◆ /{print $2}' aarch64-apps 2>/dev/null | sort -u | xargs) " -I686_NAMES=" $(awk -v FS="(◆ | : )" '/^◆ /{print $2}' i686-apps 2>/dev/null | sort -u | xargs) " - -# _arch_list -> space-separated arch list, always starting x86_64. -_arch_list() { - out="x86_64" - case "$AARCH64_NAMES" in *" $1 "*) out="$out aarch64" ;; esac - case "$I686_NAMES" in *" $1 "*) out="$out i686" ;; esac - printf '%s' "$out" +#!/bin/env python3 + +import json +import os +import re +import requests +import sys + +AMREPO = "https://raw.githubusercontent.com/ivan-hc/AM/main" +arch = "x86_64" + +def fetch(path): + r = requests.get(f"{AMREPO}/{path}") + if r.status_code != 200: + print(f"Failed to fetch {path}", file=sys.stderr) + sys.exit(1) + return r.text + +apps_raw = fetch(f"programs/{arch}-apps") +stats_ai = fetch("programs/stats-appimages") +stats_portable = fetch("programs/stats-portable") + +if not apps_raw.startswith("◆ "): + sys.exit(0) + +apps_info = {} +for line in apps_raw.splitlines(): + m = re.match(r"◆ (.+?) : (.+)", line) + if m: + name = m.group(1).strip() + desc = m.group(2).strip() + apps_info[name] = desc + +apps_list = sorted([{"name": n, "description": d} for n, d in apps_info.items()], key=lambda x: x["name"].lower()) +with open("apps.json", 'w') as f: + json.dump(apps_list, f, indent=None, separators=(",", ":"), ensure_ascii=False) + +def parse_stats(text): + names = set() + for line in text.splitlines(): + m = re.match(r"◆ (.+?) : (.+)", line) + if m: + names.add(m.group(1).strip()) + return names + +def parse_stats_tagged(text, tag): + names = set() + for line in text.splitlines(): + if tag in line: + m = re.match(r"◆ (.+?) :", line) + if m: + names.add(m.group(1).strip()) + return names + +appimage_names = parse_stats(stats_ai) +portable_all = parse_stats(stats_portable) +portable_no_iotf = {n for n in portable_all if n not in parse_stats_tagged(stats_portable, "#itsappimageonthefly")} +portable_iotf = parse_stats_tagged(stats_portable, "#itsappimageonthefly") +portable_cli = parse_stats_tagged(stats_portable, "#itscliapp") +portable_desktop = parse_stats_tagged(stats_portable, "#itsdesktopapp") + +# Names that are pure AppImage entries (appears in stats-appimages, not in portable nor portable-cli) +# Not used for individual categories but useful for checking. + +METAPACKAGE_NAMES = {"kdegames", "kdeutils", "node", "platform-tools"} + +def lookup(name): + return apps_info.get(name, "") + +CATEGORY_PATTERNS = { + "ai": None, + "am-utils": re.compile(r'"am-utils"', re.IGNORECASE), + "android": re.compile(r"android|platform-tools", re.IGNORECASE), + "audio": re.compile(r"audio|matroska|music|midi|mp3|opus|soundboard", re.IGNORECASE), + "comic": re.compile(r"comic|manga|anime", re.IGNORECASE), + "command-line": re.compile( + r"command-line|command line| cli |-cli|terminal |" + r'"am-utils"|"node"|"platform-tools"', + re.IGNORECASE, + ), + "communication": re.compile( + r"communication|voip|messenger|whatsapp|mastodon|skype|chat client|" + r"social network|conferencing|discord|email|telegram", + re.IGNORECASE, + ), + "disk": re.compile(r"disk|partition|usb drive", re.IGNORECASE), + "education": re.compile( + r"education|productivity|study|dictionar|math| book | books |" + r"book-|ebook|e-book|space simulator|planetarium|astronom|university|" + r"bible|quran|koran", + re.IGNORECASE, + ), + "emulator": re.compile(r"emulator", re.IGNORECASE), + "file-manager": re.compile( + r"file-manager|file manager|file browse|browse.*file|" + r"file explore|explore.*file", + re.IGNORECASE, + ), + "finance": re.compile(r"finance|wallet|money", re.IGNORECASE), + "game": re.compile( + r"game|arcade|steam|wine|strateg|solitaire|poker|chess|puzzle|" + r"pinball|adventure|playstation|xbox|nintendo|minecraft|doom", + re.IGNORECASE, + ), + "gnome": re.compile(r"gnome", re.IGNORECASE), + "graphic": re.compile( + r"drawing|jpg|duplicated images|gimp|inkscape|converseen|visipics|" + r"imagemagick|photo|svg|png|autocad|blender|3D modeling|paint|" + r"pixel|wallpaper", + re.IGNORECASE, + ), + "internet": re.compile(r"internet|vpn|torrent|p2p", re.IGNORECASE), + "kde": re.compile(r"kde", re.IGNORECASE), + "office": re.compile(r"office|document|pdf|docx|reader|spreadsheet", re.IGNORECASE), + "password": re.compile(r"password", re.IGNORECASE), + "steam": re.compile(r"steam", re.IGNORECASE), + "system-monitor": re.compile( + r"system-monitor|system monitor|task manager|system resource|" + r"system resources|linux processes", + re.IGNORECASE, + ), + "video": re.compile(r"video|stream|media player|film|movies|netflix|iptv", re.IGNORECASE), + "virtual-machine": re.compile( + r"virtual-machine|virtual machine|virtualization|qemu", re.IGNORECASE + ), + "wallet": re.compile(r"wallet", re.IGNORECASE), + "web-app": re.compile(r"web-app|webapp|web app", re.IGNORECASE), + "web-browser": re.compile( + r"web-browser|web.*browser|browser.*web|google-chrome|" + r"firefox.*browser|firefox.*fork|fork.*firefox|safari|microsoft-edge|" + r"opera.*browser|brave.*browser|vivaldi.*browser|arc.*browser|" + r"tor.*browser|chromium|duckduckgo.*browser|orion.*browser|waterfox|" + r"librewolf|palemoon|seamonkey|maxthon|yandex.*browser|uc.*browser|" + r"qq.*browser|baidu.*browser|kiwi|puffin|dolphin.*browser|" + r"epic.*browser|avast.*browser|avg.*browser|midori|falkon|konqueror|" + r"gnome.*web.*browser|floorp|zen.*browser|slimjet|srware.*iron|" + r"comodo.*dragon|sleipnir|lunascape|otter.*browser|basilisk|icecat|" + r"kmeleon|k-melon|netscape|mosaic.*browser", + re.IGNORECASE, + ), + "wine": re.compile(r"wine", re.IGNORECASE), + "youtube": re.compile(r"youtube", re.IGNORECASE), } -# GET THE EXACT NUMBER OF AVAILABLE APPS -METAPACKAGES="kdegames kdeutils node platform-tools" -APPS_NUMBER=$(grep -v "\"kdegames\"\|\"kdeutils\"\|\"node\"\|\"platform-tools\"" "$arch"-apps | grep -e "$" -c) -ITEMS_NUMBER=$(grep "\"kdegames\"\|\"kdeutils\"\|\"node\"\|\"platform-tools\"" "$arch"-apps | grep -e "$" -c) - -APPS_NUMBER_ORIGIN="$APPS_NUMBER" -ITEMS_NUMBER_ORIGIN="$ITEMS_NUMBER" - -CATEGORIES="ai am-utils appimage-on-the-fly android audio \ - comic command-line communication \ - disk \ - education emulator \ - file-manager finance \ - game gnome graphic \ - internet \ - kde \ - metapackages \ - office \ - password \ - portable portable-cli portable-desktop \ - steam system-monitor \ - video virtual-machine \ - wallet web-app web-browser wine \ - youtube" - -CATEGORIES="$(printf '%s\n' $CATEGORIES | sort | xargs)" - -########################################################## -# UPDATE THE JSON FILE FOR FURTER ELECTRON-BASED FRONTENDS -########################################################## - -# Exclude "items" (webapps and metapackages) from apps.json so the home search shows the same "X apps in the database" count that the stats line at the -# top of index.md reports (APPS_NUMBER, not APPS_NUMBER + ITEMS_NUMBER). The exclusion pattern mirrors the one used when computing APPS_NUMBER itself. - -echo "[" > apps.json -for arg in $ARGS; do - case "$arg" in - kdegames|kdeutils|node|platform-tools) continue;; - esac - description=$(grep "◆ $arg :" "$arch"-apps | sed 's/"/\\"/g; s/^.*: //') - arch_json=$(printf '"%s",' $(_arch_list "$arg")); arch_json="[${arch_json%,}]" - printf " {\n \"packageName\": \"%b\",\n \"description\": \"%b..\",\n \"icon\": \"https://portable-linux-apps.github.io/icons/%b.png\",\n \"arch\": %s\n },\n" "$arg" "$description" "$arg" "$arch_json" >> apps.json -done -sed -i '$s/,$//' apps.json -echo "]" >> apps.json - -################################################ -# COMMON FUNCTIONS NEEDED TO COMPILE OTHER PAGES -################################################ - -_home_button() { - echo "" - echo "| [Home](index.md) |" - echo "| --- |" - echo "" +CATEGORY_EXCLUDE = { + "education": re.compile(r"game|manga|anime", re.IGNORECASE), + "emulator": re.compile(r"terminal emulator", re.IGNORECASE), + "office": re.compile(r"manga|comic", re.IGNORECASE), + "web-browser": re.compile(r"embedded web browser video player", re.IGNORECASE), } -_table_head() { - echo "-----------------" - echo "" - echo "***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use \"[AM](https://github.com/ivan-hc/AM)\" or \"[AppMan](https://github.com/ivan-hc/AppMan)\" instead.***" - echo "" - echo "-----------------" - echo "" - echo "| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER |" - echo "| --- | --- | --- | --- |" -} - -_categories_buttons() { - # Raw HTML grid; styles live in assets/css/style.scss on the website repo (.cat-grid / .cat-pill / .cat-pill--all / .cat-sep). AppImages - # is the first cell with a "stand-out" modifier; the rest follow the CATEGORIES list (already alphabetical). A .cat-sep bullet is emitted - # between pills so the CSS can use a flex container with a small gap and still get a clear visual separator between links. - { - printf '\n#### *Categories*\n\n' - printf '
\n' - if [ "$category_page" = appimages ]; then - printf ' AppImages\n' - else - printf ' AppImages\n' - fi - for c in $CATEGORIES; do - if [ "$c" = portable ]; then - printf ' \n' - if [ "$category_page" = portable ]; then - printf ' Portable\n' - else - printf ' Portable\n' - fi - else - printf ' \n' - if [ "$category_page" = "$c" ]; then - printf ' %s\n' "$c" "$c" - else - printf ' %s\n' "$c" "$c" - fi - fi - done - printf '
\n\n' - } -} - -_back_to_home_or_apps_buttons() { - echo "" - echo "| [Back to Home](index.md) | [Back to Applications](apps.md)" - echo "| --- | --- |" - echo "" -} - -_footer_up() { - echo "" - echo "" - echo "---" - echo "" - echo "You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM)." - echo "" - echo "***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.***" - echo "" - echo "---" -} - -_footer_down() { - echo "--------" - echo "" - echo "# Contacts" - echo "- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc)" - echo "- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan)" - echo "" - echo "###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!*" - echo "" - echo "--------" - echo "" - echo "*© 2020-present Ivan Alessandro Sala aka '"'Ivan-HC'"'* - I'm here just for fun!" - echo "" - echo "" -} - -_footer_apps() { - _footer_up - _home_button - _footer_down -} - -_footer_categories() { - _footer_up - _back_to_home_or_apps_buttons - _footer_down -} - -############################### -# COMPILE THE APPLICATIONS LIST -############################### - -ADD_SEARCH_BAR() { -cat >> "$1" << EOF - - -EOF -} - -_applications_list_header() { - echo "# APPLICATIONS" > apps.md - _home_button >> apps.md - echo "#### Here are listed all **$APPS_NUMBER_ORIGIN** unique applications, AppImage packages and command line utilities managed by [AM](https://github.com/ivan-hc/AM) and [AppMan](https://github.com/ivan-hc/AppMan) for the x86_64 architecture, plus **$ITEMS_NUMBER** more entries and items to help you install apps more easily." >> apps.md - echo "" >> apps.md - ADD_SEARCH_BAR apps.md - category_page="" - _categories_buttons >> apps.md - _table_head >> apps.md -} - -_run_applications_lister_body() { - description=$(grep "◆ $arg :" "$arch"-apps | sed 's/^.*: //; s/ *$//') - # Hidden per-row marker so the site's architecture filter (search.js) can - # match rows; invisible in the rendered table. - arch_cell="" - if echo "$description" | grep -q "\"kdegames\"\|\"kdeutils\"\|\"node\"\|\"platform-tools\""; then - for m in $METAPACKAGES; do - if echo "$description" | grep -q "\"$m\""; then - echo "| $arch_cell | [***$arg***](apps/$m.md) | *$description*..[ *read more* ](apps/$m.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/$arch/$m) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/$arch/$m) |" >> body.txt.tmp - fi - done - else - echo "| $arch_cell | [***$arg***](apps/$arg.md) | *$description*..[ *read more* ](apps/$arg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/$arch/$arg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/$arch/$arg) |" >> body.txt.tmp - fi -} - -_applications_list_body() { - for arg in $ARGS; do - _run_applications_lister_body & - done - wait - sort -u ./body.txt.tmp >> ./body.txt - sort -u ./body.txt >> apps.md -} - -_applications_list_header -_applications_list_body -_footer_apps >> apps.md - -######################## -# COMPILE APPIMAGES PAGE -######################## - -ARGS="$APPIMAGES" -APPIMAGES_NUMBER=$(sort -u stats-appimages | wc -l) - -echo "# APPIMAGES" > appimages.md -_back_to_home_or_apps_buttons >> appimages.md -echo "#### Here are listed the **$APPIMAGES_NUMBER** unique Appimages managed by [AM](https://github.com/ivan-hc/AM) and [AppMan](https://github.com/ivan-hc/AppMan) for the x86_64 architecture." >> appimages.md -echo "" >> appimages.md -ADD_SEARCH_BAR appimages.md -category_page="appimages" -_categories_buttons >> appimages.md -_table_head >> appimages.md - -for arg in $ARGS; do - grep "\*\*\*$arg\*\*\*" ./body.txt >> appimages.md -done - -_footer_categories >> appimages.md - - -########################################################################################################################################################## -# OTHER CATEGORIES -########################################################################################################################################################## - -for category in $CATEGORIES; do - CATEGORY_MSG="" - - # Portable apps (not AppImages or pure ones) - - if [ "$category" = portable ]; then - - CATEGORY_MSG="portable programs NOT in AppImage format" - for a in $PORTABLE; do - grep -i "^◆ $a :" ./"$arch"-apps >> "$arch-$category" - done - - elif [ "$category" = appimage-on-the-fly ]; then - - CATEGORY_MSG="AppImages built on the fly from the official portable builds, showing how easily portable apps can be converted to AppImages to gain isolated dotfiles, sandboxing via [AM](https://github.com/ivan-hc/AM) and [AppMan](https://github.com/ivan-hc/AppMan), and reduced disk usage, serving as a proof of concept to encourage upstream developers to distribute them directly in such packaging format. Powered by **[portable2appimage](https://github.com/ivan-hc/portable2appimage)**" - grep -i "#itsappimageonthefly" ./stats-portable >> "$arch-$category" - - elif [ "$category" = portable-cli ]; then - - CATEGORY_MSG="command line utilities: static and dynamic ELF binaries, or simple scripts" - grep -i "#itscliapp" ./stats-portable >> "$arch-$category" - - elif [ "$category" = portable-desktop ]; then - - CATEGORY_MSG="desktop applications NOT in AppImage format. Launchers and icons are downloaded separately during the installation process (through [AM](https://github.com/ivan-hc/AM) and [AppMan](https://github.com/ivan-hc/AppMan)). Most of them already have [all the necessary requirements](https://github.com/ivan-hc/AppImage-tips) to be easily exported into AppImage packages... or they are waiting to be moved to another category (see \"[AppImages on-the-fly](https://portable-linux-apps.github.io/appimage-on-the-fly.html)\")" - grep -i "#itsdesktopapp" ./stats-portable >> "$arch-$category" - - # All applications - - elif [ "$category" = ai ]; then - - CATEGORY_MSG="" - grep "AI" ./"$arch"-apps >> "$arch-$category" - grep -i "chatgpt\|openai\|gemini\|claude\|copilot\|perplexity\| meta \|grok\|anthropic\|huggingface\|mistral\|cohere\|together\|replicate\|cursor\|codeium\|tabnine\|replit\|windsurf\|midjourney\|firefly\|canva\|runway\|leonardo\|synthesia\|elevenlabs\|heygen\|zapier\|z.ai\|clickup\|grammarly\|ollama\|lmstudio\|openwebui\|salesforce\|watsonx" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = am-utils ]; then - - CATEGORY_MSG="static binaries built for [AM](https://github.com/ivan-hc/AM) and [AppMan](https://github.com/ivan-hc/AppMan) and which can be used as a fallback in case the system does not have them" - grep -i "\"$category\"" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = android ]; then - - CATEGORY_MSG="" - grep -i "$category\|platform-tools" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = audio ]; then - - CATEGORY_MSG="" - grep -i "$category\|matroska\|music\|midi\|mp3\|opus\|soundboard" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = comic ]; then - - CATEGORY_MSG="" - grep -i "$category\|manga\|anime" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = command-line ]; then - - CATEGORY_MSG="" - grep -i "#itscliapp" ./stats-appimages >> "$arch-$category" - grep -i "#itscliapp" ./stats-portable >> "$arch-$category" - grep -i -- "$category\|command line\| cli \|-cli\|terminal \|\"am-utils\"\|\"node\"\|\"platform-tools\"" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = communication ]; then - - CATEGORY_MSG="" - grep -i "$category\|voip\|messenger\|whatsapp\|mastodon\|skype\|chat client\|social network\|conferencing\|discord\|email\|telegram" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = disk ]; then - - CATEGORY_MSG="" - grep -i "$category\|partition\|usb drive" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = education ]; then - - CATEGORY_MSG="" - grep -i "$category\|productivity\|study\|dictionar\|math\| book \| books \| book-\|ebook\|e-book\|space simulator\|planetarium\|astronom\|university\|bible\|quran\|koran" ./"$arch"-apps | grep -vi "game\|manga\|anime" >> "$arch-$category" - - elif [ "$category" = emulator ]; then - - CATEGORY_MSG="" - grep -i "$category" ./"$arch"-apps | grep -vi "terminal emulator" >> "$arch-$category" - - elif [ "$category" = file-manager ]; then - - CATEGORY_MSG="" - grep -i "$category\|file manager\|file browse\|browse.*file\|file explore\|explore.*file" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = finance ]; then - - CATEGORY_MSG="" - grep -i "$category\|wallet\|money" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = game ]; then - - CATEGORY_MSG="" - grep -i "$category\|arcade\|steam\|wine\|strateg\|solitaire\|poker\|chess\|puzzle\|pinball\|adventure\|playstation\|xbox\|nintendo\|minecraft\|doom" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = graphic ]; then - - CATEGORY_MSG="" - grep -i "drawing\|jpg\|duplicated images\|gimp\|inkscape\|converseen\|visipics\|imagemagick\|photo\|svg\|png\|autocad\|blender\|3D modeling\|paint\|pixel\|wallpaper" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = internet ]; then - - CATEGORY_MSG="" - grep -i "$category\|vpn\|torrent\|p2p" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = metapackages ]; then - - CATEGORY_MSG="\"metapackages\", those few scripts that allow the use of many more programs with one installation (**$ITEMS_NUMBER_ORIGIN** items in total). Find which metapackage corresponds to the program you're interested in from this list" - grep -i "◆ kdegames \|◆ kdeutils \|◆ node \|◆ platform-tools " ./"$arch"-apps >> "$arch-$category" - grep -i "\"kdegames\"\|\"kdeutils\"\|\"node\"\|\"platform-tools\"" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = office ]; then - - CATEGORY_MSG="" - grep -i "$category\|document\|pdf\|docx\|reader\|spreadsheet" ./"$arch"-apps | grep -vi "manga\|comic" >> "$arch-$category" - - elif [ "$category" = system-monitor ]; then - - CATEGORY_MSG="" - grep -i "$category\|system monitor\|task manager\|system resource\|system resources\|linux processes" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = video ]; then - - CATEGORY_MSG="" - grep -i "$category\|stream\|media player\|film\|movies\|netflix\|iptv" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = virtual-machine ]; then - - CATEGORY_MSG="" - grep -i "$category\|virtual machine\|virtualization\|qemu" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = web-app ]; then - - CATEGORY_MSG="" - grep -i "$category\|webapp\|web app" ./"$arch"-apps >> "$arch-$category" - - elif [ "$category" = web-browser ]; then - - CATEGORY_MSG="" - grep -i "$category\|web.*browser\|browser.*web\|google-chrome\|firefox.*browser\|firefox.*fork\|fork.*firefox\|safari\|microsoft-edge\|opera.*browser\|brave.*browser\|vivaldi.*browser\|arc.*browser\|tor.*browser\|chromium\|duckduckgo.*browser\|orion.*browser\|waterfox\|librewolf\|palemoon\|seamonkey\|maxthon\|yandex.*browser\|uc.*browser\|qq.*browser\|baidu.*browser\|kiwi\|puffin\|dolphin.*browser\|epic.*browser\|avast.*browser\|avg.*browser\|midori\|falkon\|konqueror\|gnome.*web.*browser\|floorp\|zen.*browser\|slimjet\|srware.*iron\|comodo.*dragon\|sleipnir\|lunascape\|otter.*browser\|basilisk\|icecat\|kmeleon\|k-melon\|netscape\|mosaic.*browser" ./"$arch"-apps | grep -vi "embedded web browser video player" >> "$arch-$category" - - else - - # Any other categories without keywords to use out of the category name itself - grep -i "$category" ./"$arch"-apps >> "$arch-$category" - - fi - ARGS=$(sort -u ./"$arch-$category" | awk -v FS="(◆ | : )" '{print $2}' | uniq) - APPS_NUMBER=$(grep -v "\"kdegames\"\|\"kdeutils\"\|\"node\"\|\"platform-tools\"" "$arch-$category" | grep -e "$" -c) - ITEMS_NUMBER=$(grep "\"kdegames\"\|\"kdeutils\"\|\"node\"\|\"platform-tools\"" "$arch-$category" | grep -e "$" -c) - echo "# $(echo "$category"| tr '[:lower:]' '[:upper:]' | sed -- 's/-/ /g')" > "$category".md - _back_to_home_or_apps_buttons >> "$category".md - - # Customize message for each category - if [ -z "$CATEGORY_MSG" ]; then - if [ "$ITEMS_NUMBER" = 0 ]; then - CATEGORY_MSG="programs for this category" - else - CATEGORY_MSG="programs and **$ITEMS_NUMBER** items for this category" - fi - fi - if ! printf '%s\n' "$CATEGORY_MSG" | grep -q '\.$'; then - CATEGORY_MSG="${CATEGORY_MSG}." - fi - echo "#### Here are listed **$APPS_NUMBER** $CATEGORY_MSG" >> "$category".md - - echo "" >> "$category".md - ADD_SEARCH_BAR "$category".md - category_page="$category" - _categories_buttons >> "$category".md - _table_head >> "$category".md - - # Category list body - for arg in $ARGS; do - grep "\*\*\*$arg\*\*\*" ./body.txt | head -1 >> "$category".md - done - - _footer_categories >> "$category".md - rm -f ./"$arch-$category" -done - - -########################################################################################################################################################## -# COMPILE THE MAIN PAGE OF THE WEBSITE -########################################################################################################################################################## - -INDEX_HEAD() { -cat >> ./index.md << EOF -
- -###### *Welcome to the most complete database of all AppImage packages and portable applications for GNU/Linux.* - -# PORTABLE LINUX APPS - -### *the first AUR-inspired AppImage Software Center!* - --------- - -EOF -} - -INDEX_HEAD_TWO() { -cat >> ./index.md << EOF - -*From here you can download them, install them, update them (for real), get more information about the sources and their developers... and if you want, you can contribute yourself by adding the missing information, because this site is **open source**!* - --------- - -| *[Go to the applications list](https://portable-linux-apps.github.io/apps.html)* | *[Install "AM", the package manager](https://github.com/ivan-hc/AM)* | -| - | - | -| [](https://portable-linux-apps.github.io/apps.html) | [](https://github.com/ivan-hc/AM) | - - - -EOF -} - -INDEX_BODY_FULL() { -cat >> ./index.md << 'EOF' --------- - -
- ------------------------------------------------------------------------- -### Main Index ------------------------------------------------------------------------- - -- [What are the portable linux apps?](#what-are-the-portable-linux-apps) -- [How is this site different from other sites that list AppImage packages?](#how-is-this-site-different-from-other-sites-that-list-appimage-packages) -- [How can I improve the pages on this site?](#how-can-i-improve-the-pages-on-this-site) -- [Is there a centralized repository for AppImage packages?](#is-there-a-centralized-repository-for-appimage-packages) -- [How to install "AM"](#how-to-install-am) - - [What is "AppMan"?](#what-is-appman) - - [AM installation structure](#am-installation-structure) - - [How are apps installed](#how-are-apps-installed) - - [What programs can be installed](#what-programs-can-be-installed) - - [How to update all programs, for real](#how-to-update-all-programs-for-real) -- [External links index (tutorials, troubleshooting, sandboxing... more)](#external-links-index) -- [Related projects](#related-projects) - --------- - -### What are the portable linux apps? -*Portable Linux Apps are standalone applications for GNU/Linux that can (theoretically) run everywhere, also on a USB stick. These applications can be AppImage packages (see [appimage.org](https://appimage.org/)) or standalone archives.* - --------- - -### How is this site different from other sites that list AppImage packages? -*This catalog aims to survey and list all the AppImages and autonomous programs, and aims to provide a centralized point where you can document yourself on individual apps and where you can easily reach the URLs to the sources, both through the pages dedicated to each app and by reading the "installation scripts".* - -*Yeah, each app has its own installation script, PKGBUILD style, but with an alternative package manager named "**[AM](https://github.com/ivan-hc/AM)**", which works like the more classic APT, PacMan/YAY, DNF... and which can therefore place them in specific paths of the filesystem , like any program, and allows updates via a system of scripts called "AM-updater". If an app can't update itself, the dedicated "AM-updater" script will use an application-specific method to always update your favorite apps to the latest version. FOR REAL!* - -*This catalog is open source. You can edit its pages, update them and see the sources clearly, as a "wiki".* - -#### About other catalogs -*While I recognize the role they have had so far in supporting the diffusion of AppImage as a packaging format, through the years, as a former user, I would like to underline what led me to open an alternative catalogue:* -- *"**[appimage.github.io](https://appimage.github.io/)**" serves more than anything else to catalog the AppImages based on validation processes based on Github Actions (i.e. that the package is compatible with old versions of Ubuntu LTS). From the developer's point of view it's fine, but **from the point of view of the user who searches for AppImage packages without going into the depths of the internet, it's totally useless**. As a catalog it is limited to showing only that an app exists or has existed in the past, without worrying about **obsolete packages that no longer exist, but still listed only "to make up the numbers"**. Many pages have no buttons to the sources and all pages have no additional information on individual apps, **each page is simply a copy/paste message** that says that the app "is available as an AppImage which means one app = one file..." etcetera etcetera.* -- *"**[appimagehub.com](https://www.appimagehub.com/)**" hosts applications not always provided by the original developer, just check the profile of whoever uploaded the application and how many "products" they uploaded. Some admit that they are not the developers, despite having a donation button available, effectively **leading them to earning on work of others**, and are often greedy enough to not include the real source! These profiles use random hosting services for these applications, and Pling's APIs does not allow you to clearly verify the origin of any package that is downloaded. There is no control over this, and the only validity check of a "product" is the feedback of the users who use it, and which in any case is **not sufficient either to guarantee the safety of an app, nor to do justice to the real owner of that package, who was in fact "robbed" of its work**.* - -*Furthermore, **none of them track updates consistently**.* - -*From the aforementioned defects I understood what a catalog of portable applications should NOT do to be reliable.* - --------- - -## How can I improve the pages on this site? -*All pages are simple Markdown files. If you have a [Github](https://github.com) profile, just click on "**Improve this page**" at the bottom of the page you are interested in:* -- *for each app you can add additional URLs (also for donations), information, screenshots, tables and annotations related to bugs, always respecting the layout (note that the same pages are what you see in the terminal using "AM"/"AppMan" through the `-a` option);* -- *icons must be 128x128 PNG files (they could be used by "AM"/"AppMan" during installation, in case an icon is not found);* -- *the application lists instead are automatically generated by the developer of this site through [this script](https://github.com/ivan-hc/AM/blob/main/tools/am2pla-site). Any changes to the lists and descriptions must be made to [this file](https://github.com/ivan-hc/AM/blob/main/programs/x86_64-apps), which is the general list of apps managed by "AM"/"AppMan". The script will create the [Applications](apps.md) page first and then it will create and update the categories.* - -*For any suggestions, open an [issue](https://github.com/ivan-hc/AM/issues) at https://github.com/ivan-hc/AM or a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) at https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io* - --------- - -## Is there a centralized repository for AppImage packages? -*Depends on what you mean by "**centralized package repository**", if you mean a repository that stores them all like Debian-based distributions do with DEB packages, no, there are thousands of packages, and they are usually distributed to remote sites and difficult to find.* - -*If instead you mean an AUR-style repo with scripts that easily find all AppImages, **you're in the right place!*** - -*This catalog and its CLI, "[**AM**](https://github.com/ivan-hc/AM)", make it easy for you to find, install, integrate and update all AppImage packages!* - -
- -## *[https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM)* - -| [](https://github.com/ivan-hc/AM) | [](https://github.com/ivan-hc/AM) | [](https://github.com/ivan-hc/AM) | -| - | - | - | -| *sandbox AppImages* | *list available apps* | *info about the apps* | -| [](https://github.com/ivan-hc/AM) | [](https://github.com/ivan-hc/AM) | [](https://github.com/ivan-hc/AM) | -| *install applications* | *query lists using keywords* | *show the installed apps* | -| [](https://github.com/ivan-hc/AM) | [](https://github.com/ivan-hc/AM) | [](https://github.com/ivan-hc/AM) | -| *create and restore snapshots* | *update everything* | *get rid of libfuse2* | - -
- -*This catalog is just the frontend for an ever growing database that aims to extend not only to x86_64 architecture apps listed here, but also to all others, from the modern ARM64/aarch64 to oldest i686, as an universal solution for all AppImages and portable programs for GNU/Linux!* - -*All the installation scripts are stored in the repository of the "**AM**" package manager.* - ------------------------------------------------------------------------- - -# How to install AM - -*To install "AM" you must first install the "core" dependencies from your package manager:* - -| command | motivation | pre-installed? | -| - | - | - | -| `coreutils` | it's a suite of core commands | YES, on almost all distributions | -| `curl` | network utility needed to read online text like lists, URLs and versions | not in all distibutions | -| `grep` | a string search utility | YES, on many distributions | -| `sed` | stream editor for filtering and transforming text | YES, in almost all distributions | - -*NOTE, if you install "AM" (system) and not "AppMan" (local), **you need `sudo` or `doas` for root privileges**.* - -*Other "optional" programs (needed by the apps themselves) may be notified if they are missing while you are using AM or AppMan, but their absence would not prevent you from using AM/AppMan itself.* - -### Quick installation - -*Copy/paste the following one line command to download and run the "[AM-INSTALLER](https://github.com/ivan-hc/AM/blob/main/AM-INSTALLER)" script* - -*Using `wget`* -``` -wget -q https://raw.githubusercontent.com/ivan-hc/AM/main/AM-INSTALLER && chmod a+x ./AM-INSTALLER && ./AM-INSTALLER -``` -*or using `curl`* -``` -curl -s -Lo ./AM-INSTALLER https://raw.githubusercontent.com/ivan-hc/AM/main/AM-INSTALLER && chmod a+x ./AM-INSTALLER && ./AM-INSTALLER && rm ./AM-INSTALLER -``` - -*...below, the screenshot of what will appear.* - -| installer | -| - | - -*Type "1" to install "AM", "2" to install "[AppMan](#what-is-appman)". Any other key will abort the installation.* - -**Installation is complete!** - -*Run `am -h` or jump to "**[Usage](#usage)**" to see all the available options.* - ------------------------------------------------------------------------- - -### What is AppMan? - -*AppMan is a portable version of "AM", limited to installing and managing apps only locally and without root privileges.* - -*The command name changes, from `am` to `appman`, but the script is the same.* - -*"AM" on the contrary, provides a "fixed" installation, but can install and manage apps both locally and at the system level.* - -*I recommend "AM" to privileged users who want to install and manage apps at multiple levels, and "AppMan" to non-privileged users who do not have large needs.* - ------------------------------------------------------------------------- - -### AM installation structure - -*The classic "AM" installation has the following structure:* -``` -/opt/am/APP-MANAGER ==> /usr/local/bin/am -/opt/am/modules -/opt/am/remove -``` -*Where the command `/usr/local/bin/am` is just a symbolic link to `/opt/am/APP-MANAGER`. The directory `/opt/am/modules` contains the modules "not vital" for "AM" but necessary for managing the apps. The script `/opt/am/remove` is instead necessary for removing "AM".* - ------------------------------------------------------------------------- - -### How are apps installed - -*The system-wide AppImage integration has the following structure:* -``` -/opt/$PROGRAM/ -/opt/$PROGRAM/$PROGRAM -/opt/$PROGRAM/AM-updater -/opt/$PROGRAM/remove -/opt/$PROGRAM/icons/$ICON-NAME -/usr/local/bin/$PROGRAM -/usr/local/share/applications/$PROGRAM-AM.desktop -``` -*Locally installed apps can have a directory of your choice, depending on what you decided when you first started `am -i --user {PROGRAM}` or when you started `appman` (if you chose [AppMan](#what-is-appman)) or by using the `am --user` command.* - -*In fact, the `--user` command can be used as a "flag" for application installation options, allowing you to integrate them locally and without root permissions, as AppMan does.* - -*For example, let's say you want to create and use the `/home/USER/Applications` directory, here is the structure of a locally embedded AppImage:* -``` -~/Applicazioni/$PROGRAM/ -~/Applicazioni/$PROGRAM/$PROGRAM -~/Applicazioni/$PROGRAM/AM-updater -~/Applicazioni/$PROGRAM/remove -~/Applicazioni/$PROGRAM/icons/$ICON-NAME -~/.local/bin/$PROGRAM -~/.local/share/applications/$PROGRAM-AM.desktop -``` - ------------------------------------------------------------------------- - -| [Install "AM"/"AppMan"](#installation) | [Back to "Main Index"](#main-index) | -| - | - | - ------------------------------------------------------------------------- - -# What programs can be installed - -*"AM" installs, removes, updates and manages only standalone programs, ie those programs that can be run from a single directory in which they are contained.* - -*1. **PORTABLE PROGRAMS** from official sources (see NodeJS, Platform Tools...), extracted from official .deb/tar/zip packages.* - -*2. **APPIMAGES**, from both official and unofficial sources (I also create unofficial AppImages), or compiled on-the-fly with [pkg2appimage](https://github.com/AppImage/pkg2appimage) and [appimagetool](https://github.com/AppImage/AppImageKit), like an AUR helper, from official archives.* - -*3. **THIRD-PARTY LIBRARIES** if they are missing in your repositories.* - -*The database aims to be a reference point where you can download all the AppImage packages scattered around the web, otherwise unobtainable, as you would expect from any package manager, through specific installation scripts for each application, as happens with the AUR PKGBUILDs, on Arch Linux. You can see all of them [here](https://github.com/ivan-hc/AM/tree/main/programs), divided by architecture.* - -*You can view basic information, site links and sources using the related command `am -a {PROGRAM}`, or visit [**portable-linux-apps.github.io/apps**](https://portable-linux-apps.github.io/apps).* - ------------------------------------------------------------------------- - -| [Back to "Main Index"](#main-index) | -| - | - ------------------------------------------------------------------------- - -# How to update all programs, for real - -*Most of the apps managed by "AM" have a script called `AM-updater`. It tells how updates are checked when running the `am -u` command.* - -*In most cases, the "version comparison" is used between the installed one (file `version`) and an online source (official or not, depending on how hard or easy it is to find a download URL or just a number, using the terminal). In other cases, AppImages can rely on "`appimageupdatetool`" if they support "delta updates" (install it with the command `am -i appimageupdatetool`). However, there are some programs that update themselves (and among these the most famous is certainly Firefox, all official development builds).* - -### How to update all installed apps - -*Option `-u` or `update` updates all the installed apps and keeps "AM"/"AppMan" in sync with the latest version and all latest bug fixes.* - -*1. To update only the programs, use `am -u --apps` / `appman -u --apps`* - -*2. To update just one program, use `am -u $PROGRAM` / `appman -u $PROGRAM`* - -*3. To update all the programs and "AM"/"AppMan" itself, just run the command`am -u` / `appman -u`* - -*4. To update only "AM"/"AppMan" and the modules use the option `-s` instead, `am -s` / `appman -s`* - -### How to update everything using Topgrade - -*Keeping your system up to date usually involves invoking multiple package managers. This results in big, non-portable shell one-liners saved in your shell. To remedy this, Topgrade detects which tools you use and runs the appropriate commands to update them.* - -*Install the "`topgrade`" package using the command* -``` -am -i topgrade -``` -*or* -``` -am -i --user topgrade -``` -*Visit [github.com/topgrade-rs/topgrade](https://github.com/topgrade-rs/topgrade) to learn more.* - ------------------------------------------------------------------------- - -| [Back to "Main Index"](#main-index) | -| - | - ------------------------------------------------------------------------- -### External links index ------------------------------------------------------------------------- -*All the guides listed here are available at [***github.com/ivan-hc/AM***](https://github.com/ivan-hc/AM)* - -- [Install applications](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/install.md) -- [Install only AppImages](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/install-appimage.md) - - [Install and sandbox AppImages in one go](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/install-appimage.md#install-and-sandbox-appimages-in-one-go) -- [Install AppImages not listed in this database but available in other github repos](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/extra.md) -- [List the installed applications](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/files.md) -- [List and query all the applications available on the database](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/list-and-query.md) -- [Update all](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/update.md) -- [Backup and restore installed apps using snapshots](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/backup-and-overwrite.md) -- [Remove one or more applications](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/remove.md) -- [Clone a set of programs installed from other AM and AppMan configurations](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/clone.md) -- [Change the destination path of installed programs](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/relocate.md) -- [Convert Type2 AppImages requiring libfuse2 to New Generation AppImages](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/nolibfuse.md) -- [Integrate local AppImages into the menu by dragging and dropping them](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/launcher.md) - - [How to create a launcher for a local AppImage](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/launcher.md#how-to-create-a-launcher-for-a-local-appimage) - - [How to remove the orphan launchers](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/launcher.md#how-to-remove-the-orphan-launchers) - - [AppImages from external media](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/launcher.md#appimages-from-external-media) - - [Update scattered AppImages](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/launcher.md#update-scattered-appimages) -- [Sandbox an AppImage](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/sandbox.md) - - [How to enable a sandbox](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/sandbox.md#how-to-enable-a-sandbox) - - [How to disable a sandbox](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/sandbox.md#how-to-disable-a-sandbox) - - [Sandboxing example](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/sandbox.md#sandboxing-example) - - [About Aisap sandboxing](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/sandbox.md#about-aisap-sandboxing) -- [How to update or remove apps manually](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/remove.md#how-to-update-or-remove-apps-manually) -- [Downgrade an installed app to a previous version](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/downgrade.md) -- [How to use multiple versions of the same application](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/backup-and-overwrite.md#how-to-use-multiple-versions-of-the-same-application) -- [Create and test your own installation script](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md) - - [Option Zero: "AppImages"](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#option-zero-appimages) - - [Option One: "build AppImages on-the-fly"](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#option-one-build-appimages-on-the-fly) - - [Option Two: "Archives and other programs"](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#option-two-archives-and-other-programs) - - [How an installation script works](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#how-an-installation-script-works) - - [How to test an installation script](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#how-to-test-an-installation-script) - - [How to submit a Pull Request](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#how-to-submit-a-pull-request) -- [Third-party databases for applications (NeoDB)](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/newrepo.md) -- [BSD, freeBSD and derivative systems: configuration and troubleshooting](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/bsd.md) - -[Instructions for Linux Distro Maintainers](https://github.com/ivan-hc/AM#instructions-for-linux-distro-maintainers) - -[Troubleshooting](https://github.com/ivan-hc/AM#troubleshooting) -- [An application does not work, is old and unsupported](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#an-application-does-not-work-is-old-and-unsupported) -- [Cannot download or update an application](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#cannot-download-or-update-an-application) -- [Cannot mount and run AppImages](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#cannot-mount-and-run-appimages) -- [Checksum does not match or missing verified status](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#checksum-does-not-match-or-missing-verified-status) -- [Failed to open squashfs image](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#failed-to-open-squashfs-image) -- [Spyware, malware and dangerous software](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#spyware-malware-and-dangerous-software) -- [Stop AppImage prompt to create its own launcher, desktop integration and doubled launchers](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#stop-appimage-prompt-to-create-its-own-launcher-desktop-integration-and-doubled-launchers) -- [The script points to "releases" instead of downloading the latest stable](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#the-script-points-to-releases-instead-of-downloading-the-latest-stable) -- [Ubuntu mess](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#ubuntu-mess) -- [Wrong download link](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#wrong-download-link) - ------------------------------------------------------------------------- - -| [Back to "Main Index"](#main-index) | -| - | - ------------------------------------------------------------------------- -# Related projects -#### Side Projects -- *[amcheck](https://github.com/ivan-hc/amcheck), checks the validity of scripts in this database and monitors the availability of AppImages* -- *[am-extras](https://github.com/ivan-hc/am-extras), lists applications from third-party databases* -- *[am-gui](https://github.com/Shikakiben/AM-GUI), a graphical Front for AM, by @Shikakiben* -- *[vappman](https://github.com/joedefen/vappman), a visual (curses) TUI interface to AppMan, by @joedefen* - -#### My other projects -- *[AppImaGen](https://github.com/ivan-hc/AppImaGen), easily create AppImages from Ubuntu PPAs or Debian using pkg2appimage and appimagetool* -- *[ArchImage](https://github.com/ivan-hc/ArchImage), create AppImages for all distributions using Arch Linux packages. Powered by JuNest* -- *[Firefox for Linux scripts](https://github.com/ivan-hc/Firefox-for-Linux-scripts), easily install the official releases of Firefox for Linux* -- *[My AppImage packages](https://github.com/ivan-hc#my-appimage-packages) the complete list of packages managed by me and available in this database* -- *[portable2appimage](https://github.com/ivan-hc/portable2appimage), convert standalone, self-contained portable apps into AppImage packages* -- *[Snap2AppImage](https://github.com/ivan-hc/Snap2AppImage), try to convert Snap packages to AppImages* - ------------------------------------------------------------------------- - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - ------------------------------------------------------------------------- - -| [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) | [**PayPal.me**](https://paypal.me/IvanAlexHC) | [Install "AM"/"AppMan"](#installation) | ["Main Index"](#main-index) | -| - | - | - | - | - ------------------------------------------------------------------------- - - -EOF -} - -ST_APPS_NUMBER=$((APPS_NUMBER_ORIGIN - APPIMAGES_NUMBER)) -rm -f ./index.md -INDEX_HEAD -echo "#### *This site lists **$APPS_NUMBER_ORIGIN** unique apps (**$APPIMAGES_NUMBER** Appimage packages and **$ST_APPS_NUMBER** standalone/portable programs), plus **$ITEMS_NUMBER_ORIGIN** items.*" >> ./index.md -INDEX_HEAD_TWO -category_page="" -_categories_buttons >> ./index.md -INDEX_BODY_FULL - -rm ./"$arch"-apps ./stats-appimages ./stats-portable ./body.txt* -rm -f ./aarch64-apps ./i686-apps +def match_by_pattern(cat, pat, exclude): + matched = [] + for name, desc in apps_info.items(): + line = f"◆ {name} : {desc}" + if pat.search(line): + if exclude and exclude.search(line): + continue + matched.append({"name": name, "description": desc}) + matched.sort(key=lambda x: x["name"].lower()) + return matched + +def write_json(cat, matched): + with open(f"categories/{cat}.json", "w") as f: + f.write("[\n") + for i, app in enumerate(matched): + if i > 0: + f.write(",\n") + json.dump(app, f, indent=None, separators=(",", ":"), ensure_ascii=False) + f.write("\n]\n") + print(f"categories/{cat}.json ({len(matched)} apps)") + +os.makedirs("categories", exist_ok=True) + +# --- AI (case-sensitive "AI" match + space-delimited meta, matching upstream) --- +ai_set = set() +for name, desc in apps_info.items(): + line = f"◆ {name} : {desc}" + # case-sensitive "AI" + if re.search(r"AI", line): + ai_set.add(name) + continue + # case-insensitive for all other terms, with " meta " (space-delimited) + if re.search( + r"chatgpt|openai|gemini|claude|copilot|perplexity| meta |grok|" + r"anthropic|huggingface|mistral|cohere|together|replicate|cursor|" + r"codeium|tabnine|replit|windsurf|midjourney|firefly|canva|runway|" + r"leonardo|synthesia|elevenlabs|heygen|zapier|z\.ai|clickup|grammarly|" + r"ollama|lmstudio|openwebui|salesforce|watsonx", + line, + re.IGNORECASE, + ): + ai_set.add(name) + +ai_matched = [{"name": n, "description": apps_info[n]} for n in sorted(ai_set, key=str.lower)] +write_json("ai", ai_matched) + +# --- Pattern-based categories --- +for cat in sorted(CATEGORY_PATTERNS.keys()): + pat = CATEGORY_PATTERNS[cat] + if pat is None: + continue + exclude = CATEGORY_EXCLUDE.get(cat) + matched = match_by_pattern(cat, pat, exclude) + write_json(cat, matched) + +# --- metapackages --- +meta_matched = [] +for name in METAPACKAGE_NAMES: + if name in apps_info: + meta_matched.append({"name": name, "description": apps_info[name]}) +# Also include apps whose description references "kdegames", "kdeutils", "node", "platform-tools" +for name, desc in apps_info.items(): + if name in METAPACKAGE_NAMES: + continue + line = f"◆ {name} : {desc}" + if re.search(r'"kdegames"|"kdeutils"|"node"|"platform-tools"', line, re.IGNORECASE): + meta_matched.append({"name": name, "description": desc}) +meta_matched.sort(key=lambda x: x["name"].lower()) +write_json("metapackages", meta_matched) + +# --- portable (from stats-portable minus #itsappimageonthefly, looked up in apps_info) --- +portable_matched = [] +for n in sorted(portable_no_iotf, key=str.lower): + if n in apps_info: + portable_matched.append({"name": n, "description": apps_info[n]}) + else: + portable_matched.append({"name": n, "description": lookup(n)}) +write_json("portable", portable_matched) + +# --- portable-cli (from stats-portable with #itscliapp) --- +pcli_matched = [] +for n in sorted(portable_cli, key=str.lower): + if n in apps_info: + pcli_matched.append({"name": n, "description": apps_info[n]}) + else: + pcli_matched.append({"name": n, "description": lookup(n)}) +write_json("portable-cli", pcli_matched) + +# --- portable-desktop (from stats-portable with #itsdesktopapp) --- +pdesk_matched = [] +for n in sorted(portable_desktop, key=str.lower): + if n in apps_info: + pdesk_matched.append({"name": n, "description": apps_info[n]}) + else: + pdesk_matched.append({"name": n, "description": lookup(n)}) +write_json("portable-desktop", pdesk_matched) + +# --- appimage-on-the-fly (from stats-portable with #itsappimageonthefly) --- +iotf_matched = [] +for n in sorted(portable_iotf, key=str.lower): + if n in apps_info: + iotf_matched.append({"name": n, "description": apps_info[n]}) + else: + iotf_matched.append({"name": n, "description": lookup(n)}) +write_json("appimage-on-the-fly", iotf_matched) + +# --- appimages (from stats-appimages, looked up in apps_info) --- +ai_apps = [] +for n in sorted(appimage_names, key=str.lower): + if n in apps_info: + ai_apps.append({"name": n, "description": apps_info[n]}) + else: + ai_apps.append({"name": n, "description": lookup(n)}) +write_json("appimages", ai_apps) + +# --- category pages --- + +CAT_PAGE_TEMPLATE = """ + + + + + $CAT_NAME_PRETTY - PORTABLE LINUX APPS + + + + + + + + + + + + + + + +
+ +
+

$CAT_NAME_PRETTY

+

+ +
+
+ + + + +
+ + + + + +""" + +def pretty_name(s: str) -> str: + toks = s.split('-') + words = [] + + for tok in toks: + if tok == "gnome" or tok == "kde": + words.append(tok.upper()) # uppercase gnome and kde + continue + if tok == "youtube": + words.append("YouTube") + continue + if len(tok) == 2: + cap = tok.upper() # uppercase two letter words + words.append(cap) + continue + + words.append(tok.capitalize()) # capitalize first letter of each word + + return " ".join(words) + +# create html pages for each .json file in categories folder +for f in os.listdir("categories/"): + if f.startswith("."): + continue + + cat_name = f[:-5] # name without .json extension + cat_pretty = pretty_name(cat_name) + print(cat_name, cat_pretty) + + text = CAT_PAGE_TEMPLATE.replace("$CAT_NAME_PRETTY", cat_pretty).replace("$CAT_NAME", cat_name) + + with open(f"{cat_name}.html", 'w') as file: + file.write(text) + + +# --- stats --- +metapackage_ref = re.compile(r'"kdegames"|"kdeutils"|"node"|"platform-tools"', re.IGNORECASE) +items_count = sum(1 for desc in apps_info.values() if metapackage_ref.search(desc)) +unique_count = len(apps_info) - items_count +appimage_count = len(appimage_names) +portable_count = len(portable_no_iotf) + +stats_html = f'{unique_count} unique apps — {appimage_count} AppImage packages — {portable_count} standalone/portable programs — {items_count} items' + +index_path = "index.html" +with open(index_path) as f: + index_html = f.read() +index_html = index_html.replace('', stats_html) +with open(index_path, "w") as f: + f.write(index_html) +print(f"Updated {index_path} with stats") diff --git a/android.md b/android.md deleted file mode 100644 index ca634de8f..000000000 --- a/android.md +++ /dev/null @@ -1,161 +0,0 @@ -# ANDROID - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **25** programs and **8** items for this category. - - - - -#### *Categories* - -
- AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
- ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***adb***](apps/platform-tools.md) | *Command-line tool for communicating with Android devices or emulators. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***air-controller-desktop***](apps/air-controller-desktop.md) | *Android phone assistant,powered by Flutter.*..[ *read more* ](apps/air-controller-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/air-controller-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/air-controller-desktop) | -| | [***android-messages-desktop***](apps/android-messages-desktop.md) | *Messages for web, as a desktop app.*..[ *read more* ](apps/android-messages-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-messages-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-messages-desktop) | -| | [***android-studio***](apps/android-studio.md) | *Unofficial. Android Studio as AppImages, stable.*..[ *read more* ](apps/android-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-studio) | -| | [***android-studio-latest***](apps/android-studio-latest.md) | *Unofficial. Android Studio as AppImages, release.*..[ *read more* ](apps/android-studio-latest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-studio-latest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-studio-latest) | -| | [***android-tools***](apps/android-tools.md) | *Unofficial AppImage for the Android Platform tools, adb, fastboot, etc.*..[ *read more* ](apps/android-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-tools) | -| | [***android-translation-layer***](apps/android-translation-layer.md) | *Unofficial, A translation layer that allows running Android apps on a Linux system.*..[ *read more* ](apps/android-translation-layer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-translation-layer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-translation-layer) | -| | [***apk-editor-studio***](apps/apk-editor-studio.md) | *Easy to use APK, Android reverse-engineering tool.*..[ *read more* ](apps/apk-editor-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apk-editor-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apk-editor-studio) | -| | [***aya***](apps/aya.md) | *A desktop application for easily controlling android devices, which can be considered as a GUI wrapper for ADB.*..[ *read more* ](apps/aya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aya) | -| | [***crossmobile***](apps/crossmobile.md) | *Create native iOS/Android/Windows apps in Java.*..[ *read more* ](apps/crossmobile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crossmobile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crossmobile) | -| | [***escrcpy***](apps/escrcpy.md) | *Graphical Scrcpy to display and control Android, devices powered by Electron.*..[ *read more* ](apps/escrcpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/escrcpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/escrcpy) | -| | [***etc1tool***](apps/platform-tools.md) | *Utility for compressing and decompressing ETC1 texture files. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***fastboot***](apps/platform-tools.md) | *Android bootloader tool for flashing, unlocking, and managing firmware. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***fauxx***](apps/fauxx.md) | *Cross-device companion to Fauxx Android app that generates realistic decoy web activity through synthetic personas to pollute the profiles that data brokers and ad-tech build about you.*..[ *read more* ](apps/fauxx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fauxx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fauxx) | -| | [***firetv-toolkit***](apps/firetv-toolkit.md) | *Android-Toolkit, a GUI for adb, modify android devices.*..[ *read more* ](apps/firetv-toolkit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firetv-toolkit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firetv-toolkit) | -| | [***flyingcarpet***](apps/flyingcarpet.md) | *Cross-platform AirDrop. File transfer between Android, iOS, Linux, macOS, and Windows over ad hoc WiFi. No network infrastructure required, just two devices with WiFi chips in close range.*..[ *read more* ](apps/flyingcarpet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flyingcarpet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flyingcarpet) | -| | [***github-store***](apps/github-store.md) | *A free, open-source app store for GitHub releases. Browse, discover, and install apps with one click. Powered by Kotlin and Compose Multiplatform for Android & Desktop.*..[ *read more* ](apps/github-store.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/github-store) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/github-store) | -| | [***guiscrcpy***](apps/guiscrcpy.md) | *GUI integration for android screen mirroring system.*..[ *read more* ](apps/guiscrcpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/guiscrcpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/guiscrcpy) | -| | [***hprof-conv***](apps/platform-tools.md) | *Converts Android HPROF heap dumps to standard Java HPROF format. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***joy2droidx***](apps/joy2droidx.md) | *Turn Android phones into virtual Xbox 360 controller.*..[ *read more* ](apps/joy2droidx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/joy2droidx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/joy2droidx) | -| | [***kdeconnect***](apps/kdeconnect.md) | *Unofficial, A project that enables all your Android devices to communicate with each other.*..[ *read more* ](apps/kdeconnect.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeconnect) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeconnect) | -| | [***koreader***](apps/koreader.md) | *A document viewer for E Ink devices. Supported fileformats include EPUB, PDF, DjVu, XPS, CBT, CBZ, FB2, PDB, TXT, HTML, RTF, CHM, DOC, MOBI and ZIP files. It’s available for Kindle, Kobo, PocketBook, Android and desktop Linux.*..[ *read more* ](apps/koreader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koreader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koreader) | -| | [***koreader-nightly***](apps/koreader-nightly.md) | *A document viewer for E Ink devices. Supported fileformats include EPUB, PDF, DjVu, XPS, CBT, CBZ, FB2, PDB, TXT, HTML, RTF, CHM, DOC, MOBI and ZIP files. It’s available for Kindle, Kobo, PocketBook, Android and desktop Linux. Nightly build.*..[ *read more* ](apps/koreader-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koreader-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koreader-nightly) | -| | [***linkora***](apps/linkora.md) | *Link organizer for Android and desktop with self-hosted sync.*..[ *read more* ](apps/linkora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linkora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linkora) | -| | [***make_f2fs***](apps/platform-tools.md) | *Creates F2FS filesystems optimized for flash storage. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***make_f2fs_casefold***](apps/platform-tools.md) | *Creates F2FS filesystems with case-insensitive filename support. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***mke2fs***](apps/platform-tools.md) | *Creates ext2/ext3/ext4 Linux filesystems. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***platform-tools***](apps/platform-tools.md) | *Official Suite of command line utilities to manage Android devices.*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***rquickshare***](apps/rquickshare.md) | *Rust implementation of NearbyShare/QuickShare from Android.*..[ *read more* ](apps/rquickshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rquickshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rquickshare) | -| | [***scrcpy***](apps/scrcpy.md) | *Display and control your Android device.*..[ *read more* ](apps/scrcpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scrcpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scrcpy) | -| | [***sqlite3***](apps/platform-tools.md) | *Command-line tool for managing SQLite databases. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***uad-ng***](apps/uad-ng.md) | *GUI Rust wrapper for ADB to debloat non-rooted Android devices.*..[ *read more* ](apps/uad-ng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uad-ng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uad-ng) | -| | [***waydroid-helper***](apps/waydroid-helper.md) | *App that provides a user-friendly way to configure Waydroid and install extensions, including Magisk and ARM translation (android).*..[ *read more* ](apps/waydroid-helper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/waydroid-helper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/waydroid-helper) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/app.html b/app.html new file mode 100644 index 000000000..fb7dce458 --- /dev/null +++ b/app.html @@ -0,0 +1,50 @@ + + + + + + App - PORTABLE LINUX APPS + + + + + + + + + + + + + + + + +
+ +← Back + +
+ + + + + +
+ + + + diff --git a/appimage-on-the-fly.md b/appimage-on-the-fly.md deleted file mode 100644 index 7301daac1..000000000 --- a/appimage-on-the-fly.md +++ /dev/null @@ -1,140 +0,0 @@ -# APPIMAGE ON THE FLY - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **12** AppImages built on the fly from the official portable builds, showing how easily portable apps can be converted to AppImages to gain isolated dotfiles, sandboxing via [AM](https://github.com/ivan-hc/AM) and [AppMan](https://github.com/ivan-hc/AppMan), and reduced disk usage, serving as a proof of concept to encourage upstream developers to distribute them directly in such packaging format. Powered by **[portable2appimage](https://github.com/ivan-hc/portable2appimage)**. - - - - -#### *Categories* - -
- AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
- ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***czkawka***](apps/czkawka.md) | *App to find duplicates, empty folders, similar images etc.*..[ *read more* ](apps/czkawka.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/czkawka) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/czkawka) | -| | [***fdm***](apps/fdm.md) | *Free Download Manager, multiplatform powerful modern download accelerator and organizer.*..[ *read more* ](apps/fdm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fdm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fdm) | -| | [***krokiet***](apps/krokiet.md) | *App to find duplicates, empty folders, similar images etc. The successor of czkawka.*..[ *read more* ](apps/krokiet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/krokiet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/krokiet) | -| | [***ntsc-rs***](apps/ntsc-rs.md) | *Free, open-source VHS effect. Standalone application + plugin (After Effects, Premiere, and OpenFX).*..[ *read more* ](apps/ntsc-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ntsc-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ntsc-rs) | -| | [***ollama***](apps/ollama.md) | *Get up and running with Llama 3, Mistral, Gemma, and other LLMs.*..[ *read more* ](apps/ollama.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ollama) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ollama) | -| | [***syncthing***](apps/syncthing.md) | *Open Source Continuous File Synchronization.*..[ *read more* ](apps/syncthing.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/syncthing) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/syncthing) | -| | [***syncthingctl***](apps/syncthingctl.md) | *Tray control application and Dolphin/Plasma integration for Syncthing.*..[ *read more* ](apps/syncthingctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/syncthingctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/syncthingctl) | -| | [***syncthingtray***](apps/syncthingtray.md) | *Tray application and Dolphin/Plasma integration for Syncthing.*..[ *read more* ](apps/syncthingtray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/syncthingtray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/syncthingtray) | -| | [***terabox***](apps/terabox.md) | *Terabox is the simplest way to send your files around the world. Back up and Share photos, videos, docs, and other files of any size to cloud storage.*..[ *read more* ](apps/terabox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/terabox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/terabox) | -| | [***tixati***](apps/tixati.md) | *A New and Powerful P2P System 100% Free, Simple and Easy to Use Bittorrent Client.*..[ *read more* ](apps/tixati.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tixati) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tixati) | -| | [***windows95***](apps/windows95.md) | *Unofficial. Windows 95 in Electron.*..[ *read more* ](apps/windows95.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/windows95) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/windows95) | -| | [***yandex-music***](apps/yandex-music.md) | *Personal recommendations, mixes for any occasion and the latest musical releases.*..[ *read more* ](apps/yandex-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yandex-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yandex-music) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/appimages.md b/appimages.md deleted file mode 100644 index 306eca038..000000000 --- a/appimages.md +++ /dev/null @@ -1,2850 +0,0 @@ -# APPIMAGES - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed the **2722** unique Appimages managed by [AM](https://github.com/ivan-hc/AM) and [AppMan](https://github.com/ivan-hc/AppMan) for the x86_64 architecture. - - - - -#### *Categories* - -
- AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
- ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***0ad***](apps/0ad.md) | *FOSS historical Real Time Strategy, RTS game of ancient warfare.*..[ *read more* ](apps/0ad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/0ad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/0ad) | -| | [***0ad-prerelease***](apps/0ad-prerelease.md) | *FOSS historical Real Time Strategy, RTS game of ancient warfare (Pre-release).*..[ *read more* ](apps/0ad-prerelease.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/0ad-prerelease) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/0ad-prerelease) | -| | [***12to11***](apps/12to11.md) | *Unofficial, tool for running Wayland applications on an X server.*..[ *read more* ](apps/12to11.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/12to11) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/12to11) | -| | [***3d-puzzles***](apps/3d-puzzles.md) | *3D-Puzzles are Rubik, Dogic and Dogic12.*..[ *read more* ](apps/3d-puzzles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/3d-puzzles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/3d-puzzles) | -| | [***432hz-player***](apps/432hz-player.md) | *Because most music is recorded in 440hz, Audio Player.*..[ *read more* ](apps/432hz-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/432hz-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/432hz-player) | -| | [***5ire***](apps/5ire.md) | *5ire is a cross-platform desktop AI assistant, MCP client. It compatible with major service providers, supports local knowledge base and tools via model context protocol servers.*..[ *read more* ](apps/5ire.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/5ire) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/5ire) | -| | [***86box***](apps/86box.md) | *Emulator of x86-based machines based on PCem.*..[ *read more* ](apps/86box.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/86box) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/86box) | -| | [***86box-enhanced***](apps/86box-enhanced.md) | *Unofficial, emulator of x86-based machines based on PCem.*..[ *read more* ](apps/86box-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/86box-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/86box-enhanced) | -| | [***9launcher***](apps/9launcher.md) | *An actively maintained and cross platform remake of Touhou Relauncher.*..[ *read more* ](apps/9launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/9launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/9launcher) | -| | [***aaaaxy***](apps/aaaaxy.md) | *A nonlinear puzzle platformer, game.*..[ *read more* ](apps/aaaaxy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aaaaxy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aaaaxy) | -| | [***abaddon***](apps/abaddon.md) | *Unofficial, an alternative Discord client with voice support made with C++ and GTK 3.*..[ *read more* ](apps/abaddon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/abaddon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/abaddon) | -| | [***abiword***](apps/abiword.md) | *Unofficial. A light and free word processing software.*..[ *read more* ](apps/abiword.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/abiword) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/abiword) | -| | [***acestep-cpp-ui***](apps/acestep-cpp-ui.md) | *AceStep-cpp UI, 100% local and free Suno alternative powered by acestep-cpp. Native C++ bundle for local AI music generation with 0% python.*..[ *read more* ](apps/acestep-cpp-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/acestep-cpp-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/acestep-cpp-ui) | -| | [***acestream***](apps/acestream.md) | *Створення бінарника AppImage з AceStream Media.*..[ *read more* ](apps/acestream.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/acestream) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/acestream) | -| | [***acreom***](apps/acreom.md) | *Acreom desktop app releases.*..[ *read more* ](apps/acreom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/acreom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/acreom) | -| | [***actiona***](apps/actiona.md) | *Actiona is an automation tool that allows you to execute many actions on your computer such as emulating mouse clicks, key presses, showing message boxes, editing text files, etc.*..[ *read more* ](apps/actiona.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/actiona) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/actiona) | -| | [***actual***](apps/actual.md) | *A super fast privacy-focused app for managing your finances.*..[ *read more* ](apps/actual.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/actual) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/actual) | -| | [***adobe-flash-player***](apps/adobe-flash-player.md) | *Unofficial port. Adobe Flash is a mostly discontinued multimedia software platform used for production of animations, rich internet applications, desktop applications, mobile apps, mobile games, and embedded web browser video players. Over 67 billion devices use adobe flash player!*..[ *read more* ](apps/adobe-flash-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/adobe-flash-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/adobe-flash-player) | -| | [***advanced-passgen***](apps/advanced-passgen.md) | *Advanced Password Generator.*..[ *read more* ](apps/advanced-passgen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/advanced-passgen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/advanced-passgen) | -| | [***advanced-rest-client***](apps/advanced-rest-client.md) | *Advanced REST Client and API console, by Mulesoft.*..[ *read more* ](apps/advanced-rest-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/advanced-rest-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/advanced-rest-client) | -| | [***aegisub***](apps/aegisub.md) | *Cross-platform advanced subtitle editor, with new feature branches. Read the README on the feature branch. Cross-platform advanced subtitle editor Cross-platform advanced subtitle editor.*..[ *read more* ](apps/aegisub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aegisub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aegisub) | -| | [***aerofoil***](apps/aerofoil.md) | *Unofficial, multiplatform port of Glider PRO.*..[ *read more* ](apps/aerofoil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aerofoil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aerofoil) | -| | [***affine***](apps/affine.md) | *Next-gen knowledge base that brings planning, sorting and creating.*..[ *read more* ](apps/affine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/affine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/affine) | -| | [***affine-beta***](apps/affine-beta.md) | *Next-gen knowledge base that brings planning, sorting and creating.*..[ *read more* ](apps/affine-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/affine-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/affine-beta) | -| | [***affine-canary***](apps/affine-canary.md) | *Next-gen knowledge base that brings planning/sorting/creating.*..[ *read more* ](apps/affine-canary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/affine-canary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/affine-canary) | -| | [***affinity***](apps/affinity.md) | *Affinity is a suite of professional graphic design, photo editing, and desktop publishing software. It's a common alternative to software from the Adobe Suite such as for Adobe Photoshop, Adobe Illustrator, Adobe InDesign.*..[ *read more* ](apps/affinity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/affinity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/affinity) | -| | [***agregore***](apps/agregore.md) | *A minimal browser for the distributed web, Desktop version.*..[ *read more* ](apps/agregore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/agregore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/agregore) | -| | [***ahk_x11***](apps/ahk_x11.md) | *AutoHotkey for Linux (X11-based systems).*..[ *read more* ](apps/ahk_x11.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ahk_x11) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ahk_x11) | -| | [***ai-bot-workspace***](apps/ai-bot-workspace.md) | *Electron app including testing workspaces.*..[ *read more* ](apps/ai-bot-workspace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ai-bot-workspace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ai-bot-workspace) | -| | [***aidm***](apps/aidm.md) | *AppImage Desktop Maker.*..[ *read more* ](apps/aidm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aidm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aidm) | -| | [***aillio-ts***](apps/aillio-ts.md) | *The desktop application for Aillio Bullet R1.*..[ *read more* ](apps/aillio-ts.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aillio-ts) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aillio-ts) | -| | [***air-controller-desktop***](apps/air-controller-desktop.md) | *Android phone assistant,powered by Flutter.*..[ *read more* ](apps/air-controller-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/air-controller-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/air-controller-desktop) | -| | [***airspaces***](apps/airspaces.md) | *An online map for your X-Plane flight sessions.*..[ *read more* ](apps/airspaces.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/airspaces) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/airspaces) | -| | [***aisap***](apps/aisap.md) | *Tool to make sandboxing AppImages easy through bwrap/bubblewrap.*..[ *read more* ](apps/aisap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aisap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aisap) | -| | [***aisleriot***](apps/aisleriot.md) | *Unofficial. A card game featuring over 80 different solitaire-type card games.*..[ *read more* ](apps/aisleriot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aisleriot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aisleriot) | -| | [***akasha***](apps/akasha.md) | *AKASHA community client.*..[ *read more* ](apps/akasha.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/akasha) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/akasha) | -| | [***akhenaten***](apps/akhenaten.md) | *Unofficial, open-source engine for Pharaoh (+Cleopatra) city-building game.*..[ *read more* ](apps/akhenaten.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/akhenaten) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/akhenaten) | -| | [***akuse***](apps/akuse.md) | *Simple and easy to use anime streaming desktop app without ads.*..[ *read more* ](apps/akuse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/akuse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/akuse) | -| | [***alacritty***](apps/alacritty.md) | *Unofficial. A modern terminal emulator that comes with sensible defaults, but allows for extensive configuration.*..[ *read more* ](apps/alacritty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alacritty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alacritty) | -| | [***alduin***](apps/alduin.md) | *An Atom and RSS feed aggregator.*..[ *read more* ](apps/alduin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alduin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alduin) | -| | [***alephium-wallet***](apps/alephium-wallet.md) | *The official Alephium wallet for desktop.*..[ *read more* ](apps/alephium-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alephium-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alephium-wallet) | -| | [***alexandria***](apps/alexandria.md) | *eBook reader built with Tauri, Epub.js, and Typescript.*..[ *read more* ](apps/alexandria.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alexandria) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alexandria) | -| | [***alien-tec-ui***](apps/alien-tec-ui.md) | *Alien-Tec Tron Matrix Like Shell Terminal User Interface.*..[ *read more* ](apps/alien-tec-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alien-tec-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alien-tec-ui) | -| | [***allusion***](apps/allusion.md) | *A desktop application for managing your visual library.*..[ *read more* ](apps/allusion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/allusion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/allusion) | -| | [***alma***](apps/alma.md) | *Elegant AI Provider Orchestration. A beautiful desktop application that unifies your AI experience. Seamlessly switch between OpenAI, Anthropic, Google Gemini, and custom providers.*..[ *read more* ](apps/alma.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alma) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alma) | -| | [***alr2appimage***](apps/alr2appimage.md) | *Tool for building an AppImage from an Alire crate.*..[ *read more* ](apps/alr2appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alr2appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alr2appimage) | -| | [***alt-sendme***](apps/alt-sendme.md) | *Share files and directories anywhere - Local or Global*..[ *read more* ](apps/alt-sendme.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alt-sendme) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alt-sendme) | -| | [***altair***](apps/altair.md) | *The best graphQL client you will ever need.*..[ *read more* ](apps/altair.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altair) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altair) | -| | [***altersend***](apps/altersend.md) | *Send files directly between devices over the internet - no cloud, no servers, no size limits.*..[ *read more* ](apps/altersend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altersend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altersend) | -| | [***altitude***](apps/altitude.md) | *The Altitude wallet by Linda Project Inc.*..[ *read more* ](apps/altitude.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altitude) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altitude) | -| | [***altrady***](apps/altrady.md) | *Altrady Crypto Trading Terminal.*..[ *read more* ](apps/altrady.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altrady) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altrady) | -| | [***altus***](apps/altus.md) | *Client for WhatsApp Web with themes & multiple account support.*..[ *read more* ](apps/altus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altus) | -| | [***alvr***](apps/alvr.md) | *Stream VR games from your PC to your headset via Wi-Fi.*..[ *read more* ](apps/alvr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alvr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alvr) | -| | [***am-gui***](apps/am-gui.md) | *AM-GUI is a graphical Front for AM.*..[ *read more* ](apps/am-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/am-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/am-gui) | -| | [***amarok***](apps/amarok.md) | *Unofficial, powerful music player that lets you rediscover your music.*..[ *read more* ](apps/amarok.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amarok) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amarok) | -| | [***amazingmarvin***](apps/amazingmarvin.md) | *Incorporates principles from behavioral psychology.*..[ *read more* ](apps/amazingmarvin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amazingmarvin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amazingmarvin) | -| | [***amdgpu_top***](apps/amdgpu_top.md) | *Tool to display AMDGPU usage.*..[ *read more* ](apps/amdgpu_top.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amdgpu_top) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amdgpu_top) | -| | [***amethyst-mod-manager***](apps/amethyst-mod-manager.md) | *A Linux native mod manager for a variety of games.*..[ *read more* ](apps/amethyst-mod-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amethyst-mod-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amethyst-mod-manager) | -| | [***amiberry***](apps/amiberry.md) | *Unofficial, optimized Amiga emulator.*..[ *read more* ](apps/amiberry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amiberry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amiberry) | -| | [***amplitude-soundboard***](apps/amplitude-soundboard.md) | *A sleek, cross-platform soundboard, available.*..[ *read more* ](apps/amplitude-soundboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amplitude-soundboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amplitude-soundboard) | -| | [***amule***](apps/amule.md) | *All-platform P2P client based on eMule. aMule is a free, GPL-licensed peer-to-peer file-sharing client for the eD2k and Kademlia networks.*..[ *read more* ](apps/amule.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amule) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amule) | -| | [***amusiz***](apps/amusiz.md) | *Unofficial and unpretentious Amazon Music client.*..[ *read more* ](apps/amusiz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amusiz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amusiz) | -| | [***anavis***](apps/anavis.md) | *Tool to visualize musical form.*..[ *read more* ](apps/anavis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anavis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anavis) | -| | [***anchor***](apps/anchor.md) | *An EOSIO Light Wallet with simple and advanced tools.*..[ *read more* ](apps/anchor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anchor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anchor) | -| | [***android-messages-desktop***](apps/android-messages-desktop.md) | *Messages for web, as a desktop app.*..[ *read more* ](apps/android-messages-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-messages-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-messages-desktop) | -| | [***android-studio***](apps/android-studio.md) | *Unofficial. Android Studio as AppImages, stable.*..[ *read more* ](apps/android-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-studio) | -| | [***android-studio-latest***](apps/android-studio-latest.md) | *Unofficial. Android Studio as AppImages, release.*..[ *read more* ](apps/android-studio-latest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-studio-latest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-studio-latest) | -| | [***android-tools***](apps/android-tools.md) | *Unofficial AppImage for the Android Platform tools, adb, fastboot, etc.*..[ *read more* ](apps/android-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-tools) | -| | [***android-translation-layer***](apps/android-translation-layer.md) | *Unofficial, A translation layer that allows running Android apps on a Linux system.*..[ *read more* ](apps/android-translation-layer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-translation-layer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-translation-layer) | -| | [***animashooter-junior***](apps/animashooter-junior.md) | *User-friendly Stop-Motion Animation Software, FREE.*..[ *read more* ](apps/animashooter-junior.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animashooter-junior) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animashooter-junior) | -| | [***animashooter-pioneer***](apps/animashooter-pioneer.md) | *User-friendly Stop-Motion Animation Software, PRO.*..[ *read more* ](apps/animashooter-pioneer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animashooter-pioneer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animashooter-pioneer) | -| | [***animecoin***](apps/animecoin.md) | *Animecoin is a free open source peer-to-peer electronic cash system that is completely decentralized, without the need for a central server or trusted parties. Users hold the crypto keys to their own money and transact directly with each other, with the help of a P2P network to check for double-spending.*..[ *read more* ](apps/animecoin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animecoin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animecoin) | -| | [***animeko***](apps/animeko.md) | *A one-stop platform for finding, following, and watching anime, featuring danmaku (bullet comments) and cloud-based collection synchronization (Bangumi), offline caching, BitTorrent, and cloud-based danmaku filtering.*..[ *read more* ](apps/animeko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animeko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animeko) | -| | [***animos***](apps/animos.md) | *Anime-streaming desktop application without any ads.*..[ *read more* ](apps/animos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animos) | -| | [***aniship***](apps/aniship.md) | *Allows for easy viewing of anime on PCs and laptops.*..[ *read more* ](apps/aniship.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aniship) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aniship) | -| | [***ankama-launcher***](apps/ankama-launcher.md) | *Ankama is an entertainment and digital creation group.*..[ *read more* ](apps/ankama-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ankama-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ankama-launcher) | -| | [***anki***](apps/anki.md) | *Unofficial, Anki's shared backend and web components, and the Qt frontend.*..[ *read more* ](apps/anki.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anki) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anki) | -| | [***another-redis-desktop-manager***](apps/another-redis-desktop-manager.md) | *Faster and better redis desktop manager.*..[ *read more* ](apps/another-redis-desktop-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/another-redis-desktop-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/another-redis-desktop-manager) | -| | [***ansel***](apps/ansel.md) | *An open-source photo-editing software for digital artists, designed to help you achieve your own interpretation of raw digital photographs.*..[ *read more* ](apps/ansel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ansel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ansel) | -| | [***ant-downloader***](apps/ant-downloader.md) | *BitTorrent Client developed by golang, angular, electron.*..[ *read more* ](apps/ant-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ant-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ant-downloader) | -| | [***antares***](apps/antares.md) | *An useful SQL client based on Electron.js and Vue.js.*..[ *read more* ](apps/antares.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antares) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antares) | -| | [***antigravity***](apps/antigravity.md) | *Unofficial AppImage of Google Antigravity.*..[ *read more* ](apps/antigravity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antigravity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antigravity) | -| | [***antigravity-ide***](apps/antigravity-ide.md) | *Unofficial AppImage of Google Antigravity IDE.*..[ *read more* ](apps/antigravity-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antigravity-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antigravity-ide) | -| | [***antimicrox***](apps/antimicrox.md) | *Use a gamepad to control a variety of programs.*..[ *read more* ](apps/antimicrox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antimicrox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antimicrox) | -| | [***antra***](apps/antra.md) | *A desktop music library builder. Resolves Spotify / Apple Music / Amazon Music URLs → get lossless audio → auto-tags, transcodes, and organizes. No subscriptions. No compromises.*..[ *read more* ](apps/antra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antra) | -| | [***any-code***](apps/any-code.md) | *Claude Code CLI, OpenAI Codex, and Google Gemini CLI.*..[ *read more* ](apps/any-code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/any-code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/any-code) | -| | [***anydesk***](apps/anydesk.md) | *Unofficial. Remote desktop application distributed.*..[ *read more* ](apps/anydesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anydesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anydesk) | -| | [***anything-llm***](apps/anything-llm.md) | *AI business intelligence tool. Any LLM, any document.*..[ *read more* ](apps/anything-llm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anything-llm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anything-llm) | -| | [***anytype***](apps/anytype.md) | *The everything app for those who celebrate trust & autonomy.*..[ *read more* ](apps/anytype.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anytype) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anytype) | -| | [***anzeigenchef***](apps/anzeigenchef.md) | *AdsChef manages your classified ads.*..[ *read more* ](apps/anzeigenchef.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anzeigenchef) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anzeigenchef) | -| | [***aphelion-wallet***](apps/aphelion-wallet.md) | *Aphelion desktop wallet application built with Electron.*..[ *read more* ](apps/aphelion-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aphelion-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aphelion-wallet) | -| | [***aphototoollibre***](apps/aphototoollibre.md) | *Photo editing app for GNU/Linux.*..[ *read more* ](apps/aphototoollibre.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aphototoollibre) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aphototoollibre) | -| | [***apidog***](apps/apidog.md) | *API design, debugging, testing, and mock tool.*..[ *read more* ](apps/apidog.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apidog) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apidog) | -| | [***apiflow***](apps/apiflow.md) | *A modern API workspace that works both online and offlinecombining API documentation, testing, mock, and AI-powered automation in one lightweight tool.*..[ *read more* ](apps/apiflow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apiflow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apiflow) | -| | [***apk-editor-studio***](apps/apk-editor-studio.md) | *Easy to use APK, Android reverse-engineering tool.*..[ *read more* ](apps/apk-editor-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apk-editor-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apk-editor-studio) | -| | [***apla***](apps/apla.md) | *Project was bootstrapped with Create React App.*..[ *read more* ](apps/apla.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apla) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apla) | -| | [***app-outlet***](apps/app-outlet.md) | *A Universal linux app store for Flatpak/Snap/AppImage.*..[ *read more* ](apps/app-outlet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/app-outlet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/app-outlet) | -| | [***appflowy***](apps/appflowy.md) | *Bring projects, wikis, and teams together with AI. AppFlowy is the AI collaborative workspace where you achieve more without losing control of your data. The leading open source Notion alternative.*..[ *read more* ](apps/appflowy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appflowy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appflowy) | -| | [***apphub***](apps/apphub.md) | *App that simplifies installation/management of .appImage packages.*..[ *read more* ](apps/apphub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apphub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apphub) | -| | [***appimage-builder***](apps/appimage-builder.md) | *GNU/Linux packaging solution using the AppImage format.*..[ *read more* ](apps/appimage-builder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimage-builder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimage-builder) | -| | [***appimage-creator***](apps/appimage-creator.md) | *GUI for easily generating AppImage packages on Linux.*..[ *read more* ](apps/appimage-creator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimage-creator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimage-creator) | -| | [***appimagecraft***](apps/appimagecraft.md) | *Powerful build script generator with a focus on AppImages.*..[ *read more* ](apps/appimagecraft.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagecraft) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagecraft) | -| | [***appimagelauncher***](apps/appimagelauncher.md) | *CLI helper for running and integrating AppImages.*..[ *read more* ](apps/appimagelauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagelauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagelauncher) | -| | [***appimagelint***](apps/appimagelint.md) | *Check AppImages for compatibility, best practices etc.*..[ *read more* ](apps/appimagelint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagelint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagelint) | -| | [***appimagepool***](apps/appimagepool.md) | *A simple, modern AppImageHub Client, powered by flutter.*..[ *read more* ](apps/appimagepool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagepool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagepool) | -| | [***appimagetool***](apps/appimagetool.md) | *Tool to generate an AppImage from an existing AppDir.*..[ *read more* ](apps/appimagetool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagetool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagetool) | -| | [***appimageupdater***](apps/appimageupdater.md) | *AppImage Updater for Humans built with QML/C++ with Qt5.*..[ *read more* ](apps/appimageupdater.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimageupdater) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimageupdater) | -| | [***appimageupdatetool***](apps/appimageupdatetool.md) | *Tool to update an AppImage using embedded information.*..[ *read more* ](apps/appimageupdatetool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimageupdatetool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimageupdatetool) | -| | [***appium-inspector***](apps/appium-inspector.md) | *A GUI inspector for mobile apps and more, powered by a (separately installed) Appium server.*..[ *read more* ](apps/appium-inspector.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appium-inspector) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appium-inspector) | -| | [***appmanager***](apps/appmanager.md) | *MacOS style AppImage installer and management application.*..[ *read more* ](apps/appmanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appmanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appmanager) | -| | [***aptakube***](apps/aptakube.md) | *A modern and lightweight Kubernetes desktop client.*..[ *read more* ](apps/aptakube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aptakube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aptakube) | -| | [***apx-gcs***](apps/apx-gcs.md) | *APX Ground Control.*..[ *read more* ](apps/apx-gcs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apx-gcs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apx-gcs) | -| | [***aranym***](apps/aranym.md) | *Virtual Machine for Atari 32-bit applications.*..[ *read more* ](apps/aranym.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aranym) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aranym) | -| | [***arcade-manager***](apps/arcade-manager.md) | *Manage your rom collection, Games/Retropie & Recalbox.*..[ *read more* ](apps/arcade-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arcade-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arcade-manager) | -| | [***arcdlp***](apps/arcdlp.md) | *Open-source desktop video downloader powered by yt-dlp and electron. Download videos and audio from YouTube, Vimeo, Twitter, and thousands of sites.*..[ *read more* ](apps/arcdlp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arcdlp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arcdlp) | -| | [***archipel***](apps/archipel.md) | *Decentralized archiving and media library system.*..[ *read more* ](apps/archipel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archipel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archipel) | -| | [***archipelago***](apps/archipelago.md) | *Archipelago Multi-Game Randomizer and Server.*..[ *read more* ](apps/archipelago.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archipelago) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archipelago) | -| | [***archiveweb.page***](apps/archiveweb.page.md) | *A High-Fidelity Web Archiving Extension for Chrome and Chromium based browsers.*..[ *read more* ](apps/archiveweb.page.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archiveweb.page) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archiveweb.page) | -| | [***arduino-ide***](apps/arduino-ide.md) | *Open-source electronics platform.*..[ *read more* ](apps/arduino-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arduino-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arduino-ide) | -| | [***arena-tracker***](apps/arena-tracker.md) | *Deck Tracker for Hearthstone game with arena in focus.*..[ *read more* ](apps/arena-tracker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arena-tracker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arena-tracker) | -| | [***ares***](apps/ares.md) | *AppImage for the ares emulator.*..[ *read more* ](apps/ares.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ares) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ares) | -| | [***ares-emu***](apps/ares-emu.md) | *Unofficial AppImage of the ares emulator.*..[ *read more* ](apps/ares-emu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ares-emu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ares-emu) | -| | [***ark.desktop.wallet***](apps/ark.desktop.wallet.md) | *Ark Ecosystem Desktop Wallet.*..[ *read more* ](apps/ark.desktop.wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ark.desktop.wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ark.desktop.wallet) | -| | [***arkaway***](apps/arkaway.md) | *Another Arkanoid clone and make with Pyxel.*..[ *read more* ](apps/arkaway.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arkaway) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arkaway) | -| | [***arma3-unix-launcher***](apps/arma3-unix-launcher.md) | *ArmA 3 Unix Launcher, game.*..[ *read more* ](apps/arma3-unix-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arma3-unix-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arma3-unix-launcher) | -| | [***armagetronad***](apps/armagetronad.md) | *Multiplayer game in 3d that emulates the movie "Tron".*..[ *read more* ](apps/armagetronad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/armagetronad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/armagetronad) | -| | [***armcord***](apps/armcord.md) | *Custom client designed to enhance your Discord experience.*..[ *read more* ](apps/armcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/armcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/armcord) | -| | [***artisan***](apps/artisan.md) | *Visualizes the coffee roasting process.*..[ *read more* ](apps/artisan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/artisan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/artisan) | -| | [***artix***](apps/artix.md) | *One app. All your favorite Artix games.*..[ *read more* ](apps/artix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/artix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/artix) | -| | [***arx-libertatis***](apps/arx-libertatis.md) | *Unofficial AppImage of Arx Libertatis.*..[ *read more* ](apps/arx-libertatis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arx-libertatis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arx-libertatis) | -| | [***asarui***](apps/asarui.md) | *UI for Asar.*..[ *read more* ](apps/asarui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/asarui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/asarui) | -| | [***ascendara***](apps/ascendara.md) | *Skip extracting files, navigating setup processes, or any unnecessary hassles.*..[ *read more* ](apps/ascendara.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ascendara) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ascendara) | -| | [***asgardex***](apps/asgardex.md) | *Thorchain wallet desktop app.*..[ *read more* ](apps/asgardex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/asgardex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/asgardex) | -| | [***aspect***](apps/aspect.md) | *Photo organization application with support for peer-to-peer based synchronization across devices.*..[ *read more* ](apps/aspect.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aspect) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aspect) | -| | [***asphyxia-core***](apps/asphyxia-core.md) | *Unofficial AppImage of Asphyxia CORE.*..[ *read more* ](apps/asphyxia-core.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/asphyxia-core) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/asphyxia-core) | -| | [***astroffers***](apps/astroffers.md) | *Take offers to watch at given nights by the NGC2000 catalog.*..[ *read more* ](apps/astroffers.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/astroffers) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/astroffers) | -| | [***astrofox***](apps/astrofox.md) | *Audio reactive motion graphics program.*..[ *read more* ](apps/astrofox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/astrofox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/astrofox) | -| | [***asunder***](apps/asunder.md) | *Unofficial. Audio CD ripper and encoder, WAV, MP3, OGG, FLAC, Opus, AAC....*..[ *read more* ](apps/asunder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/asunder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/asunder) | -| | [***atomicwallet***](apps/atomicwallet.md) | *Atomic vue-electron.*..[ *read more* ](apps/atomicwallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/atomicwallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/atomicwallet) | -| | [***audacious***](apps/audacious.md) | *Unofficial. An open source audio and music player, descendant of XMMS.*..[ *read more* ](apps/audacious.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audacious) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audacious) | -| | [***audacity***](apps/audacity.md) | *Multiplatform Audio Editor.*..[ *read more* ](apps/audacity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audacity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audacity) | -| | [***audacity-enhanced***](apps/audacity-enhanced.md) | *Unofficial, multiplatform Audio Editor.*..[ *read more* ](apps/audacity-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audacity-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audacity-enhanced) | -| | [***audapolis***](apps/audapolis.md) | *An editor for spoken-word audio with automatic transcription.*..[ *read more* ](apps/audapolis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audapolis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audapolis) | -| | [***audio-sharing***](apps/audio-sharing.md) | *Unofficial. Share audio from the desktop on local network using RTSP protocol.*..[ *read more* ](apps/audio-sharing.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audio-sharing) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audio-sharing) | -| | [***audiomoth-configuration-app***](apps/audiomoth-configuration-app.md) | *An Electron-based application capable of configuring the functionality of the AudioMoth recording device and setting the onboard clock.*..[ *read more* ](apps/audiomoth-configuration-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-configuration-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-configuration-app) | -| | [***audiomoth-flash-app***](apps/audiomoth-flash-app.md) | *An Electron-based application designed to flash the AudioMoth recording device with new firmware.*..[ *read more* ](apps/audiomoth-flash-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-flash-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-flash-app) | -| | [***audiomoth-gps-sync-app***](apps/audiomoth-gps-sync-app.md) | *An Electron-based application to generate WAV files synchronised with GPS time from the files generated by the AudioMoth-GPS-Sync firmware.*..[ *read more* ](apps/audiomoth-gps-sync-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-gps-sync-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-gps-sync-app) | -| | [***audiomoth-live-app***](apps/audiomoth-live-app.md) | *An Electron-based application for recording and analysing live audio from high sample rate microphones, including the AudioMoth USB Microphone.*..[ *read more* ](apps/audiomoth-live-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-live-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-live-app) | -| | [***audiomoth-time-app***](apps/audiomoth-time-app.md) | *An Electron-based application capable of setting the on-board clock of the AudioMoth recording device.*..[ *read more* ](apps/audiomoth-time-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-time-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-time-app) | -| | [***audiomoth-usb-microphone-app***](apps/audiomoth-usb-microphone-app.md) | *An Electron-based application capable of configuring the functionality of the AudioMoth-USB-Microphone firmware.*..[ *read more* ](apps/audiomoth-usb-microphone-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-usb-microphone-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-usb-microphone-app) | -| | [***augur***](apps/augur.md) | *Augur Desktop Application.*..[ *read more* ](apps/augur.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/augur) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/augur) | -| | [***augustus***](apps/augustus.md) | *An open source re-implementation of the game Caesar III.*..[ *read more* ](apps/augustus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/augustus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/augustus) | -| | [***augustus-enhanced***](apps/augustus-enhanced.md) | *Unofficial, a fork of the Julius project that intends to incorporate gameplay changes.*..[ *read more* ](apps/augustus-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/augustus-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/augustus-enhanced) | -| | [***aurora***](apps/aurora.md) | *A utility to control RGB keyboard back-light and charging threshold for Asus TUF-gaming laptops.*..[ *read more* ](apps/aurora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aurora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aurora) | -| | [***auryo***](apps/auryo.md) | *An audio/music desktop client for SoundCloud.*..[ *read more* ](apps/auryo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/auryo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/auryo) | -| | [***authenticator***](apps/authenticator.md) | *Unofficial. An application which generates 2FA code in realtime.*..[ *read more* ](apps/authenticator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/authenticator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/authenticator) | -| | [***authme***](apps/authme.md) | *Simple cross-platform two-factor authenticator app for desktop.*..[ *read more* ](apps/authme.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/authme) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/authme) | -| | [***authy***](apps/authy.md) | *Unofficial, Protect all your accounts with 2FA.*..[ *read more* ](apps/authy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/authy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/authy) | -| | [***auto-claude***](apps/auto-claude.md) | *Autonomous multi-session AI coding framework that plans, builds, and validates software for you.*..[ *read more* ](apps/auto-claude.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/auto-claude) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/auto-claude) | -| | [***autoedit2***](apps/autoedit2.md) | *autoEdit2 Desktop Client for Linux.*..[ *read more* ](apps/autoedit2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/autoedit2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/autoedit2) | -| | [***autosubsync***](apps/autosubsync.md) | *Automatic subtitle synchronization tool.*..[ *read more* ](apps/autosubsync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/autosubsync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/autosubsync) | -| | [***avantgarde***](apps/avantgarde.md) | *Avalonia XAML Preview.*..[ *read more* ](apps/avantgarde.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avantgarde) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avantgarde) | -| | [***avidemux***](apps/avidemux.md) | *Multiplatform Video Editor.*..[ *read more* ](apps/avidemux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avidemux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avidemux) | -| | [***avidemux-qt***](apps/avidemux-qt.md) | *Unofficial, my custom Avidemux Video Editor built to use system themes.*..[ *read more* ](apps/avidemux-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avidemux-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avidemux-qt) | -| | [***avogadro2***](apps/avogadro2.md) | *Molecular editor for computational chemistry, bioinformatics.*..[ *read more* ](apps/avogadro2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avogadro2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avogadro2) | -| | [***awakened-poe-trade***](apps/awakened-poe-trade.md) | *Path of Exile trading app for price checking.*..[ *read more* ](apps/awakened-poe-trade.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/awakened-poe-trade) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/awakened-poe-trade) | -| | [***awakened-poe-trade-enhanced***](apps/awakened-poe-trade-enhanced.md) | *Unofficial AppImage of Awakened POE Trade with some fixes and wider OS support.*..[ *read more* ](apps/awakened-poe-trade-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/awakened-poe-trade-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/awakened-poe-trade-enhanced) | -| | [***axe-electrum***](apps/axe-electrum.md) | *Axe Electrum Wallet.*..[ *read more* ](apps/axe-electrum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/axe-electrum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/axe-electrum) | -| | [***axolotl***](apps/axolotl.md) | *A Signal compatible cross plattform client written in Go and Vuejs.*..[ *read more* ](apps/axolotl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/axolotl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/axolotl) | -| | [***aya***](apps/aya.md) | *A desktop application for easily controlling android devices, which can be considered as a GUI wrapper for ADB.*..[ *read more* ](apps/aya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aya) | -| | [***azahar-enhanced***](apps/azahar-enhanced.md) | *Unofficial AppImage of Azahar, with optimized builds for modern cpus.*..[ *read more* ](apps/azahar-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/azahar-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/azahar-enhanced) | -| | [***azaharplus***](apps/azaharplus.md) | *A fork of the Azahar 3DS emulator with extra features an open-source 3DS emulator project based on Citra.*..[ *read more* ](apps/azaharplus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/azaharplus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/azaharplus) | -| | [***azaharplus-pkg-extractor***](apps/azaharplus-pkg-extractor.md) | *Standalone PKG extractor CLI based on code that used to be in ShadPS4 PlayStation 4 emulator written in C++.*..[ *read more* ](apps/azaharplus-pkg-extractor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/azaharplus-pkg-extractor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/azaharplus-pkg-extractor) | -| | [***badlion***](apps/badlion.md) | *Most Complete All-In-One Mod Library for Minecraft with 100+ Mods.*..[ *read more* ](apps/badlion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/badlion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/badlion) | -| | [***baijimangaviewer***](apps/baijimangaviewer.md) | *Manga viewer that uses Material Design.*..[ *read more* ](apps/baijimangaviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/baijimangaviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/baijimangaviewer) | -| | [***balatro-multiplayer***](apps/balatro-multiplayer.md) | *A Multiplayer Mod for Balatro.*..[ *read more* ](apps/balatro-multiplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/balatro-multiplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/balatro-multiplayer) | -| | [***bambustudio***](apps/bambustudio.md) | *PC Software for BambuLab's 3D printers.*..[ *read more* ](apps/bambustudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bambustudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bambustudio) | -| | [***bananas***](apps/bananas.md) | *Bananas, Cross-Platform screen sharing made simple.*..[ *read more* ](apps/bananas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bananas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bananas) | -| | [***banban***](apps/banban.md) | *A productivity app inspired by GitHub Projects Kanban.*..[ *read more* ](apps/banban.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/banban) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/banban) | -| | [***banjo-recompiled***](apps/banjo-recompiled.md) | *Unofficial, a static recompiled port of N64 Banjo-Kazooie for PC.*..[ *read more* ](apps/banjo-recompiled.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/banjo-recompiled) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/banjo-recompiled) | -| | [***banjorecomp***](apps/banjorecomp.md) | *Recompiled.*..[ *read more* ](apps/banjorecomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/banjorecomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/banjorecomp) | -| | [***baobab***](apps/baobab.md) | *A graphical directory tree analyzer for the GNOME desktop environment, to keep your disk usage and available space under control.*..[ *read more* ](apps/baobab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/baobab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/baobab) | -| | [***barnacal***](apps/barnacal.md) | *A simple menu bar app for viewing a calendar*..[ *read more* ](apps/barnacal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/barnacal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/barnacal) | -| | [***basilisk2***](apps/basilisk2.md) | *Classic Macintosh emulator BasiliskII.*..[ *read more* ](apps/basilisk2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basilisk2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basilisk2) | -| | [***basiliskii-enhanced***](apps/basiliskii-enhanced.md) | *Unofficial, classic Macintosh emulator BasiliskII.*..[ *read more* ](apps/basiliskii-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basiliskii-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basiliskii-enhanced) | -| | [***bastyon***](apps/bastyon.md) | *Decentralized social network based on the blockchain.*..[ *read more* ](apps/bastyon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bastyon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bastyon) | -| | [***batch-explorer***](apps/batch-explorer.md) | *A client tool to create/debug/monitor Azure Batch Apps.*..[ *read more* ](apps/batch-explorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/batch-explorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/batch-explorer) | -| | [***bauh***](apps/bauh.md) | *GUI for managing AppImage, Arch/AUR, DEBs, Flatpak, Snap and webapps.*..[ *read more* ](apps/bauh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bauh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bauh) | -| | [***bazecor***](apps/bazecor.md) | *Graphical configurator for Dygma Raise.*..[ *read more* ](apps/bazecor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bazecor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bazecor) | -| | [***bbg***](apps/bbg.md) | *A static blog generator based on Electron Technology.*..[ *read more* ](apps/bbg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bbg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bbg) | -| | [***bchat-desktop***](apps/bchat-desktop.md) | *About A decentralized cionfidential messaging app that runs on Beldex network.*..[ *read more* ](apps/bchat-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bchat-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bchat-desktop) | -| | [***bdash***](apps/bdash.md) | *A simple business intelligence application.*..[ *read more* ](apps/bdash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bdash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bdash) | -| | [***bearly***](apps/bearly.md) | *The world's best AI at your fingertips.*..[ *read more* ](apps/bearly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bearly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bearly) | -| | [***beatconnect-client***](apps/beatconnect-client.md) | *Beatconnect power for osu irc.*..[ *read more* ](apps/beatconnect-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beatconnect-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beatconnect-client) | -| | [***beaver-notes***](apps/beaver-notes.md) | *Build your knowledge one log at a time.*..[ *read more* ](apps/beaver-notes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beaver-notes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beaver-notes) | -| | [***beekeeper-studio***](apps/beekeeper-studio.md) | *SQL query editor and database UI.*..[ *read more* ](apps/beekeeper-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beekeeper-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beekeeper-studio) | -| | [***beeref***](apps/beeref.md) | *BeeRef Reference Image Viewer.*..[ *read more* ](apps/beeref.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beeref) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beeref) | -| | [***bench-cli***](apps/bench-cli.md) | *CLI tool to benchmark commands, written in `Fortran`.*..[ *read more* ](apps/bench-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bench-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bench-cli) | -| | [***berserkerquake2***](apps/berserkerquake2.md) | *Berserker@Quake2 game engine, ported to SDL2 library.*..[ *read more* ](apps/berserkerquake2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/berserkerquake2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/berserkerquake2) | -| | [***better-osu-skills***](apps/better-osu-skills.md) | *Gets results from the osu! Using your own IRC credentials.*..[ *read more* ](apps/better-osu-skills.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/better-osu-skills) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/better-osu-skills) | -| | [***betterbird***](apps/betterbird.md) | *Unofficial, Betterbird is a fine-tuned version of Mozilla Thunderbird, a free and open-source email client.*..[ *read more* ](apps/betterbird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/betterbird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/betterbird) | -| | [***bettercrewlink***](apps/bettercrewlink.md) | *Free, open, Among Us proximity voice chat.*..[ *read more* ](apps/bettercrewlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bettercrewlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bettercrewlink) | -| | [***bettermediainfo-enhanced***](apps/bettermediainfo-enhanced.md) | *Unofficial AppImage of BetterMediaInfo.*..[ *read more* ](apps/bettermediainfo-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bettermediainfo-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bettermediainfo-enhanced) | -| | [***bettersis***](apps/bettersis.md) | *Modern shell for SIS.*..[ *read more* ](apps/bettersis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bettersis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bettersis) | -| | [***betterx***](apps/betterx.md) | *Enhance your X (formerly Twitter) experience with BetterX Desktop!*..[ *read more* ](apps/betterx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/betterx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/betterx) | -| | [***beurerscalemanager***](apps/beurerscalemanager.md) | *AppImage packaging project for BeurerScaleManager.*..[ *read more* ](apps/beurerscalemanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beurerscalemanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beurerscalemanager) | -| | [***beyond-all-reason***](apps/beyond-all-reason.md) | *3D Real-Time Strategy Total Annihilation Inspired, game.*..[ *read more* ](apps/beyond-all-reason.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beyond-all-reason) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beyond-all-reason) | -| | [***bezique***](apps/bezique.md) | *Plays bezique game against the AI.*..[ *read more* ](apps/bezique.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bezique) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bezique) | -| | [***bforartists***](apps/bforartists.md) | *3D modeling, animation, rendering and post-production.*..[ *read more* ](apps/bforartists.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bforartists) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bforartists) | -| | [***biblemultithelife***](apps/biblemultithelife.md) | *Bible multi languages, free, offline, no advertising.*..[ *read more* ](apps/biblemultithelife.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biblemultithelife) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biblemultithelife) | -| | [***biblemultithesonofman***](apps/biblemultithesonofman.md) | *Offline Bible for Terminal.*..[ *read more* ](apps/biblemultithesonofman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biblemultithesonofman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biblemultithesonofman) | -| | [***bibletime***](apps/bibletime.md) | *Unofficial, a Bible study application based on the Sword library and Qt toolkit.*..[ *read more* ](apps/bibletime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bibletime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bibletime) | -| | [***bidirectional***](apps/bidirectional.md) | *Write Arabic text on apps that don't support the bidirectional text.*..[ *read more* ](apps/bidirectional.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bidirectional) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bidirectional) | -| | [***bigpemu***](apps/bigpemu.md) | *Unofficial AppImage of BigPEmu.*..[ *read more* ](apps/bigpemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bigpemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bigpemu) | -| | [***bili-liveluckdraw***](apps/bili-liveluckdraw.md) | *A Bilibili live stream lottery tool that draws winners based on keywords retrieved from the chat comments. It is built using Electron + React + Vite.*..[ *read more* ](apps/bili-liveluckdraw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bili-liveluckdraw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bili-liveluckdraw) | -| | [***bilibili***](apps/bilibili.md) | *Bilibili official desktop client.*..[ *read more* ](apps/bilibili.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bilibili) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bilibili) | -| | [***bilibilivideodownload***](apps/bilibilivideodownload.md) | *Bilibili video downloader.*..[ *read more* ](apps/bilibilivideodownload.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bilibilivideodownload) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bilibilivideodownload) | -| | [***biliup-app***](apps/biliup-app.md) | *Bilibili uploader.*..[ *read more* ](apps/biliup-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biliup-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biliup-app) | -| | [***billard-gl***](apps/billard-gl.md) | *Unofficial. 3D billiards game, play a game of 8-ball or 9-ball.*..[ *read more* ](apps/billard-gl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/billard-gl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/billard-gl) | -| | [***billyfrontier***](apps/billyfrontier.md) | *Pangea Software’s Billy Frontier for modern systems.*..[ *read more* ](apps/billyfrontier.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/billyfrontier) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/billyfrontier) | -| | [***bingada***](apps/bingada.md) | *Bingo application in GTKAda.*..[ *read more* ](apps/bingada.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bingada) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bingada) | -| | [***binglite***](apps/binglite.md) | *A lightweight new Bing (AI chat) desktop application based on Tauri.*..[ *read more* ](apps/binglite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/binglite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/binglite) | -| | [***bioanimation***](apps/bioanimation.md) | *CCNY Electrochemical Gradient Simulator.*..[ *read more* ](apps/bioanimation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bioanimation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bioanimation) | -| | [***biplanes-revival***](apps/biplanes-revival.md) | *An old cellphone arcade recreated for PC.*..[ *read more* ](apps/biplanes-revival.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biplanes-revival) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biplanes-revival) | -| | [***birds-kitchen***](apps/birds-kitchen.md) | *Recipe manager.*..[ *read more* ](apps/birds-kitchen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/birds-kitchen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/birds-kitchen) | -| | [***bitbox-wallet***](apps/bitbox-wallet.md) | *Cryptocurrency hardware wallet desktop app.*..[ *read more* ](apps/bitbox-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bitbox-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bitbox-wallet) | -| | [***bitshares***](apps/bitshares.md) | *Advanced wallet interface for the BitShares financial blockchain.*..[ *read more* ](apps/bitshares.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bitshares) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bitshares) | -| | [***bitwarden***](apps/bitwarden.md) | *Password manager for individuals, teams and business.*..[ *read more* ](apps/bitwarden.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bitwarden) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bitwarden) | -| | [***biying***](apps/biying.md) | *Biying Wallpaper for Linux.*..[ *read more* ](apps/biying.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biying) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biying) | -| | [***black-chocobo***](apps/black-chocobo.md) | *FF7 Save Game Editor.*..[ *read more* ](apps/black-chocobo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/black-chocobo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/black-chocobo) | -| | [***blacknut***](apps/blacknut.md) | *Cloud gaming client.*..[ *read more* ](apps/blacknut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blacknut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blacknut) | -| | [***blank***](apps/blank.md) | *Blank is a minimalist, opinionated markdown editor made for writing.*..[ *read more* ](apps/blank.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blank) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blank) | -| | [***blastem***](apps/blastem.md) | *Clone of Mercurial Repo.*..[ *read more* ](apps/blastem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blastem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blastem) | -| | [***blender***](apps/blender.md) | *Very fast and versatile 3D modeller/renderer, Stable.*..[ *read more* ](apps/blender.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender) | -| | [***blender-alpha***](apps/blender-alpha.md) | *Very fast and versatile 3D modeller/renderer, Alpha.*..[ *read more* ](apps/blender-alpha.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender-alpha) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender-alpha) | -| | [***blender-beta***](apps/blender-beta.md) | *Very fast and versatile 3D modeller/renderer, Beta.*..[ *read more* ](apps/blender-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender-beta) | -| | [***blender-rc***](apps/blender-rc.md) | *Very fast and versatile 3D modeller/renderer, Release Candidate.*..[ *read more* ](apps/blender-rc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender-rc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender-rc) | -| | [***blensor***](apps/blensor.md) | *3D modeling, animation, rendering and post-production.*..[ *read more* ](apps/blensor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blensor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blensor) | -| | [***blink***](apps/blink.md) | *GUI of live indexed grep search for source code.*..[ *read more* ](apps/blink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blink) | -| | [***blizzard-4***](apps/blizzard-4.md) | *Emulator & toolchain for the Blizzard 4 16-bit computer.*..[ *read more* ](apps/blizzard-4.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blizzard-4) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blizzard-4) | -| | [***blobdrop***](apps/blobdrop.md) | *Drag and drop files directly out of the terminal.*..[ *read more* ](apps/blobdrop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blobdrop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blobdrop) | -| | [***block-dx***](apps/block-dx.md) | *Exchange dApp built on top of the Blocknet Protocol.*..[ *read more* ](apps/block-dx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/block-dx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/block-dx) | -| | [***blockbench***](apps/blockbench.md) | *Editor for boxy models and pixel art textures like Minecraft.*..[ *read more* ](apps/blockbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blockbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blockbench) | -| | [***blockstream-green***](apps/blockstream-green.md) | *Bitcoin wallet compatible with Blockstream Jade.*..[ *read more* ](apps/blockstream-green.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blockstream-green) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blockstream-green) | -| | [***bloks***](apps/bloks.md) | *An electron-vue project.*..[ *read more* ](apps/bloks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bloks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bloks) | -| | [***bloomrpc***](apps/bloomrpc.md) | *GRPC GUI client.*..[ *read more* ](apps/bloomrpc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bloomrpc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bloomrpc) | -| | [***blowfish***](apps/blowfish.md) | *Display your total Ocean Token balances.*..[ *read more* ](apps/blowfish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blowfish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blowfish) | -| | [***blueglow***](apps/blueglow.md) | *A simple system tray application to watch github notifications.*..[ *read more* ](apps/blueglow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blueglow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blueglow) | -| | [***bm64recomp-enhanced***](apps/bm64recomp-enhanced.md) | *Unofficial AppImage of Bomberman 64 Recompiled.*..[ *read more* ](apps/bm64recomp-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bm64recomp-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bm64recomp-enhanced) | -| | [***bmherorecomp-enhanced***](apps/bmherorecomp-enhanced.md) | *Unofficial AppImage of Bomberman Hero Recompiled.*..[ *read more* ](apps/bmherorecomp-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bmherorecomp-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bmherorecomp-enhanced) | -| | [***boardgamestar***](apps/boardgamestar.md) | *A platform for playing digital boardgames.*..[ *read more* ](apps/boardgamestar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boardgamestar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boardgamestar) | -| | [***bodacious***](apps/bodacious.md) | *A bodacious music player.*..[ *read more* ](apps/bodacious.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bodacious) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bodacious) | -| | [***bodhi***](apps/bodhi.md) | *Bodhi Prediction Market app.*..[ *read more* ](apps/bodhi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bodhi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bodhi) | -| | [***bongocat***](apps/bongocat.md) | *A chinese cute interactive desktop pet application that makes your desktop full of fun!*..[ *read more* ](apps/bongocat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bongocat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bongocat) | -| | [***book-manager***](apps/book-manager.md) | *Simple desktop app to manage personal library.*..[ *read more* ](apps/book-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/book-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/book-manager) | -| | [***bookdb***](apps/bookdb.md) | *A book catalog database for personal collections. Can import data from Readerware 4.*..[ *read more* ](apps/bookdb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bookdb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bookdb) | -| | [***bookmarks-manager***](apps/bookmarks-manager.md) | *Edit bookmarks, check url.*..[ *read more* ](apps/bookmarks-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bookmarks-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bookmarks-manager) | -| | [***boost-note***](apps/boost-note.md) | *Document driven project management tool to speedup remote DevOps.*..[ *read more* ](apps/boost-note.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boost-note) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boost-note) | -| | [***boostchanger***](apps/boostchanger.md) | *Control CPU turbo boost and the settings of the cpu speed.*..[ *read more* ](apps/boostchanger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boostchanger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boostchanger) | -| | [***botclient***](apps/botclient.md) | *A discord botclient built with Electron and React.*..[ *read more* ](apps/botclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/botclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/botclient) | -| | [***botframework-emulator***](apps/botframework-emulator.md) | *Test and debug chat bots built with Bot Framework SDK.*..[ *read more* ](apps/botframework-emulator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/botframework-emulator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/botframework-emulator) | -| | [***bottlebats***](apps/bottlebats.md) | *Client for the 2018 edition of the BottleBats AI competition.*..[ *read more* ](apps/bottlebats.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottlebats) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottlebats) | -| | [***bottles***](apps/bottles.md) | *Unofficial. Manage wine prefixes and run Windows software & games in a new way.*..[ *read more* ](apps/bottles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottles) | -| | [***brainverse***](apps/brainverse.md) | *Electronic Lab Notebook for Reproducible Neuro Imaging Research.*..[ *read more* ](apps/brainverse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brainverse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brainverse) | -| | [***brainwaves***](apps/brainwaves.md) | *EEG Desktop Application.*..[ *read more* ](apps/brainwaves.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brainwaves) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brainwaves) | -| | [***brave***](apps/brave.md) | *Unofficial, a privacy oriented Web Browser based on Chromium, this is the "stable" release.*..[ *read more* ](apps/brave.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave) | -| | [***brave-beta***](apps/brave-beta.md) | *Unofficial, a privacy oriented Web Browser based on Chromium, this is the "beta" release.*..[ *read more* ](apps/brave-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave-beta) | -| | [***brave-nightly***](apps/brave-nightly.md) | *Unofficial, a privacy oriented Web Browser based on Chromium, this is the "nightly" release.*..[ *read more* ](apps/brave-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave-nightly) | -| | [***brave-origin***](apps/brave-origin.md) | *Unofficial, stripped down version of Brave Browser with no extra features.*..[ *read more* ](apps/brave-origin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave-origin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave-origin) | -| | [***bread***](apps/bread.md) | *Install, update and remove AppImage from GitHub using your CLI.*..[ *read more* ](apps/bread.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bread) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bread) | -| | [***breaktimer***](apps/breaktimer.md) | *Save yourself from RSI and eye-strain.*..[ *read more* ](apps/breaktimer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/breaktimer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/breaktimer) | -| | [***briar***](apps/briar.md) | *Briar Desktop. Censorship-resistant peer-to-peer messaging that bypasses centralized servers. Connect via Bluetooth, Wi-Fi or Tor, with privacy built-in.*..[ *read more* ](apps/briar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/briar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/briar) | -| | [***brickstore***](apps/brickstore.md) | *An offline BrickLink inventory management tool.*..[ *read more* ](apps/brickstore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brickstore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brickstore) | -| | [***bridge***](apps/bridge.md) | *The perfect Bridge between Megascans and your favorite tools.*..[ *read more* ](apps/bridge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bridge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bridge) | -| | [***brisqi***](apps/brisqi.md) | *Offline-first Personal Kanban app.*..[ *read more* ](apps/brisqi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brisqi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brisqi) | -| | [***browservice***](apps/browservice.md) | *Browse the modern web on historical browsers.*..[ *read more* ](apps/browservice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/browservice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/browservice) | -| | [***brs-emu-app***](apps/brs-emu-app.md) | *BrightScript Emulator, runs on browsers and Electron apps.*..[ *read more* ](apps/brs-emu-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brs-emu-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brs-emu-app) | -| | [***bruno***](apps/bruno.md) | *An Opensource API Collection Collaboration Suite.*..[ *read more* ](apps/bruno.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bruno) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bruno) | -| | [***bscanfftwebcam***](apps/bscanfftwebcam.md) | *FDOCT tool.*..[ *read more* ](apps/bscanfftwebcam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bscanfftwebcam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bscanfftwebcam) | -| | [***bsky***](apps/bsky.md) | *A desktop app of bsky.app.*..[ *read more* ](apps/bsky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bsky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bsky) | -| | [***bts-ce-lite***](apps/bts-ce-lite.md) | *Telecommunication network management application.*..[ *read more* ](apps/bts-ce-lite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bts-ce-lite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bts-ce-lite) | -| | [***buckets***](apps/buckets.md) | *Budgeting fast, simple and private.*..[ *read more* ](apps/buckets.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/buckets) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/buckets) | -| | [***bugdom***](apps/bugdom.md) | *Pangea Software's Bugdom game.*..[ *read more* ](apps/bugdom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bugdom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bugdom) | -| | [***bugdom2***](apps/bugdom2.md) | *Pangea Software’s Bugdom 2 for modern systems.*..[ *read more* ](apps/bugdom2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bugdom2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bugdom2) | -| | [***bulkreviewer***](apps/bulkreviewer.md) | *Identify, review, and remove private information.*..[ *read more* ](apps/bulkreviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bulkreviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bulkreviewer) | -| | [***bulkurlopener***](apps/bulkurlopener.md) | *Desktop version of the Bulk URL Opener extension.*..[ *read more* ](apps/bulkurlopener.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bulkurlopener) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bulkurlopener) | -| | [***bulky***](apps/bulky.md) | *Unofficial, an XApp used to rename multiple files and directories.*..[ *read more* ](apps/bulky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bulky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bulky) | -| | [***bunqdesktop***](apps/bunqdesktop.md) | *A desktop implementation for the bunq API.*..[ *read more* ](apps/bunqdesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bunqdesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bunqdesktop) | -| | [***burning-series***](apps/burning-series.md) | *Watch any series from Burning Series, Unofficial client.*..[ *read more* ](apps/burning-series.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/burning-series) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/burning-series) | -| | [***busybox***](apps/busybox.md) | *AppImage of BusyBox, a tool that combines stripped-down versions of many common UNIX utilities into a single, small executable.*..[ *read more* ](apps/busybox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/busybox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/busybox) | -| | [***buttercup***](apps/buttercup.md) | *Free and Open Source password vault.*..[ *read more* ](apps/buttercup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/buttercup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/buttercup) | -| | [***bypass-cors***](apps/bypass-cors.md) | *Unlock browser’s full potential!*..[ *read more* ](apps/bypass-cors.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bypass-cors) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bypass-cors) | -| | [***bytespeichertrayicon***](apps/bytespeichertrayicon.md) | *Bytespeicher Status App.*..[ *read more* ](apps/bytespeichertrayicon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bytespeichertrayicon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bytespeichertrayicon) | -| | [***c-evo***](apps/c-evo.md) | *C-evo is an empire building game based on Civilization II, but with a different focus. It aims to be a pure game with all players playing to win.*..[ *read more* ](apps/c-evo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/c-evo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/c-evo) | -| | [***cabal-desktop***](apps/cabal-desktop.md) | *Cabal p2p offline-first desktop application.*..[ *read more* ](apps/cabal-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cabal-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cabal-desktop) | -| | [***cables-gl***](apps/cables-gl.md) | *A tool for creating beautiful interactive content. With an easy to navigate interface and real time visuals.*..[ *read more* ](apps/cables-gl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cables-gl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cables-gl) | -| | [***cacher***](apps/cacher.md) | *Cacher is a code snippet library for professional developers.*..[ *read more* ](apps/cacher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cacher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cacher) | -| | [***cacoco***](apps/cacoco.md) | *A (slightly, but aspirationally) finished SBARDEF editor. Mostly.*..[ *read more* ](apps/cacoco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cacoco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cacoco) | -| | [***cadassistant***](apps/cadassistant.md) | *Offline 3D CAD viewer and converter, free for personal and commercial use.*..[ *read more* ](apps/cadassistant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cadassistant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cadassistant) | -| | [***cadmus***](apps/cadmus.md) | *Pulse Audio real-time noise suppression plugin.*..[ *read more* ](apps/cadmus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cadmus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cadmus) | -| | [***caesium***](apps/caesium.md) | *Image compression software that helps you store, send and share digital pictures, supporting JPG, PNG, WebP and TIFF formats.*..[ *read more* ](apps/caesium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/caesium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/caesium) | -| | [***calibre***](apps/calibre.md) | *Unofficial. The one stop solution to all your e-book needs.*..[ *read more* ](apps/calibre.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calibre) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calibre) | -| | [***calibre-beta***](apps/calibre-beta.md) | *Unofficial. The one stop solution to all your e-book needs. Beta version.*..[ *read more* ](apps/calibre-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calibre-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calibre-beta) | -| | [***calibre-preview***](apps/calibre-preview.md) | *Unofficial. The one stop solution to all your e-book needs. Preview version.*..[ *read more* ](apps/calibre-preview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calibre-preview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calibre-preview) | -| | [***calligra***](apps/calligra.md) | *Calligra Suite is an office and graphic art suite by KDE. It contains applications for word processing, spreadsheets, presentation, vector graphics, and editing databases.*..[ *read more* ](apps/calligra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calligra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calligra) | -| | [***calm-circles***](apps/calm-circles.md) | *Calm down and draw something, in Lisp.*..[ *read more* ](apps/calm-circles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calm-circles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calm-circles) | -| | [***calm-fan***](apps/calm-fan.md) | *Calm down and draw something, in Lisp.*..[ *read more* ](apps/calm-fan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calm-fan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calm-fan) | -| | [***calm-meditator***](apps/calm-meditator.md) | *Calm down and draw something, in Lisp.*..[ *read more* ](apps/calm-meditator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calm-meditator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calm-meditator) | -| | [***calm-mondrian***](apps/calm-mondrian.md) | *Calm down and draw something, in Lisp.*..[ *read more* ](apps/calm-mondrian.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calm-mondrian) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calm-mondrian) | -| | [***candycrisis***](apps/candycrisis.md) | *Candy Crisis source port for modern operating systems.*..[ *read more* ](apps/candycrisis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/candycrisis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/candycrisis) | -| | [***cannonball***](apps/cannonball.md) | *Unofficial, an Enhanced OutRun Engine.*..[ *read more* ](apps/cannonball.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cannonball) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cannonball) | -| | [***caprine***](apps/caprine.md) | *Unofficial, elegant privacy focused Facebook Messenger app.*..[ *read more* ](apps/caprine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/caprine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/caprine) | -| | [***cardo***](apps/cardo.md) | *Podcast client.*..[ *read more* ](apps/cardo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cardo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cardo) | -| | [***cargo***](apps/cargo.md) | *Converts your crate into an AppImage.*..[ *read more* ](apps/cargo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cargo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cargo) | -| | [***carpenters***](apps/carpenters.md) | *Digital preservation ingest utility.*..[ *read more* ](apps/carpenters.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/carpenters) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/carpenters) | -| | [***carta***](apps/carta.md) | *Cube Analysis and Rendering Tool for Astronomy.*..[ *read more* ](apps/carta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/carta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/carta) | -| | [***cartridges***](apps/cartridges.md) | *Unofficial. Game launcher, which helps you visualize your game collection and easily launch games.*..[ *read more* ](apps/cartridges.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cartridges) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cartridges) | -| | [***cashonize***](apps/cashonize.md) | *A cross-platform Bitcoin Cash Wallet.*..[ *read more* ](apps/cashonize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cashonize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cashonize) | -| | [***casm***](apps/casm.md) | *Corinthian Abstract State Machine, CASM.*..[ *read more* ](apps/casm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/casm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/casm) | -| | [***casterr***](apps/casterr.md) | *Screen recorder, easing recording and clipping in-game.*..[ *read more* ](apps/casterr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/casterr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/casterr) | -| | [***castersoundboard***](apps/castersoundboard.md) | *Soundboard for hot-keying and playing back sounds.*..[ *read more* ](apps/castersoundboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/castersoundboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/castersoundboard) | -| | [***catacombgl***](apps/catacombgl.md) | *Unofficial, a source port with OpenGL graphics for Catacomb 3D (1991), The Catacomb Abyss (1992), The Catacomb Armageddon (1992) and The Catacomb Apocalypse (1993).*..[ *read more* ](apps/catacombgl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catacombgl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catacombgl) | -| | [***catalyst***](apps/catalyst.md) | *Catalyst web browser.*..[ *read more* ](apps/catalyst.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catalyst) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catalyst) | -| | [***catcher***](apps/catcher.md) | *Peer-testing of software projects.*..[ *read more* ](apps/catcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catcher) | -| | [***catfish***](apps/catfish.md) | *Unofficial AppImage of catfish.*..[ *read more* ](apps/catfish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catfish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catfish) | -| | [***cavoke***](apps/cavoke.md) | *Platform to create/host multiplayer turn-based board games.*..[ *read more* ](apps/cavoke.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cavoke) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cavoke) | -| | [***cbetar2***](apps/cbetar2.md) | *ePub viewer supporting fetching and displaying HTML as ePub.*..[ *read more* ](apps/cbetar2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cbetar2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cbetar2) | -| | [***cbird***](apps/cbird.md) | *Command-line program for Content-Based Image Retrieval of images and videos. Includes tools for general search and de-duplication.*..[ *read more* ](apps/cbird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cbird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cbird) | -| | [***cccp***](apps/cccp.md) | *Cortex Command, a community-driven effort to continue the development of Cortex Command.*..[ *read more* ](apps/cccp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cccp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cccp) | -| | [***cdogs-sdl***](apps/cdogs-sdl.md) | *Unofficial, classic overhead run-and-gun game.*..[ *read more* ](apps/cdogs-sdl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cdogs-sdl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cdogs-sdl) | -| | [***celestia***](apps/celestia.md) | *Real time 3D space simulator.*..[ *read more* ](apps/celestia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celestia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celestia) | -| | [***celestia-dev***](apps/celestia-dev.md) | *Real time 3D space simulator, developer edition.*..[ *read more* ](apps/celestia-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celestia-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celestia-dev) | -| | [***celestia-enanched***](apps/celestia-enanched.md) | *Unofficial. Real-time 3D space simulator with extra detailed maps.*..[ *read more* ](apps/celestia-enanched.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celestia-enanched) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celestia-enanched) | -| | [***celoterminal-bin***](apps/celoterminal-bin.md) | *Celo Terminal, AppImage version.*..[ *read more* ](apps/celoterminal-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celoterminal-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celoterminal-bin) | -| | [***cemu***](apps/cemu.md) | *A Nintendo Wii U emulator that is able to run most Wii U games.*..[ *read more* ](apps/cemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cemu) | -| | [***cemu-enhanced***](apps/cemu-enhanced.md) | *Unofficial AppImage of Cemu, Nintendo Wii U emulator that is able to run most Wii U games, which is able to work on any linux distro.*..[ *read more* ](apps/cemu-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cemu-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cemu-enhanced) | -| | [***cerebral-debugger***](apps/cerebral-debugger.md) | *Cerebral Debugger.*..[ *read more* ](apps/cerebral-debugger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cerebral-debugger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cerebral-debugger) | -| | [***cerebro***](apps/cerebro.md) | *Open-source productivity booster with a brain.*..[ *read more* ](apps/cerebro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cerebro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cerebro) | -| | [***chain-desktop-wallet***](apps/chain-desktop-wallet.md) | *Crypto.com DeFi Desktop Wallet.*..[ *read more* ](apps/chain-desktop-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chain-desktop-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chain-desktop-wallet) | -| | [***chainx-signer***](apps/chainx-signer.md) | *Manage ChainX account, sign and sign transactions.*..[ *read more* ](apps/chainx-signer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chainx-signer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chainx-signer) | -| | [***chat-gpt***](apps/chat-gpt.md) | *Unofficial. ChatGPT Desktop Application.*..[ *read more* ](apps/chat-gpt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chat-gpt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chat-gpt) | -| | [***chatall***](apps/chatall.md) | *Concurrently chat with ChatGPT, Bing Chat, bard, Alpaca and more.*..[ *read more* ](apps/chatall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatall) | -| | [***chatbox***](apps/chatbox.md) | *Chatbox is a desktop app for GPT-4 / GPT-3.5, OpenAI API.*..[ *read more* ](apps/chatbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatbox) | -| | [***chatgpt-next-web***](apps/chatgpt-next-web.md) | *A cross-platform ChatGPT/Gemini UI.*..[ *read more* ](apps/chatgpt-next-web.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatgpt-next-web) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatgpt-next-web) | -| | [***chatpad-ai***](apps/chatpad-ai.md) | *Not just another ChatGPT user-interface.*..[ *read more* ](apps/chatpad-ai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatpad-ai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatpad-ai) | -| | [***chatterino2***](apps/chatterino2.md) | *Second installment of the Twitch chat client.*..[ *read more* ](apps/chatterino2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatterino2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatterino2) | -| | [***chatterino2-nightly***](apps/chatterino2-nightly.md) | *Second installment of the Twitch chat client.*..[ *read more* ](apps/chatterino2-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatterino2-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatterino2-nightly) | -| | [***cheatbreaker***](apps/cheatbreaker.md) | *The free FPS boosting modpack for Minecraft 1.7 & 1.8.*..[ *read more* ](apps/cheatbreaker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cheatbreaker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cheatbreaker) | -| | [***chemcanvas***](apps/chemcanvas.md) | *A very intuitive 2D chemical drawing tool.*..[ *read more* ](apps/chemcanvas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chemcanvas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chemcanvas) | -| | [***cherry-studio***](apps/cherry-studio.md) | *Agentic AI desktop with autonomous coding, intelligent automation, and unified access to frontier LLMs.*..[ *read more* ](apps/cherry-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cherry-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cherry-studio) | -| | [***cherrytree***](apps/cherrytree.md) | *A hierarchical note taking application.*..[ *read more* ](apps/cherrytree.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cherrytree) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cherrytree) | -| | [***chessmd***](apps/chessmd.md) | *Open source chess training software. Play against bots, analyze with engines, explore chess openings, and more.*..[ *read more* ](apps/chessmd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chessmd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chessmd) | -| | [***chimeradesk***](apps/chimeradesk.md) | *Simple, fast and flexible DIY Remote Desktop software.*..[ *read more* ](apps/chimeradesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chimeradesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chimeradesk) | -| | [***chimeradesk-kvm***](apps/chimeradesk-kvm.md) | *Simple, fast and flexible DIY Remote Desktop software.*..[ *read more* ](apps/chimeradesk-kvm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chimeradesk-kvm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chimeradesk-kvm) | -| | [***chromium***](apps/chromium.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, Edge and Brave, stable.*..[ *read more* ](apps/chromium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium) | -| | [***chromium-beta***](apps/chromium-beta.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, beta edition.*..[ *read more* ](apps/chromium-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-beta) | -| | [***chromium-bsu***](apps/chromium-bsu.md) | *Unofficial. Fast paced arcade style scrolling space shooter, game.*..[ *read more* ](apps/chromium-bsu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-bsu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-bsu) | -| | [***chromium-edge***](apps/chromium-edge.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, edge edition.*..[ *read more* ](apps/chromium-edge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-edge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-edge) | -| | [***chromium-rc***](apps/chromium-rc.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, release candidate.*..[ *read more* ](apps/chromium-rc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-rc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-rc) | -| | [***chrysalis-bin***](apps/chrysalis-bin.md) | *Graphical configurator for Kaleidoscope-powered keyboards.*..[ *read more* ](apps/chrysalis-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chrysalis-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chrysalis-bin) | -| | [***ciaa-suite***](apps/ciaa-suite.md) | *Makefile based IDE for embedded systems.*..[ *read more* ](apps/ciaa-suite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ciaa-suite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ciaa-suite) | -| | [***cine***](apps/cine.md) | *Unofficial AppImage of Cine.*..[ *read more* ](apps/cine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cine) | -| | [***cinelerra***](apps/cinelerra.md) | *CINELERRA-GG is a software program NLE, Non-Linear Editor, that provides a way to edit, record, and play audio or video media. It can also be used to transcode media from one format to another or to correct and retouch photos.*..[ *read more* ](apps/cinelerra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cinelerra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cinelerra) | -| | [***cinny***](apps/cinny.md) | *Yet another matrix client for desktop.*..[ *read more* ](apps/cinny.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cinny) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cinny) | -| | [***circle-z***](apps/circle-z.md) | *A chat client for online math courses.*..[ *read more* ](apps/circle-z.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/circle-z) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/circle-z) | -| | [***circuitblocks***](apps/circuitblocks.md) | *Helps newbies get into embedded programming.*..[ *read more* ](apps/circuitblocks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/circuitblocks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/circuitblocks) | -| | [***city-hub***](apps/city-hub.md) | *Hub into everything on City Chain/Smart City Platform.*..[ *read more* ](apps/city-hub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/city-hub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/city-hub) | -| | [***ciyue***](apps/ciyue.md) | *A simple mdict dictionary.*..[ *read more* ](apps/ciyue.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ciyue) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ciyue) | -| | [***clagrange***](apps/clagrange.md) | *Lagrange is a cross-platform client for browsing Geminispace (CLI Version).*..[ *read more* ](apps/clagrange.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clagrange) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clagrange) | -| | [***clamui***](apps/clamui.md) | *ClamAV Desktop application (GUI).*..[ *read more* ](apps/clamui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clamui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clamui) | -| | [***clapper***](apps/clapper.md) | *Unofficial. A modern media player designed for simplicity and ease of use.*..[ *read more* ](apps/clapper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clapper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clapper) | -| | [***clash-nyanpasu***](apps/clash-nyanpasu.md) | *A Clash GUI based on tauri.*..[ *read more* ](apps/clash-nyanpasu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clash-nyanpasu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clash-nyanpasu) | -| | [***clash-verge***](apps/clash-verge.md) | *A multiplatform Clash GUI based on tauri.*..[ *read more* ](apps/clash-verge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clash-verge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clash-verge) | -| | [***classicimageviewer***](apps/classicimageviewer.md) | *A simple image viewer with some editing features.*..[ *read more* ](apps/classicimageviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/classicimageviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/classicimageviewer) | -| | [***classicube***](apps/classicube.md) | *Unofficial, Custom Minecraft Classic / ClassiCube client written in C from scratch*..[ *read more* ](apps/classicube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/classicube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/classicube) | -| | [***classipod***](apps/classipod.md) | *A local music player app designed to capture the nostalgic essence of the iconic iPod Classic.*..[ *read more* ](apps/classipod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/classipod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/classipod) | -| | [***claude-code***](apps/claude-code.md) | *Unofficial AppImage of claude-code.*..[ *read more* ](apps/claude-code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/claude-code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/claude-code) | -| | [***claude-desktop***](apps/claude-desktop.md) | *Unofficial, Claude is a next generation AI assistant built by Anthropic and trained to be safe, accurate, and secure to help you do your best work.*..[ *read more* ](apps/claude-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/claude-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/claude-desktop) | -| | [***cleepdesktop***](apps/cleepdesktop.md) | *Desktop application to manage your Cleep devices.*..[ *read more* ](apps/cleepdesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cleepdesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cleepdesktop) | -| | [***clementine***](apps/clementine.md) | *Unofficial AppImage of the Clementine music player.*..[ *read more* ](apps/clementine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clementine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clementine) | -| | [***clementineremote***](apps/clementineremote.md) | *Remote for Clementine Music Player.*..[ *read more* ](apps/clementineremote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clementineremote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clementineremote) | -| | [***cliniface***](apps/cliniface.md) | *3D Facial Image Visualisation and Analysis.*..[ *read more* ](apps/cliniface.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cliniface) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cliniface) | -| | [***clipgrab***](apps/clipgrab.md) | *Download and Convert Online Videos.*..[ *read more* ](apps/clipgrab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clipgrab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clipgrab) | -| | [***clippy***](apps/clippy.md) | *Clipboard History.*..[ *read more* ](apps/clippy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clippy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clippy) | -| | [***clipr***](apps/clipr.md) | *The clipboard that syncs.*..[ *read more* ](apps/clipr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clipr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clipr) | -| | [***clk***](apps/clk.md) | *Unofficial, a latency hating emulator for 8 and 16 bit platforms.*..[ *read more* ](apps/clk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clk) | -| | [***cloud-browser***](apps/cloud-browser.md) | *Access to files located in various cloud services.*..[ *read more* ](apps/cloud-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cloud-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cloud-browser) | -| | [***clownmaped***](apps/clownmaped.md) | *Sonic the Hedgehog sprite editor, clone of Xenowhirl's SonMapEd.*..[ *read more* ](apps/clownmaped.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clownmaped) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clownmaped) | -| | [***clownmdemu***](apps/clownmdemu.md) | *Reference standalone frontend for clownmdemu.*..[ *read more* ](apps/clownmdemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clownmdemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clownmdemu) | -| | [***clownmdemu-enhanced***](apps/clownmdemu-enhanced.md) | *Unofficial, reference standalone frontend for clownmdemu.*..[ *read more* ](apps/clownmdemu-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clownmdemu-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clownmdemu-enhanced) | -| | [***cmux***](apps/cmux.md) | *Cmux/ManaflowX is an X feed for coding agents that lets you run + compare Claude Code, Codex CLI, Amp, Gemini CLI, Cursor CLI, Opencode, and other coding agent CLIs in parallel across multiple tasks.*..[ *read more* ](apps/cmux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cmux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cmux) | -| | [***cncjs***](apps/cncjs.md) | *CNC Milling Controller.*..[ *read more* ](apps/cncjs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cncjs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cncjs) | -| | [***cncra2yr***](apps/cncra2yr.md) | *C&C Red Alert 2, a real-time strategy game by Westwood Pacific.*..[ *read more* ](apps/cncra2yr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cncra2yr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cncra2yr) | -| | [***coal-launcher***](apps/coal-launcher.md) | *A client to view and play games from the AB Coal website.*..[ *read more* ](apps/coal-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coal-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coal-launcher) | -| | [***code-expert-sync***](apps/code-expert-sync.md) | *Allows syncing of Code Expert projects to a local file system.*..[ *read more* ](apps/code-expert-sync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code-expert-sync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code-expert-sync) | -| | [***code-notes***](apps/code-notes.md) | *A simple code snippet amp built with Electron.*..[ *read more* ](apps/code-notes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code-notes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code-notes) | -| | [***coinstac***](apps/coinstac.md) | *Collaborative Informatics and Neuroimaging Suite Toolkit.*..[ *read more* ](apps/coinstac.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coinstac) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coinstac) | -| | [***collaboraoffice***](apps/collaboraoffice.md) | *Unofficial, a collaborative online office suite based on LibreOffice technology.*..[ *read more* ](apps/collaboraoffice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/collaboraoffice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/collaboraoffice) | -| | [***collision***](apps/collision.md) | *Unofficial. Verify the checksum/hash validity of files.*..[ *read more* ](apps/collision.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/collision) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/collision) | -| | [***colon***](apps/colon.md) | *A flexible text editor.*..[ *read more* ](apps/colon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colon) | -| | [***colorgenerator***](apps/colorgenerator.md) | *Generates color palettes similar to ColorBrewer.*..[ *read more* ](apps/colorgenerator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colorgenerator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colorgenerator) | -| | [***colorpicker***](apps/colorpicker.md) | *Electron app that can show colors with hex/rgb.*..[ *read more* ](apps/colorpicker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colorpicker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colorpicker) | -| | [***colorstatic-bash***](apps/colorstatic-bash.md) | *CLI to generate a random colorful "Static"/"Matrix".*..[ *read more* ](apps/colorstatic-bash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colorstatic-bash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colorstatic-bash) | -| | [***comic-book-reader***](apps/comic-book-reader.md) | *Reader and converter for cbz, cbr, epub and pdf files.*..[ *read more* ](apps/comic-book-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comic-book-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comic-book-reader) | -| | [***comic-reader***](apps/comic-reader.md) | *Electron based comic reader.*..[ *read more* ](apps/comic-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comic-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comic-reader) | -| | [***comictagger***](apps/comictagger.md) | *A multi-platform app for writing metadata to digital comics.*..[ *read more* ](apps/comictagger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comictagger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comictagger) | -| | [***commander-genius***](apps/commander-genius.md) | *Unofficial, an open-source interpreter for the Commander Keen (1-6, Dreams) and Cosmos Cosmic series.*..[ *read more* ](apps/commander-genius.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/commander-genius) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/commander-genius) | -| | [***compass***](apps/compass.md) | *Air Traffic Surveillance DataBase.*..[ *read more* ](apps/compass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/compass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/compass) | -| | [***compresso***](apps/compresso.md) | *Convert any video into a tiny size.*..[ *read more* ](apps/compresso.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/compresso) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/compresso) | -| | [***concordium-desktop-wallet***](apps/concordium-desktop-wallet.md) | *The official Concordium Dektop Wallet.*..[ *read more* ](apps/concordium-desktop-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/concordium-desktop-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/concordium-desktop-wallet) | -| | [***conduction***](apps/conduction.md) | *Tasks? Done. That was quick.*..[ *read more* ](apps/conduction.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/conduction) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/conduction) | -| | [***conky***](apps/conky.md) | *Light-weight system monitor for X.*..[ *read more* ](apps/conky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/conky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/conky) | -| | [***consoleworkbench***](apps/consoleworkbench.md) | *Console workbench.*..[ *read more* ](apps/consoleworkbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/consoleworkbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/consoleworkbench) | -| | [***constrict***](apps/constrict.md) | *Unofficial AppImage of Constrict.*..[ *read more* ](apps/constrict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/constrict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/constrict) | -| | [***contour***](apps/contour.md) | *Modern C++ Terminal Emulator.*..[ *read more* ](apps/contour.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/contour) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/contour) | -| | [***converse-desktop***](apps/converse-desktop.md) | *Electron-based Desktop client for Converse.js.*..[ *read more* ](apps/converse-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/converse-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/converse-desktop) | -| | [***converseen***](apps/converseen.md) | *A batch image converter and resizer.*..[ *read more* ](apps/converseen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/converseen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/converseen) | -| | [***converter432hz***](apps/converter432hz.md) | *Converts and re-encodes music to 432hz.*..[ *read more* ](apps/converter432hz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/converter432hz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/converter432hz) | -| | [***converternow***](apps/converternow.md) | *The Unit Converter app. Easy, immediate and multi-platform.*..[ *read more* ](apps/converternow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/converternow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/converternow) | -| | [***cool-retro-term***](apps/cool-retro-term.md) | *Use the command line the old way.*..[ *read more* ](apps/cool-retro-term.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cool-retro-term) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cool-retro-term) | -| | [***coolercontrol***](apps/coolercontrol.md) | *A program to monitor and control your cooling devices.*..[ *read more* ](apps/coolercontrol.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coolercontrol) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coolercontrol) | -| | [***coolercontrold***](apps/coolercontrold.md) | *Daemon for coolercontrol, to monitor your cooling devices.*..[ *read more* ](apps/coolercontrold.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coolercontrold) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coolercontrold) | -| | [***copyq***](apps/copyq.md) | *Unofficial, an advanced clipboard manager with powerful editing and scripting features.*..[ *read more* ](apps/copyq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/copyq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/copyq) | -| | [***copytranslator***](apps/copytranslator.md) | *Foreign language reading and translation assistant.*..[ *read more* ](apps/copytranslator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/copytranslator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/copytranslator) | -| | [***cordlauncher***](apps/cordlauncher.md) | *Cord launcher based on Electron and Wep Application.*..[ *read more* ](apps/cordlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cordlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cordlauncher) | -| | [***coreaction***](apps/coreaction.md) | *A side bar for showing widgets for CuboCore Application Suite.*..[ *read more* ](apps/coreaction.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreaction) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreaction) | -| | [***corearchiver***](apps/corearchiver.md) | *Archive manager for CuboCore Application Suite.*..[ *read more* ](apps/corearchiver.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corearchiver) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corearchiver) | -| | [***corefm***](apps/corefm.md) | *A lightweight file-manager for C Suite.*..[ *read more* ](apps/corefm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corefm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corefm) | -| | [***coregarage***](apps/coregarage.md) | *A setting manager for CuboCore Application Suite.*..[ *read more* ](apps/coregarage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coregarage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coregarage) | -| | [***corehunt***](apps/corehunt.md) | *A file search utility for CuboCore Application Suite.*..[ *read more* ](apps/corehunt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corehunt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corehunt) | -| | [***coreimage***](apps/coreimage.md) | *An image viewer for CuboCore Application Suite.*..[ *read more* ](apps/coreimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreimage) | -| | [***coreinfo***](apps/coreinfo.md) | *A file information viewer for CuboCore Application Suite.*..[ *read more* ](apps/coreinfo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreinfo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreinfo) | -| | [***corekeyboard***](apps/corekeyboard.md) | *A x11 based virtual keyboard for C Suite.*..[ *read more* ](apps/corekeyboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corekeyboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corekeyboard) | -| | [***corepad***](apps/corepad.md) | *A document editor for CuboCore Application Suite.*..[ *read more* ](apps/corepad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corepad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corepad) | -| | [***corepaint***](apps/corepaint.md) | *A paint app for CuboCore Application Suite.*..[ *read more* ](apps/corepaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corepaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corepaint) | -| | [***corepins***](apps/corepins.md) | *A bookmarking app for CuboCore Application Suite.*..[ *read more* ](apps/corepins.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corepins) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corepins) | -| | [***corerenamer***](apps/corerenamer.md) | *A batch file renamer for CuboCore Application Suite.*..[ *read more* ](apps/corerenamer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corerenamer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corerenamer) | -| | [***coreshot***](apps/coreshot.md) | *A screen capture utility for CuboCore Application Suite.*..[ *read more* ](apps/coreshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreshot) | -| | [***corestats***](apps/corestats.md) | *A system resource viewer from the CoreApps family.*..[ *read more* ](apps/corestats.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corestats) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corestats) | -| | [***corestuff***](apps/corestuff.md) | *An activity viewer for CuboCore Application Suite.*..[ *read more* ](apps/corestuff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corestuff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corestuff) | -| | [***coreterminal***](apps/coreterminal.md) | *A terminal emulator for C Suite.*..[ *read more* ](apps/coreterminal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreterminal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreterminal) | -| | [***coretime***](apps/coretime.md) | *A time related task manager for CuboCore Application Suite.*..[ *read more* ](apps/coretime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coretime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coretime) | -| | [***coreuniverse***](apps/coreuniverse.md) | *Shows releated information of apps from CuboCore App Suite.*..[ *read more* ](apps/coreuniverse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreuniverse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreuniverse) | -| | [***corsixth***](apps/corsixth.md) | *Open source clone of Theme Hospital.*..[ *read more* ](apps/corsixth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corsixth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corsixth) | -| | [***corsixth-enhanced***](apps/corsixth-enhanced.md) | *Unofficial, open source clone of Theme Hospital.*..[ *read more* ](apps/corsixth-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corsixth-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corsixth-enhanced) | -| | [***cosmic-comics***](apps/cosmic-comics.md) | *Web Server based Comics / Manga Collectionner & viewer.*..[ *read more* ](apps/cosmic-comics.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cosmic-comics) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cosmic-comics) | -| | [***cozydrive***](apps/cozydrive.md) | *File Synchronisation for Cozy, cloud.*..[ *read more* ](apps/cozydrive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cozydrive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cozydrive) | -| | [***cpeditor***](apps/cpeditor.md) | *Code editor specially designed for competitive programming.*..[ *read more* ](apps/cpeditor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cpeditor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cpeditor) | -| | [***cpod***](apps/cpod.md) | *A simple, beautiful podcast app.*..[ *read more* ](apps/cpod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cpod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cpod) | -| | [***cpu-x***](apps/cpu-x.md) | *Software that gathers information on CPU, motherboard and more.*..[ *read more* ](apps/cpu-x.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cpu-x) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cpu-x) | -| | [***craftos-pc***](apps/craftos-pc.md) | *Advanced ComputerCraft emulator written in C++.*..[ *read more* ](apps/craftos-pc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/craftos-pc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/craftos-pc) | -| | [***crankshaft***](apps/crankshaft.md) | *A sensible krunker client written in typescript.*..[ *read more* ](apps/crankshaft.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crankshaft) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crankshaft) | -| | [***crawl-ncurses***](apps/crawl-ncurses.md) | *open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - ncurses version (terminal)*..[ *read more* ](apps/crawl-ncurses.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crawl-ncurses) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crawl-ncurses) | -| | [***crawl-tiles***](apps/crawl-tiles.md) | *open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - graphical version (SDL)*..[ *read more* ](apps/crawl-tiles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crawl-tiles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crawl-tiles) | -| | [***creality-print***](apps/creality-print.md) | *Creality Print is a slicer dedicated to FDM printers.*..[ *read more* ](apps/creality-print.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/creality-print) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/creality-print) | -| | [***crg-data-tool***](apps/crg-data-tool.md) | *A tool for working with Games Data files from CRG.*..[ *read more* ](apps/crg-data-tool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crg-data-tool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crg-data-tool) | -| | [***cric***](apps/cric.md) | *Custom Runtime Image Creator.*..[ *read more* ](apps/cric.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cric) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cric) | -| | [***crispy-doom***](apps/crispy-doom.md) | *Unofficial, a limit-removing enhanced-resolution Doom source port based on Chocolate Doom.*..[ *read more* ](apps/crispy-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crispy-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crispy-doom) | -| | [***criteria-geo***](apps/criteria-geo.md) | *A one-dimensional agro-hydrological model, GIS interface.*..[ *read more* ](apps/criteria-geo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/criteria-geo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/criteria-geo) | -| | [***criteria1d***](apps/criteria1d.md) | *A one-dimensional agro-hydrological model.*..[ *read more* ](apps/criteria1d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/criteria1d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/criteria1d) | -| | [***criteria1d-pro***](apps/criteria1d-pro.md) | *A one-dimensional agro-hydrological model, PRO.*..[ *read more* ](apps/criteria1d-pro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/criteria1d-pro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/criteria1d-pro) | -| | [***cro-chain-desktop-bin***](apps/cro-chain-desktop-bin.md) | *Crypto.com DeFi Desktop Wallet, AppImage version.*..[ *read more* ](apps/cro-chain-desktop-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cro-chain-desktop-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cro-chain-desktop-bin) | -| | [***cromagrally***](apps/cromagrally.md) | *The wildest racing game since man invented the wheel!*..[ *read more* ](apps/cromagrally.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cromagrally) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cromagrally) | -| | [***cromagrally-enhanced***](apps/cromagrally-enhanced.md) | *Unofficial, the wildest racing game since man invented the wheel!*..[ *read more* ](apps/cromagrally-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cromagrally-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cromagrally-enhanced) | -| | [***cromberg***](apps/cromberg.md) | *Personal accounting system.*..[ *read more* ](apps/cromberg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cromberg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cromberg) | -| | [***cromite***](apps/cromite.md) | *Unofficial AppImage of the Cromite web browser.*..[ *read more* ](apps/cromite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cromite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cromite) | -| | [***crosscode-map-editor***](apps/crosscode-map-editor.md) | *Map Editor for CrossCode.*..[ *read more* ](apps/crosscode-map-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crosscode-map-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crosscode-map-editor) | -| | [***crossmacro***](apps/crossmacro.md) | *A modern mouse and keyboard macro recording and playback application.*..[ *read more* ](apps/crossmacro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crossmacro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crossmacro) | -| | [***crossmobile***](apps/crossmobile.md) | *Create native iOS/Android/Windows apps in Java.*..[ *read more* ](apps/crossmobile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crossmobile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crossmobile) | -| | [***crow-translate***](apps/crow-translate.md) | *Translate and speak text using Google, Yandex, Bing and more.*..[ *read more* ](apps/crow-translate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crow-translate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crow-translate) | -| | [***cryplicity***](apps/cryplicity.md) | *Electron application boilerplate.*..[ *read more* ](apps/cryplicity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cryplicity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cryplicity) | -| | [***crypter***](apps/crypter.md) | *An innovative, convenient and secure crypto app.*..[ *read more* ](apps/crypter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crypter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crypter) | -| | [***cryptocam-companion***](apps/cryptocam-companion.md) | *GUI to decrypt videos taken by Cryptocam.*..[ *read more* ](apps/cryptocam-companion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cryptocam-companion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cryptocam-companion) | -| | [***cryptomator***](apps/cryptomator.md) | *Cloud Storage Encryption Utility.*..[ *read more* ](apps/cryptomator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cryptomator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cryptomator) | -| | [***cryptr***](apps/cryptr.md) | *A GUI for Vault.*..[ *read more* ](apps/cryptr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cryptr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cryptr) | -| | [***cs-demo-manager***](apps/cs-demo-manager.md) | *Companion application for your Counter-Strike demos.*..[ *read more* ](apps/cs-demo-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cs-demo-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cs-demo-manager) | -| | [***cscrypto***](apps/cscrypto.md) | *A crypto app.*..[ *read more* ](apps/cscrypto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cscrypto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cscrypto) | -| | [***ctool***](apps/ctool.md) | *Common Tools for Program Development.*..[ *read more* ](apps/ctool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ctool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ctool) | -| | [***cuberite***](apps/cuberite.md) | *Unofficial, a lightweight, fast and extensible game server for Minecraft.*..[ *read more* ](apps/cuberite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cuberite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cuberite) | -| | [***cubyz***](apps/cubyz.md) | *Unofficial AppImage of Cubyz.*..[ *read more* ](apps/cubyz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cubyz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cubyz) | -| | [***cura***](apps/cura.md) | *An open source slicing application for 3D printers.*..[ *read more* ](apps/cura.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cura) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cura) | -| | [***cura-beta***](apps/cura-beta.md) | *An open source slicing application for 3D printers, beta.*..[ *read more* ](apps/cura-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cura-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cura-beta) | -| | [***curseforge***](apps/curseforge.md) | *Discover endless mods for your favorite games, or forge your own and share them with millions.*..[ *read more* ](apps/curseforge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/curseforge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/curseforge) | -| | [***cursor***](apps/cursor.md) | *Built to make you extraordinarily productive, Cursor is the best way to code with AI.*..[ *read more* ](apps/cursor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cursor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cursor) | -| | [***cursor-cli***](apps/cursor-cli.md) | *Unofficial, AI-assisted development CLI tool.*..[ *read more* ](apps/cursor-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cursor-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cursor-cli) | -| | [***customrpc***](apps/customrpc.md) | *An electron-vue project.*..[ *read more* ](apps/customrpc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/customrpc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/customrpc) | -| | [***cutechess***](apps/cutechess.md) | *Cute Chess is a GUI, a CLI and a library for playing chess.*..[ *read more* ](apps/cutechess.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cutechess) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cutechess) | -| | [***cutepeaks***](apps/cutepeaks.md) | *A simple sanger trace file viewer.*..[ *read more* ](apps/cutepeaks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cutepeaks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cutepeaks) | -| | [***cutevariant***](apps/cutevariant.md) | *A genetics variant filtering tools*..[ *read more* ](apps/cutevariant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cutevariant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cutevariant) | -| | [***cutter***](apps/cutter.md) | *Free and Open Source Reverse Engineering Platform.*..[ *read more* ](apps/cutter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cutter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cutter) | -| | [***cvrx***](apps/cvrx.md) | *A standalone companion app for ChilloutVR that expands the user experience! A standalone companion app for ChilloutVR that expands the user experience! A standalone companion app for ChilloutVR that expands the user experience!.*..[ *read more* ](apps/cvrx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cvrx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cvrx) | -| | [***czkawka***](apps/czkawka.md) | *App to find duplicates, empty folders, similar images etc.*..[ *read more* ](apps/czkawka.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/czkawka) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/czkawka) | -| | [***d1x-rebirth***](apps/d1x-rebirth.md) | *Unofficial, a source port of the Descent engine.*..[ *read more* ](apps/d1x-rebirth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/d1x-rebirth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/d1x-rebirth) | -| | [***d2x-rebirth***](apps/d2x-rebirth.md) | *Unofficial, a source port of the Descent 2 engine.*..[ *read more* ](apps/d2x-rebirth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/d2x-rebirth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/d2x-rebirth) | -| | [***daggerfall-unity***](apps/daggerfall-unity.md) | *Unofficial, open source recreation of Daggerfall in the Unity engine.*..[ *read more* ](apps/daggerfall-unity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/daggerfall-unity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/daggerfall-unity) | -| | [***daisy***](apps/daisy.md) | *A beautiful, easy-to-use, ad-free manga and light novel client that supports both. (Anime Home).*..[ *read more* ](apps/daisy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/daisy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/daisy) | -| | [***dana***](apps/dana.md) | *A desktop client for the Dana learning box.*..[ *read more* ](apps/dana.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dana) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dana) | -| | [***darkplaces***](apps/darkplaces.md) | *Unofficial, the DarkPlaces Quake engine, created by LadyHavoc.*..[ *read more* ](apps/darkplaces.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/darkplaces) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/darkplaces) | -| | [***darktable***](apps/darktable.md) | *Photography workflow app and raw developer.*..[ *read more* ](apps/darktable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/darktable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/darktable) | -| | [***darktable-nightly***](apps/darktable-nightly.md) | *Photography workflow application and raw developer (nightly).*..[ *read more* ](apps/darktable-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/darktable-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/darktable-nightly) | -| | [***dashy-app***](apps/dashy-app.md) | *Dashboard creation application.*..[ *read more* ](apps/dashy-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dashy-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dashy-app) | -| | [***database-dossier***](apps/database-dossier.md) | *A User Interface for your databases.*..[ *read more* ](apps/database-dossier.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/database-dossier) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/database-dossier) | -| | [***dataset-annotator***](apps/dataset-annotator.md) | *An annotation tool for a dataset.*..[ *read more* ](apps/dataset-annotator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dataset-annotator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dataset-annotator) | -| | [***datcord***](apps/datcord.md) | *Discord client.*..[ *read more* ](apps/datcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/datcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/datcord) | -| | [***dawnlightsearch***](apps/dawnlightsearch.md) | *A Linux version of Everything Search Engine.*..[ *read more* ](apps/dawnlightsearch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dawnlightsearch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dawnlightsearch) | -| | [***dayon***](apps/dayon.md) | *Dayon! - A cross-platform remote desktop assistance solution for your family and friends.*..[ *read more* ](apps/dayon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dayon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dayon) | -| | [***dbeaver-ce***](apps/dbeaver-ce.md) | *Unofficial, DBeaver Community is a free cross-platform database tool for developers, database administrators, analysts, and everyone working with data.*..[ *read more* ](apps/dbeaver-ce.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbeaver-ce) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbeaver-ce) | -| | [***dbet-wallet***](apps/dbet-wallet.md) | *DBET Wallet.*..[ *read more* ](apps/dbet-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbet-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbet-wallet) | -| | [***dbgate***](apps/dbgate.md) | *Opensource database administration tool*..[ *read more* ](apps/dbgate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbgate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbgate) | -| | [***dbgate-premium***](apps/dbgate-premium.md) | *Opensource database administration tool (premium version)*..[ *read more* ](apps/dbgate-premium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbgate-premium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbgate-premium) | -| | [***deadbeef***](apps/deadbeef.md) | *Unofficial AppImage of the DeaDBeeF music player (Stable version).*..[ *read more* ](apps/deadbeef.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deadbeef) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deadbeef) | -| | [***deadbeef-nightly***](apps/deadbeef-nightly.md) | *Unofficial AppImage of the DeaDBeeF music player (Nightly version).*..[ *read more* ](apps/deadbeef-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deadbeef-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deadbeef-nightly) | -| | [***deadgame-2048***](apps/deadgame-2048.md) | *GUI tool available for ALL platforms.*..[ *read more* ](apps/deadgame-2048.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deadgame-2048) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deadgame-2048) | -| | [***dealers-choice***](apps/dealers-choice.md) | *A cross-platform, networked multiplayer poker game supporting draw, stud, and community-card variants, including Texas.*..[ *read more* ](apps/dealers-choice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dealers-choice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dealers-choice) | -| | [***deb2appimage***](apps/deb2appimage.md) | *Build AppImages from deb packages on any distro.*..[ *read more* ](apps/deb2appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deb2appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deb2appimage) | -| | [***deckboard***](apps/deckboard.md) | *Control your PC with your phone in easy way possible.*..[ *read more* ](apps/deckboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deckboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deckboard) | -| | [***dedop-studio***](apps/dedop-studio.md) | *DeDop Studio*..[ *read more* ](apps/dedop-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dedop-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dedop-studio) | -| | [***deepl-linux-electron***](apps/deepl-linux-electron.md) | *DeepL Integration. Select & translate text in any app.*..[ *read more* ](apps/deepl-linux-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deepl-linux-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deepl-linux-electron) | -| | [***deepnotes***](apps/deepnotes.md) | *End-to-end encrypted visual note-taking tool.*..[ *read more* ](apps/deepnotes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deepnotes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deepnotes) | -| | [***deeptags***](apps/deeptags.md) | *Markdown notes manager with support for nested tags.*..[ *read more* ](apps/deeptags.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deeptags) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deeptags) | -| | [***deerportal***](apps/deerportal.md) | *Full of the diamonds board game.*..[ *read more* ](apps/deerportal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deerportal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deerportal) | -| | [***deezer***](apps/deezer.md) | *A linux port of Deezer, allows downloading your songs, music.*..[ *read more* ](apps/deezer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deezer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deezer) | -| | [***deezer-enhanced***](apps/deezer-enhanced.md) | *An unofficial application for Deezer with enhanced features.*..[ *read more* ](apps/deezer-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deezer-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deezer-enhanced) | -| | [***defichain-app***](apps/defichain-app.md) | *DefiChain Wallet AppImage.*..[ *read more* ](apps/defichain-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/defichain-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/defichain-app) | -| | [***defold***](apps/defold.md) | *Unofficial, Defold is a completely free to use game engine for development of games.*..[ *read more* ](apps/defold.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/defold) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/defold) | -| | [***deltachat-desktop***](apps/deltachat-desktop.md) | *Desktop Application for delta.chat.*..[ *read more* ](apps/deltachat-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deltachat-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deltachat-desktop) | -| | [***demonizer***](apps/demonizer.md) | *Demonic corruption fantasy shmup.*..[ *read more* ](apps/demonizer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/demonizer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/demonizer) | -| | [***denise***](apps/denise.md) | *Unofficial AppImage of Denise.*..[ *read more* ](apps/denise.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/denise) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/denise) | -| | [***densify***](apps/densify.md) | *A GTK+ GUI Application written in Python that simplifies compressing PDF files with Ghostscript.*..[ *read more* ](apps/densify.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/densify) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/densify) | -| | [***deployer***](apps/deployer.md) | *Deploy your applications through Jenkins.*..[ *read more* ](apps/deployer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deployer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deployer) | -| | [***deskreen***](apps/deskreen.md) | *Turns any device with a web browser into a secondary screen.*..[ *read more* ](apps/deskreen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deskreen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deskreen) | -| | [***deskthing***](apps/deskthing.md) | *The Discord Thing, Trello Thing, The Weather Thing, The Macro Thing, just not The Car Thing anymore.*..[ *read more* ](apps/deskthing.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deskthing) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deskthing) | -| | [***desmume***](apps/desmume.md) | *Unofficial AppImage of the DeSmuME emulator.*..[ *read more* ](apps/desmume.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/desmume) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/desmume) | -| | [***destiny***](apps/destiny.md) | *Cross-platform Magic Wormhole graphical client.*..[ *read more* ](apps/destiny.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/destiny) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/destiny) | -| | [***dethrace***](apps/dethrace.md) | *Unofficial, reverse engineering the 1997 game "Carmageddon".*..[ *read more* ](apps/dethrace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dethrace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dethrace) | -| | [***devclean***](apps/devclean.md) | *A CLI and Desktop GUI app to clean dev dependencies (node_modules, cache) and more.*..[ *read more* ](apps/devclean.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devclean) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devclean) | -| | [***devdocs-desktop***](apps/devdocs-desktop.md) | *Desktop client for devdocs.io.*..[ *read more* ](apps/devdocs-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devdocs-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devdocs-desktop) | -| | [***devhub***](apps/devhub.md) | *TweetDeck for GitHub*..[ *read more* ](apps/devhub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devhub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devhub) | -| | [***devilutionx***](apps/devilutionx.md) | *Diablo build for modern operating systems.*..[ *read more* ](apps/devilutionx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devilutionx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devilutionx) | -| | [***devilutionx-enhanced***](apps/devilutionx-enhanced.md) | *Unofficial, Diablo build for modern operating systems.*..[ *read more* ](apps/devilutionx-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devilutionx-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devilutionx-enhanced) | -| | [***devpod***](apps/devpod.md) | *Codespaces but open-source, client-only and unopinionated. Works with any IDE and lets you use any cloud, kubernetes or just localhost docker.*..[ *read more* ](apps/devpod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devpod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devpod) | -| | [***devsidecar***](apps/devsidecar.md) | *Dev sidecar/github/git/stackoverflow acceleration, in chinese.*..[ *read more* ](apps/devsidecar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devsidecar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devsidecar) | -| | [***devtools-x***](apps/devtools-x.md) | *Collection of offline first developer utilities available as desktop application.*..[ *read more* ](apps/devtools-x.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devtools-x) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devtools-x) | -| | [***dexter-dev-env***](apps/dexter-dev-env.md) | *Dexter Development Environment.*..[ *read more* ](apps/dexter-dev-env.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dexter-dev-env) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dexter-dev-env) | -| | [***dezor***](apps/dezor.md) | *The web browser including VPN and Adblocker.*..[ *read more* ](apps/dezor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dezor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dezor) | -| | [***dfdemo***](apps/dfdemo.md) | *A thin Tcl/Tk GUI around the df POSIX command.*..[ *read more* ](apps/dfdemo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dfdemo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dfdemo) | -| | [***dfilemanager***](apps/dfilemanager.md) | *File manager written in Qt and C++.*..[ *read more* ](apps/dfilemanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dfilemanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dfilemanager) | -| | [***dhammapada***](apps/dhammapada.md) | *A simple Dhammapada verse viewer for the Linux desktop.*..[ *read more* ](apps/dhammapada.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dhammapada) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dhammapada) | -| | [***dhewm3***](apps/dhewm3.md) | *Unofficial, doom 3 GPL source port.*..[ *read more* ](apps/dhewm3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dhewm3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dhewm3) | -| | [***dicomautomaton***](apps/dicomautomaton.md) | *Tools for working with medical physics data.*..[ *read more* ](apps/dicomautomaton.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dicomautomaton) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dicomautomaton) | -| | [***die-engine***](apps/die-engine.md) | *Detect It Easy, a program for determining types of files.*..[ *read more* ](apps/die-engine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/die-engine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/die-engine) | -| | [***diffpdf***](apps/diffpdf.md) | *Unofficial AppImage of DiffPDF.*..[ *read more* ](apps/diffpdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diffpdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diffpdf) | -| | [***diffre***](apps/diffre.md) | *A fast, local file and folder diff tool like Beyond Compare, built for the desktop.*..[ *read more* ](apps/diffre.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diffre) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diffre) | -| | [***diffuse***](apps/diffuse.md) | *Music player, connects to your cloud/distributed storage.*..[ *read more* ](apps/diffuse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diffuse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diffuse) | -| | [***digikam***](apps/digikam.md) | *Professional and advanced digital photo management application.*..[ *read more* ](apps/digikam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/digikam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/digikam) | -| | [***digikam-dev***](apps/digikam-dev.md) | *Professional and advanced digital photo management application.*..[ *read more* ](apps/digikam-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/digikam-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/digikam-dev) | -| | [***dillo***](apps/dillo.md) | *Unofficial AppImage of Dillo.*..[ *read more* ](apps/dillo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dillo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dillo) | -| | [***dingtalk***](apps/dingtalk.md) | *DingTalk desktop version based on electron.*..[ *read more* ](apps/dingtalk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dingtalk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dingtalk) | -| | [***dinosaurplanetrecompiled***](apps/dinosaurplanetrecompiled.md) | *A static recompilation/native port of the game Dinosaur Planet.*..[ *read more* ](apps/dinosaurplanetrecompiled.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dinosaurplanetrecompiled) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dinosaurplanetrecompiled) | -| | [***dinox***](apps/dinox.md) | *DinoX - Modern XMPP Chat Client with Video Calls, Voice Messages & OMEMO Encryption.*..[ *read more* ](apps/dinox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dinox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dinox) | -| | [***dione***](apps/dione.md) | *Explore, Install, Innovate — in 1 Click.*..[ *read more* ](apps/dione.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dione) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dione) | -| | [***disass***](apps/disass.md) | *A simple disassembly tool.*..[ *read more* ](apps/disass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/disass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/disass) | -| | [***discord***](apps/discord.md) | *Unofficial. All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.*..[ *read more* ](apps/discord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/discord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/discord) | -| | [***discord-bot-client***](apps/discord-bot-client.md) | *A patched version of discord, with bot login & Vencord support.*..[ *read more* ](apps/discord-bot-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/discord-bot-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/discord-bot-client) | -| | [***discord-qt***](apps/discord-qt.md) | *Unofficial. Discord client powered by Node.JS and Qt Widgets.*..[ *read more* ](apps/discord-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/discord-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/discord-qt) | -| | [***diskfmt***](apps/diskfmt.md) | *A disk formatting utility for linux that is similar to the windows format utility.*..[ *read more* ](apps/diskfmt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diskfmt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diskfmt) | -| | [***dlman***](apps/dlman.md) | *Free & fast modern download manager built with Rust for speed and reliability.*..[ *read more* ](apps/dlman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dlman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dlman) | -| | [***dns-changer***](apps/dns-changer.md) | *An open-source DNS Changer app.*..[ *read more* ](apps/dns-changer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dns-changer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dns-changer) | -| | [***dnzhrecomp***](apps/dnzhrecomp.md) | *Unofficial, a native port of Duke Nukem Zero Hour, statically recompiled.*..[ *read more* ](apps/dnzhrecomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dnzhrecomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dnzhrecomp) | -| | [***dockstation***](apps/dockstation.md) | *Developing with Docker has never been so easy and convenient.*..[ *read more* ](apps/dockstation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dockstation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dockstation) | -| | [***dolphin-emu***](apps/dolphin-emu.md) | *Unofficial, GameCube/Nintento Wii emulator with improvements.*..[ *read more* ](apps/dolphin-emu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dolphin-emu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dolphin-emu) | -| | [***dolphin-emu-nightly***](apps/dolphin-emu-nightly.md) | *Unofficial nightly AppImage of the Dolphin emulator.*..[ *read more* ](apps/dolphin-emu-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dolphin-emu-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dolphin-emu-nightly) | -| | [***dolt-workbench***](apps/dolt-workbench.md) | *A modern, browser-based, open source SQL workbench for your MySQL and PostgreSQL compatible database with version control features when connected to Dolt.*..[ *read more* ](apps/dolt-workbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dolt-workbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dolt-workbench) | -| | [***domterm***](apps/domterm.md) | *DOM/JavaScript-based terminal-emulator/console.*..[ *read more* ](apps/domterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/domterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/domterm) | -| | [***doom64exultra***](apps/doom64exultra.md) | *Unofficial, A fork of DOOM64EX+ with new stuff and fixes.*..[ *read more* ](apps/doom64exultra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doom64exultra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doom64exultra) | -| | [***dopamine-preview***](apps/dopamine-preview.md) | *The audio player that keeps it simple.*..[ *read more* ](apps/dopamine-preview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dopamine-preview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dopamine-preview) | -| | [***dorion***](apps/dorion.md) | *Tiny alternative Discord client with a smaller footprint, snappier startup, themes, plugins and more!*..[ *read more* ](apps/dorion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dorion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dorion) | -| | [***dosbox-pure-unleashed***](apps/dosbox-pure-unleashed.md) | *Unofficial AppImage of DOSBox Pure Unleashed.*..[ *read more* ](apps/dosbox-pure-unleashed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dosbox-pure-unleashed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dosbox-pure-unleashed) | -| | [***dosbox-x***](apps/dosbox-x.md) | *Unofficial, DOSBox-X is a cross-platform DOS emulator for running many MS-DOS games.*..[ *read more* ](apps/dosbox-x.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dosbox-x) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dosbox-x) | -| | [***dosemu***](apps/dosemu.md) | *Run DOS programs under linux.*..[ *read more* ](apps/dosemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dosemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dosemu) | -| | [***dotline***](apps/dotline.md) | *A modern crosshair overlay app.*..[ *read more* ](apps/dotline.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dotline) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dotline) | -| | [***dotto***](apps/dotto.md) | *A portable and modern pixelart editor, written from scratch.*..[ *read more* ](apps/dotto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dotto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dotto) | -| | [***doublecmd-gtk***](apps/doublecmd-gtk.md) | *Two-panel file manager, also known as Double Commander.*..[ *read more* ](apps/doublecmd-gtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doublecmd-gtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doublecmd-gtk) | -| | [***doublecmd-qt***](apps/doublecmd-qt.md) | *Two-panel file manager, also known as Double Commander.*..[ *read more* ](apps/doublecmd-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doublecmd-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doublecmd-qt) | -| | [***downline***](apps/downline.md) | *A cross-platform video and audio downloader.*..[ *read more* ](apps/downline.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/downline) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/downline) | -| | [***dr-robotniks-ring-racers***](apps/dr-robotniks-ring-racers.md) | *Unofficial, kart racing video game originally based on SRB2Kart.*..[ *read more* ](apps/dr-robotniks-ring-racers.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dr-robotniks-ring-racers) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dr-robotniks-ring-racers) | -| | [***dragdrop***](apps/dragdrop.md) | *Small drag-and-drop file source for the command line.*..[ *read more* ](apps/dragdrop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dragdrop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dragdrop) | -| | [***dragula***](apps/dragula.md) | *Free Stock Images on Steroids.*..[ *read more* ](apps/dragula.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dragula) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dragula) | -| | [***drally***](apps/drally.md) | *Unofficial, a port of Death Rally (1996).*..[ *read more* ](apps/drally.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drally) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drally) | -| | [***draw.io***](apps/draw.io.md) | *draw.io desktop.*..[ *read more* ](apps/draw.io.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/draw.io) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/draw.io) | -| | [***drawish***](apps/drawish.md) | *Simple, yet complete drawing program.*..[ *read more* ](apps/drawish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drawish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drawish) | -| | [***drawpile***](apps/drawpile.md) | *Drawing program to sketch on the same canvas simultaneously.*..[ *read more* ](apps/drawpile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drawpile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drawpile) | -| | [***drawy***](apps/drawy.md) | *Your handy, infinite, brainstorming tool.*..[ *read more* ](apps/drawy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drawy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drawy) | -| | [***dreamm***](apps/dreamm.md) | *Unofficial AppImage of DREAMM.*..[ *read more* ](apps/dreamm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dreamm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dreamm) | -| | [***drill***](apps/drill.md) | *Search files without indexing, but clever crawling.*..[ *read more* ](apps/drill.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drill) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drill) | -| | [***droidcam***](apps/droidcam.md) | *A DroidCam AppImage for the Steam Deck/SteamOS 3.0.*..[ *read more* ](apps/droidcam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/droidcam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/droidcam) | -| | [***dropbox***](apps/dropbox.md) | *A free cloud service, Unofficial AppImage.*..[ *read more* ](apps/dropbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dropbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dropbox) | -| | [***droppoint***](apps/droppoint.md) | *Drag content without having to open side-by-side windows.*..[ *read more* ](apps/droppoint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/droppoint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/droppoint) | -| | [***drovp***](apps/drovp.md) | *Desktop app for encoding, converting, upscaling, and much more.*..[ *read more* ](apps/drovp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drovp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drovp) | -| | [***drum-machine***](apps/drum-machine.md) | *Unofficial, Application for managing and playing with drum patterns.*..[ *read more* ](apps/drum-machine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drum-machine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drum-machine) | -| | [***dsda-doom***](apps/dsda-doom.md) | *This is a successor of prboom+ with extra tooling for demo recording and playback, with a focus on speedrunning and quality of life.*..[ *read more* ](apps/dsda-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dsda-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dsda-doom) | -| | [***duckling***](apps/duckling.md) | *A fast viewer for CSV/Parquet files and databases such as DuckDB, SQLite, PostgreSQL, MySQL, Clickhouse, etc.*..[ *read more* ](apps/duckling.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duckling) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duckling) | -| | [***duckstation***](apps/duckstation.md) | *PlayStation 1, aka PSX games Emulator.*..[ *read more* ](apps/duckstation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duckstation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duckstation) | -| | [***duckstation-gpl-enhanced***](apps/duckstation-gpl-enhanced.md) | *Unofficial, fast PlayStation 1 emulator when it was still using GPLv3.*..[ *read more* ](apps/duckstation-gpl-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duckstation-gpl-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duckstation-gpl-enhanced) | -| | [***dukto***](apps/dukto.md) | *Easy and multi-platform file transfer tool.*..[ *read more* ](apps/dukto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dukto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dukto) | -| | [***dunst***](apps/dunst.md) | *Lightweight and customizable notification daemon.*..[ *read more* ](apps/dunst.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dunst) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dunst) | -| | [***duplicate-image-finder***](apps/duplicate-image-finder.md) | *It is an application that can find duplicated images (jpg, png, bitmap, etc) in a collection.*..[ *read more* ](apps/duplicate-image-finder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duplicate-image-finder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duplicate-image-finder) | -| | [***dusklight***](apps/dusklight.md) | *Dusklight brings a classic adventure to PC and mobile platforms with a variety of fixes and improvements.*..[ *read more* ](apps/dusklight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dusklight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dusklight) | -| | [***duskplayer***](apps/duskplayer.md) | *A minimal music player built on electron.*..[ *read more* ](apps/duskplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duskplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duskplayer) | -| | [***dust3d***](apps/dust3d.md) | *3D modeling software for games, 3D printing, and so on.*..[ *read more* ](apps/dust3d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dust3d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dust3d) | -| | [***dvdisaster***](apps/dvdisaster.md) | *Additional error protection for CD/DVD media.*..[ *read more* ](apps/dvdisaster.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dvdisaster) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dvdisaster) | -| | [***dwarf-fortress***](apps/dwarf-fortress.md) | *The AppImage of lnp-forge built LinuxDwarfPack.*..[ *read more* ](apps/dwarf-fortress.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dwarf-fortress) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dwarf-fortress) | -| | [***dwarf-fortress-legacy***](apps/dwarf-fortress-legacy.md) | *Unofficial AppImage of Dwarf Fortress Legacy.*..[ *read more* ](apps/dwarf-fortress-legacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dwarf-fortress-legacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dwarf-fortress-legacy) | -| | [***dwarffortress***](apps/dwarffortress.md) | *A Dwarf Fortress game. Build a fortress and try to help your dwarves survive against a deeply generated world.*..[ *read more* ](apps/dwarffortress.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dwarffortress) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dwarffortress) | -| | [***dwyco-phoo***](apps/dwyco-phoo.md) | *Dwyco Phoo Chat and Video Calling.*..[ *read more* ](apps/dwyco-phoo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dwyco-phoo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dwyco-phoo) | -| | [***e2-sat-editor***](apps/e2-sat-editor.md) | *Satellite channel lists editor with tabbed nav.*..[ *read more* ](apps/e2-sat-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/e2-sat-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/e2-sat-editor) | -| | [***eaglemode***](apps/eaglemode.md) | *Zoomable user interface with plugin applications.*..[ *read more* ](apps/eaglemode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eaglemode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eaglemode) | -| | [***easytag***](apps/easytag.md) | *Unofficial AppImage of EasyTAG tag editor.*..[ *read more* ](apps/easytag.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/easytag) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/easytag) | -| | [***ecency-surfer***](apps/ecency-surfer.md) | *Rewarding communities built, owned and operated by its users.*..[ *read more* ](apps/ecency-surfer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ecency-surfer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ecency-surfer) | -| | [***ecode***](apps/ecode.md) | *Lightweight code editor designed for modern hardware.*..[ *read more* ](apps/ecode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ecode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ecode) | -| | [***ecwolf***](apps/ecwolf.md) | *Unofficial, advanced port of Wolfenstein 3D based off of Wolf4SDL.*..[ *read more* ](apps/ecwolf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ecwolf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ecwolf) | -| | [***edconv***](apps/edconv.md) | *A user-friendly FFmpeg GUI.*..[ *read more* ](apps/edconv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/edconv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/edconv) | -| | [***eden***](apps/eden.md) | *An experimental open-source emulator for Nintendo Switch (yuzu fork).*..[ *read more* ](apps/eden.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eden) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eden) | -| | [***eden-nightly***](apps/eden-nightly.md) | *An experimental open-source emulator for Nintendo Switch (yuzu fork, nightly builds).*..[ *read more* ](apps/eden-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eden-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eden-nightly) | -| | [***edex-ui***](apps/edex-ui.md) | *A cross-platform, customizable science fiction terminal emulator.*..[ *read more* ](apps/edex-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/edex-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/edex-ui) | -| | [***eduke32***](apps/eduke32.md) | *Unofficial, an advanced Duke Nukem 3D source port.*..[ *read more* ](apps/eduke32.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eduke32) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eduke32) | -| | [***eez-studio***](apps/eez-studio.md) | *Cross-platform low-code GUI and automation.*..[ *read more* ](apps/eez-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eez-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eez-studio) | -| | [***ehdev-shell***](apps/ehdev-shell.md) | *An electron based developing tool for feds.*..[ *read more* ](apps/ehdev-shell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ehdev-shell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ehdev-shell) | -| | [***eiskaltdcpp***](apps/eiskaltdcpp.md) | *Client for EiskaltDC++ core.*..[ *read more* ](apps/eiskaltdcpp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eiskaltdcpp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eiskaltdcpp) | -| | [***eka2l1***](apps/eka2l1.md) | *A Symbian OS/N-Gage emulator*..[ *read more* ](apps/eka2l1.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eka2l1) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eka2l1) | -| | [***eksplode.re***](apps/eksplode.re.md) | *Bomberman game made with Godot under BSD3.*..[ *read more* ](apps/eksplode.re.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eksplode.re) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eksplode.re) | -| | [***elastic***](apps/elastic.md) | *Unofficial. Visualize and design physics-based animation of objects.*..[ *read more* ](apps/elastic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elastic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elastic) | -| | [***elcalc***](apps/elcalc.md) | *Cross-Platform calculator built with Electron.*..[ *read more* ](apps/elcalc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elcalc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elcalc) | -| | [***eldumper***](apps/eldumper.md) | *A GB Cartridge Dumper.*..[ *read more* ](apps/eldumper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eldumper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eldumper) | -| | [***electorrent***](apps/electorrent.md) | *A remote control Torrent client.*..[ *read more* ](apps/electorrent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electorrent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electorrent) | -| | [***electrocrud***](apps/electrocrud.md) | *No coding is required.*..[ *read more* ](apps/electrocrud.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrocrud) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrocrud) | -| | [***electron-app-store***](apps/electron-app-store.md) | *Simple App Store for Apps Built with Electron.*..[ *read more* ](apps/electron-app-store.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-app-store) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-app-store) | -| | [***electron-cash***](apps/electron-cash.md) | *Lightweight Bitcoin Cash Client.*..[ *read more* ](apps/electron-cash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-cash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-cash) | -| | [***electron-mail***](apps/electron-mail.md) | *Unofficial ProtonMail Desktop App.*..[ *read more* ](apps/electron-mail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-mail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-mail) | -| | [***electron-react-boilerplate***](apps/electron-react-boilerplate.md) | *A Foundation for Scalable Cross-Platform Apps.*..[ *read more* ](apps/electron-react-boilerplate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-react-boilerplate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-react-boilerplate) | -| | [***electron-ssr***](apps/electron-ssr.md) | *Install electron-ssr from appimage.*..[ *read more* ](apps/electron-ssr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-ssr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-ssr) | -| | [***electron-utils***](apps/electron-utils.md) | *Electron Utils for every day usage as a dev.*..[ *read more* ](apps/electron-utils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-utils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-utils) | -| | [***electron-wechat***](apps/electron-wechat.md) | *Wechat desktop application.*..[ *read more* ](apps/electron-wechat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-wechat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-wechat) | -| | [***electron-xiami***](apps/electron-xiami.md) | *Xiami Electron desktop application.*..[ *read more* ](apps/electron-xiami.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-xiami) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-xiami) | -| | [***electronreact***](apps/electronreact.md) | *Desktop application using Electron and React.*..[ *read more* ](apps/electronreact.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electronreact) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electronreact) | -| | [***electronwmd***](apps/electronwmd.md) | *Upload music to NetMD MiniDisc devices.*..[ *read more* ](apps/electronwmd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electronwmd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electronwmd) | -| | [***electrum***](apps/electrum.md) | *Lightweight Bitcoin Client.*..[ *read more* ](apps/electrum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrum) | -| | [***electrum-neurai***](apps/electrum-neurai.md) | *Neurai is a decentralized open source protocol optimized to transfer cryptoassets from one party to another on Layer1. The project aims to integrate NFT and Tokens with IoT and artificial intelligence applications.*..[ *read more* ](apps/electrum-neurai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrum-neurai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrum-neurai) | -| | [***electrum-ravencoin***](apps/electrum-ravencoin.md) | *Forked from the Electrum Bitcoin base client.*..[ *read more* ](apps/electrum-ravencoin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrum-ravencoin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrum-ravencoin) | -| | [***electrumfair***](apps/electrumfair.md) | *Lightweight FairCoin Client.*..[ *read more* ](apps/electrumfair.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrumfair) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrumfair) | -| | [***electrumsvp***](apps/electrumsvp.md) | *Bitcoin BSV wallet, fork of ElectrumSV.*..[ *read more* ](apps/electrumsvp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrumsvp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrumsvp) | -| | [***element***](apps/element.md) | *A feature-rich client for Matrix.org.*..[ *read more* ](apps/element.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/element) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/element) | -| | [***element-desktop***](apps/element-desktop.md) | *Unofficial, glossy Matrix collaboration client for desktop.*..[ *read more* ](apps/element-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/element-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/element-desktop) | -| | [***elementary-code***](apps/elementary-code.md) | *AppImage version of Elementary OS "Code" by Maksym Titenko.*..[ *read more* ](apps/elementary-code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elementary-code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elementary-code) | -| | [***elements***](apps/elements.md) | *App which displays the periodic table, Education, Science.*..[ *read more* ](apps/elements.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elements) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elements) | -| | [***elk***](apps/elk.md) | *Native version of Elk, a nimble Mastodon web.*..[ *read more* ](apps/elk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elk) | -| | [***ellas-war***](apps/ellas-war.md) | *Explore Ancient Greece on Ellas-War.*..[ *read more* ](apps/ellas-war.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ellas-war) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ellas-war) | -| | [***elphyre-walletshell***](apps/elphyre-walletshell.md) | *Elphyrecoin GUI Wallet.*..[ *read more* ](apps/elphyre-walletshell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elphyre-walletshell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elphyre-walletshell) | -| | [***elyprismlauncher***](apps/elyprismlauncher.md) | *This fork of Prism Launcher adds integrated support for Ely.by accounts.*..[ *read more* ](apps/elyprismlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elyprismlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elyprismlauncher) | -| | [***elzabrowser***](apps/elzabrowser.md) | *Elza incognito web browser.*..[ *read more* ](apps/elzabrowser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elzabrowser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elzabrowser) | -| | [***emacs***](apps/emacs.md) | *Unofficial. FOSS text editor for complete programming language.*..[ *read more* ](apps/emacs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emacs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emacs) | -| | [***emacs-nox***](apps/emacs-nox.md) | *Unofficial. FOSS text editor for complete programming language.*..[ *read more* ](apps/emacs-nox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emacs-nox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emacs-nox) | -| | [***embedded-ide***](apps/embedded-ide.md) | *Makefile based IDE for embedded systems.*..[ *read more* ](apps/embedded-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/embedded-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/embedded-ide) | -| | [***emoji-keyboard***](apps/emoji-keyboard.md) | *Virtual keyboard-like emoji palette for Linux.*..[ *read more* ](apps/emoji-keyboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emoji-keyboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emoji-keyboard) | -| | [***emudeck***](apps/emudeck.md) | *EmuDeck Desktop Electron Wrapper.*..[ *read more* ](apps/emudeck.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emudeck) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emudeck) | -| | [***emulsion***](apps/emulsion.md) | *Better gaming through chemistry.*..[ *read more* ](apps/emulsion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emulsion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emulsion) | -| | [***en-croissant***](apps/en-croissant.md) | *The Ultimate Chess Toolkit.*..[ *read more* ](apps/en-croissant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/en-croissant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/en-croissant) | -| | [***encryptpad***](apps/encryptpad.md) | *Secure text editor and binary encryptor with passwords.*..[ *read more* ](apps/encryptpad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/encryptpad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/encryptpad) | -| | [***endless-sky***](apps/endless-sky.md) | *Space exploration and combat game.*..[ *read more* ](apps/endless-sky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/endless-sky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/endless-sky) | -| | [***enoseannotator***](apps/enoseannotator.md) | *View, annotate and store measurements of the eNose sensor.*..[ *read more* ](apps/enoseannotator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/enoseannotator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/enoseannotator) | -| | [***ente-auth***](apps/ente-auth.md) | *Fully open source, End to End Encrypted alternative to Google Photos and Apple Photos.*..[ *read more* ](apps/ente-auth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ente-auth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ente-auth) | -| | [***ente-photos***](apps/ente-photos.md) | *Binary releases of the Ente Photos desktop app.*..[ *read more* ](apps/ente-photos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ente-photos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ente-photos) | -| | [***enve***](apps/enve.md) | *Create 2D Animations.*..[ *read more* ](apps/enve.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/enve) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/enve) | -| | [***envkey***](apps/envkey.md) | *EnvKey’s cross-platform native app.*..[ *read more* ](apps/envkey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/envkey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/envkey) | -| | [***eog***](apps/eog.md) | *Eye of Gnome is an image viewing and cataloging program.*..[ *read more* ](apps/eog.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eog) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eog) | -| | [***eosvc***](apps/eosvc.md) | *Application for management of self-employeed people.*..[ *read more* ](apps/eosvc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eosvc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eosvc) | -| | [***eplee***](apps/eplee.md) | *Sweet, simple epub reader.*..[ *read more* ](apps/eplee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eplee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eplee) | -| | [***epsxe***](apps/epsxe.md) | *Unofficial, enhanced PSX emulator.*..[ *read more* ](apps/epsxe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/epsxe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/epsxe) | -| | [***eqonomize***](apps/eqonomize.md) | *Manage your personal finances.*..[ *read more* ](apps/eqonomize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eqonomize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eqonomize) | -| | [***equibop***](apps/equibop.md) | *Equibop is a custom Discord App aiming to give you better performance and improve linux support.*..[ *read more* ](apps/equibop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/equibop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/equibop) | -| | [***era***](apps/era.md) | *ERA is your note-taking tool.*..[ *read more* ](apps/era.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/era) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/era) | -| | [***erscaffold***](apps/erscaffold.md) | *A code generator for websites.*..[ *read more* ](apps/erscaffold.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/erscaffold) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/erscaffold) | -| | [***es-de***](apps/es-de.md) | *EmulationStation Desktop Edition.*..[ *read more* ](apps/es-de.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/es-de) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/es-de) | -| | [***escrcpy***](apps/escrcpy.md) | *Graphical Scrcpy to display and control Android, devices powered by Electron.*..[ *read more* ](apps/escrcpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/escrcpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/escrcpy) | -| | [***esearch***](apps/esearch.md) | *Screenshot OCR search translate search for picture paste...*..[ *read more* ](apps/esearch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/esearch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/esearch) | -| | [***espanso***](apps/espanso.md) | *Cross-platform Text Expander written in Rust.*..[ *read more* ](apps/espanso.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/espanso) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/espanso) | -| | [***espi***](apps/espi.md) | *Software recreation of the SP-1200 drum machine.*..[ *read more* ](apps/espi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/espi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/espi) | -| | [***etcher***](apps/etcher.md) | *Flash OS images to SD cards and USB drives, Balena Etcher.*..[ *read more* ](apps/etcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/etcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/etcher) | -| | [***eternal-lands***](apps/eternal-lands.md) | *3D fantasy multiplayer online role playing game.*..[ *read more* ](apps/eternal-lands.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eternal-lands) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eternal-lands) | -| | [***eternalmodmanager***](apps/eternalmodmanager.md) | *A cross platform mod manager for DOOM Eternal.*..[ *read more* ](apps/eternalmodmanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eternalmodmanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eternalmodmanager) | -| | [***etherealengine-cc***](apps/etherealengine-cc.md) | *App for managing Ethereal Engine cluster.*..[ *read more* ](apps/etherealengine-cc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/etherealengine-cc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/etherealengine-cc) | -| | [***etichetta***](apps/etichetta.md) | *A YOLO annotator, for human beings.*..[ *read more* ](apps/etichetta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/etichetta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/etichetta) | -| | [***etlegacy***](apps/etlegacy.md) | *Enemy Territory.*..[ *read more* ](apps/etlegacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/etlegacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/etlegacy) | -| | [***evalit***](apps/evalit.md) | *A notepad calculator application with JavaScript configuration.*..[ *read more* ](apps/evalit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/evalit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/evalit) | -| | [***everdo***](apps/everdo.md) | *A powerful cross-platform GTD app with focus on privacy.*..[ *read more* ](apps/everdo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/everdo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/everdo) | -| | [***everinst***](apps/everinst.md) | *An installer for the Everest mod loader.*..[ *read more* ](apps/everinst.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/everinst) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/everinst) | -| | [***evernote***](apps/evernote.md) | *Unofficial. Note taking app. Remember everything and tackle any project with your notes, tasks, and schedule all in one place.*..[ *read more* ](apps/evernote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/evernote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/evernote) | -| | [***evince***](apps/evince.md) | *Unofficial. Document viewer for popular document formats.*..[ *read more* ](apps/evince.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/evince) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/evince) | -| | [***evoplex***](apps/evoplex.md) | *Agent-based modeling.*..[ *read more* ](apps/evoplex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/evoplex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/evoplex) | -| | [***excel-parser-processor***](apps/excel-parser-processor.md) | *Generates an array of items from the rows.*..[ *read more* ](apps/excel-parser-processor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/excel-parser-processor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/excel-parser-processor) | -| | [***exe***](apps/exe.md) | *A Elearning XHTML/HTML5 editor.*..[ *read more* ](apps/exe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exe) | -| | [***exeqt***](apps/exeqt.md) | *Cross platform tray manager.*..[ *read more* ](apps/exeqt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exeqt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exeqt) | -| | [***exifcleaner***](apps/exifcleaner.md) | *Clean exif metadata from images, videos, and PDFs.*..[ *read more* ](apps/exifcleaner.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exifcleaner) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exifcleaner) | -| | [***eximchain-wallet***](apps/eximchain-wallet.md) | *Eximchain Wallet web and electron app.*..[ *read more* ](apps/eximchain-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eximchain-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eximchain-wallet) | -| | [***explorook***](apps/explorook.md) | *Rookout’s site addon to support local files and folders.*..[ *read more* ](apps/explorook.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/explorook) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/explorook) | -| | [***exportoo***](apps/exportoo.md) | *Read and search your exports.*..[ *read more* ](apps/exportoo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exportoo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exportoo) | -| | [***exsplode.re***](apps/exsplode.re.md) | *A Bomberman game made with Godot under BSD3.*..[ *read more* ](apps/exsplode.re.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exsplode.re) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exsplode.re) | -| | [***extension-manager***](apps/extension-manager.md) | *A native tool for browsing, installing, and managing GNOME Shell Extensions.*..[ *read more* ](apps/extension-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/extension-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/extension-manager) | -| | [***extraterm***](apps/extraterm.md) | *The swiss army chainsaw of terminal emulators.*..[ *read more* ](apps/extraterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/extraterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/extraterm) | -| | [***extrema***](apps/extrema.md) | *Data visualisation and analysis.*..[ *read more* ](apps/extrema.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/extrema) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/extrema) | -| | [***extremetuxracer***](apps/extremetuxracer.md) | *Unofficial. 3D racing game with Tux, the Linux penguin.*..[ *read more* ](apps/extremetuxracer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/extremetuxracer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/extremetuxracer) | -| | [***exult***](apps/exult.md) | *Unofficial, a project to recreate Ultima 7 for modern operating systems.*..[ *read more* ](apps/exult.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exult) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exult) | -| | [***eyedropper***](apps/eyedropper.md) | *Unofficial. Simple color picker, with support for various color palettes.*..[ *read more* ](apps/eyedropper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eyedropper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eyedropper) | -| | [***eyestalker***](apps/eyestalker.md) | *Video-based eye tracking using recursive estimation of pupil.*..[ *read more* ](apps/eyestalker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eyestalker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eyestalker) | -| | [***ez-tree***](apps/ez-tree.md) | *EZ Tree – Procedural tree generator.*..[ *read more* ](apps/ez-tree.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ez-tree) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ez-tree) | -| | [***ezup***](apps/ezup.md) | *Easy File Upload to Cloud Storage.*..[ *read more* ](apps/ezup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ezup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ezup) | -| | [***f-crm***](apps/f-crm.md) | *Customer Relations Management for Freelancers.*..[ *read more* ](apps/f-crm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/f-crm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/f-crm) | -| | [***f1mv-lights-integration***](apps/f1mv-lights-integration.md) | *Connect your smart home lights to MultiViewer.*..[ *read more* ](apps/f1mv-lights-integration.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/f1mv-lights-integration) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/f1mv-lights-integration) | -| | [***fabother-world***](apps/fabother-world.md) | *Unofficial, an interpreter for Another World (Out of this world).*..[ *read more* ](apps/fabother-world.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fabother-world) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fabother-world) | -| | [***fafarunner***](apps/fafarunner.md) | *A game developed using flutter and flame.*..[ *read more* ](apps/fafarunner.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fafarunner) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fafarunner) | -| | [***fairshare***](apps/fairshare.md) | *Simplifying the curation and sharing of biomedical research.*..[ *read more* ](apps/fairshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fairshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fairshare) | -| | [***falkon***](apps/falkon.md) | *Unofficial. A fast Qt web browser from KDE.*..[ *read more* ](apps/falkon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/falkon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/falkon) | -| | [***fantascene-dynamic-wallpaper***](apps/fantascene-dynamic-wallpaper.md) | *Dynamic wallpaper software for Linux.*..[ *read more* ](apps/fantascene-dynamic-wallpaper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fantascene-dynamic-wallpaper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fantascene-dynamic-wallpaper) | -| | [***fantasia-archive***](apps/fantasia-archive.md) | *A database manager for world building.*..[ *read more* ](apps/fantasia-archive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fantasia-archive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fantasia-archive) | -| | [***farmhand***](apps/farmhand.md) | *A resource management game that puts a farm in your hand.*..[ *read more* ](apps/farmhand.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/farmhand) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/farmhand) | -| | [***fastfetch***](apps/fastfetch.md) | *Like neofetch, but much faster because written mostly in C.*..[ *read more* ](apps/fastfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fastfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fastfetch) | -| | [***fasttrack***](apps/fasttrack.md) | *Fast tracking of multiple objects.*..[ *read more* ](apps/fasttrack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fasttrack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fasttrack) | -| | [***fat-wallet***](apps/fat-wallet.md) | *Wallet for FAT tokens.*..[ *read more* ](apps/fat-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fat-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fat-wallet) | -| | [***fauxx***](apps/fauxx.md) | *Cross-device companion to Fauxx Android app that generates realistic decoy web activity through synthetic personas to pollute the profiles that data brokers and ad-tech build about you.*..[ *read more* ](apps/fauxx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fauxx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fauxx) | -| | [***fbreader***](apps/fbreader.md) | *Your Favourite eBook Reader*..[ *read more* ](apps/fbreader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fbreader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fbreader) | -| | [***fchat-horizon***](apps/fchat-horizon.md) | *The Best F-Chat 3.0 Client, No exceptions!.*..[ *read more* ](apps/fchat-horizon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fchat-horizon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fchat-horizon) | -| | [***fdm***](apps/fdm.md) | *Free Download Manager, multiplatform powerful modern download accelerator and organizer.*..[ *read more* ](apps/fdm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fdm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fdm) | -| | [***featherpad***](apps/featherpad.md) | *Unofficial. A lightweight Qt plain-text editor.*..[ *read more* ](apps/featherpad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/featherpad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/featherpad) | -| | [***feebas***](apps/feebas.md) | *Screenshot comparison tool for identifying visual regressions.*..[ *read more* ](apps/feebas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/feebas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/feebas) | -| | [***feedseries***](apps/feedseries.md) | *Follow your series enthusiast news, in french.*..[ *read more* ](apps/feedseries.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/feedseries) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/feedseries) | -| | [***feishin***](apps/feishin.md) | *Sonixd Rewrite, a desktop music player.*..[ *read more* ](apps/feishin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/feishin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/feishin) | -| | [***ferdium***](apps/ferdium.md) | *All your services in one place, built by the community.*..[ *read more* ](apps/ferdium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ferdium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ferdium) | -| | [***ferrix***](apps/ferrix.md) | *Fast, modern, cross-platform download manager built with Rust and Tauri, supports resumable downloads, clean UI, and blazing performance.*..[ *read more* ](apps/ferrix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ferrix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ferrix) | -| | [***ff-password-exporter***](apps/ff-password-exporter.md) | *Export your saved passwords from Firefox.*..[ *read more* ](apps/ff-password-exporter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ff-password-exporter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ff-password-exporter) | -| | [***fflogs-uploader***](apps/fflogs-uploader.md) | *FFLogs Uploader appimage.*..[ *read more* ](apps/fflogs-uploader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fflogs-uploader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fflogs-uploader) | -| | [***ffmpeg***](apps/ffmpeg.md) | *Unofficial, A complete, cross-platform solution to record, convert and stream audio and video.*..[ *read more* ](apps/ffmpeg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffmpeg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffmpeg) | -| | [***ficus***](apps/ficus.md) | *A software for editing and managing markdown documents.*..[ *read more* ](apps/ficus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ficus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ficus) | -| | [***fiddler-everywhere***](apps/fiddler-everywhere.md) | *Debug your network traffic to deliver high-quality products.*..[ *read more* ](apps/fiddler-everywhere.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fiddler-everywhere) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fiddler-everywhere) | -| | [***fidias-database-migration-app***](apps/fidias-database-migration-app.md) | *Migrate SQL-based databases.*..[ *read more* ](apps/fidias-database-migration-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fidias-database-migration-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fidias-database-migration-app) | -| | [***fifo***](apps/fifo.md) | *A modern web browser, built on top of modern web technologies.*..[ *read more* ](apps/fifo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fifo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fifo) | -| | [***figma-linux***](apps/figma-linux.md) | *First interface design tool based in the browser, graphics.*..[ *read more* ](apps/figma-linux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/figma-linux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/figma-linux) | -| | [***file-commander***](apps/file-commander.md) | *CLI, cross-platform Total Commander-like orthodox file manager.*..[ *read more* ](apps/file-commander.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file-commander) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file-commander) | -| | [***file-converter***](apps/file-converter.md) | *Convert between various file formats.*..[ *read more* ](apps/file-converter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file-converter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file-converter) | -| | [***file-roller***](apps/file-roller.md) | *File Roller is an archive manager for the GNOME desktop environment. Create and modify archives.*..[ *read more* ](apps/file-roller.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file-roller) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file-roller) | -| | [***file-to-c***](apps/file-to-c.md) | *Tool for generating a C header from a spir-v binary file.*..[ *read more* ](apps/file-to-c.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file-to-c) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file-to-c) | -| | [***filelight***](apps/filelight.md) | *Unofficial. View disk usage information, by KDE.*..[ *read more* ](apps/filelight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filelight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filelight) | -| | [***filen***](apps/filen.md) | *Desktop client for Filen.io, end-to-end encrypted cloud storage.*..[ *read more* ](apps/filen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filen) | -| | [***filezilla***](apps/filezilla.md) | *Unofficial. The free FTP solution with support for FTP over TLS and SFTP.*..[ *read more* ](apps/filezilla.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filezilla) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filezilla) | -| | [***filmulator-gui***](apps/filmulator-gui.md) | *Simplified raw editing with the power of film, graphics.*..[ *read more* ](apps/filmulator-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filmulator-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filmulator-gui) | -| | [***fingrom***](apps/fingrom.md) | *Financial accounting application*..[ *read more* ](apps/fingrom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fingrom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fingrom) | -| | [***firealpaca***](apps/firealpaca.md) | *A Free and Multiplatform Digital Painting Software.*..[ *read more* ](apps/firealpaca.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firealpaca) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firealpaca) | -| | [***firecamp***](apps/firecamp.md) | *Developer-first OpenSource API DevTool, Postman/Insomnia alternative.*..[ *read more* ](apps/firecamp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firecamp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firecamp) | -| | [***firedragon***](apps/firedragon.md) | *A web browser based on Floorp (the Vivaldi of Firefox's) with many opiniated settings by default.*..[ *read more* ](apps/firedragon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firedragon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firedragon) | -| | [***firefly-desktop***](apps/firefly-desktop.md) | *The official IOTA and Shimmer wallet.*..[ *read more* ](apps/firefly-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefly-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefly-desktop) | -| | [***firefox***](apps/firefox.md) | *Fast, powerful and extensible Web Browser, Stable.*..[ *read more* ](apps/firefox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox) | -| | [***firefox-beta***](apps/firefox-beta.md) | *Fast, powerful and extensible Web Browser, Beta Edition.*..[ *read more* ](apps/firefox-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-beta) | -| | [***firefox-devedition***](apps/firefox-devedition.md) | *Fast, powerful and extensible Web Browser, Developer Edition.*..[ *read more* ](apps/firefox-devedition.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-devedition) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-devedition) | -| | [***firefox-esr***](apps/firefox-esr.md) | *Fast, powerful and extensible Web Browser, ESR Edition.*..[ *read more* ](apps/firefox-esr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-esr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-esr) | -| | [***firefox-nightly***](apps/firefox-nightly.md) | *Fast, powerful and extensible Web Browser, Nightly Edition.*..[ *read more* ](apps/firefox-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-nightly) | -| | [***fireminipro***](apps/fireminipro.md) | *GUI for minipro CLI.*..[ *read more* ](apps/fireminipro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fireminipro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fireminipro) | -| | [***firetail***](apps/firetail.md) | *An open source music player.*..[ *read more* ](apps/firetail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firetail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firetail) | -| | [***firetv-toolkit***](apps/firetv-toolkit.md) | *Android-Toolkit, a GUI for adb, modify android devices.*..[ *read more* ](apps/firetv-toolkit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firetv-toolkit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firetv-toolkit) | -| | [***fishing-funds***](apps/fishing-funds.md) | *Fund, big market, stock, virtual currency status, in chinese.*..[ *read more* ](apps/fishing-funds.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fishing-funds) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fishing-funds) | -| | [***fishterm***](apps/fishterm.md) | *A open-soruce Terminal remote access.*..[ *read more* ](apps/fishterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fishterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fishterm) | -| | [***fjordlauncher***](apps/fjordlauncher.md) | *Prism Launcher fork with support for alternative auth servers.*..[ *read more* ](apps/fjordlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fjordlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fjordlauncher) | -| | [***flacon***](apps/flacon.md) | *Audio File Encoder. Extracts audio tracks from audio CDs.*..[ *read more* ](apps/flacon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flacon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flacon) | -| | [***fladder***](apps/fladder.md) | *A Simple Jellyfin frontend built on top of Flutter.*..[ *read more* ](apps/fladder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fladder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fladder) | -| | [***flameshot***](apps/flameshot.md) | *Tool to take screenshots with many built-in features, graphics.*..[ *read more* ](apps/flameshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flameshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flameshot) | -| | [***flare***](apps/flare.md) | *Fantasy action RPG game using the FLARE engine.*..[ *read more* ](apps/flare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flare) | -| | [***flashrom***](apps/flashrom.md) | *Unofficial AppImage of ffmpeg.*..[ *read more* ](apps/flashrom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flashrom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flashrom) | -| | [***flawesome***](apps/flawesome.md) | *Flawesome is a modern productivity tool.*..[ *read more* ](apps/flawesome.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flawesome) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flawesome) | -| | [***flb***](apps/flb.md) | *A beautiful Feature Rich Music Player and Downloader,cross platform.*..[ *read more* ](apps/flb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flb) | -| | [***flclash***](apps/flclash.md) | *A multi-platform proxy client based on ClashMeta,simple and easy to use, open-source and ad-free.*..[ *read more* ](apps/flclash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flclash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flclash) | -| | [***flightcore***](apps/flightcore.md) | *A Northstar installer, updater, and mod-manager.*..[ *read more* ](apps/flightcore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flightcore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flightcore) | -| | [***flightgear***](apps/flightgear.md) | *Free, open source flight simulator developed since 1997.*..[ *read more* ](apps/flightgear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flightgear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flightgear) | -| | [***flightgear-airports***](apps/flightgear-airports.md) | *A software to design Flightgear groundnets.*..[ *read more* ](apps/flightgear-airports.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flightgear-airports) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flightgear-airports) | -| | [***flippy-qualitative-testbench***](apps/flippy-qualitative-testbench.md) | *Music sheet reader.*..[ *read more* ](apps/flippy-qualitative-testbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flippy-qualitative-testbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flippy-qualitative-testbench) | -| | [***floorp***](apps/floorp.md) | *Floorp Web Browser, the most Advanced and Fastest Firefox derivative.*..[ *read more* ](apps/floorp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/floorp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/floorp) | -| | [***flow-browser***](apps/flow-browser.md) | *A modern, privacy-focused browser with a minimalistic design.*..[ *read more* ](apps/flow-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flow-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flow-browser) | -| | [***flowinity***](apps/flowinity.md) | *The versatile all-in-one online platform, for everyone.*..[ *read more* ](apps/flowinity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flowinity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flowinity) | -| | [***fluent-reader***](apps/fluent-reader.md) | *Modern desktop RSS reader.*..[ *read more* ](apps/fluent-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fluent-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fluent-reader) | -| | [***fluxer***](apps/fluxer.md) | *A free and open source instant messaging and VoIP platform built for friends, groups, and communities.*..[ *read more* ](apps/fluxer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fluxer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fluxer) | -| | [***flycast***](apps/flycast.md) | *A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator.*..[ *read more* ](apps/flycast.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flycast) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flycast) | -| | [***flycast-dojo***](apps/flycast-dojo.md) | *Flycast fork, multiplatform Sega Dreamcast, Naomi and Atomiswave emulator for netplay, training & online tournament gameplay.*..[ *read more* ](apps/flycast-dojo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flycast-dojo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flycast-dojo) | -| | [***flycast-enhanced***](apps/flycast-enhanced.md) | *Unofficial, A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator.*..[ *read more* ](apps/flycast-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flycast-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flycast-enhanced) | -| | [***flyingcarpet***](apps/flyingcarpet.md) | *Cross-platform AirDrop. File transfer between Android, iOS, Linux, macOS, and Windows over ad hoc WiFi. No network infrastructure required, just two devices with WiFi chips in close range.*..[ *read more* ](apps/flyingcarpet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flyingcarpet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flyingcarpet) | -| | [***fmradio***](apps/fmradio.md) | *Cross platform FM Radio App for RTL2832U dongles.*..[ *read more* ](apps/fmradio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fmradio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fmradio) | -| | [***fms-file-explorer***](apps/fms-file-explorer.md) | *Access and exploration of data produced.*..[ *read more* ](apps/fms-file-explorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fms-file-explorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fms-file-explorer) | -| | [***focalizzare***](apps/focalizzare.md) | *A Timer for Pomodoro Technique.*..[ *read more* ](apps/focalizzare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focalizzare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focalizzare) | -| | [***focusatwill***](apps/focusatwill.md) | *Combines neuroscience and music to boost productivity.*..[ *read more* ](apps/focusatwill.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focusatwill) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focusatwill) | -| | [***focuswriter***](apps/focuswriter.md) | *Simple fullscreen word processor.*..[ *read more* ](apps/focuswriter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focuswriter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focuswriter) | -| | [***folo***](apps/folo.md) | *Folo is the AI Reader.*..[ *read more* ](apps/folo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/folo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/folo) | -| | [***fontbase***](apps/fontbase.md) | *A lightning fast, beautiful and free font manager for designers.*..[ *read more* ](apps/fontbase.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fontbase) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fontbase) | -| | [***fontforge***](apps/fontforge.md) | *Free, libre font editor.*..[ *read more* ](apps/fontforge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fontforge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fontforge) | -| | [***fontlet***](apps/fontlet.md) | *A package manager for fonts.*..[ *read more* ](apps/fontlet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fontlet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fontlet) | -| | [***foobar2000***](apps/foobar2000.md) | *Unofficial, an advanced freeware audio player for Windows, includes WINE.*..[ *read more* ](apps/foobar2000.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foobar2000) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foobar2000) | -| | [***foobillardpp***](apps/foobillardpp.md) | *Unofficial, an OpenGL Billard Game based on foobillard 3.0a with patches and new features.*..[ *read more* ](apps/foobillardpp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foobillardpp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foobillardpp) | -| | [***foot***](apps/foot.md) | *Unofficial, A fast, lightweight and minimalistic Wayland terminal emulator (This AppImage can work on x11 as well).*..[ *read more* ](apps/foot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foot) | -| | [***fooyin***](apps/fooyin.md) | *Unofficial, a customisable music player.*..[ *read more* ](apps/fooyin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fooyin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fooyin) | -| | [***four***](apps/four.md) | *Electron App to access All4/Channel4, UK.*..[ *read more* ](apps/four.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/four) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/four) | -| | [***foxfolio***](apps/foxfolio.md) | *Cryptocurrency portfolio management application.*..[ *read more* ](apps/foxfolio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foxfolio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foxfolio) | -| | [***fpm***](apps/fpm.md) | *Faster Project Plus on Linux.*..[ *read more* ](apps/fpm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fpm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fpm) | -| | [***fractale***](apps/fractale.md) | *2D modeling of the Von Koch fractal.*..[ *read more* ](apps/fractale.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fractale) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fractale) | -| | [***fraidycat***](apps/fraidycat.md) | *Follow blogs, wikis, YouTube, Twitter, Reddit, Instagram and more.*..[ *read more* ](apps/fraidycat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fraidycat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fraidycat) | -| | [***fraktal***](apps/fraktal.md) | *Podcast Manager in Electron.*..[ *read more* ](apps/fraktal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fraktal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fraktal) | -| | [***frame***](apps/frame.md) | *Fast FFmpeg GUI.*..[ *read more* ](apps/frame.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/frame) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/frame) | -| | [***frame-eth-dev***](apps/frame-eth-dev.md) | *A privacy focused Ethereum wallet.*..[ *read more* ](apps/frame-eth-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/frame-eth-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/frame-eth-dev) | -| | [***francetv***](apps/francetv.md) | *The france.tv site in an application.*..[ *read more* ](apps/francetv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/francetv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/francetv) | -| | [***franz***](apps/franz.md) | *Messaging app for WhatsApp, Slack, Telegram, HipChat and much more.*..[ *read more* ](apps/franz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/franz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/franz) | -| | [***frappebooks***](apps/frappebooks.md) | *Book-keeping software for small-businesses and freelancers.*..[ *read more* ](apps/frappebooks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/frappebooks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/frappebooks) | -| | [***freac***](apps/freac.md) | *fre:ac, free audio converter and CD ripper for various encoders.*..[ *read more* ](apps/freac.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freac) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freac) | -| | [***freecad***](apps/freecad.md) | *Free and open source AutoCAD alternative.*..[ *read more* ](apps/freecad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freecad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freecad) | -| | [***freecad-assembly3***](apps/freecad-assembly3.md) | *Assembly3 workbench for FreeCAD.*..[ *read more* ](apps/freecad-assembly3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freecad-assembly3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freecad-assembly3) | -| | [***freecad-weekly***](apps/freecad-weekly.md) | *Official developmet build of FreeCAD, a free and opensource multiplatform 3D parametric modeler.*..[ *read more* ](apps/freecad-weekly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freecad-weekly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freecad-weekly) | -| | [***freeman***](apps/freeman.md) | *A free, extensible, cross-platform file manager for power users.*..[ *read more* ](apps/freeman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freeman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freeman) | -| | [***freeshow***](apps/freeshow.md) | *User-friendly presenter software.*..[ *read more* ](apps/freeshow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freeshow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freeshow) | -| | [***freetexturepacker***](apps/freetexturepacker.md) | *Creates sprite sheets for you game or site, graphics.*..[ *read more* ](apps/freetexturepacker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freetexturepacker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freetexturepacker) | -| | [***freetube***](apps/freetube.md) | *An Open Source YouTube app for privacy.*..[ *read more* ](apps/freetube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freetube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freetube) | -| | [***freetube-enhanced***](apps/freetube-enhanced.md) | *Unofficial, An Open Source YouTube app for privacy.*..[ *read more* ](apps/freetube-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freetube-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freetube-enhanced) | -| | [***freezer***](apps/freezer.md) | *An unofficial client for Deezer.*..[ *read more* ](apps/freezer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freezer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freezer) | -| | [***fresh***](apps/fresh.md) | *easy, powerful and fast.*..[ *read more* ](apps/fresh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fresh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fresh) | -| | [***fretboard***](apps/fretboard.md) | *Unofficial. Application which helps you find your favorite guitar chord.*..[ *read more* ](apps/fretboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fretboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fretboard) | -| | [***friction***](apps/friction.md) | *Flexible, user expandable 2D animation software.*..[ *read more* ](apps/friction.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/friction) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/friction) | -| | [***friture***](apps/friture.md) | *Real-time audio visualizations, spectrum, spectrogram, etc..*..[ *read more* ](apps/friture.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/friture) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/friture) | -| | [***fromscratch***](apps/fromscratch.md) | *Simple autosaving scratchpad.*..[ *read more* ](apps/fromscratch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fromscratch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fromscratch) | -| | [***frontimer***](apps/frontimer.md) | *Desktop timer application always displayed in the forefront of the screen.*..[ *read more* ](apps/frontimer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/frontimer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/frontimer) | -| | [***fspy***](apps/fspy.md) | *An open source, cross platform app for still image camera matching.*..[ *read more* ](apps/fspy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fspy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fspy) | -| | [***fukayo***](apps/fukayo.md) | *Manga reader.*..[ *read more* ](apps/fukayo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fukayo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fukayo) | -| | [***furnace***](apps/furnace.md) | *A multi-system chiptune tracker compatible with DefleMask modules.*..[ *read more* ](apps/furnace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/furnace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/furnace) | -| | [***g-v2ray***](apps/g-v2ray.md) | *Advanced V2Ray/Xray GUI Client for Linux.*..[ *read more* ](apps/g-v2ray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/g-v2ray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/g-v2ray) | -| | [***gaiasky***](apps/gaiasky.md) | *Gaia Sky, a real-time 3D space simulator & astronomy visualisation.*..[ *read more* ](apps/gaiasky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gaiasky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gaiasky) | -| | [***galculator***](apps/galculator.md) | *A GTK 2 / GTK 3 based scientific calculator.*..[ *read more* ](apps/galculator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/galculator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/galculator) | -| | [***gale***](apps/gale.md) | *A modern mod manager for Thunderstore.*..[ *read more* ](apps/gale.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gale) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gale) | -| | [***gameconqueror***](apps/gameconqueror.md) | *Unofficial. Memory scanner designed to isolate the adress of an arbitrary variable in an executing process (gtk GUI).*..[ *read more* ](apps/gameconqueror.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gameconqueror) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gameconqueror) | -| | [***gamehub***](apps/gamehub.md) | *Unified library for all your games from different platforms.*..[ *read more* ](apps/gamehub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gamehub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gamehub) | -| | [***gamescope***](apps/gamescope.md) | *Unofficial AppImage of gamescope.*..[ *read more* ](apps/gamescope.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gamescope) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gamescope) | -| | [***gams-studio***](apps/gams-studio.md) | *Development environment of General Algebraic Modeling System.*..[ *read more* ](apps/gams-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gams-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gams-studio) | -| | [***ganache***](apps/ganache.md) | *Personal Blockchain for Ethereum, latest AppImage for Linux.*..[ *read more* ](apps/ganache.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ganache) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ganache) | -| | [***gaphor***](apps/gaphor.md) | *A UML and SysML modeling application written in Python.*..[ *read more* ](apps/gaphor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gaphor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gaphor) | -| | [***gapless***](apps/gapless.md) | *Unofficial. Simple music player with blur and gapless playback.*..[ *read more* ](apps/gapless.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gapless) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gapless) | -| | [***gargoyle-bin***](apps/gargoyle-bin.md) | *Interactive Fiction multi-int. for all major IF formats.*..[ *read more* ](apps/gargoyle-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gargoyle-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gargoyle-bin) | -| | [***gaucho***](apps/gaucho.md) | *Minimalist task launcher*..[ *read more* ](apps/gaucho.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gaucho) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gaucho) | -| | [***gcap2025***](apps/gcap2025.md) | *Appimage não oficial do GCAP2025, declare seus ganhos de capital (Ano-calendário 2025).*..[ *read more* ](apps/gcap2025.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gcap2025) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gcap2025) | -| | [***gcap2026***](apps/gcap2026.md) | *Appimage não oficial do GCAP2026, declare seus ganhos de capital (Ano-calendário 2026).*..[ *read more* ](apps/gcap2026.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gcap2026) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gcap2026) | -| | [***gcstar***](apps/gcstar.md) | *Unofficial, collection manager written in Perl and based on Gtk.*..[ *read more* ](apps/gcstar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gcstar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gcstar) | -| | [***gdesktopsuite***](apps/gdesktopsuite.md) | *Google Suite as a desktop app, made possible with Electron.*..[ *read more* ](apps/gdesktopsuite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gdesktopsuite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gdesktopsuite) | -| | [***gdevelop***](apps/gdevelop.md) | *Cross-platform game engine designed to be used by everyone.*..[ *read more* ](apps/gdevelop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gdevelop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gdevelop) | -| | [***gdlauncher***](apps/gdlauncher.md) | *Simple, yet powerful Minecraft custom launcher.*..[ *read more* ](apps/gdlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gdlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gdlauncher) | -| | [***gdm-settings***](apps/gdm-settings.md) | *A settings app for GNOME's Login Manager, GDM.*..[ *read more* ](apps/gdm-settings.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gdm-settings) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gdm-settings) | -| | [***geany***](apps/geany.md) | *Unofficial, a fast and lightweight IDE.*..[ *read more* ](apps/geany.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geany) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geany) | -| | [***gearboy***](apps/gearboy.md) | *Unofficial, Game Boy / Gameboy Color emulator.*..[ *read more* ](apps/gearboy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearboy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearboy) | -| | [***gearcoleco***](apps/gearcoleco.md) | *Unofficial, ColecoVision emulator.*..[ *read more* ](apps/gearcoleco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearcoleco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearcoleco) | -| | [***geargrafx***](apps/geargrafx.md) | *Unofficial, PC Engine / TurboGrafx-16 / SuperGrafx / PCE CD-ROM² emulator.*..[ *read more* ](apps/geargrafx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geargrafx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geargrafx) | -| | [***gearlever***](apps/gearlever.md) | *Unofficial. An utility to organize and manage AppImage files for you, generate desktop entries and app metadata, update apps in-place or keep multiple versions side-by-side.*..[ *read more* ](apps/gearlever.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearlever) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearlever) | -| | [***gearlynx***](apps/gearlynx.md) | *Unofficial, Atari Lynx emulator.*..[ *read more* ](apps/gearlynx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearlynx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearlynx) | -| | [***gearsystem***](apps/gearsystem.md) | *Unofficial, Sega Master System / Game Gear / SG-1000 emulator.*..[ *read more* ](apps/gearsystem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearsystem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearsystem) | -| | [***gedit***](apps/gedit.md) | *An easy-to-use general-purpose text editor for the GNOME desktop environment.*..[ *read more* ](apps/gedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gedit) | -| | [***geeqie***](apps/geeqie.md) | *Claiming to be the best image viewer and photo collection browser.*..[ *read more* ](apps/geeqie.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geeqie) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geeqie) | -| | [***geforce-infinity***](apps/geforce-infinity.md) | *Enhance the Nvidia GeForce NOW experience.*..[ *read more* ](apps/geforce-infinity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geforce-infinity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geforce-infinity) | -| | [***geforcenow-electron***](apps/geforcenow-electron.md) | *Desktop client for Nvidia GeForce NOW game streaming.*..[ *read more* ](apps/geforcenow-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geforcenow-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geforcenow-electron) | -| | [***gemalaya***](apps/gemalaya.md) | *A keyboard-driven Gemini browser written in QML.*..[ *read more* ](apps/gemalaya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gemalaya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gemalaya) | -| | [***gemrb***](apps/gemrb.md) | *GemRB is a portable open-source implementation of Bioware's Infinity Engine.*..[ *read more* ](apps/gemrb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gemrb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gemrb) | -| | [***genesis***](apps/genesis.md) | *Open source blockchain platform.*..[ *read more* ](apps/genesis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/genesis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/genesis) | -| | [***geofs***](apps/geofs.md) | *GeoFS flight sim as a desktop application.*..[ *read more* ](apps/geofs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geofs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geofs) | -| | [***geometrize***](apps/geometrize.md) | *Images to shapes converter, graphics.*..[ *read more* ](apps/geometrize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geometrize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geometrize) | -| | [***gerbil***](apps/gerbil.md) | *A desktop app for running Large Language Models locally.*..[ *read more* ](apps/gerbil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gerbil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gerbil) | -| | [***gerbv***](apps/gerbv.md) | *Gerber file viewer for PCB design.*..[ *read more* ](apps/gerbv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gerbv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gerbv) | -| | [***getthermal***](apps/getthermal.md) | *Cross-platform Thermal Camera Viewer.*..[ *read more* ](apps/getthermal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/getthermal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/getthermal) | -| | [***gextractwinicons***](apps/gextractwinicons.md) | *Extract cursors, icons and images from MS Windows files.*..[ *read more* ](apps/gextractwinicons.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gextractwinicons) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gextractwinicons) | -| | [***gharmonize***](apps/gharmonize.md) | *A cross-platform media conversion app with a built-in YouTube downloader and Spotify downloader, powered by yt-dlp and ffmpeg — now featuring FPS adaptation support for AC3, EAC3, and AAC codecs.*..[ *read more* ](apps/gharmonize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gharmonize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gharmonize) | -| | [***ghostship***](apps/ghostship.md) | *Unofficial, Another definitive port of Super Mario 64.*..[ *read more* ](apps/ghostship.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostship) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostship) | -| | [***ghostty***](apps/ghostty.md) | *Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Stable)*..[ *read more* ](apps/ghostty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty) | -| | [***ghostty-glfw***](apps/ghostty-glfw.md) | *Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (glfw version)*..[ *read more* ](apps/ghostty-glfw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty-glfw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty-glfw) | -| | [***ghostty-glfw-nightly***](apps/ghostty-glfw-nightly.md) | *Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Tip, Nightly) (glfw version)*..[ *read more* ](apps/ghostty-glfw-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty-glfw-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty-glfw-nightly) | -| | [***ghostty-nightly***](apps/ghostty-nightly.md) | *Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Tip, Nightly)*..[ *read more* ](apps/ghostty-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty-nightly) | -| | [***giada***](apps/giada.md) | *Hardcore audio music production tool and drum machine for DJs.*..[ *read more* ](apps/giada.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/giada) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/giada) | -| | [***gibs***](apps/gibs.md) | *Generally In-source Build System, build C++ projects without a project.*..[ *read more* ](apps/gibs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gibs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gibs) | -| | [***gifcurry***](apps/gifcurry.md) | *The open-source, Haskell-built video editor for GIF makers.*..[ *read more* ](apps/gifcurry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gifcurry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gifcurry) | -| | [***gimagereader***](apps/gimagereader.md) | *Unofficial AppImage of gImageReader.*..[ *read more* ](apps/gimagereader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimagereader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimagereader) | -| | [***gimp***](apps/gimp.md) | *GNU Image Manipulation Program, cross-platform image and photo editor. Multiple-choices.*..[ *read more* ](apps/gimp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimp) | -| | [***gimp-git***](apps/gimp-git.md) | *Unofficial, Cross-platform image and photo editor, built from GIT.*..[ *read more* ](apps/gimp-git.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimp-git) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimp-git) | -| | [***gimp-hybrid***](apps/gimp-hybrid.md) | *Unofficial, GIMP including third-party plugins and python2 support.*..[ *read more* ](apps/gimp-hybrid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimp-hybrid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimp-hybrid) | -| | [***gingko***](apps/gingko.md) | *Gingko client rewritten in Elm.*..[ *read more* ](apps/gingko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gingko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gingko) | -| | [***git-good***](apps/git-good.md) | *Just a simple git client using electron and nodegit.*..[ *read more* ](apps/git-good.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-good) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-good) | -| | [***gitbutler***](apps/gitbutler.md) | *The GitButler version control client, backed by Git, powered by Tauri/Rust/Svelte.*..[ *read more* ](apps/gitbutler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitbutler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitbutler) | -| | [***githoard***](apps/githoard.md) | *Hoard git repositories with ease.*..[ *read more* ](apps/githoard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/githoard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/githoard) | -| | [***github-desktop-plus***](apps/github-desktop-plus.md) | *Electron-based GitHub Desktop fork with advanced functionality and Bitbucket, GitLab integration.*..[ *read more* ](apps/github-desktop-plus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/github-desktop-plus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/github-desktop-plus) | -| | [***github-store***](apps/github-store.md) | *A free, open-source app store for GitHub releases. Browse, discover, and install apps with one click. Powered by Kotlin and Compose Multiplatform for Android & Desktop.*..[ *read more* ](apps/github-store.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/github-store) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/github-store) | -| | [***gitify***](apps/gitify.md) | *GitHub notifications on your menu bar.*..[ *read more* ](apps/gitify.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitify) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitify) | -| | [***gitjournal***](apps/gitjournal.md) | *Mobile first Note Taking integrated with Git.*..[ *read more* ](apps/gitjournal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitjournal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitjournal) | -| | [***gitkraken***](apps/gitkraken.md) | *GitKraken Client including an intuitive GUI & powerful CLI.*..[ *read more* ](apps/gitkraken.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitkraken) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitkraken) | -| | [***gitlight***](apps/gitlight.md) | *GitHub & GitLab notifications on your desktop.*..[ *read more* ](apps/gitlight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitlight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitlight) | -| | [***gitnote***](apps/gitnote.md) | *A modern note taking app based on GIT.*..[ *read more* ](apps/gitnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitnote) | -| | [***gitqlient***](apps/gitqlient.md) | *Multi-platform Git client written with Qt.*..[ *read more* ](apps/gitqlient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitqlient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitqlient) | -| | [***gittyup***](apps/gittyup.md) | *GUI Git client designed to help you understand and manage your source code history.*..[ *read more* ](apps/gittyup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gittyup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gittyup) | -| | [***gl-warp2mp4***](apps/gl-warp2mp4.md) | *Utility to pre-warp a movie similar to TGAWarp.*..[ *read more* ](apps/gl-warp2mp4.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gl-warp2mp4) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gl-warp2mp4) | -| | [***glaxnimate***](apps/glaxnimate.md) | *A simple and fast vector graphics animation program.*..[ *read more* ](apps/glaxnimate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glaxnimate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glaxnimate) | -| | [***gltf-insight***](apps/gltf-insight.md) | *C++11 based glTF 2.0 data insight tool.*..[ *read more* ](apps/gltf-insight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gltf-insight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gltf-insight) | -| | [***glulxe***](apps/glulxe.md) | *AppImage of the glulxe interactive fiction interpreter.*..[ *read more* ](apps/glulxe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glulxe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glulxe) | -| | [***glyphr-studio-desktop***](apps/glyphr-studio-desktop.md) | *Professional font design programs.*..[ *read more* ](apps/glyphr-studio-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glyphr-studio-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glyphr-studio-desktop) | -| | [***gm-companion***](apps/gm-companion.md) | *A tool for rpg gamemasters.*..[ *read more* ](apps/gm-companion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gm-companion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gm-companion) | -| | [***gmail-desktop***](apps/gmail-desktop.md) | *Unofficial. Nifty Gmail desktop app.*..[ *read more* ](apps/gmail-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gmail-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gmail-desktop) | -| | [***gnatstudio***](apps/gnatstudio.md) | *GNAT Studio is a powerful and lightweight IDE for Ada and SPARK.*..[ *read more* ](apps/gnatstudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnatstudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnatstudio) | -| | [***gnome-boxes***](apps/gnome-boxes.md) | *Unofficial, A simple GNOME application to access virtual machines.*..[ *read more* ](apps/gnome-boxes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-boxes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-boxes) | -| | [***gnome-calculator***](apps/gnome-calculator.md) | *Unofficial, Perform arithmetic, scientific or financial calculations.*..[ *read more* ](apps/gnome-calculator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-calculator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-calculator) | -| | [***gnome-pomodoro***](apps/gnome-pomodoro.md) | *A productivity tool designed to help you manage your time effectively using the Pomodoro Technique.*..[ *read more* ](apps/gnome-pomodoro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-pomodoro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-pomodoro) | -| | [***gnome-system-monitor***](apps/gnome-system-monitor.md) | *System Monitor is a process viewer and system monitor with an attractive, easy-to-use interface for the GNOME desktop environment.*..[ *read more* ](apps/gnome-system-monitor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-system-monitor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-system-monitor) | -| | [***gnome-text-editor***](apps/gnome-text-editor.md) | *Unofficial AppImage of the Gnome's Text Editor application.*..[ *read more* ](apps/gnome-text-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-text-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-text-editor) | -| | [***gnome-tweaks***](apps/gnome-tweaks.md) | *Unofficial, Experimental AppImage port of advanced GNOME 3 settings GUI.*..[ *read more* ](apps/gnome-tweaks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-tweaks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-tweaks) | -| | [***gnome-web***](apps/gnome-web.md) | *Unofficial AppImage of Gnome Web aka Epiphany..*..[ *read more* ](apps/gnome-web.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-web) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-web) | -| | [***gnu-freedink***](apps/gnu-freedink.md) | *Unofficial, a portable and enhanced version of the Dink Smallwood game engine.*..[ *read more* ](apps/gnu-freedink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnu-freedink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnu-freedink) | -| | [***gnumeric***](apps/gnumeric.md) | *Unofficial. An open-source spreadsheet program.*..[ *read more* ](apps/gnumeric.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnumeric) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnumeric) | -| | [***godmode***](apps/godmode.md) | *AI Chat Browser fast, full webapp access to ChatGPT/Claude/Bard/Bing/Llama2.*..[ *read more* ](apps/godmode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/godmode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/godmode) | -| | [***godot***](apps/godot.md) | *Multi-platform 2D and 3D game engine with a feature-rich editor.*..[ *read more* ](apps/godot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/godot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/godot) | -| | [***goldencheetah***](apps/goldencheetah.md) | *Cycling Power Analysis Software.*..[ *read more* ](apps/goldencheetah.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goldencheetah) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goldencheetah) | -| | [***goldendict***](apps/goldendict.md) | *A feature-rich dictionary lookup program.*..[ *read more* ](apps/goldendict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goldendict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goldendict) | -| | [***goldendict-ng***](apps/goldendict-ng.md) | *Unofficial, an advanced dictionary lookup program, supporting many formats.*..[ *read more* ](apps/goldendict-ng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goldendict-ng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goldendict-ng) | -| | [***gooboxfileshare***](apps/gooboxfileshare.md) | *Goobox File Share App.*..[ *read more* ](apps/gooboxfileshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gooboxfileshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gooboxfileshare) | -| | [***goofcord***](apps/goofcord.md) | *Take control of your Discord experience with GoofCord.*..[ *read more* ](apps/goofcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goofcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goofcord) | -| | [***google-chrome***](apps/google-chrome.md) | *Unofficial, Web Browser, Stable version.*..[ *read more* ](apps/google-chrome.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-chrome) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-chrome) | -| | [***google-chrome-beta***](apps/google-chrome-beta.md) | *Unofficial, Web Browser, Beta version.*..[ *read more* ](apps/google-chrome-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-chrome-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-chrome-beta) | -| | [***google-chrome-dev***](apps/google-chrome-dev.md) | *Unofficial, Web Browser, Unstable version.*..[ *read more* ](apps/google-chrome-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-chrome-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-chrome-dev) | -| | [***google-docs***](apps/google-docs.md) | *Unofficial, Google Docs Desktop App made with electron.*..[ *read more* ](apps/google-docs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-docs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-docs) | -| | [***google-task-tauri***](apps/google-task-tauri.md) | *An Unofficial Desktop Client for Google Tasks.*..[ *read more* ](apps/google-task-tauri.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-task-tauri) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-task-tauri) | -| | [***google-tasks-desktop***](apps/google-tasks-desktop.md) | *Unofficial Google Tasks Desktop Client.*..[ *read more* ](apps/google-tasks-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-tasks-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-tasks-desktop) | -| | [***gopeed***](apps/gopeed.md) | *A modern download manager that supports all platforms.*..[ *read more* ](apps/gopeed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gopeed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gopeed) | -| | [***gopher64***](apps/gopher64.md) | *Unofficial AppImage of gopher64.*..[ *read more* ](apps/gopher64.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gopher64) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gopher64) | -| | [***gospel***](apps/gospel.md) | *Poppler based fast pdf viewer written in PyQt5.*..[ *read more* ](apps/gospel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gospel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gospel) | -| | [***goverlay***](apps/goverlay.md) | *An opensource project that aims to create a Graphical UI to help manage Linux overlays.*..[ *read more* ](apps/goverlay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goverlay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goverlay) | -| | [***gpgfrontend***](apps/gpgfrontend.md) | *A Cross-Platform OpenPGP Frontend Software.*..[ *read more* ](apps/gpgfrontend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpgfrontend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpgfrontend) | -| | [***gpodder***](apps/gpodder.md) | *Unofficial AppImage of gPodder.*..[ *read more* ](apps/gpodder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpodder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpodder) | -| | [***gpredict***](apps/gpredict.md) | *A satellite tracking application.*..[ *read more* ](apps/gpredict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpredict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpredict) | -| | [***gpt-anywhere***](apps/gpt-anywhere.md) | *Use GPT anywhere with just one shortcut.*..[ *read more* ](apps/gpt-anywhere.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpt-anywhere) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpt-anywhere) | -| | [***gpu-screen-recorder***](apps/gpu-screen-recorder.md) | *Unofficial, AppImage of GPU Screen Recorder*..[ *read more* ](apps/gpu-screen-recorder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpu-screen-recorder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpu-screen-recorder) | -| | [***gpu-t***](apps/gpu-t.md) | *A comprehensive graphics card information utility for Linux.*..[ *read more* ](apps/gpu-t.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpu-t) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpu-t) | -| | [***gpupad***](apps/gpupad.md) | *A flexible GLSL shader editor and IDE.*..[ *read more* ](apps/gpupad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpupad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpupad) | -| | [***gqrx***](apps/gqrx.md) | *Software defined radio receiver, SDR.*..[ *read more* ](apps/gqrx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gqrx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gqrx) | -| | [***grabscr***](apps/grabscr.md) | *Yet another screenshot maker.*..[ *read more* ](apps/grabscr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grabscr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grabscr) | -| | [***gradia***](apps/gradia.md) | *Unofficial, screenshot/picture editor and uploader.*..[ *read more* ](apps/gradia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gradia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gradia) | -| | [***gram-enhanced***](apps/gram-enhanced.md) | *Unofficial, a powerful and modern source code editor.*..[ *read more* ](apps/gram-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gram-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gram-enhanced) | -| | [***graphest***](apps/graphest.md) | * A faithful graphing calculator.*..[ *read more* ](apps/graphest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/graphest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/graphest) | -| | [***graphql-playground***](apps/graphql-playground.md) | *GraphQL IDE for better development workflows.*..[ *read more* ](apps/graphql-playground.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/graphql-playground) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/graphql-playground) | -| | [***graphs***](apps/graphs.md) | *Unofficial. A simple, yet powerful tool that allows you to plot and manipulate your data with ease.*..[ *read more* ](apps/graphs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/graphs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/graphs) | -| | [***graviton***](apps/graviton.md) | *A simple code editor.*..[ *read more* ](apps/graviton.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/graviton) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/graviton) | -| | [***greenlight***](apps/greenlight.md) | *Client for xCloud and Xbox home streaming made in Typescript.*..[ *read more* ](apps/greenlight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/greenlight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/greenlight) | -| | [***gridcoin-research***](apps/gridcoin-research.md) | *POS-based cryptocurrency.*..[ *read more* ](apps/gridcoin-research.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridcoin-research) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridcoin-research) | -| | [***gridea***](apps/gridea.md) | *A static blog writing client, 一个静态博客写作客户端.*..[ *read more* ](apps/gridea.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridea) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridea) | -| | [***gridix***](apps/gridix.md) | *A simple, fast, and secure cross-platform database management tool with Helix or Vim-style keybindings.*..[ *read more* ](apps/gridix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridix) | -| | [***gridplayer***](apps/gridplayer.md) | *Play videos side-by-side.*..[ *read more* ](apps/gridplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridplayer) | -| | [***gridsync***](apps/gridsync.md) | *Synchronize local directories with Tahoe-LAFS storage grids.*..[ *read more* ](apps/gridsync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridsync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridsync) | -| | [***grinplusplus***](apps/grinplusplus.md) | *A C++ Grin Node & Wallet.*..[ *read more* ](apps/grinplusplus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grinplusplus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grinplusplus) | -| | [***grist-desktop***](apps/grist-desktop.md) | *Desktop Grist, packaged with Electron.*..[ *read more* ](apps/grist-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grist-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grist-desktop) | -| | [***groot***](apps/groot.md) | *Graphical Editor to create BehaviorTrees.*..[ *read more* ](apps/groot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/groot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/groot) | -| | [***gsequencer***](apps/gsequencer.md) | *Tree based audio processing engine.*..[ *read more* ](apps/gsequencer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gsequencer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gsequencer) | -| | [***gsubs***](apps/gsubs.md) | *Finds you the perfect subtitle match.*..[ *read more* ](apps/gsubs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gsubs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gsubs) | -| | [***gthumb***](apps/gthumb.md) | *Unofficial, image viewer and browser.*..[ *read more* ](apps/gthumb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gthumb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gthumb) | -| | [***guarda***](apps/guarda.md) | *A secure, easy-to-use open source multi-platform cryptocurrency wallet.*..[ *read more* ](apps/guarda.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/guarda) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/guarda) | -| | [***guglielmo***](apps/guglielmo.md) | *A FM, DAB/DAB+ decoder using Qt and C++.*..[ *read more* ](apps/guglielmo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/guglielmo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/guglielmo) | -| | [***guiscrcpy***](apps/guiscrcpy.md) | *GUI integration for android screen mirroring system.*..[ *read more* ](apps/guiscrcpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/guiscrcpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/guiscrcpy) | -| | [***guitar***](apps/guitar.md) | *Graphical git client.*..[ *read more* ](apps/guitar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/guitar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/guitar) | -| | [***gvim***](apps/gvim.md) | *Edit text files.*..[ *read more* ](apps/gvim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gvim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gvim) | -| | [***gwenview***](apps/gwenview.md) | *Unofficial. Fast and easy to use image viewer by KDE. ideal for displaying a collection of images.*..[ *read more* ](apps/gwenview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gwenview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gwenview) | -| | [***gxc-smart-contract-ide***](apps/gxc-smart-contract-ide.md) | *Gxchain smart contract IDE alpha.*..[ *read more* ](apps/gxc-smart-contract-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gxc-smart-contract-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gxc-smart-contract-ide) | -| | [***gyroflow***](apps/gyroflow.md) | *Video stabilization using gyroscope data.*..[ *read more* ](apps/gyroflow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gyroflow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gyroflow) | -| | [***hades-emu***](apps/hades-emu.md) | *A Nintendo Game Boy Advance Emulator.*..[ *read more* ](apps/hades-emu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hades-emu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hades-emu) | -| | [***hammer***](apps/hammer.md) | *A simple tool for building stories.*..[ *read more* ](apps/hammer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hammer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hammer) | -| | [***hamsket***](apps/hamsket.md) | *Free and Open Source messaging and emailing app.*..[ *read more* ](apps/hamsket.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hamsket) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hamsket) | -| | [***handbrake***](apps/handbrake.md) | *Unofficial, An open-source multiplatform video transcoder.*..[ *read more* ](apps/handbrake.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/handbrake) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/handbrake) | -| | [***handy***](apps/handy.md) | *A free, open source, and extensible speech-to-text application that works completely offline.*..[ *read more* ](apps/handy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/handy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/handy) | -| | [***hangar***](apps/hangar.md) | *A native Bluesky client for Linux, built with Rust, GTK4, and Libadwaita.*..[ *read more* ](apps/hangar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hangar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hangar) | -| | [***hapee***](apps/hapee.md) | *Best cross-platform downloader ever.*..[ *read more* ](apps/hapee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hapee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hapee) | -| | [***haruna***](apps/haruna.md) | *Unofficial, an open source media player built with Qt/QML and libmpv.*..[ *read more* ](apps/haruna.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/haruna) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/haruna) | -| | [***hashsum***](apps/hashsum.md) | *A universal tool for finding file duplicates and modified files.*..[ *read more* ](apps/hashsum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hashsum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hashsum) | -| | [***hastyheroes***](apps/hastyheroes.md) | *An endless 2D jumping game.*..[ *read more* ](apps/hastyheroes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hastyheroes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hastyheroes) | -| | [***hatari***](apps/hatari.md) | *Unofficial, an Atari ST and STE emulator.*..[ *read more* ](apps/hatari.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hatari) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hatari) | -| | [***haveno-reto***](apps/haveno-reto.md) | *Decentralized P2P exchange built on Monero and Tor.*..[ *read more* ](apps/haveno-reto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/haveno-reto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/haveno-reto) | -| | [***hdict***](apps/hdict.md) | *Offline dictionary reader for StarDict, Slob, Mdict and Dictd dictionaries.*..[ *read more* ](apps/hdict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hdict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hdict) | -| | [***hdrmerge***](apps/hdrmerge.md) | *Merge several raw images into a single DNG raw image.*..[ *read more* ](apps/hdrmerge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hdrmerge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hdrmerge) | -| | [***heat1d***](apps/heat1d.md) | *UI for testing the soilFluxex3D library, CRITERIA1D.*..[ *read more* ](apps/heat1d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/heat1d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/heat1d) | -| | [***heimer***](apps/heimer.md) | *Simple cross-platform mind map, diagram, and note-taking tool.*..[ *read more* ](apps/heimer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/heimer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/heimer) | -| | [***helio***](apps/helio.md) | *One music sequencer for all major platforms, desktop and mobile.*..[ *read more* ](apps/helio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helio) | -| | [***helion***](apps/helion.md) | *A modern fast paced Doom FPS engine.*..[ *read more* ](apps/helion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helion) | -| | [***helioslauncher***](apps/helioslauncher.md) | *Custom launcher for modded minecraft written in Electron.*..[ *read more* ](apps/helioslauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helioslauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helioslauncher) | -| | [***helium***](apps/helium.md) | *The Chromium-based web browser made for people, with love. Best privacy by default, unbiased ad-blocking, no bloat and no noise.*..[ *read more* ](apps/helium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helium) | -| | [***helium-browser-enhanced***](apps/helium-browser-enhanced.md) | *About Unofficial AppImage of Helium.*..[ *read more* ](apps/helium-browser-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helium-browser-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helium-browser-enhanced) | -| | [***helix***](apps/helix.md) | *A post-modern modal text editor.*..[ *read more* ](apps/helix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helix) | -| | [***helixnotes***](apps/helixnotes.md) | *A local markdown note-taking app built with Tauri, SvelteKit, and Rust.*..[ *read more* ](apps/helixnotes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helixnotes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helixnotes) | -| | [***hermesmessenger***](apps/hermesmessenger.md) | *Desktop client version for Hermes Messenger.*..[ *read more* ](apps/hermesmessenger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hermesmessenger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hermesmessenger) | -| | [***hero-display***](apps/hero-display.md) | *App for display on HERO robot.*..[ *read more* ](apps/hero-display.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hero-display) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hero-display) | -| | [***heroic-games-launcher***](apps/heroic-games-launcher.md) | *A Native GOG and Epic Games Launcher for Linux.*..[ *read more* ](apps/heroic-games-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/heroic-games-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/heroic-games-launcher) | -| | [***hexinator***](apps/hexinator.md) | *Hex editor for reverse engineering & binary file analysis.*..[ *read more* ](apps/hexinator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hexinator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hexinator) | -| | [***hexoclient***](apps/hexoclient.md) | *A cross-platform hexo client, build on electron.*..[ *read more* ](apps/hexoclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hexoclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hexoclient) | -| | [***hexoeditor***](apps/hexoeditor.md) | *Markdown editor for Hexo built with Electron.*..[ *read more* ](apps/hexoeditor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hexoeditor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hexoeditor) | -| | [***heynote***](apps/heynote.md) | *A dedicated scratchpad for developers.*..[ *read more* ](apps/heynote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/heynote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/heynote) | -| | [***hiddify-next***](apps/hiddify-next.md) | *Auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria.*..[ *read more* ](apps/hiddify-next.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hiddify-next) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hiddify-next) | -| | [***hidpi-fixer***](apps/hidpi-fixer.md) | *Fractional scaling configuration on X11 desktops.*..[ *read more* ](apps/hidpi-fixer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hidpi-fixer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hidpi-fixer) | -| | [***highlite***](apps/highlite.md) | *A RuneLite-esque Client for the game High Spell.*..[ *read more* ](apps/highlite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/highlite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/highlite) | -| | [***hotspot***](apps/hotspot.md) | *The Linux perf GUI for performance analysis.*..[ *read more* ](apps/hotspot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hotspot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hotspot) | -| | [***houdoku***](apps/houdoku.md) | *Manga reader and library manager for the desktop.*..[ *read more* ](apps/houdoku.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/houdoku) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/houdoku) | -| | [***hp-15c-simulator***](apps/hp-15c-simulator.md) | *Unofficial, a simulator for the HP-15C programmable scientific RPN calculator.*..[ *read more* ](apps/hp-15c-simulator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hp-15c-simulator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hp-15c-simulator) | -| | [***hpack***](apps/hpack.md) | *A fine tool to convert any data into C header.*..[ *read more* ](apps/hpack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hpack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hpack) | -| | [***hsinstall***](apps/hsinstall.md) | *Pack a haskell project into a deployable directory structure.*..[ *read more* ](apps/hsinstall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hsinstall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hsinstall) | -| | [***htmldoc***](apps/htmldoc.md) | *HTML & Markdown Conversion Software to output PostScript and PDF.*..[ *read more* ](apps/htmldoc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/htmldoc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/htmldoc) | -| | [***htop***](apps/htop.md) | *Unofficial, CLI utility to monitor system resources.*..[ *read more* ](apps/htop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/htop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/htop) | -| | [***httpie-desktop***](apps/httpie-desktop.md) | *HTTPie for Desktop.*..[ *read more* ](apps/httpie-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/httpie-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/httpie-desktop) | -| | [***httptoolkit***](apps/httptoolkit.md) | *HTTP Toolkit is an open-source tool for debugging, testing and building with HTTP.*..[ *read more* ](apps/httptoolkit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/httptoolkit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/httptoolkit) | -| | [***hugin***](apps/hugin.md) | *Stitch photographs together.*..[ *read more* ](apps/hugin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hugin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hugin) | -| | [***hugor***](apps/hugor.md) | *A cross-platform, multimedia interpreter for Hugo adventure games.*..[ *read more* ](apps/hugor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hugor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hugor) | -| | [***huwinterpreter***](apps/huwinterpreter.md) | *HuwCode interpreter.*..[ *read more* ](apps/huwinterpreter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/huwinterpreter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/huwinterpreter) | -| | [***hw-probe***](apps/hw-probe.md) | *Probe for hardware and upload result to the Linux hdw database.*..[ *read more* ](apps/hw-probe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hw-probe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hw-probe) | -| | [***hydra***](apps/hydra.md) | *Game launcher with its own embedded bittorrent client.*..[ *read more* ](apps/hydra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hydra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hydra) | -| | [***hydrogen-music***](apps/hydrogen-music.md) | *The advanced drum machine.*..[ *read more* ](apps/hydrogen-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hydrogen-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hydrogen-music) | -| | [***hyper***](apps/hyper.md) | *A terminal built on web technologies.*..[ *read more* ](apps/hyper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyper) | -| | [***hyperdex***](apps/hyperdex.md) | *BarterDEX desktop app.*..[ *read more* ](apps/hyperdex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperdex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperdex) | -| | [***hyperionide***](apps/hyperionide.md) | *Hyperion IDE for JIRA.*..[ *read more* ](apps/hyperionide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperionide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperionide) | -| | [***hyperkeys***](apps/hyperkeys.md) | *Unleash you keyboard shorcuts.*..[ *read more* ](apps/hyperkeys.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperkeys) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperkeys) | -| | [***hyperspace***](apps/hyperspace.md) | *A fluffy client for Mastodon in React.*..[ *read more* ](apps/hyperspace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperspace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperspace) | -| | [***hypnotix***](apps/hypnotix.md) | *Unofficial. An IPTV streaming application with support for live TV.*..[ *read more* ](apps/hypnotix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hypnotix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hypnotix) | -| | [***i3***](apps/i3.md) | *Unofficial, A tiling window manager for X11.*..[ *read more* ](apps/i3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/i3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/i3) | -| | [***iagoncloudapp***](apps/iagoncloudapp.md) | *Iagon Cloud Application.*..[ *read more* ](apps/iagoncloudapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iagoncloudapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iagoncloudapp) | -| | [***ibus-rime***](apps/ibus-rime.md) | *Zhongzhou Yun input method, ibus-rime in AppImage format.*..[ *read more* ](apps/ibus-rime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ibus-rime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ibus-rime) | -| | [***icalingua++***](apps/icalingua++.md) | *A client for QQ and more.*..[ *read more* ](apps/icalingua++.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/icalingua++) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/icalingua++) | -| | [***icecat***](apps/icecat.md) | *GNU IceCat is the GNU version of the Firefox web browser.*..[ *read more* ](apps/icecat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/icecat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/icecat) | -| | [***icestudio***](apps/icestudio.md) | *A real gamechanger in the world of Open Source FPGAs.*..[ *read more* ](apps/icestudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/icestudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/icestudio) | -| | [***identity***](apps/identity.md) | *Unofficial. Compare images and videos with one another to check for differences.*..[ *read more* ](apps/identity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/identity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/identity) | -| | [***idescriptor***](apps/idescriptor.md) | *A free, open-source, and cross-platform iDevice management tool.*..[ *read more* ](apps/idescriptor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/idescriptor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/idescriptor) | -| | [***igdm***](apps/igdm.md) | *Desktop application for Instagram DMs.*..[ *read more* ](apps/igdm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/igdm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/igdm) | -| | [***iheartradio-webapp***](apps/iheartradio-webapp.md) | *Election WebApp for iHeartRadio.*..[ *read more* ](apps/iheartradio-webapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iheartradio-webapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iheartradio-webapp) | -| | [***iloader***](apps/iloader.md) | *User friendly sideloader.*..[ *read more* ](apps/iloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iloader) | -| | [***imagemagick-clang***](apps/imagemagick-clang.md) | *CLI to create, edit, compose, or convert digital images.*..[ *read more* ](apps/imagemagick-clang.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imagemagick-clang) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imagemagick-clang) | -| | [***imagemagick-gcc***](apps/imagemagick-gcc.md) | *CLI to create, edit, compose, or convert digital images.*..[ *read more* ](apps/imagemagick-gcc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imagemagick-gcc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imagemagick-gcc) | -| | [***imagemosaicwall***](apps/imagemosaicwall.md) | *Create an image based on a bunch of other images.*..[ *read more* ](apps/imagemosaicwall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imagemosaicwall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imagemosaicwall) | -| | [***imagine***](apps/imagine.md) | *PNG/JPEG optimization.*..[ *read more* ](apps/imagine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imagine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imagine) | -| | [***imapsyncclient***](apps/imapsyncclient.md) | *An electron-vue project.*..[ *read more* ](apps/imapsyncclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imapsyncclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imapsyncclient) | -| | [***imfile***](apps/imfile.md) | *A full-featured download manager.*..[ *read more* ](apps/imfile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imfile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imfile) | -| | [***imgbrd-grabber***](apps/imgbrd-grabber.md) | *Very customizable imageboard/booru downloader.*..[ *read more* ](apps/imgbrd-grabber.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imgbrd-grabber) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imgbrd-grabber) | -| | [***imhex***](apps/imhex.md) | *A Hex Editor for Reverse Engineers and Programmers.*..[ *read more* ](apps/imhex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imhex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imhex) | -| | [***impact***](apps/impact.md) | *Music Management and Playback.*..[ *read more* ](apps/impact.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/impact) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/impact) | -| | [***impactor***](apps/impactor.md) | *Feature rich iOS/tvOS sideloading application written in Rust. Formerly known as PlumeImpactor.*..[ *read more* ](apps/impactor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/impactor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/impactor) | -| | [***implay***](apps/implay.md) | *A Cross-Platform Desktop Media Player, built on top of mpv and ImGui.*..[ *read more* ](apps/implay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/implay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/implay) | -| | [***impposter***](apps/impposter.md) | *Post to my own development blog.*..[ *read more* ](apps/impposter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/impposter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/impposter) | -| | [***impression***](apps/impression.md) | *Unofficial. Simple USB image writer application.*..[ *read more* ](apps/impression.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/impression) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/impression) | -| | [***inboxer***](apps/inboxer.md) | *Simple client for Google Inbox.*..[ *read more* ](apps/inboxer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/inboxer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/inboxer) | -| | [***infection-monkey***](apps/infection-monkey.md) | *An automated penetration test tool, security.*..[ *read more* ](apps/infection-monkey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/infection-monkey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/infection-monkey) | -| | [***infinitex***](apps/infinitex.md) | *Editor for academics with cryptography.*..[ *read more* ](apps/infinitex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/infinitex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/infinitex) | -| | [***infra-app***](apps/infra-app.md) | *Infra App for Linux.*..[ *read more* ](apps/infra-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/infra-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/infra-app) | -| | [***inkdown***](apps/inkdown.md) | *A WYSIWYG Markdown editor, improve reading and editing experience and generate your Markdown files.*..[ *read more* ](apps/inkdown.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/inkdown) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/inkdown) | -| | [***inkscape***](apps/inkscape.md) | *Unofficial. Vector-based drawing program and graphics editor for both artistic and technical illustrations. It can import and export various file formats, including SVG, AI, EPS, PDF, AutoCAD, PS and PNG.*..[ *read more* ](apps/inkscape.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/inkscape) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/inkscape) | -| | [***innerbreeze***](apps/innerbreeze.md) | *Guided breathing meditation app based on the Wim Hof breathing method.*..[ *read more* ](apps/innerbreeze.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/innerbreeze) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/innerbreeze) | -| | [***innoextract***](apps/innoextract.md) | *Unofficial, a tool to extract installers created by Inno Setup.*..[ *read more* ](apps/innoextract.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/innoextract) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/innoextract) | -| | [***insight***](apps/insight.md) | *The GUI front-end of GDB with Tcl/Tk.*..[ *read more* ](apps/insight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/insight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/insight) | -| | [***insomnia***](apps/insomnia.md) | *API client for GraphQL, REST, WebSockets and gRPC.*..[ *read more* ](apps/insomnia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/insomnia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/insomnia) | -| | [***insomnium***](apps/insomnium.md) | *A local API testing tool privacy-focused, fork of Kong/insomnia.*..[ *read more* ](apps/insomnium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/insomnium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/insomnium) | -| | [***instead***](apps/instead.md) | *Simple Text Adventures Interpreter.*..[ *read more* ](apps/instead.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/instead) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/instead) | -| | [***international-doom***](apps/international-doom.md) | *Small, functional and simple source ports, created with help, efforts and bits of code from people around the world.*..[ *read more* ](apps/international-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/international-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/international-doom) | -| | [***internxt-drive***](apps/internxt-drive.md) | *Electron React Boilerplate uses Electron and React.*..[ *read more* ](apps/internxt-drive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/internxt-drive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/internxt-drive) | -| | [***interstellar***](apps/interstellar.md) | *An app for Mbin/Lemmy/PieFed, connecting you to the fediverse.*..[ *read more* ](apps/interstellar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/interstellar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/interstellar) | -| | [***intiface***](apps/intiface.md) | *Desktop Intiface Application.*..[ *read more* ](apps/intiface.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/intiface) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/intiface) | -| | [***invoice-generator***](apps/invoice-generator.md) | *Invoice Generator in Electron.*..[ *read more* ](apps/invoice-generator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/invoice-generator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/invoice-generator) | -| | [***ioquake3***](apps/ioquake3.md) | *Unofficial, the de-facto OSS Quake 3 distribution.*..[ *read more* ](apps/ioquake3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ioquake3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ioquake3) | -| | [***iota1k***](apps/iota1k.md) | *IOTA based messenging app.*..[ *read more* ](apps/iota1k.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iota1k) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iota1k) | -| | [***ipfs-desktop***](apps/ipfs-desktop.md) | *An unobtrusive and user-friendly app for IPFS on Linux.*..[ *read more* ](apps/ipfs-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ipfs-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ipfs-desktop) | -| | [***iptracker***](apps/iptracker.md) | *Desktop tool to keep track of your IP address and update you when it changes.*..[ *read more* ](apps/iptracker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iptracker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iptracker) | -| | [***iptvnator***](apps/iptvnator.md) | *IPTV player application.*..[ *read more* ](apps/iptvnator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iptvnator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iptvnator) | -| | [***iqpuzzle***](apps/iqpuzzle.md) | *A challenging pentomino puzzle.*..[ *read more* ](apps/iqpuzzle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iqpuzzle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iqpuzzle) | -| | [***irccloud-desktop***](apps/irccloud-desktop.md) | *IRCCloud Desktop Client.*..[ *read more* ](apps/irccloud-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/irccloud-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/irccloud-desktop) | -| | [***ireader***](apps/ireader.md) | *Privacy-focused, open source novel reader app.*..[ *read more* ](apps/ireader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ireader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ireader) | -| | [***iris***](apps/iris.md) | *Sony PlayStation 2 games emulator for Windows, Linux and macOS.*..[ *read more* ](apps/iris.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iris) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iris) | -| | [***iris-enhanced***](apps/iris-enhanced.md) | *Unofficial, Sony PlayStation 2 emulator.*..[ *read more* ](apps/iris-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iris-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iris-enhanced) | -| | [***irpf2025***](apps/irpf2025.md) | *Appimage não oficial do IRPF2025, declare seu imposto de renda (Ano-calendário 2024).*..[ *read more* ](apps/irpf2025.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/irpf2025) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/irpf2025) | -| | [***irpf2026***](apps/irpf2026.md) | *Appimage não oficial do IRPF2026, declare seu imposto de renda (Ano-calendário 2025).*..[ *read more* ](apps/irpf2026.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/irpf2026) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/irpf2026) | -| | [***irscrutinizer***](apps/irscrutinizer.md) | *Capture/generate/analyze/import/export infrared signals.*..[ *read more* ](apps/irscrutinizer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/irscrutinizer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/irscrutinizer) | -| | [***isd***](apps/isd.md) | *Isd (interactive systemd) – a better way to work with systemd units.*..[ *read more* ](apps/isd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/isd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/isd) | -| | [***isle-editor***](apps/isle-editor.md) | *Editor for Integrated Statistics Learning Environment lessons.*..[ *read more* ](apps/isle-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/isle-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/isle-editor) | -| | [***isle-portable***](apps/isle-portable.md) | *Unofficial, a portable version of LEGO Island (1997).*..[ *read more* ](apps/isle-portable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/isle-portable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/isle-portable) | -| | [***isle-portable-enhanced***](apps/isle-portable-enhanced.md) | *Unofficial, a portable version of LEGO Island (1997).*..[ *read more* ](apps/isle-portable-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/isle-portable-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/isle-portable-enhanced) | -| | [***isolate***](apps/isolate.md) | *Lightweight image browser.*..[ *read more* ](apps/isolate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/isolate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/isolate) | -| | [***itch.io***](apps/itch.io.md) | *A simple way to find and share indie games online for free.*..[ *read more* ](apps/itch.io.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/itch.io) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/itch.io) | -| | [***itgmania***](apps/itgmania.md) | *Unofficial, a fork of StepMania 5.1, an advanced cross-platform rhythm game for home and arcade use.*..[ *read more* ](apps/itgmania.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/itgmania) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/itgmania) | -| | [***itr2025***](apps/itr2025.md) | *Appimage não oficial do ITR2025, declare seu imposto dos seus imóveis rurais (Ano-calendário 2025).*..[ *read more* ](apps/itr2025.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/itr2025) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/itr2025) | -| | [***itusb1-manager***](apps/itusb1-manager.md) | *Control the ITUSB1 USB Test Switch.*..[ *read more* ](apps/itusb1-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/itusb1-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/itusb1-manager) | -| | [***jag***](apps/jag.md) | *Program for telemetry veiwing.*..[ *read more* ](apps/jag.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jag) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jag) | -| | [***james***](apps/james.md) | *HTTP/HTTPS proxy built in Electron and React.*..[ *read more* ](apps/james.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/james) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/james) | -| | [***jan***](apps/jan.md) | *FOSS Alternative to ChatGPT that runs 100% offline on your computer.*..[ *read more* ](apps/jan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jan) | -| | [***janice***](apps/janice.md) | *A desktop app for viewing large JSON files.*..[ *read more* ](apps/janice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/janice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/janice) | -| | [***janus***](apps/janus.md) | *Simple text editor.*..[ *read more* ](apps/janus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/janus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/janus) | -| | [***jazz2***](apps/jazz2.md) | *Open-source reimplementation of Jazz Jackrabbit 2.*..[ *read more* ](apps/jazz2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jazz2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jazz2) | -| | [***jdappstreamedit***](apps/jdappstreamedit.md) | *A graphical Program to create and edit AppStream files.*..[ *read more* ](apps/jdappstreamedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdappstreamedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdappstreamedit) | -| | [***jddesktopentryedit***](apps/jddesktopentryedit.md) | *A graphical Program to create and edit Desktop Entries.*..[ *read more* ](apps/jddesktopentryedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jddesktopentryedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jddesktopentryedit) | -| | [***jdminecraftlauncher***](apps/jdminecraftlauncher.md) | *Unofficial classic styled Minecraft Launcher.*..[ *read more* ](apps/jdminecraftlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdminecraftlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdminecraftlauncher) | -| | [***jdmrpackinstaller***](apps/jdmrpackinstaller.md) | *Install Modrinth modpacks.*..[ *read more* ](apps/jdmrpackinstaller.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdmrpackinstaller) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdmrpackinstaller) | -| | [***jdnbtexplorer***](apps/jdnbtexplorer.md) | *A Editor for Minecraft NBT files.*..[ *read more* ](apps/jdnbtexplorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdnbtexplorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdnbtexplorer) | -| | [***jdownloader2***](apps/jdownloader2.md) | *JDownloader is a free download management tool with a huge community that makes downloading as easy and fast as it should be.*..[ *read more* ](apps/jdownloader2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdownloader2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdownloader2) | -| | [***jdreplace***](apps/jdreplace.md) | *With jdReplace you can replace a text in all files of a directory.*..[ *read more* ](apps/jdreplace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdreplace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdreplace) | -| | [***jdtextedit***](apps/jdtextedit.md) | *jdTextEdit is a powerful texteditor with a lot of features.*..[ *read more* ](apps/jdtextedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdtextedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdtextedit) | -| | [***jellyamp***](apps/jellyamp.md) | *A client for listening to music from a Jellyfin server.*..[ *read more* ](apps/jellyamp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jellyamp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jellyamp) | -| | [***jexiftoolgui***](apps/jexiftoolgui.md) | *Java/Swing graphical frontend for ExifTool.*..[ *read more* ](apps/jexiftoolgui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jexiftoolgui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jexiftoolgui) | -| | [***jfcord***](apps/jfcord.md) | *An Jellyfin rich presence client for Discord.*..[ *read more* ](apps/jfcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jfcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jfcord) | -| | [***jgenesis***](apps/jgenesis.md) | *Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (GUI).*..[ *read more* ](apps/jgenesis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jgenesis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jgenesis) | -| | [***jgenesis-cli***](apps/jgenesis-cli.md) | *Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (CLI).*..[ *read more* ](apps/jgenesis-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jgenesis-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jgenesis-cli) | -| | [***jimud***](apps/jimud.md) | *MUD client for ShadowMUD.com, based on webclient.*..[ *read more* ](apps/jimud.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jimud) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jimud) | -| | [***jira-timer***](apps/jira-timer.md) | *Menubar app for JIRA time logging.*..[ *read more* ](apps/jira-timer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jira-timer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jira-timer) | -| | [***jitsi-meet***](apps/jitsi-meet.md) | *Jitsi Meet Desktop App.*..[ *read more* ](apps/jitsi-meet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jitsi-meet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jitsi-meet) | -| | [***jklubtv***](apps/jklubtv.md) | *Chess Round Robin Tournament Manager.*..[ *read more* ](apps/jklubtv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jklubtv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jklubtv) | -| | [***joaldesktop***](apps/joaldesktop.md) | *Electron application boilerplate.*..[ *read more* ](apps/joaldesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/joaldesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/joaldesktop) | -| | [***join-desktop***](apps/join-desktop.md) | *A companion app for the Join website.*..[ *read more* ](apps/join-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/join-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/join-desktop) | -| | [***joplin***](apps/joplin.md) | *Note and to-do application with synchronization capabilities.*..[ *read more* ](apps/joplin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/joplin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/joplin) | -| | [***joplin-beta***](apps/joplin-beta.md) | *A cross-platform note taking and to-do app.*..[ *read more* ](apps/joplin-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/joplin-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/joplin-beta) | -| | [***journalv***](apps/journalv.md) | *Journaling app for your days and dreams.*..[ *read more* ](apps/journalv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/journalv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/journalv) | -| | [***joy2droidx***](apps/joy2droidx.md) | *Turn Android phones into virtual Xbox 360 controller.*..[ *read more* ](apps/joy2droidx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/joy2droidx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/joy2droidx) | -| | [***jpg-glitch-electron***](apps/jpg-glitch-electron.md) | *Desktop app for glitching images.*..[ *read more* ](apps/jpg-glitch-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jpg-glitch-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jpg-glitch-electron) | -| | [***jreleaser***](apps/jreleaser.md) | *The quick way to release your project.*..[ *read more* ](apps/jreleaser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jreleaser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jreleaser) | -| | [***jscad-desktop***](apps/jscad-desktop.md) | *Jscad desktop application.*..[ *read more* ](apps/jscad-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jscad-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jscad-desktop) | -| | [***juggernaut***](apps/juggernaut.md) | *Decentralized messaging and payments.*..[ *read more* ](apps/juggernaut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/juggernaut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/juggernaut) | -| | [***julius***](apps/julius.md) | *An open source re-implementation of the Caesar III game.*..[ *read more* ](apps/julius.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/julius) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/julius) | -| | [***jumble***](apps/jumble.md) | *A user-friendly Nostr client for exploring relay feeds.*..[ *read more* ](apps/jumble.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jumble) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jumble) | -| | [***kade***](apps/kade.md) | *A desktop application for Q Methodology.*..[ *read more* ](apps/kade.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kade) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kade) | -| | [***kadium***](apps/kadium.md) | *App for staying ontop of YouTube channels' uploads.*..[ *read more* ](apps/kadium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kadium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kadium) | -| | [***kaffeine***](apps/kaffeine.md) | *Unofficial, Media player with support for digital television (DVB-C/S/S2/T, ATSC, CI/CAM).*..[ *read more* ](apps/kaffeine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kaffeine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kaffeine) | -| | [***kage***](apps/kage.md) | *GUI for Metasploit Meterpreter and Session Handler.*..[ *read more* ](apps/kage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kage) | -| | [***kaidan***](apps/kaidan.md) | *A QtQuick Jabber client.*..[ *read more* ](apps/kaidan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kaidan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kaidan) | -| | [***kalba***](apps/kalba.md) | *Sentence mining tool.*..[ *read more* ](apps/kalba.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kalba) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kalba) | -| | [***kando***](apps/kando.md) | *The Cross-Platform Pie Menu.*..[ *read more* ](apps/kando.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kando) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kando) | -| | [***kanji-dojo***](apps/kanji-dojo.md) | *A multi-platform application for memorizing Japanese language.*..[ *read more* ](apps/kanji-dojo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kanji-dojo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kanji-dojo) | -| | [***kanon***](apps/kanon.md) | *Maturita GPJP designed for use with kanon web app.*..[ *read more* ](apps/kanon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kanon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kanon) | -| | [***kanri***](apps/kanri.md) | *Modern offline Kanban board app. Built with simplicity and user experience in mind.*..[ *read more* ](apps/kanri.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kanri) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kanri) | -| | [***karbonized***](apps/karbonized.md) | *💫 Awesome Image Generator for Code Snippets & Mockups*..[ *read more* ](apps/karbonized.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/karbonized) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/karbonized) | -| | [***kardi***](apps/kardi.md) | *Application for taking notes with capabilities to view all content from any device while keeping all data accessible by you only.*..[ *read more* ](apps/kardi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kardi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kardi) | -| | [***katvan***](apps/katvan.md) | *A bare-bones editor for Typst files, with a bias for Right-to-Left editing.*..[ *read more* ](apps/katvan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/katvan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/katvan) | -| | [***kcc***](apps/kcc.md) | *KCC (Kindle Comic Converter) is a comic and manga converter for ebook readers.*..[ *read more* ](apps/kcc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kcc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kcc) | -| | [***kcov***](apps/kcov.md) | *Unofficial, An AppImage of Kcov code coverage tool.*..[ *read more* ](apps/kcov.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kcov) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kcov) | -| | [***kdeconnect***](apps/kdeconnect.md) | *Unofficial, A project that enables all your Android devices to communicate with each other.*..[ *read more* ](apps/kdeconnect.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeconnect) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeconnect) | -| | [***kdegames***](apps/kdegames.md) | *Unofficial, Full & updatable KDE Games suite, metapackage.*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kdenlive***](apps/kdenlive.md) | *A powerful Video Editor provided by KDE.*..[ *read more* ](apps/kdenlive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdenlive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdenlive) | -| | [***kdenlive-daily***](apps/kdenlive-daily.md) | *A powerful Video Editor provided by KDE (daily builds).*..[ *read more* ](apps/kdenlive-daily.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdenlive-daily) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdenlive-daily) | -| | [***kdenlive-enhanced***](apps/kdenlive-enhanced.md) | *Unofficial AppImage of Kdenlive Video Editor which is able to work on any linux distro.*..[ *read more* ](apps/kdenlive-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdenlive-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdenlive-enhanced) | -| | [***kdeutils***](apps/kdeutils.md) | *Unofficial, Full & updatable KDE Utils suite, metapackage.*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdiskmark***](apps/kdiskmark.md) | *A simple open-source disk benchmark tool for Linux distros.*..[ *read more* ](apps/kdiskmark.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdiskmark) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdiskmark) | -| | [***keepassxc***](apps/keepassxc.md) | *Port of the Windows application “Keepass Password Safe”.*..[ *read more* ](apps/keepassxc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keepassxc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keepassxc) | -| | [***keepassxc-devel***](apps/keepassxc-devel.md) | *Port of the Windows application “Keepass Password Safe”, dev-edition.*..[ *read more* ](apps/keepassxc-devel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keepassxc-devel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keepassxc-devel) | -| | [***keepkey-desktop***](apps/keepkey-desktop.md) | *An all-in-one suite for using your KeepKey hardware wallet.*..[ *read more* ](apps/keepkey-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keepkey-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keepkey-desktop) | -| | [***keeweb***](apps/keeweb.md) | *Free cross-platform password manager compatible with KeePass.*..[ *read more* ](apps/keeweb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keeweb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keeweb) | -| | [***kega-fusion***](apps/kega-fusion.md) | *Unofficial, an emulator of classic Sega consoles, including SMS/GG, Genesis/Megadrive and add-ons.*..[ *read more* ](apps/kega-fusion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kega-fusion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kega-fusion) | -| | [***keibo-moneytracker-x86-64***](apps/keibo-moneytracker-x86-64.md) | *Track your income and expenses easily.*..[ *read more* ](apps/keibo-moneytracker-x86-64.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keibo-moneytracker-x86-64) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keibo-moneytracker-x86-64) | -| | [***kettleclient***](apps/kettleclient.md) | *Client for Kettle REST service.*..[ *read more* ](apps/kettleclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kettleclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kettleclient) | -| | [***kevedit***](apps/kevedit.md) | *ZZT Editor.*..[ *read more* ](apps/kevedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kevedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kevedit) | -| | [***keyboardclient***](apps/keyboardclient.md) | *Keyboard Settings Client.*..[ *read more* ](apps/keyboardclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keyboardclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keyboardclient) | -| | [***keycombiner***](apps/keycombiner.md) | *Learn exactly the keyboard shortcuts you need.*..[ *read more* ](apps/keycombiner.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keycombiner) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keycombiner) | -| | [***keymanager***](apps/keymanager.md) | *One-stop certificate app and certificate key management.*..[ *read more* ](apps/keymanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keymanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keymanager) | -| | [***keypunch***](apps/keypunch.md) | *Unofficial, keyboard writing speed test application. *..[ *read more* ](apps/keypunch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keypunch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keypunch) | -| | [***keyrier-json***](apps/keyrier-json.md) | *A CLI/library/webapp to perfom SQL queries on JSON & CSV.*..[ *read more* ](apps/keyrier-json.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keyrier-json) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keyrier-json) | -| | [***keys***](apps/keys.md) | *Key management, signing and encryption.*..[ *read more* ](apps/keys.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keys) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keys) | -| | [***kftray***](apps/kftray.md) | *Kubectl port-forward manager and reverse tunnel (ngrok-like) for exposing local services publicly, with TLS termination, HTTP traffic inspection, UDP forwarding, multi-hop proxy routing through k8s clusters, stateful config via filesystem or git.*..[ *read more* ](apps/kftray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kftray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kftray) | -| | [***kicad***](apps/kicad.md) | *A free software suite for electronic design automation (EDA) to facilitates the design and simulation of electronic hardware for PCB manufacturing. It features an integrated environment for schematic capture, PCB layout, manufacturing file viewing, ngspice-provided SPICE simulation, and engineering calculation. Create bill of materials, artwork, Gerber files, and 3D models of the PCB and its components.*..[ *read more* ](apps/kicad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kicad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kicad) | -| | [***kid3***](apps/kid3.md) | *Unofficial, efficient audio tagger that supports a large variety of file formats.*..[ *read more* ](apps/kid3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kid3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kid3) | -| | [***kiibohd-configurator***](apps/kiibohd-configurator.md) | *Configuration utility for Input Club keyboards.*..[ *read more* ](apps/kiibohd-configurator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kiibohd-configurator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kiibohd-configurator) | -| | [***kiku***](apps/kiku.md) | *Play music from youtube on desktop. Supports local api, invidious and piped as source.*..[ *read more* ](apps/kiku.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kiku) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kiku) | -| | [***kimitzu-client***](apps/kimitzu-client.md) | *Kimitzu Client.*..[ *read more* ](apps/kimitzu-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kimitzu-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kimitzu-client) | -| | [***kinopio***](apps/kinopio.md) | *Thinking canvas for new ideas and hard problems.*..[ *read more* ](apps/kinopio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kinopio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kinopio) | -| | [***kiri-moto***](apps/kiri-moto.md) | *Browser-based Slicer for 3D Printing, CAM, Laser and mesh editor.*..[ *read more* ](apps/kiri-moto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kiri-moto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kiri-moto) | -| | [***kitsas***](apps/kitsas.md) | *Finnish bookkeeping software for small organizations.*..[ *read more* ](apps/kitsas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kitsas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kitsas) | -| | [***kitshn***](apps/kitshn.md) | *An unofficial client for the self-hosted Tandoor recipe management software.*..[ *read more* ](apps/kitshn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kitshn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kitshn) | -| | [***kitupiikki***](apps/kitupiikki.md) | *Bookkeeping software for small organizations.*..[ *read more* ](apps/kitupiikki.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kitupiikki) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kitupiikki) | -| | [***kiwix***](apps/kiwix.md) | *An offline reader for Web content, primarily designed to make Wikipedia available offline. It reads archives in the ZIM file format, a highly compressed open format with additional metadata.*..[ *read more* ](apps/kiwix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kiwix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kiwix) | -| | [***klogg***](apps/klogg.md) | *A smart interactive log explorer.*..[ *read more* ](apps/klogg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/klogg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/klogg) | -| | [***km-recplayer***](apps/km-recplayer.md) | *Recorder and player of keyboard and mouse input (HID)*..[ *read more* ](apps/km-recplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/km-recplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/km-recplayer) | -| | [***kmymoney***](apps/kmymoney.md) | *KMyMoney is a cross-platform personal finance manager build on KDE frameworks technologies for your desktop and notebook environment.*..[ *read more* ](apps/kmymoney.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kmymoney) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kmymoney) | -| | [***knights***](apps/knights.md) | *Unofficial, KDE's chess game frontend.*..[ *read more* ](apps/knights.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/knights) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/knights) | -| | [***knowte***](apps/knowte.md) | *Note taking.*..[ *read more* ](apps/knowte.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/knowte) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/knowte) | -| | [***koishi-desktop***](apps/koishi-desktop.md) | *Launch Koishi from your desktop.*..[ *read more* ](apps/koishi-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koishi-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koishi-desktop) | -| | [***kolourpaint***](apps/kolourpaint.md) | *Unofficial AppImage of KolourPaint.*..[ *read more* ](apps/kolourpaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kolourpaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kolourpaint) | -| | [***koodo-reader***](apps/koodo-reader.md) | *Modern ebook manager and reader with sync & backup capacities.*..[ *read more* ](apps/koodo-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koodo-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koodo-reader) | -| | [***kopia***](apps/kopia.md) | *Cross-platform backup tool.*..[ *read more* ](apps/kopia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kopia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kopia) | -| | [***koreader***](apps/koreader.md) | *A document viewer for E Ink devices. Supported fileformats include EPUB, PDF, DjVu, XPS, CBT, CBZ, FB2, PDB, TXT, HTML, RTF, CHM, DOC, MOBI and ZIP files. It’s available for Kindle, Kobo, PocketBook, Android and desktop Linux.*..[ *read more* ](apps/koreader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koreader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koreader) | -| | [***koreader-nightly***](apps/koreader-nightly.md) | *A document viewer for E Ink devices. Supported fileformats include EPUB, PDF, DjVu, XPS, CBT, CBZ, FB2, PDB, TXT, HTML, RTF, CHM, DOC, MOBI and ZIP files. It’s available for Kindle, Kobo, PocketBook, Android and desktop Linux. Nightly build.*..[ *read more* ](apps/koreader-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koreader-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koreader-nightly) | -| | [***krita***](apps/krita.md) | *A professional FREE and open source painting program, graphics.*..[ *read more* ](apps/krita.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/krita) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/krita) | -| | [***krita-devel***](apps/krita-devel.md) | *A professional FREE open source painting program, dev-edition.*..[ *read more* ](apps/krita-devel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/krita-devel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/krita-devel) | -| | [***krokiet***](apps/krokiet.md) | *App to find duplicates, empty folders, similar images etc. The successor of czkawka.*..[ *read more* ](apps/krokiet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/krokiet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/krokiet) | -| | [***kronos***](apps/kronos.md) | *Unofficial, Sega Saturn emulator.*..[ *read more* ](apps/kronos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kronos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kronos) | -| | [***krunker***](apps/krunker.md) | *Krunker (.io) is a fast-paced first-person shooter game with pixel graphics.*..[ *read more* ](apps/krunker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/krunker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/krunker) | -| | [***ksnip***](apps/ksnip.md) | *Screenshot tool inspired by Windows Snipping Tool and made with Qt.*..[ *read more* ](apps/ksnip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ksnip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ksnip) | -| | [***kstars***](apps/kstars.md) | *Unofficial AppImage of KStars.*..[ *read more* ](apps/kstars.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kstars) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kstars) | -| | [***ktorrent***](apps/ktorrent.md) | *Unofficial AppImage of KTorrent.*..[ *read more* ](apps/ktorrent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ktorrent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ktorrent) | -| | [***kubeman***](apps/kubeman.md) | *The Hero that Kubernetes deserves.*..[ *read more* ](apps/kubeman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kubeman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kubeman) | -| | [***kubenav***](apps/kubenav.md) | *The navigator for your Kubernetes clusters right in your pocket.*..[ *read more* ](apps/kubenav.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kubenav) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kubenav) | -| | [***kunkun***](apps/kunkun.md) | *An open source, cross-platform, extensible app launcher.*..[ *read more* ](apps/kunkun.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kunkun) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kunkun) | -| | [***kuro***](apps/kuro.md) | *An elegant Microsoft ToDo desktop client for Linux, a fork of Ao.*..[ *read more* ](apps/kuro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kuro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kuro) | -| | [***kwave***](apps/kwave.md) | *A sound & audio editor designed for the KDE Desktop Environment.*..[ *read more* ](apps/kwave.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kwave) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kwave) | -| | [***labplot***](apps/labplot.md) | *Data Visualization and Analysis software accessible to everyone and trusted by professionals.*..[ *read more* ](apps/labplot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/labplot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/labplot) | -| | [***ladybird***](apps/ladybird.md) | *A truly independent web browser, using a novel engine based on web standards.*..[ *read more* ](apps/ladybird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ladybird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ladybird) | -| | [***lagrange***](apps/lagrange.md) | *Lagrange is a cross-platform client for browsing Geminispace (GUI Version).*..[ *read more* ](apps/lagrange.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lagrange) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lagrange) | -| | [***laidout***](apps/laidout.md) | *Laidout, desktop publishing software*..[ *read more* ](apps/laidout.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/laidout) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/laidout) | -| | [***laigter***](apps/laigter.md) | *Tool to generate normal/specular/occlussion/parallax 2D maps.*..[ *read more* ](apps/laigter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/laigter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/laigter) | -| | [***lambda-lantern***](apps/lambda-lantern.md) | *A 3D game about functional programming patterns.*..[ *read more* ](apps/lambda-lantern.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lambda-lantern) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lambda-lantern) | -| | [***landrop***](apps/landrop.md) | *Drop any files to any devices on your LAN.*..[ *read more* ](apps/landrop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/landrop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/landrop) | -| | [***lanshare***](apps/lanshare.md) | *LAN file transfer app for any kind and size of files and folders.*..[ *read more* ](apps/lanshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lanshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lanshare) | -| | [***lapce***](apps/lapce.md) | *Lightning-fast and Powerful Code Editor written in Rust.*..[ *read more* ](apps/lapce.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lapce) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lapce) | -| | [***laravel-kit***](apps/laravel-kit.md) | *Easy Laravel application management.*..[ *read more* ](apps/laravel-kit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/laravel-kit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/laravel-kit) | -| | [***launcher***](apps/launcher.md) | *Generic application's launcher.*..[ *read more* ](apps/launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/launcher) | -| | [***lazpaint***](apps/lazpaint.md) | *Cross-platform image editor with raster and vector layers similar to Paint.Net written in Lazarus (Free Pascal).*..[ *read more* ](apps/lazpaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lazpaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lazpaint) | -| | [***lazytyper***](apps/lazytyper.md) | *LazyTyper desktop client (repackaged from the official AppImage, including built-in dependencies).*..[ *read more* ](apps/lazytyper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lazytyper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lazytyper) | -| | [***lba2-classic-community***](apps/lba2-classic-community.md) | *Unofficial, a community fork for evolving and modernizing LBA2 source port.*..[ *read more* ](apps/lba2-classic-community.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lba2-classic-community) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lba2-classic-community) | -| | [***lbry-desktop***](apps/lbry-desktop.md) | *A browser and wallet for LBRY.*..[ *read more* ](apps/lbry-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lbry-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lbry-desktop) | -| | [***lcedit***](apps/lcedit.md) | *Editor, unknown.*..[ *read more* ](apps/lcedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lcedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lcedit) | -| | [***ldtk***](apps/ldtk.md) | *Modern and efficient 2D level editor.*..[ *read more* ](apps/ldtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ldtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ldtk) | -| | [***leaflet***](apps/leaflet.md) | *POSP official notes application, written in flutter, beautiful, fast and secure.*..[ *read more* ](apps/leaflet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/leaflet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/leaflet) | -| | [***leapp***](apps/leapp.md) | *The DevTool to access your cloud.*..[ *read more* ](apps/leapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/leapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/leapp) | -| | [***led.custom.palette***](apps/led.custom.palette.md) | *Design the lights on your Model01 with an ease.*..[ *read more* ](apps/led.custom.palette.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/led.custom.palette) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/led.custom.palette) | -| | [***ledger-live-desktop***](apps/ledger-live-desktop.md) | *Ledger Wallet crypto app. Secure your crypto assets such as Bitcoin, Ethereum, XRP, Monero, and more. Give yourself peace of mind by knowing that your cryptocurrencies are safe.*..[ *read more* ](apps/ledger-live-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ledger-live-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ledger-live-desktop) | -| | [***legcord***](apps/legcord.md) | *Legcord is a custom client designed to enhance your Discord experience while keeping everything lightweight.*..[ *read more* ](apps/legcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/legcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/legcord) | -| | [***legendary-kingdoms***](apps/legendary-kingdoms.md) | *Implementation of Legendary Kingdoms Gamebooks in C++.*..[ *read more* ](apps/legendary-kingdoms.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/legendary-kingdoms) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/legendary-kingdoms) | -| | [***lemon***](apps/lemon.md) | *A tiny judging environment for OI contest based on Project_LemonPlus.*..[ *read more* ](apps/lemon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lemon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lemon) | -| | [***lens***](apps/lens.md) | *App you need to take control of your Kubernetes clusters.*..[ *read more* ](apps/lens.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lens) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lens) | -| | [***leocad***](apps/leocad.md) | *Create virtual LEGO models.*..[ *read more* ](apps/leocad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/leocad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/leocad) | -| | [***leonflix***](apps/leonflix.md) | *Multi-platform desktop application for watching movies & TV shows.*..[ *read more* ](apps/leonflix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/leonflix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/leonflix) | -| | [***lepton***](apps/lepton.md) | *Democratizing Code Snippets Management.*..[ *read more* ](apps/lepton.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lepton) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lepton) | -| | [***lescovex***](apps/lescovex.md) | *Lescovex decentralized exchange, wallet and contract issuer.*..[ *read more* ](apps/lescovex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lescovex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lescovex) | -| | [***leshade***](apps/leshade.md) | *An unofficial Reshade Installer for Linux.*..[ *read more* ](apps/leshade.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/leshade) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/leshade) | -| | [***lets-bend***](apps/lets-bend.md) | *Harmonica tuner for learning bending techniques with real-time visual feedback.*..[ *read more* ](apps/lets-bend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lets-bend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lets-bend) | -| | [***levior***](apps/levior.md) | *Converts web pages on-the-fly to the gemtext format.*..[ *read more* ](apps/levior.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/levior) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/levior) | -| | [***libassist***](apps/libassist.md) | *Library Assistant.*..[ *read more* ](apps/libassist.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/libassist) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/libassist) | -| | [***libation***](apps/libation.md) | *Unofficial, application for downloading and managing your Audible audiobooks.*..[ *read more* ](apps/libation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/libation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/libation) | -| | [***libertem***](apps/libertem.md) | *Pixelated scanning transmission electron microscopy.*..[ *read more* ](apps/libertem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/libertem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/libertem) | -| | [***librecad***](apps/librecad.md) | *2D CAD program written in C++11 using the Qt framework.*..[ *read more* ](apps/librecad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/librecad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/librecad) | -| | [***libreoffice***](apps/libreoffice.md) | *Unofficial, LibreOffice is a private and powerful, free and open source office suite – the successor project to OpenOffice. It's compatible with Microsoft Office/365 files.*..[ *read more* ](apps/libreoffice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/libreoffice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/libreoffice) | -| | [***librepcb***](apps/librepcb.md) | *Design Schematics and PCBs.*..[ *read more* ](apps/librepcb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/librepcb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/librepcb) | -| | [***librescore***](apps/librescore.md) | *The open source (GPLv3), serverless (IPFS-based), offline-first, and totally free alternative to musescore.com*..[ *read more* ](apps/librescore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/librescore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/librescore) | -| | [***libresprite***](apps/libresprite.md) | *Animated sprite editor & pixel art tool. Fork of the last GPLv2 commit of Aseprite.*..[ *read more* ](apps/libresprite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/libresprite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/libresprite) | -| | [***librewolf***](apps/librewolf.md) | *Firefox-based Web Browser focused on privacy, security, freedom.*..[ *read more* ](apps/librewolf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/librewolf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/librewolf) | -| | [***lightning***](apps/lightning.md) | *Lightning Wallet Application.*..[ *read more* ](apps/lightning.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lightning) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lightning) | -| | [***lightning-peach-wallet***](apps/lightning-peach-wallet.md) | *Wallet for lightning network*..[ *read more* ](apps/lightning-peach-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lightning-peach-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lightning-peach-wallet) | -| | [***lightzone***](apps/lightzone.md) | *Unofficial AppImage of LighZone.*..[ *read more* ](apps/lightzone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lightzone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lightzone) | -| | [***liground***](apps/liground.md) | *A mordern Chess Variant Analysis GUI, game.*..[ *read more* ](apps/liground.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/liground) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/liground) | -| | [***liketaskmanager***](apps/liketaskmanager.md) | *Process/performances monitor, CPU, RAM, Disks and Network.*..[ *read more* ](apps/liketaskmanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/liketaskmanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/liketaskmanager) | -| | [***linedancer***](apps/linedancer.md) | *Arcade game and entry for Ludum Dare 35.*..[ *read more* ](apps/linedancer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linedancer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linedancer) | -| | [***lingueez***](apps/lingueez.md) | *Vocabulary trainer.*..[ *read more* ](apps/lingueez.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lingueez) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lingueez) | -| | [***linked***](apps/linked.md) | *Daily journaling without distraction.*..[ *read more* ](apps/linked.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linked) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linked) | -| | [***linkora***](apps/linkora.md) | *Link organizer for Android and desktop with self-hosted sync.*..[ *read more* ](apps/linkora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linkora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linkora) | -| | [***linphone***](apps/linphone.md) | *A libre SIP client.*..[ *read more* ](apps/linphone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linphone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linphone) | -| | [***linux-intel-undervolt-gui***](apps/linux-intel-undervolt-gui.md) | *Undervolting GUI for Intel Linux Systems.*..[ *read more* ](apps/linux-intel-undervolt-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linux-intel-undervolt-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linux-intel-undervolt-gui) | -| | [***linuxaircombat***](apps/linuxaircombat.md) | *Free open source combat flight simulator.*..[ *read more* ](apps/linuxaircombat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxaircombat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxaircombat) | -| | [***linuxdeploy***](apps/linuxdeploy.md) | *AppDir creation and maintenance tool. Featuring flexible plugin system.*..[ *read more* ](apps/linuxdeploy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxdeploy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxdeploy) | -| | [***linuxdeployqt***](apps/linuxdeployqt.md) | *Convert a linux program to an AppDir or an AppImage.*..[ *read more* ](apps/linuxdeployqt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxdeployqt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxdeployqt) | -| | [***linuxqq***](apps/linuxqq.md) | *New Linux QQ based on Electron.*..[ *read more* ](apps/linuxqq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxqq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxqq) | -| | [***linuxtoys***](apps/linuxtoys.md) | *Unofficial, a user-friendly collection of tools to make your life on Linux easier than ever. Useful scripts for gamers, developers and enthusiasts.*..[ *read more* ](apps/linuxtoys.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxtoys) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxtoys) | -| | [***linuxwallpaper***](apps/linuxwallpaper.md) | *Bing wallpaper of the day.*..[ *read more* ](apps/linuxwallpaper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxwallpaper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxwallpaper) | -| | [***linwood-butterfly***](apps/linwood-butterfly.md) | *Powerful, minimalistic, cross-platform, note-taking app.*..[ *read more* ](apps/linwood-butterfly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linwood-butterfly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linwood-butterfly) | -| | [***liquidlauncher***](apps/liquidlauncher.md) | *The official Minecraft launcher for LiquidBounce.*..[ *read more* ](apps/liquidlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/liquidlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/liquidlauncher) | -| | [***lisk-desktop***](apps/lisk-desktop.md) | *Lisk graphical user interface for desktop.*..[ *read more* ](apps/lisk-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lisk-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lisk-desktop) | -| | [***listen.moe***](apps/listen.moe.md) | *Official LISTEN.moe Desktop Client.*..[ *read more* ](apps/listen.moe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/listen.moe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/listen.moe) | -| | [***listen1-desktop***](apps/listen1-desktop.md) | *One for all free music in China.*..[ *read more* ](apps/listen1-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/listen1-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/listen1-desktop) | -| | [***lite-xl***](apps/lite-xl.md) | *A lightweight text editor written in Lua.*..[ *read more* ](apps/lite-xl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lite-xl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lite-xl) | -| | [***liteide***](apps/liteide.md) | *LiteIDE is a simple, open source, cross-platform Go IDE.*..[ *read more* ](apps/liteide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/liteide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/liteide) | -| | [***liveme-pro-tools***](apps/liveme-pro-tools.md) | *Browse, search and manage accounts, replays and more.*..[ *read more* ](apps/liveme-pro-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/liveme-pro-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/liveme-pro-tools) | -| | [***lmms***](apps/lmms.md) | *FL Studio® alternative that allows you to produce music with the PC.*..[ *read more* ](apps/lmms.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lmms) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lmms) | -| | [***lmstudio***](apps/lmstudio.md) | *Experimenting with local and open-source Large Language Models.*..[ *read more* ](apps/lmstudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lmstudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lmstudio) | -| | [***lobe-chat***](apps/lobe-chat.md) | *LobeHub - an open-source, modern design AI Agent Workspace. Supports multiple AI providers, Knowledge Base (file upload / RAG ), one click install MCP Marketplace and Artifacts / Thinking. One-click FREE deployment of your private AI Agent application.*..[ *read more* ](apps/lobe-chat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lobe-chat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lobe-chat) | -| | [***local-browser***](apps/local-browser.md) | *Share your localhost in a unique way.*..[ *read more* ](apps/local-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/local-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/local-browser) | -| | [***localsend***](apps/localsend.md) | *An open source cross-platform alternative to AirDrop*..[ *read more* ](apps/localsend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/localsend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/localsend) | -| | [***lofi***](apps/lofi.md) | *A mini Spotify player with WebGL visualizations.*..[ *read more* ](apps/lofi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lofi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lofi) | -| | [***loginized***](apps/loginized.md) | *Loginized Gnome GDM Login Theme Manager.*..[ *read more* ](apps/loginized.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/loginized) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/loginized) | -| | [***logseq***](apps/logseq.md) | *A privacy-first platform for knowledge management and collaboration.*..[ *read more* ](apps/logseq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/logseq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/logseq) | -| | [***looofix***](apps/looofix.md) | *Minimalist Desktop Lofi Player To Relax and Enjoy.*..[ *read more* ](apps/looofix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/looofix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/looofix) | -| | [***loopauditioneer***](apps/loopauditioneer.md) | *Software for loop and cue handling in .wav files.*..[ *read more* ](apps/loopauditioneer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/loopauditioneer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/loopauditioneer) | -| | [***lore-forge***](apps/lore-forge.md) | *The app for writers & worldbuilders.*..[ *read more* ](apps/lore-forge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lore-forge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lore-forge) | -| | [***lorien***](apps/lorien.md) | *Infinite canvas drawing/whiteboarding app.*..[ *read more* ](apps/lorien.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lorien) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lorien) | -| | [***losslesscut***](apps/losslesscut.md) | *The swiss army knife of lossless video/audio editing.*..[ *read more* ](apps/losslesscut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/losslesscut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/losslesscut) | -| | [***love***](apps/love.md) | *The unquestionably awesome 2D game engine.*..[ *read more* ](apps/love.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/love) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/love) | -| | [***lovelive***](apps/lovelive.md) | *A LoveLiver Music Player.*..[ *read more* ](apps/lovelive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lovelive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lovelive) | -| | [***lovr***](apps/lovr.md) | *Lua Virtual Reality Framework.*..[ *read more* ](apps/lovr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lovr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lovr) | -| | [***lpub3d***](apps/lpub3d.md) | *An LDraw Building Instruction Editor.*..[ *read more* ](apps/lpub3d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lpub3d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lpub3d) | -| | [***ltx-desktop***](apps/ltx-desktop.md) | *An open-source desktop app for generating videos with LTX models.*..[ *read more* ](apps/ltx-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ltx-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ltx-desktop) | -| | [***luanti***](apps/luanti.md) | *Multiplayer infinite-world block sandbox.*..[ *read more* ](apps/luanti.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/luanti) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/luanti) | -| | [***ludo***](apps/ludo.md) | *Ludo is a work in progress libretro frontend written in go.*..[ *read more* ](apps/ludo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ludo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ludo) | -| | [***lumi***](apps/lumi.md) | *A tool to create and display interactive content with H5P.*..[ *read more* ](apps/lumi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lumi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lumi) | -| | [***luna***](apps/luna.md) | *Manage npm dependencies through a modern UI.*..[ *read more* ](apps/luna.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/luna) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/luna) | -| | [***lunar-client***](apps/lunar-client.md) | *Free Minecraft Client, a modpack for all versions of Minecraft.*..[ *read more* ](apps/lunar-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lunar-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lunar-client) | -| | [***lunatask***](apps/lunatask.md) | *All-in-one encrypted to-do list, notebook, habit and mood tracker.*..[ *read more* ](apps/lunatask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lunatask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lunatask) | -| | [***lutris***](apps/lutris.md) | *Unofficial. Install and play video games from all eras and from most gaming systems, by leveraging and combining existing emulators, WINE included.*..[ *read more* ](apps/lutris.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lutris) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lutris) | -| | [***lutris-gamepad-ui***](apps/lutris-gamepad-ui.md) | *A simple, TV-friendly, gamepad-navigable frontend for the Lutris game launcher on Linux.*..[ *read more* ](apps/lutris-gamepad-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lutris-gamepad-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lutris-gamepad-ui) | -| | [***lvgl-editor***](apps/lvgl-editor.md) | *LVGL Pro is a complete toolkit to build, test, share and ship embedded UIs efficiently.*..[ *read more* ](apps/lvgl-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lvgl-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lvgl-editor) | -| | [***lx-music-desktop***](apps/lx-music-desktop.md) | *一个基于electron的音乐软件.*..[ *read more* ](apps/lx-music-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lx-music-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lx-music-desktop) | -| | [***lxtask***](apps/lxtask.md) | *Unofficial. A lightweight and desktop-independent task manager.*..[ *read more* ](apps/lxtask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lxtask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lxtask) | -| | [***lyricistant***](apps/lyricistant.md) | *A helpful writing assistant for lyricists.*..[ *read more* ](apps/lyricistant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lyricistant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lyricistant) | -| | [***m***](apps/m.md) | *Data oriented programming language for game developers.*..[ *read more* ](apps/m.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/m) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/m) | -| | [***magento2-upgrade-gui***](apps/magento2-upgrade-gui.md) | *Magento 2 Upgrade GUI.*..[ *read more* ](apps/magento2-upgrade-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/magento2-upgrade-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/magento2-upgrade-gui) | -| | [***mages***](apps/mages.md) | *Multiplatform Matrix chat client (experimental CMP+rust app).*..[ *read more* ](apps/mages.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mages) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mages) | -| | [***magicfountain***](apps/magicfountain.md) | *A novel and screenwriting program.*..[ *read more* ](apps/magicfountain.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/magicfountain) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/magicfountain) | -| | [***makagiga***](apps/makagiga.md) | *To-do manager, notepad, RSS reader and much more.*..[ *read more* ](apps/makagiga.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/makagiga) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/makagiga) | -| | [***makhber***](apps/makhber.md) | *Makhber is a free application for Visualization and Analysis of Scientific Data.*..[ *read more* ](apps/makhber.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/makhber) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/makhber) | -| | [***makoureactor***](apps/makoureactor.md) | *Can edit field from Final Fantasy VII, PS & PC.*..[ *read more* ](apps/makoureactor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/makoureactor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/makoureactor) | -| | [***malice***](apps/malice.md) | *GUI Programming Tool for iCE40.*..[ *read more* ](apps/malice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/malice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/malice) | -| | [***mame***](apps/mame.md) | *Unofficial AppImage of MAME emulator.*..[ *read more* ](apps/mame.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mame) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mame) | -| | [***manager-io***](apps/manager-io.md) | *Free Accounting Software for Linux, Server.*..[ *read more* ](apps/manager-io.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/manager-io) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/manager-io) | -| | [***mandelbulber2***](apps/mandelbulber2.md) | *Explore trigonometric, hyper-complex and other 3D fractals.*..[ *read more* ](apps/mandelbulber2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mandelbulber2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mandelbulber2) | -| | [***mangayomi***](apps/mangayomi.md) | *Free and open source application for reading manga, novels, and watching animes available.*..[ *read more* ](apps/mangayomi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangayomi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangayomi) | -| | [***mangbandclient***](apps/mangbandclient.md) | *A free online multi-player realtime roguelike game.*..[ *read more* ](apps/mangbandclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangbandclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangbandclient) | -| | [***mangojuice***](apps/mangojuice.md) | *It's a great alternative to GOverlay.*..[ *read more* ](apps/mangojuice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangojuice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangojuice) | -| | [***mangoverlay***](apps/mangoverlay.md) | *Mangohud configuration tool.*..[ *read more* ](apps/mangoverlay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangoverlay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangoverlay) | -| | [***maniadrive***](apps/maniadrive.md) | *Unofficial, an open-source clone of the popular racing game TrackMania.*..[ *read more* ](apps/maniadrive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/maniadrive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/maniadrive) | -| | [***manta***](apps/manta.md) | *Flexible invoicing app with beautiful & customizable templates.*..[ *read more* ](apps/manta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/manta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/manta) | -| | [***mapeo***](apps/mapeo.md) | *Local-first mapping and monitoring in remote environments.*..[ *read more* ](apps/mapeo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mapeo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mapeo) | -| | [***mapic***](apps/mapic.md) | *MaPic is a Image Viewer with AI Metadata Reader.*..[ *read more* ](apps/mapic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mapic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mapic) | -| | [***mapollage***](apps/mapollage.md) | *Photo kml generator for Google Earth.*..[ *read more* ](apps/mapollage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mapollage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mapollage) | -| | [***mapton***](apps/mapton.md) | *Some kind of map application.*..[ *read more* ](apps/mapton.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mapton) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mapton) | -| | [***mariokart64recomp***](apps/mariokart64recomp.md) | *Unofficial, a native port of MarioKart 64, statically recompiled.*..[ *read more* ](apps/mariokart64recomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mariokart64recomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mariokart64recomp) | -| | [***mark-mind***](apps/mark-mind.md) | *Multiplatform mind map and outliner editor with markdown support.*..[ *read more* ](apps/mark-mind.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mark-mind) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mark-mind) | -| | [***markflowy***](apps/markflowy.md) | *Modern markdown editor application, Build fast and efficient workflows.*..[ *read more* ](apps/markflowy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/markflowy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/markflowy) | -| | [***markman***](apps/markman.md) | *A markdown editor.*..[ *read more* ](apps/markman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/markman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/markman) | -| | [***marktext***](apps/marktext.md) | *A simple and elegant markdown editor multiplatform.*..[ *read more* ](apps/marktext.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/marktext) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/marktext) | -| | [***marlin-conf***](apps/marlin-conf.md) | *Configuration tool for Marlin project.*..[ *read more* ](apps/marlin-conf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/marlin-conf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/marlin-conf) | -| | [***martian***](apps/martian.md) | *Websocket testing tool.*..[ *read more* ](apps/martian.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/martian) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/martian) | -| | [***marvin***](apps/marvin.md) | *Open Source record and playback test automation for the web.*..[ *read more* ](apps/marvin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/marvin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/marvin) | -| | [***master-pdf-editor***](apps/master-pdf-editor.md) | *Master PDF Editor allows you to create, edit, preview, encrypt, sign and print PDF documents.*..[ *read more* ](apps/master-pdf-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/master-pdf-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/master-pdf-editor) | -| | [***masterkey***](apps/masterkey.md) | *Unofficial AppImage of Master Key.*..[ *read more* ](apps/masterkey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/masterkey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/masterkey) | -| | [***mastervyrn***](apps/mastervyrn.md) | *MasterVyrn is a clean dedicated GBF loader.*..[ *read more* ](apps/mastervyrn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mastervyrn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mastervyrn) | -| | [***mate-system-monitor***](apps/mate-system-monitor.md) | *Unofficial, Process viewer and system resource monitor, from MATE.*..[ *read more* ](apps/mate-system-monitor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mate-system-monitor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mate-system-monitor) | -| | [***materialious***](apps/materialious.md) | *Modern material design for Invidious.*..[ *read more* ](apps/materialious.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/materialious) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/materialious) | -| | [***mathcha-notebook***](apps/mathcha-notebook.md) | *Desktop version of Mathcha, built for your privacy.*..[ *read more* ](apps/mathcha-notebook.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mathcha-notebook) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mathcha-notebook) | -| | [***mattermost-desktop***](apps/mattermost-desktop.md) | *Secure collaboration across entire software development.*..[ *read more* ](apps/mattermost-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mattermost-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mattermost-desktop) | -| | [***mayo***](apps/mayo.md) | *3D CAD viewer and converter based on Qt + OpenCascade.*..[ *read more* ](apps/mayo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mayo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mayo) | -| | [***mazesolver***](apps/mazesolver.md) | *A tool which shows how different algorithms solves mazes.*..[ *read more* ](apps/mazesolver.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mazesolver) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mazesolver) | -| | [***mbcord***](apps/mbcord.md) | *An Emby/Jellyfin rich presence client for Discord.*..[ *read more* ](apps/mbcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mbcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mbcord) | -| | [***mcpelauncher***](apps/mcpelauncher.md) | *The main repo for the Linux Bedrock edition Minecraft launcher.*..[ *read more* ](apps/mcpelauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mcpelauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mcpelauncher) | -| | [***mcpodcast***](apps/mcpodcast.md) | *Electron app for tasks around Podcast mp3 files.*..[ *read more* ](apps/mcpodcast.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mcpodcast) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mcpodcast) | -| | [***mdl***](apps/mdl.md) | *MDL wallet.*..[ *read more* ](apps/mdl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mdl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mdl) | -| | [***mdsilo-app***](apps/mdsilo-app.md) | *Lightweight Knowledge Base and Feed Reader.*..[ *read more* ](apps/mdsilo-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mdsilo-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mdsilo-app) | -| | [***mdview***](apps/mdview.md) | *Application that renders and displays Markdown files.*..[ *read more* ](apps/mdview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mdview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mdview) | -| | [***measur***](apps/measur.md) | *Energy efficiency calculation app for use with industrial equipment.*..[ *read more* ](apps/measur.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/measur) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/measur) | -| | [***mechtype***](apps/mechtype.md) | *A lightweight app designed to elevate your typing experience by allowing you to enjoy custom soundtracks with every keystroke.*..[ *read more* ](apps/mechtype.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mechtype) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mechtype) | -| | [***mechvibes***](apps/mechvibes.md) | *Play mechanical keyboard sounds as you type.*..[ *read more* ](apps/mechvibes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mechvibes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mechvibes) | -| | [***media-downloader***](apps/media-downloader.md) | *Cross-platform audio/video downloader.*..[ *read more* ](apps/media-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/media-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/media-downloader) | -| | [***media-dupes***](apps/media-dupes.md) | *Content duplicator for common media services like YouTube.*..[ *read more* ](apps/media-dupes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/media-dupes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/media-dupes) | -| | [***media-hoarder***](apps/media-hoarder.md) | *Media Hoarder - THE media frontend for data hoarders and movie lovers*..[ *read more* ](apps/media-hoarder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/media-hoarder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/media-hoarder) | -| | [***mediachips***](apps/mediachips.md) | *Manage your videos, add any metadata to them and play them.*..[ *read more* ](apps/mediachips.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mediachips) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mediachips) | -| | [***mediaelch***](apps/mediaelch.md) | *Media Manager for Kodi.*..[ *read more* ](apps/mediaelch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mediaelch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mediaelch) | -| | [***mediaharbor***](apps/mediaharbor.md) | *Cross-platform MediaHarbor*..[ *read more* ](apps/mediaharbor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mediaharbor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mediaharbor) | -| | [***mediathekview***](apps/mediathekview.md) | *Searches the online media libraries of various broadcasters.*..[ *read more* ](apps/mediathekview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mediathekview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mediathekview) | -| | [***mednafen***](apps/mednafen.md) | *Unofficial AppImage. Mednafen is a portable, utilizing OpenGL and SDL, argument(command-line)-driven multi-system emulator.*..[ *read more* ](apps/mednafen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mednafen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mednafen) | -| | [***megaglest***](apps/megaglest.md) | *MegaGlest real-time strategy game engine (cross-platform, 3-d).*..[ *read more* ](apps/megaglest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/megaglest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/megaglest) | -| | [***megaman64recomp***](apps/megaman64recomp.md) | *Unofficial AppImage of Mega Man 64 Recompiled.*..[ *read more* ](apps/megaman64recomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/megaman64recomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/megaman64recomp) | -| | [***meganimus***](apps/meganimus.md) | *A launcher for native and emulator games.*..[ *read more* ](apps/meganimus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/meganimus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/meganimus) | -| | [***mellowplayer***](apps/mellowplayer.md) | *Cloud music integration for your desktop.*..[ *read more* ](apps/mellowplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mellowplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mellowplayer) | -| | [***melodie***](apps/melodie.md) | *Simple-as-pie music player.*..[ *read more* ](apps/melodie.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/melodie) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/melodie) | -| | [***melonds-enhanced***](apps/melonds-enhanced.md) | *Unofficial, AppImage of melonDS which is able to work on any linux distro.*..[ *read more* ](apps/melonds-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/melonds-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/melonds-enhanced) | -| | [***melonmix***](apps/melonmix.md) | *KH Melon Mix (DS Emulator) DS emulator, sorta DS emulator, sorta.*..[ *read more* ](apps/melonmix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/melonmix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/melonmix) | -| | [***memento***](apps/memento.md) | *A video player for studying Japanese.*..[ *read more* ](apps/memento.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/memento) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/memento) | -| | [***memocast***](apps/memocast.md) | *Yet another elegant Wiz Note Client.*..[ *read more* ](apps/memocast.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/memocast) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/memocast) | -| | [***memospot***](apps/memospot.md) | *Memospot is a self-contained desktop version of Memos -a privacy-first, lightweight note-taking service.*..[ *read more* ](apps/memospot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/memospot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/memospot) | -| | [***memoto***](apps/memoto.md) | *DevOps oriented modeling tool.*..[ *read more* ](apps/memoto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/memoto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/memoto) | -| | [***mendeley***](apps/mendeley.md) | *Search over 100 million cross-publisher articles and counting.*..[ *read more* ](apps/mendeley.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mendeley) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mendeley) | -| | [***meow-sql***](apps/meow-sql.md) | *An attempt to port HeidiSQL to C++/Qt.*..[ *read more* ](apps/meow-sql.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/meow-sql) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/meow-sql) | -| | [***mesa***](apps/mesa.md) | *Experimental AppImage that lets you use the latest MESA with any binary on your system.*..[ *read more* ](apps/mesa.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mesa) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mesa) | -| | [***meshlab***](apps/meshlab.md) | *Processor and editor of large 3D triangular meshes.*..[ *read more* ](apps/meshlab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/meshlab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/meshlab) | -| | [***meshmill***](apps/meshmill.md) | *The world's greatest open source 3D CAM software, maybe one day.*..[ *read more* ](apps/meshmill.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/meshmill) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/meshmill) | -| | [***meta-grabber***](apps/meta-grabber.md) | *A tool to grab metadata for tv shows and rename files on PC.*..[ *read more* ](apps/meta-grabber.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/meta-grabber) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/meta-grabber) | -| | [***mgba***](apps/mgba.md) | *Game Boy Advance Emulator.*..[ *read more* ](apps/mgba.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mgba) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mgba) | -| | [***mgba-enhanced***](apps/mgba-enhanced.md) | *Unofficial, Game Boy Advance Emulator.*..[ *read more* ](apps/mgba-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mgba-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mgba-enhanced) | -| | [***micropad***](apps/micropad.md) | *µPad is an open digital note taking app.*..[ *read more* ](apps/micropad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/micropad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/micropad) | -| | [***microsoft-edge***](apps/microsoft-edge.md) | *Web Browser provided by Microsoft, Stable Edition.*..[ *read more* ](apps/microsoft-edge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/microsoft-edge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/microsoft-edge) | -| | [***microsoft-edge-beta***](apps/microsoft-edge-beta.md) | *Web Browser provided by Microsoft, Beta Edition.*..[ *read more* ](apps/microsoft-edge-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/microsoft-edge-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/microsoft-edge-beta) | -| | [***microsoft-edge-dev***](apps/microsoft-edge-dev.md) | *Web Browser provided by Microsoft, Developer Edition.*..[ *read more* ](apps/microsoft-edge-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/microsoft-edge-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/microsoft-edge-dev) | -| | [***midori***](apps/midori.md) | *Surf lightly, quickly and safely with Midori Web Browser.*..[ *read more* ](apps/midori.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/midori) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/midori) | -| | [***miesimulatorgui***](apps/miesimulatorgui.md) | *MieSimulatorGUI by Virtual Photonics.*..[ *read more* ](apps/miesimulatorgui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/miesimulatorgui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/miesimulatorgui) | -| | [***mightymike***](apps/mightymike.md) | *Pangea Software's Mighty Mike, Power Pete for modern systems.*..[ *read more* ](apps/mightymike.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mightymike) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mightymike) | -| | [***migu***](apps/migu.md) | *Stream anime torrents, real-time with no waiting for downloads.*..[ *read more* ](apps/migu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/migu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/migu) | -| | [***milkytracker***](apps/milkytracker.md) | *An FT2 compatible music tracker.*..[ *read more* ](apps/milkytracker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/milkytracker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/milkytracker) | -| | [***mindmapp***](apps/mindmapp.md) | *Electron application to draw mind maps.*..[ *read more* ](apps/mindmapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mindmapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mindmapp) | -| | [***mine-craft.io***](apps/mine-craft.io.md) | *Minecraft and even more!*..[ *read more* ](apps/mine-craft.io.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mine-craft.io) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mine-craft.io) | -| | [***minetime***](apps/minetime.md) | *Smart scheduling assistant.*..[ *read more* ](apps/minetime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/minetime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/minetime) | -| | [***mini-diary***](apps/mini-diary.md) | *Simple and secure journal app.*..[ *read more* ](apps/mini-diary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mini-diary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mini-diary) | -| | [***mini-qml***](apps/mini-qml.md) | *Minimal Qt deployment.*..[ *read more* ](apps/mini-qml.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mini-qml) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mini-qml) | -| | [***mini-vmac***](apps/mini-vmac.md) | *Unofficial, a miniature Macintosh 68K emulator.*..[ *read more* ](apps/mini-vmac.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mini-vmac) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mini-vmac) | -| | [***minififa***](apps/minififa.md) | *OpenGL-powered third-person football, soccer game.*..[ *read more* ](apps/minififa.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/minififa) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/minififa) | -| | [***minimal-podcasts-player***](apps/minimal-podcasts-player.md) | *Subscribe, listen and download your podcasts.*..[ *read more* ](apps/minimal-podcasts-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/minimal-podcasts-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/minimal-podcasts-player) | -| | [***minions***](apps/minions.md) | *A productive tool inspired by LaunchBar in macOS.*..[ *read more* ](apps/minions.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/minions) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/minions) | -| | [***miniter***](apps/miniter.md) | *Rust based non-linear video editor for basic tasks.*..[ *read more* ](apps/miniter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/miniter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/miniter) | -| | [***minizinc-ide***](apps/minizinc-ide.md) | *A free and open-source constraint modeling language.*..[ *read more* ](apps/minizinc-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/minizinc-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/minizinc-ide) | -| | [***mira-backup***](apps/mira-backup.md) | *Mira Auto Database Backup app.*..[ *read more* ](apps/mira-backup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mira-backup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mira-backup) | -| | [***mirage***](apps/mirage.md) | *Matrix chat client for encrypted and decentralized communication.*..[ *read more* ](apps/mirage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mirage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mirage) | -| | [***mission-center***](apps/mission-center.md) | *Monitor your CPU, Memory, Disk, Network and GPU usage.*..[ *read more* ](apps/mission-center.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mission-center) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mission-center) | -| | [***miteiru***](apps/miteiru.md) | *An open source Electron video player to learn Japanese.*..[ *read more* ](apps/miteiru.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/miteiru) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/miteiru) | -| | [***mixxx***](apps/mixxx.md) | *Unofficial, open source software for digital DJing.*..[ *read more* ](apps/mixxx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mixxx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mixxx) | -| | [***mjml-app***](apps/mjml-app.md) | *The desktop app for MJML.*..[ *read more* ](apps/mjml-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mjml-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mjml-app) | -| | [***mki3dgame***](apps/mki3dgame.md) | *A game of searching, in 3D stages.*..[ *read more* ](apps/mki3dgame.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mki3dgame) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mki3dgame) | -| | [***mkvtoolnix***](apps/mkvtoolnix.md) | *Matroska files creator and tools.*..[ *read more* ](apps/mkvtoolnix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mkvtoolnix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mkvtoolnix) | -| | [***mlv-app***](apps/mlv-app.md) | *All in one MLV processing app, audio/video.*..[ *read more* ](apps/mlv-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mlv-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mlv-app) | -| | [***mmapper***](apps/mmapper.md) | *Graphical MUD client for the game MUME.*..[ *read more* ](apps/mmapper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mmapper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mmapper) | -| | [***mmseqs2-search***](apps/mmseqs2-search.md) | *MMseqs2 app to run on your workstation or servers.*..[ *read more* ](apps/mmseqs2-search.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mmseqs2-search) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mmseqs2-search) | -| | [***moarperf***](apps/moarperf.md) | *Front-end for MoarVM's / Rakudo's profilers.*..[ *read more* ](apps/moarperf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moarperf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moarperf) | -| | [***mob***](apps/mob.md) | *A handsome Himalayan desktop client.*..[ *read more* ](apps/mob.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mob) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mob) | -| | [***mochi***](apps/mochi.md) | *A simple markdown-powered SRS app.*..[ *read more* ](apps/mochi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mochi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mochi) | -| | [***mockman***](apps/mockman.md) | *Manage and start the mock servers on your local platform easily.*..[ *read more* ](apps/mockman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mockman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mockman) | -| | [***mockoon***](apps/mockoon.md) | *Mock servers in seconds.*..[ *read more* ](apps/mockoon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mockoon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mockoon) | -| | [***modemu2k***](apps/modemu2k.md) | *A Hayes AT-command modem emulator that bridges a serial interface to TCP/Telnet.*..[ *read more* ](apps/modemu2k.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/modemu2k) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/modemu2k) | -| | [***moderndeck***](apps/moderndeck.md) | *A beautiful, powerful Twitter client for desktop.*..[ *read more* ](apps/moderndeck.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moderndeck) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moderndeck) | -| | [***modrinth***](apps/modrinth.md) | *Open source launcher that allows you to play your favorite mods.*..[ *read more* ](apps/modrinth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/modrinth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/modrinth) | -| | [***modv***](apps/modv.md) | *Modular audio visualisation powered by JavaScript.*..[ *read more* ](apps/modv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/modv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/modv) | -| | [***monit***](apps/monit.md) | *Desktop widgets displaying various information, in chinese.*..[ *read more* ](apps/monit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/monit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/monit) | -| | [***moniteur-admin***](apps/moniteur-admin.md) | *The admin panel for the lightweight info screen solution.*..[ *read more* ](apps/moniteur-admin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moniteur-admin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moniteur-admin) | -| | [***monokle***](apps/monokle.md) | *Lets you create, analyze, and deploy YAML manifests.*..[ *read more* ](apps/monokle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/monokle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/monokle) | -| | [***monoline***](apps/monoline.md) | *Your personal micro journal.*..[ *read more* ](apps/monoline.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/monoline) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/monoline) | -| | [***mood-fi***](apps/mood-fi.md) | *App with 30+ lo-fi live streams between 8 different lo-fi types.*..[ *read more* ](apps/mood-fi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mood-fi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mood-fi) | -| | [***moolticute***](apps/moolticute.md) | *Mooltipass crossplatform daemon/tools.*..[ *read more* ](apps/moolticute.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moolticute) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moolticute) | -| | [***moon-lander***](apps/moon-lander.md) | *Moon Lander is a 2D game of gravity. Land your ship on the lading pad.*..[ *read more* ](apps/moon-lander.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moon-lander) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moon-lander) | -| | [***moondeck-buddy***](apps/moondeck-buddy.md) | *A server-side part of the MoonDeck plugin for the SteamDeck.*..[ *read more* ](apps/moondeck-buddy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moondeck-buddy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moondeck-buddy) | -| | [***moonlight***](apps/moonlight.md) | *Stream games from your NVIDIA GameStream-enabled PC.*..[ *read more* ](apps/moonlight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moonlight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moonlight) | -| | [***moonplayer***](apps/moonplayer.md) | *AIO video player to play Youtube, Bilibili... and local videos.*..[ *read more* ](apps/moonplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moonplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moonplayer) | -| | [***moose***](apps/moose.md) | *An application to stream, cast and download torrents.*..[ *read more* ](apps/moose.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moose) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moose) | -| | [***moosync***](apps/moosync.md) | *Music player capable of playing local audio or from Youtube/Spotify.*..[ *read more* ](apps/moosync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moosync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moosync) | -| | [***motrix***](apps/motrix.md) | *A full-featured download manager.*..[ *read more* ](apps/motrix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/motrix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/motrix) | -| | [***motrix-next***](apps/motrix-next.md) | *A full-featured download manager rebuilt from the ground up.*..[ *read more* ](apps/motrix-next.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/motrix-next) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/motrix-next) | -| | [***mousai***](apps/mousai.md) | *Unofficial. Application for identifying songs using libre utilities.*..[ *read more* ](apps/mousai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mousai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mousai) | -| | [***mouzi***](apps/mouzi.md) | *A free, privacy-first automatic file organizer that quietly sorts your Downloads folder from the system tray.*..[ *read more* ](apps/mouzi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mouzi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mouzi) | -| | [***movie-monad***](apps/movie-monad.md) | *Free and simple to use video player made with Haskell.*..[ *read more* ](apps/movie-monad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/movie-monad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/movie-monad) | -| | [***moyu***](apps/moyu.md) | *An online collaborative api interface management tool.*..[ *read more* ](apps/moyu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moyu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moyu) | -| | [***mp3-tagger***](apps/mp3-tagger.md) | *An Electron app to edit metadata of mp3 files.*..[ *read more* ](apps/mp3-tagger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mp3-tagger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mp3-tagger) | -| | [***mpc-qt***](apps/mpc-qt.md) | *Media Player Classic Qute Theater.*..[ *read more* ](apps/mpc-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mpc-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mpc-qt) | -| | [***mpv***](apps/mpv.md) | *Unofficial, A free, open source, and cross-platform media player, Multiple-choices.*..[ *read more* ](apps/mpv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mpv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mpv) | -| | [***mqtt-explorer***](apps/mqtt-explorer.md) | *Explore your message queues.*..[ *read more* ](apps/mqtt-explorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mqtt-explorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mqtt-explorer) | -| | [***mqttcute***](apps/mqttcute.md) | *An advanced desktop MQTT client for binary protocol development.*..[ *read more* ](apps/mqttcute.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mqttcute) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mqttcute) | -| | [***mqttx***](apps/mqttx.md) | *MQTT 5.0 Desktop, CLI, and WebSocket client tools.*..[ *read more* ](apps/mqttx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mqttx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mqttx) | -| | [***mr.dclutterer***](apps/mr.dclutterer.md) | *Minimal App To Aggregate And Rename Files In Bulk.*..[ *read more* ](apps/mr.dclutterer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mr.dclutterer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mr.dclutterer) | -| | [***mrcode***](apps/mrcode.md) | *An opinionated editor based on VSCodium / VSCode.*..[ *read more* ](apps/mrcode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mrcode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mrcode) | -| | [***mrrss***](apps/mrrss.md) | *A modern, cross-platform, and free AI RSS reader.*..[ *read more* ](apps/mrrss.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mrrss) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mrrss) | -| | [***mrwriter***](apps/mrwriter.md) | *Notetaking and blackboard replacement application. Inspired by Xournal. Written in C++/Qt.*..[ *read more* ](apps/mrwriter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mrwriter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mrwriter) | -| | [***ms-365-electron***](apps/ms-365-electron.md) | *Unofficial Microsoft 365 Desktop Wrapper made with Electron.*..[ *read more* ](apps/ms-365-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ms-365-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ms-365-electron) | -| | [***mtcelledit***](apps/mtcelledit.md) | *Lightweight spreadsheet program.*..[ *read more* ](apps/mtcelledit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mtcelledit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mtcelledit) | -| | [***mudita-center***](apps/mudita-center.md) | *Mudita Center Electron App.*..[ *read more* ](apps/mudita-center.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mudita-center) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mudita-center) | -| | [***mudlet***](apps/mudlet.md) | *Mudlet is a platform for gaming and enhancing game-play primarily with MUDs.*..[ *read more* ](apps/mudlet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mudlet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mudlet) | -| | [***muffon***](apps/muffon.md) | *Music streaming browser,retrieves audio, video and metadata.*..[ *read more* ](apps/muffon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/muffon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/muffon) | -| | [***mullvad-browser***](apps/mullvad-browser.md) | *A Tor-based Web Browser.*..[ *read more* ](apps/mullvad-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mullvad-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mullvad-browser) | -| | [***munt***](apps/munt.md) | *The payment system of the future.*..[ *read more* ](apps/munt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/munt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/munt) | -| | [***mupdf***](apps/mupdf.md) | *Lightweight PDF, XPS, and E-book viewer.*..[ *read more* ](apps/mupdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mupdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mupdf) | -| | [***muse***](apps/muse.md) | *A digital audio workstation with support for both Audio and MIDI.*..[ *read more* ](apps/muse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/muse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/muse) | -| | [***museeks***](apps/museeks.md) | *A simple, clean and cross-platform music player.*..[ *read more* ](apps/museeks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/museeks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/museeks) | -| | [***musescore***](apps/musescore.md) | *An open source and free music notation software.*..[ *read more* ](apps/musescore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/musescore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/musescore) | -| | [***music-assistant***](apps/music-assistant.md) | *The desktop companion app for Music Assistant.*..[ *read more* ](apps/music-assistant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-assistant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-assistant) | -| | [***music-blocks***](apps/music-blocks.md) | *.Exploring Math, Music, and Programming.*..[ *read more* ](apps/music-blocks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-blocks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-blocks) | -| | [***music-kitten***](apps/music-kitten.md) | *Use your own soundtrack in Counter-Strike.*..[ *read more* ](apps/music-kitten.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-kitten) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-kitten) | -| | [***music-player***](apps/music-player.md) | *Desktop Electron app for playing and downloading music.*..[ *read more* ](apps/music-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-player) | -| | [***music-quiz***](apps/music-quiz.md) | *Jepardy like game, guess as many songs as possible.*..[ *read more* ](apps/music-quiz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-quiz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-quiz) | -| | [***musicalypse***](apps/musicalypse.md) | *Audio/Music player and server built with Web technologies.*..[ *read more* ](apps/musicalypse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/musicalypse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/musicalypse) | -| | [***mutool***](apps/mutool.md) | *All purpose tool for dealing with PDF files.*..[ *read more* ](apps/mutool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mutool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mutool) | -| | [***muwire***](apps/muwire.md) | *A file sharing client for I2P.*..[ *read more* ](apps/muwire.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/muwire) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/muwire) | -| | [***my-budget***](apps/my-budget.md) | *Offline cross-platform budgeting solution built with Electron.*..[ *read more* ](apps/my-budget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/my-budget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/my-budget) | -| | [***my-jira***](apps/my-jira.md) | *A lite jira desktop.*..[ *read more* ](apps/my-jira.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/my-jira) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/my-jira) | -| | [***mybelka***](apps/mybelka.md) | *Accounting system written in C++ with QTCore.*..[ *read more* ](apps/mybelka.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mybelka) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mybelka) | -| | [***mycroft-ai***](apps/mycroft-ai.md) | *Qt5 Frontend for Mycroft Ai*..[ *read more* ](apps/mycroft-ai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mycroft-ai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mycroft-ai) | -| | [***mycrypto***](apps/mycrypto.md) | *MyCrypto web and electron app.*..[ *read more* ](apps/mycrypto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mycrypto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mycrypto) | -| | [***mypaint***](apps/mypaint.md) | *Simple drawing and painting program, graphics.*..[ *read more* ](apps/mypaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mypaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mypaint) | -| | [***mystiq***](apps/mystiq.md) | *Qt5/C++ FFmpeg Media Converter.*..[ *read more* ](apps/mystiq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mystiq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mystiq) | -| | [***mytonwallet***](apps/mytonwallet.md) | *Feature-rich web wallet and browser extension for TON Network.*..[ *read more* ](apps/mytonwallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mytonwallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mytonwallet) | -| | [***n3h***](apps/n3h.md) | *Nodejs implementation of holochain networking / p2p backend process.*..[ *read more* ](apps/n3h.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/n3h) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/n3h) | -| | [***naev***](apps/naev.md) | *A 2d action/rpg space game that combines elements from the action.*..[ *read more* ](apps/naev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/naev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/naev) | -| | [***nanokvm-usb***](apps/nanokvm-usb.md) | *Finger-sized 4K USB KVM for Server/SBCs.*..[ *read more* ](apps/nanokvm-usb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nanokvm-usb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nanokvm-usb) | -| | [***nanosaur***](apps/nanosaur.md) | *Pangea Software’s game, adventure of a cybernetic dinosaur.*..[ *read more* ](apps/nanosaur.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nanosaur) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nanosaur) | -| | [***nanosaur2***](apps/nanosaur2.md) | *Pangea Software’s Nanosaur II for modern systems.*..[ *read more* ](apps/nanosaur2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nanosaur2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nanosaur2) | -| | [***nanovault***](apps/nanovault.md) | *Wallet for interacting with Nano.*..[ *read more* ](apps/nanovault.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nanovault) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nanovault) | -| | [***nault-bin***](apps/nault-bin.md) | *Official Nault AppImage client.*..[ *read more* ](apps/nault-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nault-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nault-bin) | -| | [***nautune***](apps/nautune.md) | *Poseidon's Music Player for Jellyfin.*..[ *read more* ](apps/nautune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nautune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nautune) | -| | [***nauz-file-detector***](apps/nauz-file-detector.md) | *Nauz File Detector is a portable linker/compiler/packer identifier utility.*..[ *read more* ](apps/nauz-file-detector.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nauz-file-detector) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nauz-file-detector) | -| | [***nblood***](apps/nblood.md) | *Unofficial, blood port based on EDuke32.*..[ *read more* ](apps/nblood.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nblood) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nblood) | -| | [***ncsa-mosaic***](apps/ncsa-mosaic.md) | *One of the first graphical web browsers.*..[ *read more* ](apps/ncsa-mosaic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ncsa-mosaic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ncsa-mosaic) | -| | [***neanes***](apps/neanes.md) | *A scorewriter for notating Byzantine chant in Byzantine notation.*..[ *read more* ](apps/neanes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neanes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neanes) | -| | [***negpy***](apps/negpy.md) | *Tool for processing film negatives.*..[ *read more* ](apps/negpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/negpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/negpy) | -| | [***neko-project-ii-kai***](apps/neko-project-ii-kai.md) | *Unofficial, a PC-9801 series emulator.*..[ *read more* ](apps/neko-project-ii-kai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neko-project-ii-kai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neko-project-ii-kai) | -| | [***neochat***](apps/neochat.md) | *Unofficial AppImage of NeoChat.*..[ *read more* ](apps/neochat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neochat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neochat) | -| | [***neohtop***](apps/neohtop.md) | *htop on steroids.*..[ *read more* ](apps/neohtop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neohtop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neohtop) | -| | [***neon***](apps/neon.md) | *Light wallet for NEO blockchain.*..[ *read more* ](apps/neon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neon) | -| | [***neovide***](apps/neovide.md) | *No Nonsense Neovim Client in Rust*..[ *read more* ](apps/neovide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neovide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neovide) | -| | [***nepaliunicode***](apps/nepaliunicode.md) | *An Unicode Converter app.*..[ *read more* ](apps/nepaliunicode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nepaliunicode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nepaliunicode) | -| | [***nerimity-desktop***](apps/nerimity-desktop.md) | *Electron desktop app for Nerimity.*..[ *read more* ](apps/nerimity-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nerimity-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nerimity-desktop) | -| | [***nest-desktop***](apps/nest-desktop.md) | *A web-based GUI application for NEST Simulator.*..[ *read more* ](apps/nest-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nest-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nest-desktop) | -| | [***nestopia***](apps/nestopia.md) | *Unofficial, Cross-platform Nestopia NES emulator core with a GUI.*..[ *read more* ](apps/nestopia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nestopia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nestopia) | -| | [***netbeans***](apps/netbeans.md) | *Apache NetBeans installers.*..[ *read more* ](apps/netbeans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/netbeans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/netbeans) | -| | [***netpad***](apps/netpad.md) | *A cross-platform C# editor and playground.*..[ *read more* ](apps/netpad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/netpad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/netpad) | -| | [***netpanzer***](apps/netpanzer.md) | *Online multiplayer tactical warfare game for fast action combat.*..[ *read more* ](apps/netpanzer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/netpanzer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/netpanzer) | -| | [***neverball***](apps/neverball.md) | *Unofficial, tilt the floor to roll a ball through an obstacle course before time runs out.*..[ *read more* ](apps/neverball.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neverball) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neverball) | -| | [***newlogic***](apps/newlogic.md) | *A circuit builder.*..[ *read more* ](apps/newlogic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/newlogic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/newlogic) | -| | [***newsflash***](apps/newsflash.md) | *Unofficial. RSS reader with support for local and web RSS feed.*..[ *read more* ](apps/newsflash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/newsflash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/newsflash) | -| | [***newton-adventure***](apps/newton-adventure.md) | *A 2D game with a twist, player can rotate gravity at 360°.*..[ *read more* ](apps/newton-adventure.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/newton-adventure) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/newton-adventure) | -| | [***nexen***](apps/nexen.md) | *Multi-system emulator (NES, SNES, GB, GBA, PCE, SMS/GG, WS).*..[ *read more* ](apps/nexen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nexen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nexen) | -| | [***nexis***](apps/nexis.md) | *Linux & macOS system optimizer and monitor. Qt6 fork of Stacer with GPU monitoring, dark/light themes, and active maintenance.*..[ *read more* ](apps/nexis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nexis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nexis) | -| | [***nextcloud***](apps/nextcloud.md) | *Client-server software for creating & using file hosting services.*..[ *read more* ](apps/nextcloud.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nextcloud) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nextcloud) | -| | [***nextplayer***](apps/nextplayer.md) | *A blue-ray player, originally named TheNewPlayerFree.*..[ *read more* ](apps/nextplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nextplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nextplayer) | -| | [***nexus-mods***](apps/nexus-mods.md) | *A mod installer, creator and manager for all your popular games.*..[ *read more* ](apps/nexus-mods.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nexus-mods) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nexus-mods) | -| | [***nexus-wallet***](apps/nexus-wallet.md) | *Official interface layers of the Nexus Software Stack.*..[ *read more* ](apps/nexus-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nexus-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nexus-wallet) | -| | [***nfctools***](apps/nfctools.md) | *A library which allows userspace application access to NFC devices.*..[ *read more* ](apps/nfctools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nfctools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nfctools) | -| | [***nfsiise***](apps/nfsiise.md) | *Unofficial, Need For Speed™ II SE, cross-platform wrapper with 3D acceleration and TCP protocol.*..[ *read more* ](apps/nfsiise.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nfsiise) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nfsiise) | -| | [***ngpost***](apps/ngpost.md) | *Usenet poster for binaries developped in C++/QT.*..[ *read more* ](apps/ngpost.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ngpost) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ngpost) | -| | [***ngrev***](apps/ngrev.md) | *Reverse Engineering for Angular.*..[ *read more* ](apps/ngrev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ngrev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ngrev) | -| | [***nheko***](apps/nheko.md) | *Desktop client for Matrix.*..[ *read more* ](apps/nheko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nheko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nheko) | -| | [***niffler***](apps/niffler.md) | *A grin gui wallet.*..[ *read more* ](apps/niffler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/niffler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/niffler) | -| | [***nightpdf***](apps/nightpdf.md) | *Dark Mode PDF Reader built using Electron and PDF.js.*..[ *read more* ](apps/nightpdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nightpdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nightpdf) | -| | [***nightwave-plaza-electron***](apps/nightwave-plaza-electron.md) | *https://plaza.one/ radio station desktop app.*..[ *read more* ](apps/nightwave-plaza-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nightwave-plaza-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nightwave-plaza-electron) | -| | [***nimbus-weather***](apps/nimbus-weather.md) | *A beautiful weather app built using the Dark Sky API.*..[ *read more* ](apps/nimbus-weather.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nimbus-weather) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nimbus-weather) | -| | [***nine***](apps/nine.md) | *Nine. is an open source desktop application for managing rental properties.*..[ *read more* ](apps/nine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nine) | -| | [***nitrogen***](apps/nitrogen.md) | *Unofficial AppImage of Nitrogen.*..[ *read more* ](apps/nitrogen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nitrogen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nitrogen) | -| | [***nitrokey***](apps/nitrokey.md) | *Manage your Nitrokey devices.*..[ *read more* ](apps/nitrokey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nitrokey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nitrokey) | -| | [***nix-bucks***](apps/nix-bucks.md) | *A money tracker. Your income and expenses at your control. Finance.*..[ *read more* ](apps/nix-bucks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nix-bucks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nix-bucks) | -| | [***nixnote***](apps/nixnote.md) | *Use with Evernote to remember everything.*..[ *read more* ](apps/nixnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nixnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nixnote) | -| | [***nmeasimulator***](apps/nmeasimulator.md) | *NMEA sentence generator utility to broadcast via TCP.*..[ *read more* ](apps/nmeasimulator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nmeasimulator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nmeasimulator) | -| | [***no-fwl***](apps/no-fwl.md) | *NoFWL Desktop Application.*..[ *read more* ](apps/no-fwl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/no-fwl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/no-fwl) | -| | [***nodeflow***](apps/nodeflow.md) | *An Editor for creating simple or complex OCR workflows.*..[ *read more* ](apps/nodeflow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nodeflow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nodeflow) | -| | [***nodes***](apps/nodes.md) | *A new way to create with code.*..[ *read more* ](apps/nodes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nodes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nodes) | -| | [***noi***](apps/noi.md) | *🚀 an AI-enhanced, customizable browser designed to streamline your digital experience.*..[ *read more* ](apps/noi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/noi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/noi) | -| | [***nomacs***](apps/nomacs.md) | *Unofficial, nomacs is a free, open source image viewer, which supports multiple platforms.*..[ *read more* ](apps/nomacs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nomacs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nomacs) | -| | [***nootka***](apps/nootka.md) | *Application for learning musical score notation.*..[ *read more* ](apps/nootka.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nootka) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nootka) | -| | [***nora***](apps/nora.md) | *An elegant music player built using Electron and React.*..[ *read more* ](apps/nora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nora) | -| | [***normcap***](apps/normcap.md) | *OCR powered screen-capture tool to capture info instead of images.*..[ *read more* ](apps/normcap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/normcap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/normcap) | -| | [***nosqlbooster***](apps/nosqlbooster.md) | *Essential admin GUI for mongodb.*..[ *read more* ](apps/nosqlbooster.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nosqlbooster) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nosqlbooster) | -| | [***notable***](apps/notable.md) | *The Markdown-based note-taking app that doesn't suck.*..[ *read more* ](apps/notable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notable) | -| | [***notedown***](apps/notedown.md) | *Note taking with react + rust.*..[ *read more* ](apps/notedown.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notedown) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notedown) | -| | [***notekit***](apps/notekit.md) | *A GTK3 hierarchical markdown notetaking app with tablet support.*..[ *read more* ](apps/notekit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notekit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notekit) | -| | [***notemaster***](apps/notemaster.md) | *Note-taking app to help boost productivity.*..[ *read more* ](apps/notemaster.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notemaster) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notemaster) | -| | [***notepad++***](apps/notepad++.md) | *Unofficial Appimage of Notepad++, with WINE prefix.*..[ *read more* ](apps/notepad++.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notepad++) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notepad++) | -| | [***notepadnext***](apps/notepadnext.md) | *A cross-platform, reimplementation of Notepad++.*..[ *read more* ](apps/notepadnext.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notepadnext) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notepadnext) | -| | [***noter***](apps/noter.md) | *Simple serial terminal application.*..[ *read more* ](apps/noter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/noter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/noter) | -| | [***notes***](apps/notes.md) | *Note-taking application, write down your thoughts.*..[ *read more* ](apps/notes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notes) | -| | [***notes-nc***](apps/notes-nc.md) | *Cross-platform Notes desktop application for markdown notes.*..[ *read more* ](apps/notes-nc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notes-nc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notes-nc) | -| | [***noteshrink-qt***](apps/noteshrink-qt.md) | *GUI for noteshrink.py with preview and pre-processing opt.*..[ *read more* ](apps/noteshrink-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/noteshrink-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/noteshrink-qt) | -| | [***notesnook***](apps/notesnook.md) | *Private note-taking app that encrypts everything on client side.*..[ *read more* ](apps/notesnook.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notesnook) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notesnook) | -| | [***novelwriter***](apps/novelwriter.md) | *Plain text editor designed for writing novels, supports a minimal markdown-like syntax for formatting text.*..[ *read more* ](apps/novelwriter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/novelwriter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/novelwriter) | -| | [***nrf-connect***](apps/nrf-connect.md) | *Framework for desktop apps for development kits.*..[ *read more* ](apps/nrf-connect.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nrf-connect) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nrf-connect) | -| | [***nsz***](apps/nsz.md) | *Unofficial, Homebrew compatible NSP/XCI compressor/decompressor.*..[ *read more* ](apps/nsz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nsz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nsz) | -| | [***ntsc-rs***](apps/ntsc-rs.md) | *Free, open-source VHS effect. Standalone application + plugin (After Effects, Premiere, and OpenFX).*..[ *read more* ](apps/ntsc-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ntsc-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ntsc-rs) | -| | [***nuclear***](apps/nuclear.md) | *Streaming music player that finds free music for you.*..[ *read more* ](apps/nuclear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nuclear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nuclear) | -| | [***nuclia***](apps/nuclia.md) | *A low-code API to build an AI multi-language semantic search engine.*..[ *read more* ](apps/nuclia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nuclia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nuclia) | -| | [***nuclino***](apps/nuclino.md) | *Bring knowledge, docs, and projects together in one place.*..[ *read more* ](apps/nuclino.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nuclino) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nuclino) | -| | [***nudelta***](apps/nudelta.md) | *Open source NuPhy Console alternative.*..[ *read more* ](apps/nudelta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nudelta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nudelta) | -| | [***nugget-doom***](apps/nugget-doom.md) | *Nugget Doom is a Doom game source port forked from Woof! with additional features.*..[ *read more* ](apps/nugget-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nugget-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nugget-doom) | -| | [***nugget-doom-enhanced***](apps/nugget-doom-enhanced.md) | *Unofficial, a Doom source port forked from Woof! with additional features.*..[ *read more* ](apps/nugget-doom-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nugget-doom-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nugget-doom-enhanced) | -| | [***numara***](apps/numara.md) | *Simple notepad calculator built on Electron.*..[ *read more* ](apps/numara.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/numara) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/numara) | -| | [***nunchuk***](apps/nunchuk.md) | *Desktop bitcoin wallet with multisig, hardware, nfc and air-gapped key support.*..[ *read more* ](apps/nunchuk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nunchuk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nunchuk) | -| | [***nvim***](apps/nvim.md) | *NeoVim, Vim fork focused on extensibility and usability.*..[ *read more* ](apps/nvim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nvim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nvim) | -| | [***nvim-nightly***](apps/nvim-nightly.md) | *NeoVim, Vim fork, the most recent development build.*..[ *read more* ](apps/nvim-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nvim-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nvim-nightly) | -| | [***nvtop***](apps/nvtop.md) | *GPUs process monitoring for AMD, Intel and NVIDIA.*..[ *read more* ](apps/nvtop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nvtop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nvtop) | -| | [***nx-software-center***](apps/nx-software-center.md) | *A GUI to install and manage AppImages, Nitrux OS.*..[ *read more* ](apps/nx-software-center.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nx-software-center) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nx-software-center) | -| | [***nxengine-evo***](apps/nxengine-evo.md) | *A somewhat upgraded/refactored version of NXEngine.*..[ *read more* ](apps/nxengine-evo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nxengine-evo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nxengine-evo) | -| | [***nxengine-evo-enhanced***](apps/nxengine-evo-enhanced.md) | *Unofficial, a somewhat upgraded/refactored version of NXEngine.*..[ *read more* ](apps/nxengine-evo-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nxengine-evo-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nxengine-evo-enhanced) | -| | [***nxshell***](apps/nxshell.md) | *An easy to use new terminal.*..[ *read more* ](apps/nxshell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nxshell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nxshell) | -| | [***nychess***](apps/nychess.md) | *A python Chess Engine and AI.*..[ *read more* ](apps/nychess.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nychess) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nychess) | -| | [***nym-vpn***](apps/nym-vpn.md) | *Cross-platform open source VPN client built in Rust, with mixnet anonymity and WireGuard speed. Protects metadata, not just IP addresses. Zero-knowledge payments for unlinkable online activities.*..[ *read more* ](apps/nym-vpn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nym-vpn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nym-vpn) | -| | [***nym-wallet***](apps/nym-wallet.md) | *Use the Nym network and take advantage of it.*..[ *read more* ](apps/nym-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nym-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nym-wallet) | -| | [***obliqoro***](apps/obliqoro.md) | *A cross-platform tauri gui where Oblique Strategies meets Pomodoro.*..[ *read more* ](apps/obliqoro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/obliqoro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/obliqoro) | -| | [***oblivion-desktop***](apps/oblivion-desktop.md) | *Unofficial Warp Client, Oblivion provides a secure, optimised internet access.*..[ *read more* ](apps/oblivion-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oblivion-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oblivion-desktop) | -| | [***obs-studio***](apps/obs-studio.md) | *Unofficial. Software for video recording and live streaming.*..[ *read more* ](apps/obs-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/obs-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/obs-studio) | -| | [***obsidian***](apps/obsidian.md) | *A powerful knowledge base, plain text Markdown files.*..[ *read more* ](apps/obsidian.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/obsidian) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/obsidian) | -| | [***obsidianirc***](apps/obsidianirc.md) | *Modern IRC Client for the web, desktop and mobile.*..[ *read more* ](apps/obsidianirc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/obsidianirc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/obsidianirc) | -| | [***ocat***](apps/ocat.md) | *OpenCore Auxiliary Tools, editing config.plist files for Acidanthera.*..[ *read more* ](apps/ocat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ocat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ocat) | -| | [***ocenaudio***](apps/ocenaudio.md) | *Unofficial. Multiplatform Audio Editor.*..[ *read more* ](apps/ocenaudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ocenaudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ocenaudio) | -| | [***ocrmypdf***](apps/ocrmypdf.md) | *Unofficial AppImage of OCRmyPDF.*..[ *read more* ](apps/ocrmypdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ocrmypdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ocrmypdf) | -| | [***ocvvid2fulldome***](apps/ocvvid2fulldome.md) | *Take flat videos, distort them to fit fulldome.*..[ *read more* ](apps/ocvvid2fulldome.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ocvvid2fulldome) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ocvvid2fulldome) | -| | [***ocvwarp***](apps/ocvwarp.md) | *Warping images and videos for planetarium fulldome display.*..[ *read more* ](apps/ocvwarp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ocvwarp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ocvwarp) | -| | [***odamex***](apps/odamex.md) | *Unofficial, Online Multiplayer Doom port with a strong focus on the original gameplay while providing a breadth of enhancements.*..[ *read more* ](apps/odamex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/odamex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/odamex) | -| | [***odicto***](apps/odicto.md) | *An offline English dictionary app for desktop.*..[ *read more* ](apps/odicto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/odicto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/odicto) | -| | [***oh-mymd***](apps/oh-mymd.md) | *A markdown editor,support cloud sync.*..[ *read more* ](apps/oh-mymd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oh-mymd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oh-mymd) | -| | [***okteta***](apps/okteta.md) | *Unofficial. Hex editor for viewing and editing the raw data of files.*..[ *read more* ](apps/okteta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/okteta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/okteta) | -| | [***olive***](apps/olive.md) | *Free open-source non-linear video editor, nightly build.*..[ *read more* ](apps/olive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/olive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/olive) | -| | [***olive-legacy***](apps/olive-legacy.md) | *Free non-linear video editor, version 0.1.*..[ *read more* ](apps/olive-legacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/olive-legacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/olive-legacy) | -| | [***ollama***](apps/ollama.md) | *Get up and running with Llama 3, Mistral, Gemma, and other LLMs.*..[ *read more* ](apps/ollama.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ollama) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ollama) | -| | [***omikuji***](apps/omikuji.md) | *Qt/QML based game launcher for Linux.*..[ *read more* ](apps/omikuji.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omikuji) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omikuji) | -| | [***ommpfritt***](apps/ommpfritt.md) | *Semantic, procedural, non-destructive vector modelling.*..[ *read more* ](apps/ommpfritt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ommpfritt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ommpfritt) | -| | [***omniget***](apps/omniget.md) | *Media downloader from various websites.*..[ *read more* ](apps/omniget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omniget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omniget) | -| | [***omnipull***](apps/omnipull.md) | *Pull Everything. Everywhere. OmniPull is a powerful, cross-platform download manager.*..[ *read more* ](apps/omnipull.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omnipull) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omnipull) | -| | [***omniroute***](apps/omniroute.md) | *an OpenAI-compatible endpoint with smart routing, load balancing, retries, and fallbacks. Add policies, rate limits, caching, and observability for reliable, cost-aware inference.*..[ *read more* ](apps/omniroute.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omniroute) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omniroute) | -| | [***omnispeak***](apps/omnispeak.md) | *Re-implementation of "Commander Keen in Goodbye Galaxy".*..[ *read more* ](apps/omnispeak.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omnispeak) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omnispeak) | -| | [***one-gpt***](apps/one-gpt.md) | *Aggregate ChatGPT official version, Wenxin Yiyan, Poe, chatchat.*..[ *read more* ](apps/one-gpt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/one-gpt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/one-gpt) | -| | [***oneanime***](apps/oneanime.md) | *A clean, ad-free anime viewing app. A third-party client for Anime1 with subtitles and a Material You-compliant interface.*..[ *read more* ](apps/oneanime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oneanime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oneanime) | -| | [***onedrive-gui***](apps/onedrive-gui.md) | *Microsoft OneDrive Client GUI.*..[ *read more* ](apps/onedrive-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onedrive-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onedrive-gui) | -| | [***onekey-wallet***](apps/onekey-wallet.md) | *Open source crypto wallet.*..[ *read more* ](apps/onekey-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onekey-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onekey-wallet) | -| | [***onenote***](apps/onenote.md) | *P3X Onenote Linux.*..[ *read more* ](apps/onenote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onenote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onenote) | -| | [***oneweb***](apps/oneweb.md) | *OneWeb - free, private and secure web browser! POLSKA GUROM.*..[ *read more* ](apps/oneweb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oneweb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oneweb) | -| | [***onionhop***](apps/onionhop.md) | *Privacy-first Desktop app that routes your traffic through Tor - Anonymous browsing made simple.*..[ *read more* ](apps/onionhop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onionhop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onionhop) | -| | [***onlyoffice***](apps/onlyoffice.md) | *Office Suite with full support for MS Windows formats and cloud.*..[ *read more* ](apps/onlyoffice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onlyoffice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onlyoffice) | -| | [***onlyrefs***](apps/onlyrefs.md) | *Organize all of your references, notes, bookmarks and more.*..[ *read more* ](apps/onlyrefs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onlyrefs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onlyrefs) | -| | [***onnx2bnn***](apps/onnx2bnn.md) | *Binary neural networks inference framework for mobile platform.*..[ *read more* ](apps/onnx2bnn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onnx2bnn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onnx2bnn) | -| | [***onnx2daq***](apps/onnx2daq.md) | *Wrapper of NNAPI, "DNNLibrary" is for "daquexian's NNAPI libs.*..[ *read more* ](apps/onnx2daq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onnx2daq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onnx2daq) | -| | [***onshape***](apps/onshape.md) | *Onshape desktop app, web application shell.*..[ *read more* ](apps/onshape.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onshape) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onshape) | -| | [***onthespot***](apps/onthespot.md) | *A GUI music downloader for Apple Music, Bandcamp, Deezer, Qobuz, Spotify, Tidal, and More.*..[ *read more* ](apps/onthespot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onthespot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onthespot) | -| | [***onyx***](apps/onyx.md) | *Decentralized messaging application based on PSS.*..[ *read more* ](apps/onyx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onyx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onyx) | -| | [***opal***](apps/opal.md) | *Plays relaxing music in the background.*..[ *read more* ](apps/opal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opal) | -| | [***open-ai-translator***](apps/open-ai-translator.md) | *Browser extension for translation based on ChatGPT API.*..[ *read more* ](apps/open-ai-translator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-ai-translator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-ai-translator) | -| | [***open-markup-editor***](apps/open-markup-editor.md) | *Pluggable markup editor.*..[ *read more* ](apps/open-markup-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-markup-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-markup-editor) | -| | [***open-pencil***](apps/open-pencil.md) | *AI-native design editor. Open-source Figma alternative.*..[ *read more* ](apps/open-pencil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-pencil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-pencil) | -| | [***open-typer***](apps/open-typer.md) | *A free and open source typing tutor program.*..[ *read more* ](apps/open-typer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-typer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-typer) | -| | [***open-video-downloader***](apps/open-video-downloader.md) | *A cross-platform GUI for youtube-dl made in Electron.*..[ *read more* ](apps/open-video-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-video-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-video-downloader) | -| | [***open-webui***](apps/open-webui.md) | *Your AI, right on your desktop. Open WebUI as a native app. Run models locally or connect to any server. No Docker, no terminal, no setup. Download, launch, chat.*..[ *read more* ](apps/open-webui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-webui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-webui) | -| | [***openaudible***](apps/openaudible.md) | *Download and manage your Audible audiobooks.*..[ *read more* ](apps/openaudible.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openaudible) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openaudible) | -| | [***openblok***](apps/openblok.md) | *A customizable falling block puzzle game like tetris.*..[ *read more* ](apps/openblok.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openblok) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openblok) | -| | [***openboardview***](apps/openboardview.md) | *Unofficial AppImage of Open Board Viewer.*..[ *read more* ](apps/openboardview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openboardview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openboardview) | -| | [***openbor***](apps/openbor.md) | *Ultimate 2D side scrolling engine for beat em ups, shooters...*..[ *read more* ](apps/openbor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openbor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openbor) | -| | [***openclaw***](apps/openclaw.md) | *Unofficial, reimplementation of Captain Claw (1997) platformer.*..[ *read more* ](apps/openclaw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openclaw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openclaw) | -| | [***opencloud***](apps/opencloud.md) | *Desktop application to synchronize files from OpenCloud with your computer.*..[ *read more* ](apps/opencloud.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencloud) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencloud) | -| | [***opencode-cli***](apps/opencode-cli.md) | *Unofficial AppImage of the opencode CLI utility. The open source coding agent.*..[ *read more* ](apps/opencode-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencode-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencode-cli) | -| | [***opencode-desktop***](apps/opencode-desktop.md) | *Desktop application for opencode, the open source coding agent.*..[ *read more* ](apps/opencode-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencode-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencode-desktop) | -| | [***opencode-enhanced***](apps/opencode-enhanced.md) | *Unofficial, improved AppImage of opencode, the open source coding agent.*..[ *read more* ](apps/opencode-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencode-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencode-enhanced) | -| | [***opencomic***](apps/opencomic.md) | *Comic and Manga reader, written with Node.js and using Electron.*..[ *read more* ](apps/opencomic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencomic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencomic) | -| | [***opengothic***](apps/opengothic.md) | *Unofficial AppImage of OpenGothic.*..[ *read more* ](apps/opengothic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opengothic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opengothic) | -| | [***openhv***](apps/openhv.md) | *A mod for OpenRA based on the Hard Vacuum, game.*..[ *read more* ](apps/openhv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openhv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openhv) | -| | [***openjazz***](apps/openjazz.md) | *Unofficial, open-source version of the classic Jazz Jackrabbit™ games.*..[ *read more* ](apps/openjazz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openjazz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openjazz) | -| | [***openlara***](apps/openlara.md) | *Unofficial, classic Tomb Raider open-source engine.*..[ *read more* ](apps/openlara.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openlara) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openlara) | -| | [***openlens***](apps/openlens.md) | *OpenLens Binary Build Repository.*..[ *read more* ](apps/openlens.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openlens) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openlens) | -| | [***openlibextended***](apps/openlibextended.md) | *An Open source app to download and read books from shadow library (Anna’s Archive).*..[ *read more* ](apps/openlibextended.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openlibextended) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openlibextended) | -| | [***openloco***](apps/openloco.md) | *Unofficial, an open source re-implementation of Chris Sawyer's Locomotion.*..[ *read more* ](apps/openloco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openloco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openloco) | -| | [***openmsx***](apps/openmsx.md) | *Unofficial, the MSX emulator that aims for perfection.*..[ *read more* ](apps/openmsx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openmsx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openmsx) | -| | [***openop2***](apps/openop2.md) | *Re-implementation of the game Outpost 2, using the OpenRA engine.*..[ *read more* ](apps/openop2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openop2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openop2) | -| | [***openosrs-launcher***](apps/openosrs-launcher.md) | *Open-source client for Old School RuneScape.*..[ *read more* ](apps/openosrs-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openosrs-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openosrs-launcher) | -| | [***openpilot-workbench***](apps/openpilot-workbench.md) | *Fix problems with EON/Openpilot.*..[ *read more* ](apps/openpilot-workbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openpilot-workbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openpilot-workbench) | -| | [***openra-dune***](apps/openra-dune.md) | *Real-time strategy game engine, MOD Dune 2000.*..[ *read more* ](apps/openra-dune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openra-dune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openra-dune) | -| | [***openra-enhanced***](apps/openra-enhanced.md) | *Unofficial AppImage of OpenRA containing all 3 game modes.*..[ *read more* ](apps/openra-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openra-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openra-enhanced) | -| | [***openra-red-alert***](apps/openra-red-alert.md) | *Real-time strategy game engine, MOD Red Alert.*..[ *read more* ](apps/openra-red-alert.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openra-red-alert) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openra-red-alert) | -| | [***openra-tiberian-dawn***](apps/openra-tiberian-dawn.md) | *Real-time strategy game engine penGL, MOD TD.*..[ *read more* ](apps/openra-tiberian-dawn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openra-tiberian-dawn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openra-tiberian-dawn) | -| | [***openramodsdk***](apps/openramodsdk.md) | *Dev Kit for building your own games using the OpenRA engine.*..[ *read more* ](apps/openramodsdk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openramodsdk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openramodsdk) | -| | [***openrct2***](apps/openrct2.md) | *Re-implementation of RollerCoaster Tycoon 2 (RCT2), expanding the game with new features.*..[ *read more* ](apps/openrct2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openrct2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openrct2) | -| | [***openrct2-enhanced***](apps/openrct2-enhanced.md) | *Unofficial, Re-implementation of RollerCoaster Tycoon 2 (RCT2), expanding the game with new features.*..[ *read more* ](apps/openrct2-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openrct2-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openrct2-enhanced) | -| | [***openrgb***](apps/openrgb.md) | *RGB lighting control that doesn't depend on manufacturer software.*..[ *read more* ](apps/openrgb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openrgb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openrgb) | -| | [***openscad***](apps/openscad.md) | *The Programmers Solid 3D CAD Modeller.*..[ *read more* ](apps/openscad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openscad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openscad) | -| | [***openscreen***](apps/openscreen.md) | *Create stunning screen recordings for free. Open-source, no subscriptions, no watermarks, and free for commercial use. An alternative to Screen Studio.*..[ *read more* ](apps/openscreen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openscreen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openscreen) | -| | [***openshot***](apps/openshot.md) | *A powerful Video Editor.*..[ *read more* ](apps/openshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openshot) | -| | [***openstickies***](apps/openstickies.md) | *Sticky notes for your desktop. Simple, fast, private. Drop files, paste screenshots, set reminders, keep things visible where you work.*..[ *read more* ](apps/openstickies.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openstickies) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openstickies) | -| | [***openstream-music***](apps/openstream-music.md) | *The OpenStream Music source.*..[ *read more* ](apps/openstream-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openstream-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openstream-music) | -| | [***openswe1r***](apps/openswe1r.md) | *Racer.*..[ *read more* ](apps/openswe1r.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openswe1r) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openswe1r) | -| | [***openterface-qt***](apps/openterface-qt.md) | *Openterface Mini-KVM.*..[ *read more* ](apps/openterface-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openterface-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openterface-qt) | -| | [***opentodolist***](apps/opentodolist.md) | *A note and task managing application.*..[ *read more* ](apps/opentodolist.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opentodolist) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opentodolist) | -| | [***opentrons***](apps/opentrons.md) | *Opentrons desktop application.*..[ *read more* ](apps/opentrons.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opentrons) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opentrons) | -| | [***openttd***](apps/openttd.md) | *Unofficial, an open source simulation game based upon Transport Tycoon Deluxe.*..[ *read more* ](apps/openttd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openttd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openttd) | -| | [***opentubex***](apps/opentubex.md) | *A FreeTube fork with extra features for privacy.*..[ *read more* ](apps/opentubex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opentubex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opentubex) | -| | [***opentyrian2000***](apps/opentyrian2000.md) | *Unofficial, an open-source port of the DOS shoot-em-up Tyrian.*..[ *read more* ](apps/opentyrian2000.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opentyrian2000) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opentyrian2000) | -| | [***openxcom***](apps/openxcom.md) | *Enemy Unknown licensed under the GPL and written in C++ / SDL.*..[ *read more* ](apps/openxcom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openxcom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openxcom) | -| | [***openxcom-extended***](apps/openxcom-extended.md) | *OXCE, extended version of openXcom provide better mod support, QoL improvements, new game mechanics, improved and new GUIs.*..[ *read more* ](apps/openxcom-extended.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openxcom-extended) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openxcom-extended) | -| | [***openxray***](apps/openxray.md) | *Unofficial AppImage of OpenXRay.*..[ *read more* ](apps/openxray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openxray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openxray) | -| | [***opera***](apps/opera.md) | *Unofficial. Fast and secure web browser, Stable version.*..[ *read more* ](apps/opera.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opera) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opera) | -| | [***opera-beta***](apps/opera-beta.md) | *Unofficial. Fast and secure web browser, Beta version.*..[ *read more* ](apps/opera-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opera-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opera-beta) | -| | [***opera-dev***](apps/opera-dev.md) | *Unofficial. Fast and secure web browser, Developer version.*..[ *read more* ](apps/opera-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opera-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opera-dev) | -| | [***optiimage***](apps/optiimage.md) | *Unofficial, optimize your images with OptiImage, a useful image compressor that supports PNG, JPEG, WebP and SVG file types.*..[ *read more* ](apps/optiimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/optiimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/optiimage) | -| | [***orange***](apps/orange.md) | *Cross-platform local file search engine.*..[ *read more* ](apps/orange.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/orange) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/orange) | -| | [***orca-note***](apps/orca-note.md) | *A note taking application that is good both for outlining and long-form writing.*..[ *read more* ](apps/orca-note.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/orca-note) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/orca-note) | -| | [***orcaslicer***](apps/orcaslicer.md) | *G-code generator for 3D printers, Stable release.*..[ *read more* ](apps/orcaslicer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/orcaslicer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/orcaslicer) | -| | [***orcaslicer-devel***](apps/orcaslicer-devel.md) | *G-code generator for 3D printers, the most recent development build (nightly, alpha, beta, rc).*..[ *read more* ](apps/orcaslicer-devel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/orcaslicer-devel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/orcaslicer-devel) | -| | [***osrs-tools***](apps/osrs-tools.md) | *Several tools for OSRS.*..[ *read more* ](apps/osrs-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/osrs-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/osrs-tools) | -| | [***ossia-score***](apps/ossia-score.md) | *Sequencer for audio-visual artists for interactive shows.*..[ *read more* ](apps/ossia-score.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ossia-score) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ossia-score) | -| | [***ostara***](apps/ostara.md) | *To monitor and interact with Spring Boot Applications via Actuator.*..[ *read more* ](apps/ostara.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ostara) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ostara) | -| | [***osu***](apps/osu.md) | *A free-to-win rhythm game. Rhythm is just a click away!*..[ *read more* ](apps/osu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/osu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/osu) | -| | [***ottomatic***](apps/ottomatic.md) | *Pangea Software’s Otto Matic, a game of robots.*..[ *read more* ](apps/ottomatic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ottomatic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ottomatic) | -| | [***outer-wilds-mod-manager***](apps/outer-wilds-mod-manager.md) | *The mod manager for the Outer Wilds Mod Loader*..[ *read more* ](apps/outer-wilds-mod-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/outer-wilds-mod-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/outer-wilds-mod-manager) | -| | [***outline-client***](apps/outline-client.md) | *Lean on the Cordova and Electron frameworks.*..[ *read more* ](apps/outline-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/outline-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/outline-client) | -| | [***outline-manager***](apps/outline-manager.md) | *Create and manage access to Outline servers.*..[ *read more* ](apps/outline-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/outline-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/outline-manager) | -| | [***overbind***](apps/overbind.md) | *A utility that allows binding keyboard buttons to virtual Xbox360 controller joystick outputs.*..[ *read more* ](apps/overbind.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/overbind) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/overbind) | -| | [***overlayed***](apps/overlayed.md) | *A modern, open-source, and free voice chat overlay for Discord.*..[ *read more* ](apps/overlayed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/overlayed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/overlayed) | -| | [***oversteer***](apps/oversteer.md) | *Unofficial, Steering Wheel Manager for Linux.*..[ *read more* ](apps/oversteer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oversteer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oversteer) | -| | [***overte***](apps/overte.md) | *Overte open source virtual worlds platform.*..[ *read more* ](apps/overte.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/overte) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/overte) | -| | [***ovideo***](apps/ovideo.md) | *Video Editor.*..[ *read more* ](apps/ovideo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ovideo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ovideo) | -| | [***ow-mod-man***](apps/ow-mod-man.md) | *The mod manager for the Outer Wilds Mod Loader.*..[ *read more* ](apps/ow-mod-man.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ow-mod-man) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ow-mod-man) | -| | [***owallet***](apps/owallet.md) | *A comprehensive Ontology desktop wallet.*..[ *read more* ](apps/owallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/owallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/owallet) | -| | [***owncloud***](apps/owncloud.md) | *Desktop Syncing Client for ownCloud. ownCloud, a Kiteworks Company, offers file sharing and collaboration trusted by 200+ million users worldwide regardless of device or location.*..[ *read more* ](apps/owncloud.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/owncloud) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/owncloud) | -| | [***owte***](apps/owte.md) | *Anime girl dancing on your screen.*..[ *read more* ](apps/owte.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/owte) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/owte) | -| | [***oxen-gui-wallet***](apps/oxen-gui-wallet.md) | *Oxen electron GUI wallet.*..[ *read more* ](apps/oxen-gui-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oxen-gui-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oxen-gui-wallet) | -| | [***p2p-chat***](apps/p2p-chat.md) | *P2P LAN chatting and file sharing tool.*..[ *read more* ](apps/p2p-chat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/p2p-chat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/p2p-chat) | -| | [***p2pderivatives***](apps/p2pderivatives.md) | *Enables users to enter into Discreet Log Contracts.*..[ *read more* ](apps/p2pderivatives.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/p2pderivatives) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/p2pderivatives) | -| | [***p3x-redis-ui***](apps/p3x-redis-ui.md) | *A very functional handy database GUI and works in your pocket.*..[ *read more* ](apps/p3x-redis-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/p3x-redis-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/p3x-redis-ui) | -| | [***packetsender***](apps/packetsender.md) | *Network utility for sending/receiving TCP/UDP/SSL/HTTP.*..[ *read more* ](apps/packetsender.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/packetsender) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/packetsender) | -| | [***packsquash***](apps/packsquash.md) | *A Minecraft Java Edition resource and data pack optimizer.*..[ *read more* ](apps/packsquash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/packsquash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/packsquash) | -| | [***padloc***](apps/padloc.md) | *Electron Wrapper for Padloc app.*..[ *read more* ](apps/padloc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/padloc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/padloc) | -| | [***pageedit***](apps/pageedit.md) | *EPub XHTML Visual Editor.*..[ *read more* ](apps/pageedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pageedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pageedit) | -| | [***painel-web***](apps/painel-web.md) | *Novo SGA panel.*..[ *read more* ](apps/painel-web.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/painel-web) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/painel-web) | -| | [***palemoon***](apps/palemoon.md) | *Unofficial. Pale Moon is a fully-independent web browser built on its own maintained platform and rendering engine (Goanna), focusing on user customization.*..[ *read more* ](apps/palemoon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/palemoon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/palemoon) | -| | [***palemoon-legacy***](apps/palemoon-legacy.md) | *Unofficial. Pale Moon is a fully-independent web browser built on its own maintained platform and rendering engine (Goanna), focusing on user customization. This is the GTK2 implementation.*..[ *read more* ](apps/palemoon-legacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/palemoon-legacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/palemoon-legacy) | -| | [***pandoralauncher***](apps/pandoralauncher.md) | *Pandora is a modern Minecraft launcher that balances ease-of-use with powerful instance management features.*..[ *read more* ](apps/pandoralauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pandoralauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pandoralauncher) | -| | [***pandoralaunchercrack***](apps/pandoralaunchercrack.md) | *Customized version of Pandora, a modern Minecraft launcher that balances ease-of-use with powerful instance management features.*..[ *read more* ](apps/pandoralaunchercrack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pandoralaunchercrack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pandoralaunchercrack) | -| | [***panini***](apps/panini.md) | *Perspective views from panoramic images.*..[ *read more* ](apps/panini.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/panini) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/panini) | -| | [***pano-scrobbler***](apps/pano-scrobbler.md) | *Feature packed cross-platform music tracker for Last.fm, ListenBrainz, Libre.fm, Pleroma and other compatible services.*..[ *read more* ](apps/pano-scrobbler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pano-scrobbler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pano-scrobbler) | -| | [***panwriter***](apps/panwriter.md) | *Markdown editor with pandoc integration.*..[ *read more* ](apps/panwriter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/panwriter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/panwriter) | -| | [***paper***](apps/paper.md) | *A CLI Tool to set a random wallpaper from Unsplash.com.*..[ *read more* ](apps/paper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paper) | -| | [***paper-design***](apps/paper-design.md) | *Paper is a modern and powerful design tool that helps you create, share, and ship your best work. Design incredible, the connected canvas for teams shipping with agents.*..[ *read more* ](apps/paper-design.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paper-design) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paper-design) | -| | [***papercraft***](apps/papercraft.md) | *A tool to unwrap 3D models.*..[ *read more* ](apps/papercraft.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/papercraft) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/papercraft) | -| | [***paperlib***](apps/paperlib.md) | *An open-source academic paper management tool.*..[ *read more* ](apps/paperlib.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paperlib) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paperlib) | -| | [***paperweight***](apps/paperweight.md) | *Paperweight scans your inbox to map your digital footprint, then helps you take back control and delete your data.*..[ *read more* ](apps/paperweight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paperweight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paperweight) | -| | [***parabolic***](apps/parabolic.md) | *Unofficial, Download web video and audio.*..[ *read more* ](apps/parabolic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parabolic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parabolic) | -| | [***parallelcoin***](apps/parallelcoin.md) | *Parallelcoin qt wallet appimage binary.*..[ *read more* ](apps/parallelcoin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parallelcoin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parallelcoin) | -| | [***parchment***](apps/parchment.md) | *A minimal minimal text editor written using web technologies.*..[ *read more* ](apps/parchment.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parchment) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parchment) | -| | [***parity-fether***](apps/parity-fether.md) | *Fether Wallet.*..[ *read more* ](apps/parity-fether.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parity-fether) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parity-fether) | -| | [***parsec***](apps/parsec.md) | *Open source Dropbox-like file sharing with full client encryption.*..[ *read more* ](apps/parsec.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parsec) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parsec) | -| | [***parsec-linux***](apps/parsec-linux.md) | *Parsec game streaming client.*..[ *read more* ](apps/parsec-linux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parsec-linux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parsec-linux) | -| | [***passky***](apps/passky.md) | *Simple and secure password manager.*..[ *read more* ](apps/passky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/passky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/passky) | -| | [***passphraser***](apps/passphraser.md) | *Phrase-based password generator that can use your own list of words.*..[ *read more* ](apps/passphraser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/passphraser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/passphraser) | -| | [***patchbay***](apps/patchbay.md) | *An alt. Secure Scuttlebutt client compatible with Patchwork.*..[ *read more* ](apps/patchbay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/patchbay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/patchbay) | -| | [***patchelf***](apps/patchelf.md) | *Utility to modify the dynamic linker and RPATH of ELF executables.*..[ *read more* ](apps/patchelf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/patchelf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/patchelf) | -| | [***patchwork***](apps/patchwork.md) | *Messaging and sharing app built on top of Secure Scuttlebutt.*..[ *read more* ](apps/patchwork.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/patchwork) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/patchwork) | -| | [***pathephone***](apps/pathephone.md) | *Distributed audio player.*..[ *read more* ](apps/pathephone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pathephone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pathephone) | -| | [***pattypan***](apps/pattypan.md) | *Unofficial AppImage of Pattypan.*..[ *read more* ](apps/pattypan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pattypan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pattypan) | -| | [***pavo***](apps/pavo.md) | *A mini desktop wallpaper application.*..[ *read more* ](apps/pavo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pavo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pavo) | -| | [***pavucontrol-qt***](apps/pavucontrol-qt.md) | *Qt port of pavucontrol Pulseaudio mixer, unofficial AppImage.*..[ *read more* ](apps/pavucontrol-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pavucontrol-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pavucontrol-qt) | -| | [***pb-for-desktop***](apps/pb-for-desktop.md) | *Pushbullet Desktop app.*..[ *read more* ](apps/pb-for-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pb-for-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pb-for-desktop) | -| | [***pcexhumed***](apps/pcexhumed.md) | *Unofficial, port of the PC version of Exhumed based on EDuke32.*..[ *read more* ](apps/pcexhumed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcexhumed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcexhumed) | -| | [***pcloud***](apps/pcloud.md) | *pCloud Drive Client, cloud service, built using electron and node.js.*..[ *read more* ](apps/pcloud.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcloud) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcloud) | -| | [***pcsx-redux-enhanced***](apps/pcsx-redux-enhanced.md) | *Unofficial, modern fork of the pcsxr PlayStation 1 emulator focused on reverse engineering and homebrew development.*..[ *read more* ](apps/pcsx-redux-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcsx-redux-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcsx-redux-enhanced) | -| | [***pcsx2***](apps/pcsx2.md) | *PCSX2 is a free and open-source PlayStation 2 (PS2) emulator, using a combination of MIPS CPU Interpreters, Recompilers and a Virtual Machine which manages hardware states and PS2 system memory. This allows you to play PS2 games on your PC, with many additional features and benefits.*..[ *read more* ](apps/pcsx2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcsx2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcsx2) | -| | [***pcsx2-nightly***](apps/pcsx2-nightly.md) | *PCSX2 is a free and open-source PlayStation 2 (PS2) emulator, using a combination of MIPS CPU Interpreters, Recompilers and a Virtual Machine which manages hardware states and PS2 system memory. This allows you to play PS2 games on your PC, with many additional features and benefits. This is the nightly version.*..[ *read more* ](apps/pcsx2-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcsx2-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcsx2-nightly) | -| | [***pdf-arranger***](apps/pdf-arranger.md) | *Unofficial, a small python-gtk application, which helps the user to merge or split PDF documents and rotate, crop and rearrange their pages.*..[ *read more* ](apps/pdf-arranger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf-arranger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf-arranger) | -| | [***pdf-sync***](apps/pdf-sync.md) | *PDF Reader in JavaScript with Sync.*..[ *read more* ](apps/pdf-sync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf-sync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf-sync) | -| | [***pdf-tricks***](apps/pdf-tricks.md) | *Unofficial, a simple, efficient application for small manipulations in PDF files.*..[ *read more* ](apps/pdf-tricks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf-tricks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf-tricks) | -| | [***pdf2htmlex***](apps/pdf2htmlex.md) | *Convert PDF to HTML without losing text or format.*..[ *read more* ](apps/pdf2htmlex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf2htmlex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf2htmlex) | -| | [***pdf4qt***](apps/pdf4qt.md) | *Open source PDF editor.*..[ *read more* ](apps/pdf4qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf4qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf4qt) | -| | [***pdfcompress***](apps/pdfcompress.md) | *A utility to compress PDF documentas based on Ghostscript and YAD.*..[ *read more* ](apps/pdfcompress.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdfcompress) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdfcompress) | -| | [***pdfquirk***](apps/pdfquirk.md) | *Creating PDFs from images or scanner made easy.*..[ *read more* ](apps/pdfquirk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdfquirk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdfquirk) | -| | [***pdmaner***](apps/pdmaner.md) | *A relational database modeling tool.*..[ *read more* ](apps/pdmaner.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdmaner) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdmaner) | -| | [***pear-desktop***](apps/pear-desktop.md) | *An extension for music player.*..[ *read more* ](apps/pear-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pear-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pear-desktop) | -| | [***pearpass***](apps/pearpass.md) | *An open-source, privacy-first password manager with peer-to-peer syncing and end-to-end encryption.*..[ *read more* ](apps/pearpass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pearpass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pearpass) | -| | [***peazip***](apps/peazip.md) | *Unofficial. PeaZip Appimage for linux 64bits.*..[ *read more* ](apps/peazip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/peazip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/peazip) | -| | [***pelusica***](apps/pelusica.md) | *Action game, control the blue dot with your keyboard/create music.*..[ *read more* ](apps/pelusica.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pelusica) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pelusica) | -| | [***pencil***](apps/pencil.md) | *Pencil2D is an easy, intuitive tool to make 2D hand-drawn animations.*..[ *read more* ](apps/pencil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pencil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pencil) | -| | [***penguins-eggs***](apps/penguins-eggs.md) | *A professional and universal remastering tool for all major distributions.*..[ *read more* ](apps/penguins-eggs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/penguins-eggs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/penguins-eggs) | -| | [***pennywise***](apps/pennywise.md) | *Open any website or media in a floating window.*..[ *read more* ](apps/pennywise.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pennywise) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pennywise) | -| | [***perfect-dark***](apps/perfect-dark.md) | *Unofficial, work in progress port of n64decomp/perfect_dark to modern platforms.*..[ *read more* ](apps/perfect-dark.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/perfect-dark) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/perfect-dark) | -| | [***perl-executing-browser***](apps/perl-executing-browser.md) | *HTML5 user interface for Perl 5 desktop apps.*..[ *read more* ](apps/perl-executing-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/perl-executing-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/perl-executing-browser) | -| | [***permastead***](apps/permastead.md) | *Desktop software for managing a homestead using permaculture design.*..[ *read more* ](apps/permastead.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/permastead) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/permastead) | -| | [***perplexity-ai-app***](apps/perplexity-ai-app.md) | *Perplexity AI Desktop app eases the process to access Perplexity AI.*..[ *read more* ](apps/perplexity-ai-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/perplexity-ai-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/perplexity-ai-app) | -| | [***pext***](apps/pext.md) | *Python-based extendable tool.*..[ *read more* ](apps/pext.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pext) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pext) | -| | [***phantom-satellite***](apps/phantom-satellite.md) | *Unofficial, a fork of Pale Moon that aims to support older/niche platforms, without sacrificing support for more common/modern platforms.*..[ *read more* ](apps/phantom-satellite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/phantom-satellite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/phantom-satellite) | -| | [***phinch***](apps/phinch.md) | *Phinch is a framework for visualizing biological data.*..[ *read more* ](apps/phinch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/phinch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/phinch) | -| | [***phoenix-x-server***](apps/phoenix-x-server.md) | *Unofficial, a new X server, written from scratch in Zig (not a fork). Designed to be a modern alternative to the Xorg server.*..[ *read more* ](apps/phoenix-x-server.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/phoenix-x-server) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/phoenix-x-server) | -| | [***photoflare***](apps/photoflare.md) | *A simple but featureful image editor.*..[ *read more* ](apps/photoflare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photoflare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photoflare) | -| | [***photoflow***](apps/photoflow.md) | *Edit images from digital cameras.*..[ *read more* ](apps/photoflow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photoflow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photoflow) | -| | [***photogimp***](apps/photogimp.md) | *A patched version of GIMP for Adobe Photoshop users.*..[ *read more* ](apps/photogimp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photogimp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photogimp) | -| | [***photoname***](apps/photoname.md) | *Rename photo image files based on EXIF shoot date.*..[ *read more* ](apps/photoname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photoname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photoname) | -| | [***photopealoader***](apps/photopealoader.md) | *Photopea desktop app that loads local files and plugins.*..[ *read more* ](apps/photopealoader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photopealoader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photopealoader) | -| | [***photoqt***](apps/photoqt.md) | *View and manage images.*..[ *read more* ](apps/photoqt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photoqt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photoqt) | -| | [***photoquick***](apps/photoquick.md) | *Light-weight image viewer, resize, collage, filters....*..[ *read more* ](apps/photoquick.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photoquick) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photoquick) | -| | [***phreshplayer***](apps/phreshplayer.md) | *Electron based media player app.*..[ *read more* ](apps/phreshplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/phreshplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/phreshplayer) | -| | [***pia***](apps/pia.md) | *Version Portable Outil PIA.*..[ *read more* ](apps/pia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pia) | -| | [***picacg-qt***](apps/picacg-qt.md) | *PicACG Comic PC Client For Linux.*..[ *read more* ](apps/picacg-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picacg-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picacg-qt) | -| | [***picard-daily***](apps/picard-daily.md) | *Inofficial daily development builds for MusicBrainz Picard.*..[ *read more* ](apps/picard-daily.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picard-daily) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picard-daily) | -| | [***picgo***](apps/picgo.md) | *Easy to upload your pic & copy to write.*..[ *read more* ](apps/picgo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picgo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picgo) | -| | [***piclist***](apps/piclist.md) | *Cloud storage platform management & file upload tool based on PicGo.*..[ *read more* ](apps/piclist.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/piclist) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/piclist) | -| | [***picsimlab***](apps/picsimlab.md) | *PICsimLab - Programmable IC Simulator Laboratory.*..[ *read more* ](apps/picsimlab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picsimlab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picsimlab) | -| | [***picturama***](apps/picturama.md) | *Digital image organizer powered by the web.*..[ *read more* ](apps/picturama.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picturama) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picturama) | -| | [***piglit***](apps/piglit.md) | *Unofficial, a collection of automated tests for OpenGL, Vulkan, and OpenCL implementations.*..[ *read more* ](apps/piglit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/piglit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/piglit) | -| | [***pigs-n-cows***](apps/pigs-n-cows.md) | *A relaxing game for children and adults alike.*..[ *read more* ](apps/pigs-n-cows.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pigs-n-cows) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pigs-n-cows) | -| | [***pika-backup***](apps/pika-backup.md) | *Doing backups the easy way. Plugin your USB drive and let the Pika do the rest for you.*..[ *read more* ](apps/pika-backup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pika-backup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pika-backup) | -| | [***pikapika***](apps/pikapika.md) | *A comic browser.*..[ *read more* ](apps/pikapika.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pikapika) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pikapika) | -| | [***pile***](apps/pile.md) | *App to organize your piled work at one place.*..[ *read more* ](apps/pile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pile) | -| | [***pince***](apps/pince.md) | *Reverse engineering tool for linux games.*..[ *read more* ](apps/pince.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pince) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pince) | -| | [***pingendo***](apps/pingendo.md) | *???*..[ *read more* ](apps/pingendo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pingendo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pingendo) | -| | [***pingnoo***](apps/pingnoo.md) | *An open source network ping analyser.*..[ *read more* ](apps/pingnoo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pingnoo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pingnoo) | -| | [***pingviewer***](apps/pingviewer.md) | *Ping viewer interface.*..[ *read more* ](apps/pingviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pingviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pingviewer) | -| | [***pinokio***](apps/pinokio.md) | *AI Browser.*..[ *read more* ](apps/pinokio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pinokio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pinokio) | -| | [***pinta***](apps/pinta.md) | *Unofficial, Simple GTK Paint Program clone of Paint.Net 3.0.*..[ *read more* ](apps/pinta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pinta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pinta) | -| | [***pixelhopper***](apps/pixelhopper.md) | *Animated GIF player for Linux (X11).*..[ *read more* ](apps/pixelhopper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixelhopper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixelhopper) | -| | [***pixelpulse2***](apps/pixelpulse2.md) | *Pixelpulse2 is a user interface for analog systems exploration.*..[ *read more* ](apps/pixelpulse2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixelpulse2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixelpulse2) | -| | [***pixsrt***](apps/pixsrt.md) | *Pixel sorter.*..[ *read more* ](apps/pixsrt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixsrt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixsrt) | -| | [***pkg2appimage***](apps/pkg2appimage.md) | *Utility to convert .yml recipes to AppDir, see appimagetool.*..[ *read more* ](apps/pkg2appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pkg2appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pkg2appimage) | -| | [***plagpatrol***](apps/plagpatrol.md) | *Detecting documents tampered to bypass plagiarism detectors.*..[ *read more* ](apps/plagpatrol.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plagpatrol) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plagpatrol) | -| | [***planes***](apps/planes.md) | *Variant of battleships game.*..[ *read more* ](apps/planes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/planes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/planes) | -| | [***planet-blupi***](apps/planet-blupi.md) | *A delirious spell-binding game.*..[ *read more* ](apps/planet-blupi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/planet-blupi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/planet-blupi) | -| | [***planify***](apps/planify.md) | *Unofficial AppImage of Planify.*..[ *read more* ](apps/planify.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/planify) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/planify) | -| | [***platinum-md***](apps/platinum-md.md) | *Graphical MiniDisc NetMD conversion and upload.*..[ *read more* ](apps/platinum-md.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platinum-md) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platinum-md) | -| | [***play***](apps/play.md) | *Play! is a PlayStation2 games emulator.*..[ *read more* ](apps/play.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/play) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/play) | -| | [***play-2048***](apps/play-2048.md) | *Another implementation of the 2048 game.*..[ *read more* ](apps/play-2048.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/play-2048) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/play-2048) | -| | [***play-enhanced***](apps/play-enhanced.md) | *Unofficial, a PlayStation2 emulator.*..[ *read more* ](apps/play-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/play-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/play-enhanced) | -| | [***playback***](apps/playback.md) | *Play and manage your cartridges and replay your childhood games.*..[ *read more* ](apps/playback.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playback) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playback) | -| | [***playbox***](apps/playbox.md) | *An audio playback system for the live production industry.*..[ *read more* ](apps/playbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playbox) | -| | [***playerctl***](apps/playerctl.md) | *Unofficial, MPRIS media player command-line controller.*..[ *read more* ](apps/playerctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playerctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playerctl) | -| | [***playme***](apps/playme.md) | *Elegant YouTube Music desktop app.*..[ *read more* ](apps/playme.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playme) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playme) | -| | [***playyourdamnturn***](apps/playyourdamnturn.md) | *Desktop Client to assist with playing your damn turns.*..[ *read more* ](apps/playyourdamnturn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playyourdamnturn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playyourdamnturn) | -| | [***plebchan***](apps/plebchan.md) | *A GUI for plebbit similar to 4chan.*..[ *read more* ](apps/plebchan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plebchan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plebchan) | -| | [***plex***](apps/plex.md) | *The ultimate home theater experience.*..[ *read more* ](apps/plex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plex) | -| | [***plexamp***](apps/plexamp.md) | *The best little audio player on the planet.*..[ *read more* ](apps/plexamp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plexamp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plexamp) | -| | [***plotjuggler***](apps/plotjuggler.md) | *The Time Series Visualization Tool that you deserve.*..[ *read more* ](apps/plotjuggler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plotjuggler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plotjuggler) | -| | [***plotly-orca***](apps/plotly-orca.md) | *CLI generating static images of interactive charts.*..[ *read more* ](apps/plotly-orca.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plotly-orca) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plotly-orca) | -| | [***plover***](apps/plover.md) | *Stenographic input and translation.*..[ *read more* ](apps/plover.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plover) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plover) | -| | [***plume***](apps/plume.md) | *A note-taking app written in Qt C++ and QML.*..[ *read more* ](apps/plume.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plume) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plume) | -| | [***plus42***](apps/plus42.md) | *Unofficial, an enhanced HP-42S calculator simulator.*..[ *read more* ](apps/plus42.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plus42) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plus42) | -| | [***pnpm***](apps/pnpm.md) | *A single file, powered by AppImage.*..[ *read more* ](apps/pnpm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pnpm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pnpm) | -| | [***pocket-browser***](apps/pocket-browser.md) | *A FOSS browser made for privacy and going towards security.*..[ *read more* ](apps/pocket-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pocket-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pocket-browser) | -| | [***pocketcasts-electron***](apps/pocketcasts-electron.md) | *Pocket Casts wrapper with mapped media keys.*..[ *read more* ](apps/pocketcasts-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pocketcasts-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pocketcasts-electron) | -| | [***poddr***](apps/poddr.md) | *Podcast client that uses iTunes RSS feeds and Search API.*..[ *read more* ](apps/poddr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/poddr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/poddr) | -| | [***podium***](apps/podium.md) | *A Markdown-based native presentation tool.*..[ *read more* ](apps/podium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/podium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/podium) | -| | [***podman-desktop-companion***](apps/podman-desktop-companion.md) | *Podman command line interface.*..[ *read more* ](apps/podman-desktop-companion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/podman-desktop-companion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/podman-desktop-companion) | -| | [***poe-ladder***](apps/poe-ladder.md) | *Path of Exile ladder viewer.*..[ *read more* ](apps/poe-ladder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/poe-ladder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/poe-ladder) | -| | [***poedit***](apps/poedit.md) | *Unofficial. Powerful and intuitive translation editor.*..[ *read more* ](apps/poedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/poedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/poedit) | -| | [***pog***](apps/pog.md) | *A Kmk firmware flashing and configuration tool.*..[ *read more* ](apps/pog.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pog) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pog) | -| | [***poi***](apps/poi.md) | *Scalable KanColle browser and tool.*..[ *read more* ](apps/poi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/poi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/poi) | -| | [***pointless***](apps/pointless.md) | *An endless drawing canvas desktop app made with Tauri (Rust) and React.*..[ *read more* ](apps/pointless.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pointless) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pointless) | -| | [***pokeclicker***](apps/pokeclicker.md) | *PokéClicker with quality of life changes.*..[ *read more* ](apps/pokeclicker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokeclicker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokeclicker) | -| | [***pokemmo***](apps/pokemmo.md) | *Unofficial, MMO based on the Pokémon Universe.*..[ *read more* ](apps/pokemmo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokemmo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokemmo) | -| | [***pokete***](apps/pokete.md) | *A terminal based Pokemon like game.*..[ *read more* ](apps/pokete.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokete) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokete) | -| | [***polar***](apps/polar.md) | *One-click Bitcoin Lightning networks for local app development.*..[ *read more* ](apps/polar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/polar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/polar) | -| | [***polkakey***](apps/polkakey.md) | *A secure way to generate Polkadot/Kusama/Edgeware address.*..[ *read more* ](apps/polkakey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/polkakey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/polkakey) | -| | [***polybar***](apps/polybar.md) | *Unofficial AppImage of polybar. A fast easy-to-use status bar.*..[ *read more* ](apps/polybar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/polybar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/polybar) | -| | [***polypane***](apps/polypane.md) | *Browser for web developers.*..[ *read more* ](apps/polypane.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/polypane) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/polypane) | -| | [***pomatez***](apps/pomatez.md) | *Stay Focused. Take a Break.*..[ *read more* ](apps/pomatez.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pomatez) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pomatez) | -| | [***pomodorolm***](apps/pomodorolm.md) | *A simple, good looking and multi-platform pomodoro tracker.*..[ *read more* ](apps/pomodorolm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pomodorolm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pomodorolm) | -| | [***pomotroid***](apps/pomotroid.md) | *Simple and visually-pleasing Pomodoro timer.*..[ *read more* ](apps/pomotroid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pomotroid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pomotroid) | -| | [***popsicle***](apps/popsicle.md) | *Multiple USB File Flasher.*..[ *read more* ](apps/popsicle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/popsicle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/popsicle) | -| | [***portable2appimage***](apps/portable2appimage.md) | *Convert standalone, self-contained portable apps into AppImage packages.*..[ *read more* ](apps/portable2appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/portable2appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/portable2appimage) | -| | [***positron***](apps/positron.md) | *Manage your movie and show watchlist.*..[ *read more* ](apps/positron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/positron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/positron) | -| | [***postal***](apps/postal.md) | *Unofficial, Postal a quirky FPS shooter.*..[ *read more* ](apps/postal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/postal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/postal) | -| | [***postcat***](apps/postcat.md) | *An extensible API tool.*..[ *read more* ](apps/postcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/postcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/postcat) | -| | [***postman***](apps/postman.md) | *API platform for building and using APIs, AppImage.*..[ *read more* ](apps/postman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/postman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/postman) | -| | [***postybirb***](apps/postybirb.md) | *Multimedia crossposter for multimedia websites.*..[ *read more* ](apps/postybirb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/postybirb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/postybirb) | -| | [***postybirb-plus***](apps/postybirb-plus.md) | *Helps artists post art to multiple websites more quickly.*..[ *read more* ](apps/postybirb-plus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/postybirb-plus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/postybirb-plus) | -| | [***pot-desktop***](apps/pot-desktop.md) | *A cross-platform software for text translation and recognition.*..[ *read more* ](apps/pot-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pot-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pot-desktop) | -| | [***potatopresenter***](apps/potatopresenter.md) | *Create presentation slides and exported as PDF.*..[ *read more* ](apps/potatopresenter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/potatopresenter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/potatopresenter) | -| | [***powder-toy***](apps/powder-toy.md) | *AppImage build of The Powder Toy built from source.*..[ *read more* ](apps/powder-toy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/powder-toy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/powder-toy) | -| | [***powerliminals-player***](apps/powerliminals-player.md) | *Powerliminal audios in the background, Audio player.*..[ *read more* ](apps/powerliminals-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/powerliminals-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/powerliminals-player) | -| | [***powershell***](apps/powershell.md) | *Microsoft PowerShell.*..[ *read more* ](apps/powershell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/powershell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/powershell) | -| | [***ppet3***](apps/ppet3.md) | *Put a cute girl on your desk for more fun.*..[ *read more* ](apps/ppet3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ppet3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ppet3) | -| | [***ppsspp***](apps/ppsspp.md) | *PSP emulator written in C++.*..[ *read more* ](apps/ppsspp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ppsspp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ppsspp) | -| | [***pragtical***](apps/pragtical.md) | *The practical and pragmatic code editor.*..[ *read more* ](apps/pragtical.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pragtical) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pragtical) | -| | [***pretty-handy-privacy***](apps/pretty-handy-privacy.md) | *User interface for basic encryption tasks.*..[ *read more* ](apps/pretty-handy-privacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pretty-handy-privacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pretty-handy-privacy) | -| | [***prey2006***](apps/prey2006.md) | *Unofficial, Prey 2006 SDK integrated with Doom 3 GPL release.*..[ *read more* ](apps/prey2006.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prey2006) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prey2006) | -| | [***primate***](apps/primate.md) | *A modern dashboard for Kong Gateway admins.*..[ *read more* ](apps/primate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/primate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/primate) | -| | [***prime-world-editor***](apps/prime-world-editor.md) | *Edit world assets from games by Retro Studios.*..[ *read more* ](apps/prime-world-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prime-world-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prime-world-editor) | -| | [***primehack***](apps/primehack.md) | *Unofficial AppImage of the PrimeHack emulator.*..[ *read more* ](apps/primehack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/primehack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/primehack) | -| | [***principia***](apps/principia.md) | *Open source physics-based sandbox game.*..[ *read more* ](apps/principia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/principia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/principia) | -| | [***printerclient***](apps/printerclient.md) | *A printer client.*..[ *read more* ](apps/printerclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/printerclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/printerclient) | -| | [***printventory***](apps/printventory.md) | *The ultimate tool for managing your 3D printing collection with ease. Sort, tag, and track your models in one place.*..[ *read more* ](apps/printventory.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/printventory) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/printventory) | -| | [***prisma-studio***](apps/prisma-studio.md) | *The easiest way to explore and manipulate your data.*..[ *read more* ](apps/prisma-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prisma-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prisma-studio) | -| | [***prismlauncher***](apps/prismlauncher.md) | *Launcher for Minecraft, manage multiple installations.*..[ *read more* ](apps/prismlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prismlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prismlauncher) | -| | [***prismlauncher-enhanced***](apps/prismlauncher-enhanced.md) | *Unofficial, a custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once (Fork of MultiMC).*..[ *read more* ](apps/prismlauncher-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prismlauncher-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prismlauncher-enhanced) | -| | [***privacy.sexy***](apps/privacy.sexy.md) | *Tool to enforce privacy & security best-practices.*..[ *read more* ](apps/privacy.sexy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/privacy.sexy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/privacy.sexy) | -| | [***privaxy***](apps/privaxy.md) | *The next generation tracker and ads/advertisement blocker.*..[ *read more* ](apps/privaxy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/privaxy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/privaxy) | -| | [***probe-desktop***](apps/probe-desktop.md) | *The next generation OONI Probe desktop app.*..[ *read more* ](apps/probe-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/probe-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/probe-desktop) | -| | [***procdepmonitor***](apps/procdepmonitor.md) | *Obtaining information about loaded process dependencies.*..[ *read more* ](apps/procdepmonitor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/procdepmonitor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/procdepmonitor) | -| | [***procspin***](apps/procspin.md) | *CLI to create a process/progress animation with text.*..[ *read more* ](apps/procspin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/procspin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/procspin) | -| | [***procyon***](apps/procyon.md) | *Note Keeper.*..[ *read more* ](apps/procyon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/procyon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/procyon) | -| | [***programmer-browser***](apps/programmer-browser.md) | *A fast-searching and space-saving browser specially designed for programmers.*..[ *read more* ](apps/programmer-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/programmer-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/programmer-browser) | -| | [***promethium***](apps/promethium.md) | *Extensible and innovative web browser with built-in AdBlock.*..[ *read more* ](apps/promethium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/promethium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/promethium) | -| | [***proofkeeper***](apps/proofkeeper.md) | *Desktop tool to automate proof management.*..[ *read more* ](apps/proofkeeper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/proofkeeper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/proofkeeper) | -| | [***prospect-mail***](apps/prospect-mail.md) | *An Outlook mail desktop client powered by Electron.*..[ *read more* ](apps/prospect-mail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prospect-mail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prospect-mail) | -| | [***protocol_10***](apps/protocol_10.md) | *A mod decompiler for frosty tool suite.*..[ *read more* ](apps/protocol_10.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/protocol_10) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/protocol_10) | -| | [***protoman***](apps/protoman.md) | *A Postman-like API client for protobuf-based messages.*..[ *read more* ](apps/protoman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/protoman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/protoman) | -| | [***protonmail-desktop***](apps/protonmail-desktop.md) | *Unofficial Electron wrapper for ProtonMail.*..[ *read more* ](apps/protonmail-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/protonmail-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/protonmail-desktop) | -| | [***protontricks***](apps/protontricks.md) | *Unofficial AppImage of Protontricks.*..[ *read more* ](apps/protontricks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/protontricks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/protontricks) | -| | [***protonup-qt***](apps/protonup-qt.md) | *Manage Proton-GE/Luxtorpeda for Steam/Wine-GE for Lutris.*..[ *read more* ](apps/protonup-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/protonup-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/protonup-qt) | -| | [***proxy-master***](apps/proxy-master.md) | *Set and reset your proxy settings EVERYWHERE.*..[ *read more* ](apps/proxy-master.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/proxy-master) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/proxy-master) | -| | [***proxyman***](apps/proxyman.md) | *Modern and Delightful HTTP Debugging Proxy.*..[ *read more* ](apps/proxyman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/proxyman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/proxyman) | -| | [***prusa-slicer***](apps/prusa-slicer.md) | *Prusa3d/PrusaSlicer, G-code generator for 3D printers.*..[ *read more* ](apps/prusa-slicer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prusa-slicer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prusa-slicer) | -| | [***psi+***](apps/psi+.md) | *Communicate over the XMPP network.*..[ *read more* ](apps/psi+.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/psi+) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/psi+) | -| | [***pstube***](apps/pstube.md) | *Watch and download videos without ads.*..[ *read more* ](apps/pstube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pstube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pstube) | -| | [***psydoom***](apps/psydoom.md) | *A backport of PSX Doom to PC.*..[ *read more* ](apps/psydoom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/psydoom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/psydoom) | -| | [***ptyxis***](apps/ptyxis.md) | *Unofficial AppImage of Ptyxis terminal.*..[ *read more* ](apps/ptyxis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ptyxis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ptyxis) | -| | [***publii***](apps/publii.md) | *A desktop-based CMS that makes creating static websites fast.*..[ *read more* ](apps/publii.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/publii) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/publii) | -| | [***puddletag***](apps/puddletag.md) | *Unofficial, Powerful, simple, audio tag editor for GNU/Linux.*..[ *read more* ](apps/puddletag.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/puddletag) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/puddletag) | -| | [***pullp***](apps/pullp.md) | *Pull request monitoring app for Github.*..[ *read more* ](apps/pullp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pullp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pullp) | -| | [***pulsar***](apps/pulsar.md) | *A Community-led Hyper-Hackable Text Editor.*..[ *read more* ](apps/pulsar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pulsar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pulsar) | -| | [***pulse***](apps/pulse.md) | *Pulse desktop client.*..[ *read more* ](apps/pulse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pulse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pulse) | -| | [***pulseview***](apps/pulseview.md) | *PulseView (sometimes abbreviated as "PV") is a Qt based logic analyzer, oscilloscope and MSO GUI for sigrok.*..[ *read more* ](apps/pulseview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pulseview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pulseview) | -| | [***punes***](apps/punes.md) | *Qt-based Nintendo Entertaiment System emulator and NSF/NSF2/NSFe Music Player.*..[ *read more* ](apps/punes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/punes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/punes) | -| | [***puppetry***](apps/puppetry.md) | *Solution for non-developers on top of Puppeteer and Jest.*..[ *read more* ](apps/puppetry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/puppetry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/puppetry) | -| | [***puush-qt***](apps/puush-qt.md) | *A GUI frontend for puush on Linux.*..[ *read more* ](apps/puush-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/puush-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/puush-qt) | -| | [***pyappimage***](apps/pyappimage.md) | *Simple appimage builder for Python applications.*..[ *read more* ](apps/pyappimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pyappimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pyappimage) | -| | [***pycharm***](apps/pycharm.md) | *Unofficial, PyCharm-community-edition in AppImage.*..[ *read more* ](apps/pycharm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pycharm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pycharm) | -| | [***pyfa***](apps/pyfa.md) | *EVE Online Fitting Assistant.*..[ *read more* ](apps/pyfa.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pyfa) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pyfa) | -| | [***pyglossary***](apps/pyglossary.md) | *Unofficial, A tool for converting dictionary files aka glossaries.*..[ *read more* ](apps/pyglossary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pyglossary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pyglossary) | -| | [***python***](apps/python.md) | *AppImage distributions of Python, an interactive high-level object-oriented language.*..[ *read more* ](apps/python.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/python) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/python) | -| | [***qaddapp***](apps/qaddapp.md) | *Qt5 Gui app that helps you add AppImages and binary archives into your Desktop environment.*..[ *read more* ](apps/qaddapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qaddapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qaddapp) | -| | [***qarma***](apps/qarma.md) | *Unofficial, Qarma is a tool to create dialog boxes, based on Qt. It's a clone of Zenity.*..[ *read more* ](apps/qarma.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qarma) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qarma) | -| | [***qaterialgallery***](apps/qaterialgallery.md) | *Demonstrate Qaterial library.*..[ *read more* ](apps/qaterialgallery.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qaterialgallery) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qaterialgallery) | -| | [***qaterialhotreload***](apps/qaterialhotreload.md) | *Qml HotReload software.*..[ *read more* ](apps/qaterialhotreload.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qaterialhotreload) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qaterialhotreload) | -| | [***qawl***](apps/qawl.md) | *Read the Holy Qur’ān whenever, wherever, however you like.*..[ *read more* ](apps/qawl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qawl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qawl) | -| | [***qbittorrent***](apps/qbittorrent.md) | *A powerful QT-based Bittorrent Client, official AppImage.*..[ *read more* ](apps/qbittorrent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qbittorrent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qbittorrent) | -| | [***qbittorrent-enhanced***](apps/qbittorrent-enhanced.md) | *Unofficial qBittorrent Enhanced, based on qBittorrent.*..[ *read more* ](apps/qbittorrent-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qbittorrent-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qbittorrent-enhanced) | -| | [***qdiskinfo***](apps/qdiskinfo.md) | *QDiskInfo is a frontend for smartctl. It provides a user experience similar to CrystalDiskInfo.*..[ *read more* ](apps/qdiskinfo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qdiskinfo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qdiskinfo) | -| | [***qdriverstation***](apps/qdriverstation.md) | *Cross-platform clone of the FRC Driver Station.*..[ *read more* ](apps/qdriverstation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qdriverstation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qdriverstation) | -| | [***qelectrotech***](apps/qelectrotech.md) | *Edit electrical diagrams.*..[ *read more* ](apps/qelectrotech.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qelectrotech) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qelectrotech) | -| | [***qemu***](apps/qemu.md) | *Unofficial, a generic and open source machine & userspace emulator and virtualizer, to run a virtual machines.*..[ *read more* ](apps/qemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qemu) | -| | [***qemu-ppc***](apps/qemu-ppc.md) | *Run PowerPC operating systems on 64-bit Intel Linux hosts.*..[ *read more* ](apps/qemu-ppc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qemu-ppc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qemu-ppc) | -| | [***qflipper***](apps/qflipper.md) | *Flipper Zero multitool for pentesters and geeks in a toy-like body.*..[ *read more* ](apps/qflipper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qflipper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qflipper) | -| | [***qfsm***](apps/qfsm.md) | *Qt Finite State Machine Designer.*..[ *read more* ](apps/qfsm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qfsm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qfsm) | -| | [***qgroundcontrol***](apps/qgroundcontrol.md) | *Ground control for unmanned vehicles.*..[ *read more* ](apps/qgroundcontrol.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qgroundcontrol) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qgroundcontrol) | -| | [***qikqr***](apps/qikqr.md) | *Minimal desktop app to create QR codes.*..[ *read more* ](apps/qikqr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qikqr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qikqr) | -| | [***qimgv***](apps/qimgv.md) | *Unofficial, Image viewer. Fast, easy to use. Optional video support.*..[ *read more* ](apps/qimgv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qimgv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qimgv) | -| | [***qmasterpassword***](apps/qmasterpassword.md) | *A password manager based on Qt.*..[ *read more* ](apps/qmasterpassword.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmasterpassword) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmasterpassword) | -| | [***qmediathekview***](apps/qmediathekview.md) | *An alternative front-end to the MediathekView database.*..[ *read more* ](apps/qmediathekview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmediathekview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmediathekview) | -| | [***qmidictl***](apps/qmidictl.md) | *MIDI Remote Controller via UDP/IP Multicast.*..[ *read more* ](apps/qmidictl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmidictl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmidictl) | -| | [***qmidinet***](apps/qmidinet.md) | *MIDI Network Gateway via UDP/IP Multicast.*..[ *read more* ](apps/qmidinet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmidinet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmidinet) | -| | [***qmmp***](apps/qmmp.md) | *Unofficial, Qt-based multimedia player.*..[ *read more* ](apps/qmmp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmmp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmmp) | -| | [***qmplay2***](apps/qmplay2.md) | *Video and audio player whit support of most formats and codecs.*..[ *read more* ](apps/qmplay2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmplay2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmplay2) | -| | [***qmplay2-enhanced***](apps/qmplay2-enhanced.md) | *Unofficial, a video and audio player which can play most formats and codecs.*..[ *read more* ](apps/qmplay2-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmplay2-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmplay2-enhanced) | -| | [***qnapi***](apps/qnapi.md) | *Qt-based, multi-engine, multi-platform subtitle downloader.*..[ *read more* ](apps/qnapi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qnapi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qnapi) | -| | [***qortal-ui***](apps/qortal-ui.md) | *Decentralize the world, data storage, communications.*..[ *read more* ](apps/qortal-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qortal-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qortal-ui) | -| | [***qownnotes***](apps/qownnotes.md) | *Plain text notepad and todo list manager.*..[ *read more* ](apps/qownnotes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qownnotes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qownnotes) | -| | [***qpdf***](apps/qpdf.md) | *CLI tool to perform content-preserving transformations on PDF files.*..[ *read more* ](apps/qpdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qpdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qpdf) | -| | [***qppcad***](apps/qppcad.md) | *Molecule and crystal editor written in c++*..[ *read more* ](apps/qppcad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qppcad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qppcad) | -| | [***qprompt***](apps/qprompt.md) | *Personal teleprompter software for all video creators.*..[ *read more* ](apps/qprompt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qprompt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qprompt) | -| | [***qr-code-generator***](apps/qr-code-generator.md) | *Create custom QR Codes, resize, save them as PNG image.*..[ *read more* ](apps/qr-code-generator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qr-code-generator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qr-code-generator) | -| | [***qsdrswr***](apps/qsdrswr.md) | *Qt SWR analyser using an SDR and soapy_power.*..[ *read more* ](apps/qsdrswr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qsdrswr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qsdrswr) | -| | [***qt-dab***](apps/qt-dab.md) | *Listening to terrestrial Digital Audio Broadcasting.*..[ *read more* ](apps/qt-dab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qt-dab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qt-dab) | -| | [***qt-raster-lines***](apps/qt-raster-lines.md) | *Lines between points using rasterization, DDA, Bresenham.*..[ *read more* ](apps/qt-raster-lines.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qt-raster-lines) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qt-raster-lines) | -| | [***qtads***](apps/qtads.md) | *A cross-platform, multimedia interpreter for TADS adventure games.*..[ *read more* ](apps/qtads.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtads) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtads) | -| | [***qtalarm***](apps/qtalarm.md) | *Alarm clock for Computers.*..[ *read more* ](apps/qtalarm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtalarm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtalarm) | -| | [***qtchan***](apps/qtchan.md) | *4chan browser in qt5.*..[ *read more* ](apps/qtchan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtchan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtchan) | -| | [***qtcreator***](apps/qtcreator.md) | *Unofficial, lightweight, cross-platform integrated development environment.*..[ *read more* ](apps/qtcreator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtcreator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtcreator) | -| | [***qterminal***](apps/qterminal.md) | *Unofficial. A lightweight Qt terminal emulator based on QTermWidget.*..[ *read more* ](apps/qterminal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qterminal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qterminal) | -| | [***qtjsondiff***](apps/qtjsondiff.md) | *Json difference checker widget and viewer.*..[ *read more* ](apps/qtjsondiff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtjsondiff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtjsondiff) | -| | [***qtox***](apps/qtox.md) | *Qt 5 based Tox instant messenger for secure communication.*..[ *read more* ](apps/qtox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtox) | -| | [***qtrfpowermeter***](apps/qtrfpowermeter.md) | *Improve usage of chinese RF power meter RF8000.*..[ *read more* ](apps/qtrfpowermeter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtrfpowermeter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtrfpowermeter) | -| | [***quamodbusclient***](apps/quamodbusclient.md) | *Modbus to OPC UA Gateway*..[ *read more* ](apps/quamodbusclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quamodbusclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quamodbusclient) | -| | [***quantumlauncher-enhanced***](apps/quantumlauncher-enhanced.md) | *Unofficial, a simple, powerful Minecraft launcher.*..[ *read more* ](apps/quantumlauncher-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quantumlauncher-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quantumlauncher-enhanced) | -| | [***quark***](apps/quark.md) | *Sketchbook for rapid prototyping and development of your projects.*..[ *read more* ](apps/quark.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quark) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quark) | -| | [***quark-player***](apps/quark-player.md) | *An Electron based Web Video Services Player.*..[ *read more* ](apps/quark-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quark-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quark-player) | -| | [***quaternion***](apps/quaternion.md) | *A Qt5-based IM client for Matrix.*..[ *read more* ](apps/quaternion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quaternion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quaternion) | -| | [***quba***](apps/quba.md) | *A viewer for electronic invoices.*..[ *read more* ](apps/quba.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quba) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quba) | -| | [***qucs-s***](apps/qucs-s.md) | *An Universal GUI for Circuit Simulators.*..[ *read more* ](apps/qucs-s.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qucs-s) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qucs-s) | -| | [***quentier***](apps/quentier.md) | *Note taking app integrated with Evernote.*..[ *read more* ](apps/quentier.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quentier) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quentier) | -| | [***quick-clone***](apps/quick-clone.md) | *Search through gitlab and clone git-repositories.*..[ *read more* ](apps/quick-clone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quick-clone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quick-clone) | -| | [***quickgui***](apps/quickgui.md) | *An elegant virtual machine manager for the desktop.*..[ *read more* ](apps/quickgui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quickgui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quickgui) | -| | [***quicknote***](apps/quicknote.md) | *QuickNote helps to paste some random text or take some notes right from your taskbar!*..[ *read more* ](apps/quicknote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quicknote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quicknote) | -| | [***quickredis***](apps/quickredis.md) | *A free Redis Desktop manager.*..[ *read more* ](apps/quickredis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quickredis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quickredis) | -| | [***quickshell***](apps/quickshell.md) | *Unofficial AppImage of Quickshell.*..[ *read more* ](apps/quickshell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quickshell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quickshell) | -| | [***quicktwitch***](apps/quicktwitch.md) | *Electron React Redux Boilerplate.*..[ *read more* ](apps/quicktwitch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quicktwitch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quicktwitch) | -| | [***quickviewer***](apps/quickviewer.md) | *A image viewer application for folders/archives.*..[ *read more* ](apps/quickviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quickviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quickviewer) | -| | [***quiet***](apps/quiet.md) | *A private, p2p alternative to Slack and Discord built on Tor & IPFS*..[ *read more* ](apps/quiet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quiet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quiet) | -| | [***quokkagit***](apps/quokkagit.md) | *A small, TortoiseGit inspired git log viewer for linux.*..[ *read more* ](apps/quokkagit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quokkagit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quokkagit) | -| | [***quran-companion***](apps/quran-companion.md) | *Free and open-source desktop Quran reader and player.*..[ *read more* ](apps/quran-companion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quran-companion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quran-companion) | -| | [***qv2ray***](apps/qv2ray.md) | *Cross-platform v2ray GUI Client in Qt.*..[ *read more* ](apps/qv2ray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qv2ray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qv2ray) | -| | [***qview***](apps/qview.md) | *Practical and minimal image viewer.*..[ *read more* ](apps/qview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qview) | -| | [***qxgedit***](apps/qxgedit.md) | *QXGEdit is a Qt GUI XG editor application.*..[ *read more* ](apps/qxgedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qxgedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qxgedit) | -| | [***r2modman***](apps/r2modman.md) | *Mod manager for several Unity games using Thunderstore.*..[ *read more* ](apps/r2modman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/r2modman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/r2modman) | -| | [***r3play***](apps/r3play.md) | *High-value third-party Netease cloud player, chinese.*..[ *read more* ](apps/r3play.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/r3play) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/r3play) | -| | [***rabix-composer***](apps/rabix-composer.md) | *A desktop IDE for working with Common Workflow Language.*..[ *read more* ](apps/rabix-composer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rabix-composer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rabix-composer) | -| | [***radioit***](apps/radioit.md) | *Automation software for Radios.*..[ *read more* ](apps/radioit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/radioit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/radioit) | -| | [***radix-wallet***](apps/radix-wallet.md) | *Radix DLT desktop wallet.*..[ *read more* ](apps/radix-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/radix-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/radix-wallet) | -| | [***rainbow-board***](apps/rainbow-board.md) | *22nd Century Whiteboard App.*..[ *read more* ](apps/rainbow-board.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rainbow-board) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rainbow-board) | -| | [***rambox***](apps/rambox.md) | *Free and Open Source messaging and emailing app.*..[ *read more* ](apps/rambox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rambox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rambox) | -| | [***rapidraw***](apps/rapidraw.md) | *A beautiful, non-destructive, and GPU-accelerated RAW image editor built with performance in mind.*..[ *read more* ](apps/rapidraw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rapidraw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rapidraw) | -| | [***raptor***](apps/raptor.md) | *Unofficial, reversed-engineered source port from Raptor Call Of The Shadows.*..[ *read more* ](apps/raptor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/raptor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/raptor) | -| | [***rare***](apps/rare.md) | *GUI for legendary. An Epic Games Launcher open source alternative.*..[ *read more* ](apps/rare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rare) | -| | [***raspberry-pi-imager***](apps/raspberry-pi-imager.md) | *The home of Raspberry Pi Imager, a user-friendly tool for creating bootable media for Raspberry Pi devices. Desktop edition.*..[ *read more* ](apps/raspberry-pi-imager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/raspberry-pi-imager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/raspberry-pi-imager) | -| | [***raspberry-pi-imager-cli***](apps/raspberry-pi-imager-cli.md) | *The home of Raspberry Pi Imager, a user-friendly tool for creating bootable media for Raspberry Pi devices. CLI edition.*..[ *read more* ](apps/raspberry-pi-imager-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/raspberry-pi-imager-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/raspberry-pi-imager-cli) | -| | [***raspirus***](apps/raspirus.md) | *A user and resources-friendly signatures-based malware scanner.*..[ *read more* ](apps/raspirus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/raspirus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/raspirus) | -| | [***rasterdraw***](apps/rasterdraw.md) | *Simple shape drawn using rasterisation.*..[ *read more* ](apps/rasterdraw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rasterdraw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rasterdraw) | -| | [***rasterview***](apps/rasterview.md) | *Raster Viewer for CUPS-Raster, Apple-Raster and PWG-Raster.*..[ *read more* ](apps/rasterview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rasterview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rasterview) | -| | [***rats-search***](apps/rats-search.md) | *P2P BitTorrent search engine.*..[ *read more* ](apps/rats-search.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rats-search) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rats-search) | -| | [***rawtherapee***](apps/rawtherapee.md) | *An advanced raw photo development program.*..[ *read more* ](apps/rawtherapee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rawtherapee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rawtherapee) | -| | [***rbdl-toolkit***](apps/rbdl-toolkit.md) | *Application for visualizing and working with rbdl models.*..[ *read more* ](apps/rbdl-toolkit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rbdl-toolkit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rbdl-toolkit) | -| | [***rbdoom-3***](apps/rbdoom-3.md) | *Doom 3 BFG Edition source port with updated DX12/Vulkan renderer.*..[ *read more* ](apps/rbdoom-3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rbdoom-3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rbdoom-3) | -| | [***rclip***](apps/rclip.md) | *AI-Powered Semantic Photo Search for the Command Line.*..[ *read more* ](apps/rclip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rclip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rclip) | -| | [***rclone-browser***](apps/rclone-browser.md) | *Simple cross platform GUI for rclone.*..[ *read more* ](apps/rclone-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rclone-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rclone-browser) | -| | [***rclone-gui-manager***](apps/rclone-gui-manager.md) | *A simple, modern graphical user interface for managing rclone remotes for Linux.*..[ *read more* ](apps/rclone-gui-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rclone-gui-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rclone-gui-manager) | -| | [***rclone-ui***](apps/rclone-ui.md) | *The cross-platform desktop GUI for rclone & S3.*..[ *read more* ](apps/rclone-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rclone-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rclone-ui) | -| | [***rcloneview***](apps/rcloneview.md) | *The ultimate GUI for Cloud Data Sync and File Management. Effortlessly browse, organize, transfer files across your cloud storages.*..[ *read more* ](apps/rcloneview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rcloneview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rcloneview) | -| | [***reactotron***](apps/reactotron.md) | *Reactotron desktop mode engage.*..[ *read more* ](apps/reactotron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/reactotron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/reactotron) | -| | [***readest***](apps/readest.md) | *Readest is a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience.*..[ *read more* ](apps/readest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readest) | -| | [***readest-enhanced***](apps/readest-enhanced.md) | *Unofficial, an enhanced version of Readest, a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience.*..[ *read more* ](apps/readest-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readest-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readest-enhanced) | -| | [***real-video-enhancer***](apps/real-video-enhancer.md) | *Interpolate and Upscale easily.*..[ *read more* ](apps/real-video-enhancer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/real-video-enhancer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/real-video-enhancer) | -| | [***realm-studio***](apps/realm-studio.md) | *A tool for everything Realm.*..[ *read more* ](apps/realm-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/realm-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/realm-studio) | -| | [***reco***](apps/reco.md) | *Unofficial, An audio recorder focused on being concise and simple to use*..[ *read more* ](apps/reco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/reco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/reco) | -| | [***recoll***](apps/recoll.md) | *Full-text search for your desktop.*..[ *read more* ](apps/recoll.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/recoll) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/recoll) | -| | [***record-compare***](apps/record-compare.md) | *Record Compare.*..[ *read more* ](apps/record-compare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/record-compare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/record-compare) | -| | [***recordscript***](apps/recordscript.md) | *Cross-platform screen recorder, transcript, subtitle.*..[ *read more* ](apps/recordscript.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/recordscript) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/recordscript) | -| | [***redact***](apps/redact.md) | *Application to mass delete your account posts from different social media.*..[ *read more* ](apps/redact.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/redact) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/redact) | -| | [***redeclipse***](apps/redeclipse.md) | *A great first person 3D arena shooter with online support, game.*..[ *read more* ](apps/redeclipse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/redeclipse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/redeclipse) | -| | [***redis-gui***](apps/redis-gui.md) | *Modern graphical user interface to peek into redis DB.*..[ *read more* ](apps/redis-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/redis-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/redis-gui) | -| | [***redis-viewer***](apps/redis-viewer.md) | *A Redis visualization client tool.*..[ *read more* ](apps/redis-viewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/redis-viewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/redis-viewer) | -| | [***rednukem***](apps/rednukem.md) | *Unofficial, a port of serveral BUILD Engine games based on EDuke32.*..[ *read more* ](apps/rednukem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rednukem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rednukem) | -| | [***redriver2***](apps/redriver2.md) | *Unofficial, Driver 2 Playstation game reverse engineering effort.*..[ *read more* ](apps/redriver2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/redriver2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/redriver2) | -| | [***rehex***](apps/rehex.md) | *Reverse Engineers' Hex Editor.*..[ *read more* ](apps/rehex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rehex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rehex) | -| | [***remind-me-again***](apps/remind-me-again.md) | *Toggleable cron reminders app.*..[ *read more* ](apps/remind-me-again.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/remind-me-again) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/remind-me-again) | -| | [***remnote***](apps/remnote.md) | *Make flashcards in your notes. Cut study time in half. Use evidence-based memory techniques to create flashcards that resurface at the best time for retention.*..[ *read more* ](apps/remnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/remnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/remnote) | -| | [***rendertune***](apps/rendertune.md) | *Electron app that uses ffmpeg to combine audio.+image files into video files.*..[ *read more* ](apps/rendertune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rendertune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rendertune) | -| | [***renpy***](apps/renpy.md) | *Unofficial, visual novel engine Ren'Py.*..[ *read more* ](apps/renpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/renpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/renpy) | -| | [***reor***](apps/reor.md) | *AI note-taking app that runs models locally.*..[ *read more* ](apps/reor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/reor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/reor) | -| | [***repath-studio***](apps/repath-studio.md) | *A cross-platform vector graphics editor.*..[ *read more* ](apps/repath-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/repath-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/repath-studio) | -| | [***repetier-host***](apps/repetier-host.md) | *Repetier-Host is a 3D printing application developed by Hot-World GmbH & Co. KG.*..[ *read more* ](apps/repetier-host.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/repetier-host) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/repetier-host) | -| | [***reqable***](apps/reqable.md) | *Advanced API Debugging Proxy and REST Client.*..[ *read more* ](apps/reqable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/reqable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/reqable) | -| | [***responsively***](apps/responsively.md) | *A browser for developing responsive web apps.*..[ *read more* ](apps/responsively.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/responsively) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/responsively) | -| | [***retroarch***](apps/retroarch.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch) | -| | [***retroarch-nightly***](apps/retroarch-nightly.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch-nightly) | -| | [***retroarch-qt***](apps/retroarch-qt.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch-qt) | -| | [***retroarch-qt-nightly***](apps/retroarch-qt-nightly.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch-qt-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch-qt-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch-qt-nightly) | -| | [***retrom***](apps/retrom.md) | *A centralized game library/collection management service with a focus on emulation.*..[ *read more* ](apps/retrom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retrom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retrom) | -| | [***retroshare***](apps/retroshare.md) | *Securely share files with your friends.*..[ *read more* ](apps/retroshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroshare) | -| | [***retrovibed***](apps/retrovibed.md) | *Personal Digital Archive and Media Player with at cost cloud storage backend.*..[ *read more* ](apps/retrovibed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retrovibed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retrovibed) | -| | [***revolt***](apps/revolt.md) | *Revolt Desktop App.*..[ *read more* ](apps/revolt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/revolt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/revolt) | -| | [***rewaita***](apps/rewaita.md) | *Unofficial, rewaita gives your Adwaita apps a fresh look by tinting them with popular color schemes.*..[ *read more* ](apps/rewaita.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rewaita) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rewaita) | -| | [***rgitui***](apps/rgitui.md) | *A GPU-accelerated desktop Git client built in Rust with GPUI.*..[ *read more* ](apps/rgitui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rgitui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rgitui) | -| | [***rhb***](apps/rhb.md) | *Rapid HTML Builder/Prototyper.*..[ *read more* ](apps/rhb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rhb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rhb) | -| | [***rhythmbox***](apps/rhythmbox.md) | *The popular Audio Player Rhythmbox.*..[ *read more* ](apps/rhythmbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rhythmbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rhythmbox) | -| | [***ricochet***](apps/ricochet.md) | *Anonymous peer-to-peer instant messaging.*..[ *read more* ](apps/ricochet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ricochet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ricochet) | -| | [***ricochlime***](apps/ricochlime.md) | *Satisfying slime shooter.*..[ *read more* ](apps/ricochlime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ricochlime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ricochlime) | -| | [***ridereceipts***](apps/ridereceipts.md) | *Automation app to download and organize your tax invoices.*..[ *read more* ](apps/ridereceipts.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ridereceipts) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ridereceipts) | -| | [***rift***](apps/rift.md) | *All your EVE Online intel in one place.*..[ *read more* ](apps/rift.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rift) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rift) | -| | [***rigelengine***](apps/rigelengine.md) | *Unofficial, modern re-implementation of DOS game Duke Nukem II.*..[ *read more* ](apps/rigelengine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rigelengine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rigelengine) | -| | [***rigs-of-rods***](apps/rigs-of-rods.md) | *Unofficial, an open source vehicle simulator based on soft-body physics.*..[ *read more* ](apps/rigs-of-rods.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rigs-of-rods) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rigs-of-rods) | -| | [***ripcord***](apps/ripcord.md) | *Chat client for group-centric services like Slack and Discord.*..[ *read more* ](apps/ripcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ripcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ripcord) | -| | [***ripes***](apps/ripes.md) | *Graphical processor simulator and assembly editor for the RISC-V ISA.*..[ *read more* ](apps/ripes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ripes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ripes) | -| | [***riseup-vpn***](apps/riseup-vpn.md) | *Unofficial, RiseupVPN is an easy, fast, and secure VPN service from riseup.net.*..[ *read more* ](apps/riseup-vpn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/riseup-vpn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/riseup-vpn) | -| | [***ristretto***](apps/ristretto.md) | *Unofficial. Image viewer by Xfce that can be used to view and scroll through images.*..[ *read more* ](apps/ristretto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ristretto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ristretto) | -| | [***rmg***](apps/rmg.md) | *Rosalie's Mupen GUI.*..[ *read more* ](apps/rmg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rmg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rmg) | -| | [***rmg-enhanced***](apps/rmg-enhanced.md) | *Unofficial AppImage of RMG N64 emulator wtih x86-64-v3 optimizations and smaller size.*..[ *read more* ](apps/rmg-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rmg-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rmg-enhanced) | -| | [***rmw***](apps/rmw.md) | *A safe-remove utility for the command line.*..[ *read more* ](apps/rmw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rmw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rmw) | -| | [***rnote***](apps/rnote.md) | *Unofficial, Rnote is a vector-based drawing app for sketching, handwritten notes and to annotate documents and pictures.*..[ *read more* ](apps/rnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rnote) | -| | [***roborock-control-center***](apps/roborock-control-center.md) | *Control Your Xiaomi Vacuum.*..[ *read more* ](apps/roborock-control-center.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/roborock-control-center) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/roborock-control-center) | -| | [***robrix***](apps/robrix.md) | *A multi-platform Matrix chat client written in Rust, using the Makepad UI toolkit and the Robius app dev framework.*..[ *read more* ](apps/robrix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/robrix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/robrix) | -| | [***rock.so***](apps/rock.so.md) | *Messaging + Tasks.*..[ *read more* ](apps/rock.so.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rock.so) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rock.so) | -| | [***rocksndiamonds***](apps/rocksndiamonds.md) | *Unofficial, an open source arcade style game of Boulder Dash, Emerald Mine, and Sokoban.*..[ *read more* ](apps/rocksndiamonds.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rocksndiamonds) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rocksndiamonds) | -| | [***rofi***](apps/rofi.md) | *Unofficial, A window switcher, runs dialogs, dmenu like, etc.*..[ *read more* ](apps/rofi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rofi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rofi) | -| | [***roller***](apps/roller.md) | *Unofficial, reverse engineering the 1995 game Whiplash/Fatal Racing.*..[ *read more* ](apps/roller.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/roller) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/roller) | -| | [***roloviewer***](apps/roloviewer.md) | *Image slideshow viewer.*..[ *read more* ](apps/roloviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/roloviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/roloviewer) | -| | [***root***](apps/root.md) | *Voice, video, and chat plus powerful apps that help your community organize, grow, and thrive. An alternative to Discord.*..[ *read more* ](apps/root.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/root) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/root) | -| | [***rotki***](apps/rotki.md) | *A portfolio tracking, asset analytics and tax reporting app.*..[ *read more* ](apps/rotki.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rotki) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rotki) | -| | [***rpan-studio***](apps/rpan-studio.md) | *OBS Studio with RPAN integration.*..[ *read more* ](apps/rpan-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rpan-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rpan-studio) | -| | [***rpcs3***](apps/rpcs3.md) | *An open-source PlayStation 3 emulator/debugger written in C++.*..[ *read more* ](apps/rpcs3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rpcs3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rpcs3) | -| | [***rquickshare***](apps/rquickshare.md) | *Rust implementation of NearbyShare/QuickShare from Android.*..[ *read more* ](apps/rquickshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rquickshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rquickshare) | -| | [***rsdkv3***](apps/rsdkv3.md) | *Unofficial, a Full Decompilation of Sonic CD (2011) & Retro Engine v3.*..[ *read more* ](apps/rsdkv3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rsdkv3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rsdkv3) | -| | [***rsdkv4***](apps/rsdkv4.md) | *Unofficial, a complete decompilation of Sonic 1 & Sonic 2 (2013) & Retro Engine v4.*..[ *read more* ](apps/rsdkv4.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rsdkv4) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rsdkv4) | -| | [***rssguard***](apps/rssguard.md) | *Feed reader which supports RSS/ATOM/JSON, no-webengine version.*..[ *read more* ](apps/rssguard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rssguard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rssguard) | -| | [***rtneuron***](apps/rtneuron.md) | *Framework for geometrically detailed neuron simulations.*..[ *read more* ](apps/rtneuron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rtneuron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rtneuron) | -| | [***rubikscube***](apps/rubikscube.md) | *Rubik's cube in OpenGL.*..[ *read more* ](apps/rubikscube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rubikscube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rubikscube) | -| | [***ruffle***](apps/ruffle.md) | *A Flash Player emulator written in Rust.*..[ *read more* ](apps/ruffle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ruffle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ruffle) | -| | [***runanode***](apps/runanode.md) | *Lets run a node.*..[ *read more* ](apps/runanode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/runanode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/runanode) | -| | [***runelite***](apps/runelite.md) | *Open source Old School RuneScape client.*..[ *read more* ](apps/runelite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/runelite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/runelite) | -| | [***runjs***](apps/runjs.md) | *JavaScript playground. Write code with Node.js & browser APIs access.*..[ *read more* ](apps/runjs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/runjs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/runjs) | -| | [***running-dinner-tool***](apps/running-dinner-tool.md) | *Running Dinner Tool.*..[ *read more* ](apps/running-dinner-tool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/running-dinner-tool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/running-dinner-tool) | -| | [***rustdesk***](apps/rustdesk.md) | *Virtual/remote desktop infrastructure, like TeamViewer/Citrix.*..[ *read more* ](apps/rustdesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rustdesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rustdesk) | -| | [***rustdesk-enhanced***](apps/rustdesk-enhanced.md) | *Unofficial, AppImage of remote desktop app which is able to work on any linux distro.*..[ *read more* ](apps/rustdesk-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rustdesk-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rustdesk-enhanced) | -| | [***rusty-rain***](apps/rusty-rain.md) | *CLI, a cross platform matrix rain made with Rust.*..[ *read more* ](apps/rusty-rain.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rusty-rain) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rusty-rain) | -| | [***rvgl***](apps/rvgl.md) | *Unofficial, a cross-platform rewrite/port of Re-Volt.*..[ *read more* ](apps/rvgl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rvgl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rvgl) | -| | [***rx-bin***](apps/rx-bin.md) | *A modern and extensible pixel editor implemented in Rust.*..[ *read more* ](apps/rx-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rx-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rx-bin) | -| | [***ryowallet***](apps/ryowallet.md) | *Modern GUI interface for Ryo Currency.*..[ *read more* ](apps/ryowallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ryowallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ryowallet) | -| | [***ryujinx***](apps/ryujinx.md) | *An open-source Nintendo Switch emulator, originally created by gdkchan, written in C#.*..[ *read more* ](apps/ryujinx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ryujinx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ryujinx) | -| | [***ryujinx-canary***](apps/ryujinx-canary.md) | *An open-source Nintendo Switch emulator, originally created by gdkchan, written in C# (Canary builds).*..[ *read more* ](apps/ryujinx-canary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ryujinx-canary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ryujinx-canary) | -| | [***s3drive***](apps/s3drive.md) | *Convert S3, SFTP, WebDAV or Rclone back-end into your encrypted storage.*..[ *read more* ](apps/s3drive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/s3drive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/s3drive) | -| | [***sabaki***](apps/sabaki.md) | *Modern, elegant, cross-platform Go/Baduk/Weiqi game board.*..[ *read more* ](apps/sabaki.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sabaki) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sabaki) | -| | [***saber***](apps/saber.md) | *A work-in-progress cross-platform libre handwritten notes app.*..[ *read more* ](apps/saber.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/saber) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/saber) | -| | [***sacdextractgui***](apps/sacdextractgui.md) | *Unofficial AppImage of SACDExtractGUI.*..[ *read more* ](apps/sacdextractgui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sacdextractgui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sacdextractgui) | -| | [***safe-multisig***](apps/safe-multisig.md) | *Allowing crypto users manage funds in a safer way.*..[ *read more* ](apps/safe-multisig.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/safe-multisig) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/safe-multisig) | -| | [***safelight***](apps/safelight.md) | *SafeLight is a modular image editing software that combines professional imaging tools with the customizability and modularity of modern IDEs to create a powerful, personalized editing workflow backed by an open-source community.*..[ *read more* ](apps/safelight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/safelight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/safelight) | -| | [***sameboy***](apps/sameboy.md) | *Unofficial AppImage of SameBoy.*..[ *read more* ](apps/sameboy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sameboy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sameboy) | -| | [***samira***](apps/samira.md) | *Steam achievement manager for Linux written with Tauri and Rust.*..[ *read more* ](apps/samira.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/samira) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/samira) | -| | [***samrewritten***](apps/samrewritten.md) | *Steam Achievement Manager For Linux. Rewritten in C++.*..[ *read more* ](apps/samrewritten.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/samrewritten) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/samrewritten) | -| | [***sanicball***](apps/sanicball.md) | *Unofficial, an extraordinarily fast racing game.*..[ *read more* ](apps/sanicball.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sanicball) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sanicball) | -| | [***saphyr***](apps/saphyr.md) | *A C++ like compiler.*..[ *read more* ](apps/saphyr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/saphyr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/saphyr) | -| | [***sas***](apps/sas.md) | *Tool to sandbox AppImages with bubblewrap easily.*..[ *read more* ](apps/sas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sas) | -| | [***sat***](apps/sat.md) | *Simple AppImage thumbnailer in POSIX shell*..[ *read more* ](apps/sat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sat) | -| | [***satisfactory***](apps/satisfactory.md) | *Satisfactory Mod Manager.*..[ *read more* ](apps/satisfactory.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/satisfactory) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/satisfactory) | -| | [***satty***](apps/satty.md) | *Unofficial, a screenshot annotation tool.*..[ *read more* ](apps/satty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/satty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/satty) | -| | [***saucedacity***](apps/saucedacity.md) | *Audio editor based on Audacity focusing on general improvements.*..[ *read more* ](apps/saucedacity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/saucedacity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/saucedacity) | -| | [***savvycan***](apps/savvycan.md) | *Facilitates reverse engineering of canbus captures.*..[ *read more* ](apps/savvycan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/savvycan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/savvycan) | -| | [***sayonara***](apps/sayonara.md) | *Music player and music library admininstration.*..[ *read more* ](apps/sayonara.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sayonara) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sayonara) | -| | [***sayonara-player-enhanced***](apps/sayonara-player-enhanced.md) | *Unofficial, a small, clear and fast audio player.*..[ *read more* ](apps/sayonara-player-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sayonara-player-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sayonara-player-enhanced) | -| | [***sbe***](apps/sbe.md) | *An unofficial Scrapbox desktop app.*..[ *read more* ](apps/sbe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sbe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sbe) | -| | [***sblauncher***](apps/sblauncher.md) | *Minecraft Launcher.*..[ *read more* ](apps/sblauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sblauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sblauncher) | -| | [***sc-controller***](apps/sc-controller.md) | *User-mode driver and GTK3 based GUI for Steam Controller.*..[ *read more* ](apps/sc-controller.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sc-controller) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sc-controller) | -| | [***scatter***](apps/scatter.md) | *Scatter desktop signature server.*..[ *read more* ](apps/scatter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scatter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scatter) | -| | [***scavengers***](apps/scavengers.md) | *Unity Roguelike tutorial, game.*..[ *read more* ](apps/scavengers.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scavengers) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scavengers) | -| | [***schildi-revenge***](apps/schildi-revenge.md) | *Matrix client for desktop written in Kotlin and using the Matrix Rust SDK.*..[ *read more* ](apps/schildi-revenge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/schildi-revenge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/schildi-revenge) | -| | [***school-sections***](apps/school-sections.md) | *This project was generated with Angular CLI v1.7.4.*..[ *read more* ](apps/school-sections.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/school-sections) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/school-sections) | -| | [***scilab***](apps/scilab.md) | *Scientific software package for numerical computations.*..[ *read more* ](apps/scilab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scilab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scilab) | -| | [***sciqlop***](apps/sciqlop.md) | *SciQLop is an ergonomic and efficient application to browse and label in situ plasma measurements from multi-mission satellite data.*..[ *read more* ](apps/sciqlop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sciqlop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sciqlop) | -| | [***scopy***](apps/scopy.md) | *A software oscilloscope and signal analysis toolset.*..[ *read more* ](apps/scopy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scopy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scopy) | -| | [***scraper***](apps/scraper.md) | *Simple desktop scraper app.*..[ *read more* ](apps/scraper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scraper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scraper) | -| | [***scratux***](apps/scratux.md) | *Linux client for scratch programming.*..[ *read more* ](apps/scratux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scratux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scratux) | -| | [***scrcpy***](apps/scrcpy.md) | *Display and control your Android device.*..[ *read more* ](apps/scrcpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scrcpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scrcpy) | -| | [***scrcpygui***](apps/scrcpygui.md) | *A user-friendly GUI for scrcpy with added functionalities.*..[ *read more* ](apps/scrcpygui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scrcpygui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scrcpygui) | -| | [***screenarc***](apps/screenarc.md) | *ScreenArc – Cross-platform screen recorder & editor with automatic cinematic zooms, mouse tracking, and effortless video creation.*..[ *read more* ](apps/screenarc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/screenarc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/screenarc) | -| | [***screencloud***](apps/screencloud.md) | *Capture and share screenshots easily.*..[ *read more* ](apps/screencloud.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/screencloud) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/screencloud) | -| | [***scribus***](apps/scribus.md) | *Powerful desktop publishing software.*..[ *read more* ](apps/scribus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scribus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scribus) | -| | [***scrite***](apps/scrite.md) | *Multilingual Screenplay Writing App from TERIFLIX.*..[ *read more* ](apps/scrite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scrite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scrite) | -| | [***scrum-retroboard***](apps/scrum-retroboard.md) | *Electron application based on React.*..[ *read more* ](apps/scrum-retroboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scrum-retroboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scrum-retroboard) | -| | [***scummvm***](apps/scummvm.md) | *Unofficial, A 'virtual machine' for several classic graphical point-and-click adventure games*..[ *read more* ](apps/scummvm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scummvm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scummvm) | -| | [***scytale***](apps/scytale.md) | *Scytale Desktop Client for Linux.*..[ *read more* ](apps/scytale.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scytale) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scytale) | -| | [***sdlpal***](apps/sdlpal.md) | *SDL-based reimplementation of the classic Chinese-language RPG known as PAL.*..[ *read more* ](apps/sdlpal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sdlpal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sdlpal) | -| | [***sdlpop***](apps/sdlpop.md) | *Unofficial, an open-source port of Prince of Persia.*..[ *read more* ](apps/sdlpop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sdlpop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sdlpop) | -| | [***seafile***](apps/seafile.md) | *Seafile GUI version. Beyond just syncing and sharing files, it lets you add custom file properties and organize your files in different views. With AI-powered automation for generating properties, Seafile offers a smarter, more efficient way to manage your files.*..[ *read more* ](apps/seafile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seafile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seafile) | -| | [***seafile-cli***](apps/seafile-cli.md) | *Seafile CLI version. Beyond just syncing and sharing files, it lets you add custom file properties and organize your files in different views. With AI-powered automation for generating properties, Seafile offers a smarter, more efficient way to manage your files.*..[ *read more* ](apps/seafile-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seafile-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seafile-cli) | -| | [***seanime***](apps/seanime.md) | *Open-source media server with a web interface and desktop app for anime and manga.*..[ *read more* ](apps/seanime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seanime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seanime) | -| | [***secops***](apps/secops.md) | *A Linux Desktop Application for managing security.*..[ *read more* ](apps/secops.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/secops) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/secops) | -| | [***secrets***](apps/secrets.md) | *Unofficial AppImage of the Secrets keepass and 2FA password manager.*..[ *read more* ](apps/secrets.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/secrets) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/secrets) | -| | [***seedit***](apps/seedit.md) | *A GUI for plebbit similar to old.reddit.*..[ *read more* ](apps/seedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seedit) | -| | [***seismic***](apps/seismic.md) | *A taskbar app for displaying USGS magnitude 2.5+ earthquakes from the past day.*..[ *read more* ](apps/seismic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seismic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seismic) | -| | [***selenium-ide***](apps/selenium-ide.md) | *Open Source record and playback test automation for the web.*..[ *read more* ](apps/selenium-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/selenium-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/selenium-ide) | -| | [***sengi***](apps/sengi.md) | *A multi-account desktop client for Mastodon and Pleroma.*..[ *read more* ](apps/sengi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sengi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sengi) | -| | [***senpa-io-client***](apps/senpa-io-client.md) | *Official Client for Senpa.io*..[ *read more* ](apps/senpa-io-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/senpa-io-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/senpa-io-client) | -| | [***sentinel***](apps/sentinel.md) | *An open-source decentralized VPN network application.*..[ *read more* ](apps/sentinel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sentinel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sentinel) | -| | [***ser-player***](apps/ser-player.md) | *Video player for SER files used for astronomy-imaging.*..[ *read more* ](apps/ser-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ser-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ser-player) | -| | [***serial-studio***](apps/serial-studio.md) | *Multi-purpose serial data view program.*..[ *read more* ](apps/serial-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serial-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serial-studio) | -| | [***serialplot***](apps/serialplot.md) | *Small and simple software for plotting data from serial port.*..[ *read more* ](apps/serialplot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serialplot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serialplot) | -| | [***serioussamtfe***](apps/serioussamtfe.md) | *Game engine for Serious Sam Classic, TFE.*..[ *read more* ](apps/serioussamtfe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serioussamtfe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serioussamtfe) | -| | [***serioussamtfe-vk***](apps/serioussamtfe-vk.md) | *Game engine for Serious Sam Classic, Vulkan support, TFE.*..[ *read more* ](apps/serioussamtfe-vk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serioussamtfe-vk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serioussamtfe-vk) | -| | [***serioussamtse***](apps/serioussamtse.md) | *Game engine for Serious Sam Classic, TSE.*..[ *read more* ](apps/serioussamtse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serioussamtse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serioussamtse) | -| | [***serioussamtse-vk***](apps/serioussamtse-vk.md) | *Game engine for Serious Sam Classic, Vulkan support, TSE.*..[ *read more* ](apps/serioussamtse-vk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serioussamtse-vk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serioussamtse-vk) | -| | [***servo***](apps/servo.md) | *Unofficial AppImage builds of the Servo web browser engine.*..[ *read more* ](apps/servo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/servo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/servo) | -| | [***session-desktop***](apps/session-desktop.md) | *Onion routing based messenger.*..[ *read more* ](apps/session-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/session-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/session-desktop) | -| | [***setcolors***](apps/setcolors.md) | *Another way to set colors in Linux shells.*..[ *read more* ](apps/setcolors.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/setcolors) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/setcolors) | -| | [***sevicebus-browser***](apps/sevicebus-browser.md) | *A cross platform tool to manage your Azure Service Bus instances.*..[ *read more* ](apps/sevicebus-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sevicebus-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sevicebus-browser) | -| | [***sf-tube***](apps/sf-tube.md) | *Watch and download videos without ads.*..[ *read more* ](apps/sf-tube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sf-tube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sf-tube) | -| | [***sfbrename-cli***](apps/sfbrename-cli.md) | *Bulk file renamer.*..[ *read more* ](apps/sfbrename-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sfbrename-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sfbrename-cli) | -| | [***sfbrename-gtk***](apps/sfbrename-gtk.md) | *Bulk file renamer.*..[ *read more* ](apps/sfbrename-gtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sfbrename-gtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sfbrename-gtk) | -| | [***sfrt-attendance***](apps/sfrt-attendance.md) | *The attendance tracking program for robotics.*..[ *read more* ](apps/sfrt-attendance.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sfrt-attendance) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sfrt-attendance) | -| | [***shadow-tech***](apps/shadow-tech.md) | *Shadow.tech, cloud computing service.*..[ *read more* ](apps/shadow-tech.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shadow-tech) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shadow-tech) | -| | [***shadowsocks***](apps/shadowsocks.md) | *Shadowsocks GUI client.*..[ *read more* ](apps/shadowsocks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shadowsocks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shadowsocks) | -| | [***shadps4***](apps/shadps4.md) | *An early PlayStation 4 emulator written in C++.*..[ *read more* ](apps/shadps4.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shadps4) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shadps4) | -| | [***shadps4-qtlauncher***](apps/shadps4-qtlauncher.md) | *The official Qt launcher for shadps4 PlayStation 4 emulator.*..[ *read more* ](apps/shadps4-qtlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shadps4-qtlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shadps4-qtlauncher) | -| | [***shannon-calculator***](apps/shannon-calculator.md) | *Self-information content of a message text.*..[ *read more* ](apps/shannon-calculator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shannon-calculator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shannon-calculator) | -| | [***sharemyhost***](apps/sharemyhost.md) | *One click to share your files in your local network.*..[ *read more* ](apps/sharemyhost.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sharemyhost) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sharemyhost) | -| | [***sharp-tune***](apps/sharp-tune.md) | *Music player build upon the node using the electron.*..[ *read more* ](apps/sharp-tune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sharp-tune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sharp-tune) | -| | [***sheepshaver***](apps/sheepshaver.md) | *Classic Macintosh emulator SheepShaver.*..[ *read more* ](apps/sheepshaver.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sheepshaver) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sheepshaver) | -| | [***sheikah***](apps/sheikah.md) | *A Witnet compatible desktop wallet.*..[ *read more* ](apps/sheikah.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sheikah) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sheikah) | -| | [***shockolate***](apps/shockolate.md) | *Unofficial AppImage of Shockolate.*..[ *read more* ](apps/shockolate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shockolate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shockolate) | -| | [***shoopdaloop***](apps/shoopdaloop.md) | *A (live) looping application with DAW elements.*..[ *read more* ](apps/shoopdaloop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shoopdaloop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shoopdaloop) | -| | [***shotcut***](apps/shotcut.md) | *A powerful Video Editor.*..[ *read more* ](apps/shotcut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shotcut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shotcut) | -| | [***shotwell***](apps/shotwell.md) | *Unofficial, a digital photo organizer designed for the GNOME desktop environment.*..[ *read more* ](apps/shotwell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shotwell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shotwell) | -| | [***shutter-encoder***](apps/shutter-encoder.md) | *Professional converter & compression tool designed by video editors.*..[ *read more* ](apps/shutter-encoder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shutter-encoder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shutter-encoder) | -| | [***shuttle***](apps/shuttle.md) | *The fastest access to your favorite applications.*..[ *read more* ](apps/shuttle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shuttle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shuttle) | -| | [***shvspy***](apps/shvspy.md) | *Qt GUI tool for shvbroker administration and browsing.*..[ *read more* ](apps/shvspy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shvspy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shvspy) | -| | [***sideka***](apps/sideka.md) | *Platform Tata Kelola Desa*..[ *read more* ](apps/sideka.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sideka) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sideka) | -| | [***sigdigger***](apps/sigdigger.md) | *Signal analyzer, using Suscan core and Sigutils DSP library.*..[ *read more* ](apps/sigdigger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sigdigger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sigdigger) | -| | [***sigil***](apps/sigil.md) | *Sigil is a multi-platform EPUB ebook editor.*..[ *read more* ](apps/sigil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sigil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sigil) | -| | [***sigma-file-manager***](apps/sigma-file-manager.md) | *A free, open-source, modern file manager.*..[ *read more* ](apps/sigma-file-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sigma-file-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sigma-file-manager) | -| | [***sigmaspectra***](apps/sigmaspectra.md) | *Semi-automated selection and scaling of time series.*..[ *read more* ](apps/sigmaspectra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sigmaspectra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sigmaspectra) | -| | [***signal***](apps/signal.md) | *Unofficial AppImage package for Signal (communication).*..[ *read more* ](apps/signal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/signal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/signal) | -| | [***silex-desktop***](apps/silex-desktop.md) | *This is the official Silex desktop version.*..[ *read more* ](apps/silex-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/silex-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/silex-desktop) | -| | [***siliconsneaker***](apps/siliconsneaker.md) | *View runs from your Garmin brand watch*..[ *read more* ](apps/siliconsneaker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/siliconsneaker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/siliconsneaker) | -| | [***silverkey***](apps/silverkey.md) | *The best Qt Application Ever.*..[ *read more* ](apps/silverkey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/silverkey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/silverkey) | -| | [***simdock***](apps/simdock.md) | *Small dock with pseudo-transparency and good window handling.*..[ *read more* ](apps/simdock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simdock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simdock) | -| | [***simdsp***](apps/simdsp.md) | *DSP Simulator.*..[ *read more* ](apps/simdsp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simdsp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simdsp) | -| | [***simitone***](apps/simitone.md) | *Unofficial, re-implementation of The Sims 1, based off of FreeSO.*..[ *read more* ](apps/simitone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simitone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simitone) | -| | [***simple-s3-uploader***](apps/simple-s3-uploader.md) | *Easily uploading files and sharing links via AWS S3.*..[ *read more* ](apps/simple-s3-uploader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simple-s3-uploader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simple-s3-uploader) | -| | [***simple-scan***](apps/simple-scan.md) | *Make a digital copy of your photos and documents. Simple scanning utility for the GNOME desktop environment.*..[ *read more* ](apps/simple-scan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simple-scan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simple-scan) | -| | [***simple-timer***](apps/simple-timer.md) | *A really simple timer with a customizable logo and heading.*..[ *read more* ](apps/simple-timer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simple-timer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simple-timer) | -| | [***simplechroot***](apps/simplechroot.md) | *Simple command line chroot with ease.*..[ *read more* ](apps/simplechroot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simplechroot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simplechroot) | -| | [***simpleinstabot***](apps/simpleinstabot.md) | *Simple Instagram bot.*..[ *read more* ](apps/simpleinstabot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simpleinstabot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simpleinstabot) | -| | [***simplenote-electron***](apps/simplenote-electron.md) | *Simplenote.*..[ *read more* ](apps/simplenote-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simplenote-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simplenote-electron) | -| | [***simpleos***](apps/simpleos.md) | *EOS Blockchain Interface & Wallet.*..[ *read more* ](apps/simpleos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simpleos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simpleos) | -| | [***simplescreenrecorder***](apps/simplescreenrecorder.md) | *Unofficial. Feature-rich screen recorder supporting X11 & OpenGL.*..[ *read more* ](apps/simplescreenrecorder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simplescreenrecorder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simplescreenrecorder) | -| | [***simplest-file-renamer***](apps/simplest-file-renamer.md) | *Simplest file renamer, rename your files quickly and easily.*..[ *read more* ](apps/simplest-file-renamer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simplest-file-renamer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simplest-file-renamer) | -| | [***simplex-chat***](apps/simplex-chat.md) | *First messaging platform operating without user identifiers.*..[ *read more* ](apps/simplex-chat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simplex-chat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simplex-chat) | -| | [***simplex-solver***](apps/simplex-solver.md) | *Simplex for optimization problems.*..[ *read more* ](apps/simplex-solver.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simplex-solver) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simplex-solver) | -| | [***simtoolkitpro***](apps/simtoolkitpro.md) | *The all-in-one flight simulation EFB.*..[ *read more* ](apps/simtoolkitpro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simtoolkitpro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simtoolkitpro) | -| | [***simutrans***](apps/simutrans.md) | *Unofficial, a freeware and open-source transportation simulator.*..[ *read more* ](apps/simutrans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simutrans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simutrans) | -| | [***singlebox***](apps/singlebox.md) | *AppView template for WebCatalog.*..[ *read more* ](apps/singlebox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/singlebox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/singlebox) | -| | [***sinon***](apps/sinon.md) | *A handy video tool.*..[ *read more* ](apps/sinon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sinon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sinon) | -| | [***sioyek***](apps/sioyek.md) | *PDF viewer designed for reading research papers and technical books.*..[ *read more* ](apps/sioyek.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sioyek) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sioyek) | -| | [***sipgate-softphone***](apps/sipgate-softphone.md) | *The sipgate softphone is developed directly by sipgate.*..[ *read more* ](apps/sipgate-softphone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sipgate-softphone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sipgate-softphone) | -| | [***siyuan***](apps/siyuan.md) | *A local-first personal knowledge management system.*..[ *read more* ](apps/siyuan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/siyuan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/siyuan) | -| | [***skype***](apps/skype.md) | *Unofficial. VoIP-based videoconferencing, voice calls and instant messaging app.*..[ *read more* ](apps/skype.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/skype) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/skype) | -| | [***slack***](apps/slack.md) | *Unofficial AppImage of Slack.*..[ *read more* ](apps/slack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/slack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/slack) | -| | [***slackbackup***](apps/slackbackup.md) | *An app to archive Slack messages.*..[ *read more* ](apps/slackbackup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/slackbackup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/slackbackup) | -| | [***slacktronic***](apps/slacktronic.md) | *Connect your Slack workspace to Arduino.*..[ *read more* ](apps/slacktronic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/slacktronic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/slacktronic) | -| | [***slang-ed***](apps/slang-ed.md) | *An Electron/Ionic app to edit i18n language translations files.*..[ *read more* ](apps/slang-ed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/slang-ed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/slang-ed) | -| | [***sleek***](apps/sleek.md) | *Multiplatform todo.txt manager.*..[ *read more* ](apps/sleek.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sleek) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sleek) | -| | [***slic3r***](apps/slic3r.md) | *Open Source toolpath generator for 3D printers.*..[ *read more* ](apps/slic3r.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/slic3r) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/slic3r) | -| | [***slippi***](apps/slippi.md) | *Slippi Launcher program for browsing and playing replays.*..[ *read more* ](apps/slippi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/slippi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/slippi) | -| | [***slogidex***](apps/slogidex.md) | *Task management and automation tool.*..[ *read more* ](apps/slogidex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/slogidex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/slogidex) | -| | [***smallbasic***](apps/smallbasic.md) | *A fast and easy to learn BASIC language interpreter.*..[ *read more* ](apps/smallbasic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smallbasic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smallbasic) | -| | [***smartservogui***](apps/smartservogui.md) | *Scan for servo devices easily view.*..[ *read more* ](apps/smartservogui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smartservogui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smartservogui) | -| | [***smath-studio***](apps/smath-studio.md) | *Tiny, but powerful mathematical program with WYSIWYG editor.*..[ *read more* ](apps/smath-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smath-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smath-studio) | -| | [***smf-dsp***](apps/smf-dsp.md) | *Standard MIDI file player.*..[ *read more* ](apps/smf-dsp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smf-dsp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smf-dsp) | -| | [***smplayer***](apps/smplayer.md) | *Media Player with built-in codecs for all audio and video formats.*..[ *read more* ](apps/smplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smplayer) | -| | [***smuview***](apps/smuview.md) | *A Qt based source measure unit GUI for sigrok.*..[ *read more* ](apps/smuview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smuview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smuview) | -| | [***snake-js***](apps/snake-js.md) | *Canvas/JavaScript based Snake Game with support for controllers.*..[ *read more* ](apps/snake-js.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snake-js) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snake-js) | -| | [***snapclear***](apps/snapclear.md) | *Remove Image Background with AI for Free Offline.*..[ *read more* ](apps/snapclear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snapclear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snapclear) | -| | [***snapmaker-orca***](apps/snapmaker-orca.md) | *G-code generator for 3D printers (Bambu, Prusa, Voron, VzBot, RatRig, Creality...).*..[ *read more* ](apps/snapmaker-orca.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snapmaker-orca) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snapmaker-orca) | -| | [***snapshot-slider***](apps/snapshot-slider.md) | *Present/print/email Snapshots of modern mathematics.*..[ *read more* ](apps/snapshot-slider.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snapshot-slider) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snapshot-slider) | -| | [***snes9x***](apps/snes9x.md) | *Snes9x - Portable Super Nintendo Entertainment System TM emulator.*..[ *read more* ](apps/snes9x.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snes9x) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snes9x) | -| | [***snes9x-enhanced***](apps/snes9x-enhanced.md) | *Unofficial, Snes9x - Portable Super Nintendo Entertainment System TM emulator.*..[ *read more* ](apps/snes9x-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snes9x-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snes9x-enhanced) | -| | [***sniffnet***](apps/sniffnet.md) | *Sniffnet is a network monitoring tool to help you easily keep track of your Internet traffic. Whether you want to gather statistics, you’re curious to see who you are exchanging data with, or you need to inspect more in depth what's going on in your network, this app will get you covered.*..[ *read more* ](apps/sniffnet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sniffnet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sniffnet) | -| | [***snippetstore***](apps/snippetstore.md) | *A snippet management app for developers.*..[ *read more* ](apps/snippetstore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snippetstore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snippetstore) | -| | [***snomcontrol***](apps/snomcontrol.md) | *An application to control snom D3xx phones from the desktop.*..[ *read more* ](apps/snomcontrol.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snomcontrol) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snomcontrol) | -| | [***snowball***](apps/snowball.md) | *Find and filter literature, fast.*..[ *read more* ](apps/snowball.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snowball) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snowball) | -| | [***snowboardkids2-recomp***](apps/snowboardkids2-recomp.md) | *Unofficial AppImage of game Snowboard Kids 2 Recompilation.*..[ *read more* ](apps/snowboardkids2-recomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snowboardkids2-recomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snowboardkids2-recomp) | -| | [***soapy-sdr***](apps/soapy-sdr.md) | *I/Q recorder and processor using SoapySDR as backend.*..[ *read more* ](apps/soapy-sdr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soapy-sdr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soapy-sdr) | -| | [***socnetv***](apps/socnetv.md) | *Social Network Analysis and Visualization software.*..[ *read more* ](apps/socnetv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/socnetv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/socnetv) | -| | [***software-challenge-gui***](apps/software-challenge-gui.md) | *GUI für die Software-Challenge.*..[ *read more* ](apps/software-challenge-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/software-challenge-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/software-challenge-gui) | -| | [***soh-enhanced***](apps/soh-enhanced.md) | *Unofficial, Ship of Harkinian.*..[ *read more* ](apps/soh-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soh-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soh-enhanced) | -| | [***soil-editor***](apps/soil-editor.md) | *A tool to edit the soil properties, CRITERIA1D.*..[ *read more* ](apps/soil-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soil-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soil-editor) | -| | [***solaar***](apps/solaar.md) | *Unofficial AppImage of solaar.*..[ *read more* ](apps/solaar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/solaar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/solaar) | -| | [***solars***](apps/solars.md) | *Visualize the planets of our solar system.*..[ *read more* ](apps/solars.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/solars) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/solars) | -| | [***solarwallet***](apps/solarwallet.md) | *Stellar wallet. Secure and user-friendly.*..[ *read more* ](apps/solarwallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/solarwallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/solarwallet) | -| | [***songrec***](apps/songrec.md) | *Unofficial, an open-source Shazam client for Linux.*..[ *read more* ](apps/songrec.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/songrec) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/songrec) | -| | [***sonic-3-air***](apps/sonic-3-air.md) | *Unofficial, Source and data to build Sonic 3 A.I.R. (Angel Island Revisited) and the Oxygen Engine.*..[ *read more* ](apps/sonic-3-air.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sonic-3-air) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sonic-3-air) | -| | [***sonic-mania-decompilation***](apps/sonic-mania-decompilation.md) | *Unofficial, a complete decompilation of Sonic Mania (2017).*..[ *read more* ](apps/sonic-mania-decompilation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sonic-mania-decompilation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sonic-mania-decompilation) | -| | [***sonicvisualiser***](apps/sonicvisualiser.md) | *Viewing and analysing the contents of music audio files.*..[ *read more* ](apps/sonicvisualiser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sonicvisualiser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sonicvisualiser) | -| | [***sonixd***](apps/sonixd.md) | *A full-featured Subsonic/Jellyfin compatible desktop music player.*..[ *read more* ](apps/sonixd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sonixd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sonixd) | -| | [***sonos-controller***](apps/sonos-controller.md) | *An Electron based linux app for controlling your sonos system.*..[ *read more* ](apps/sonos-controller.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sonos-controller) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sonos-controller) | -| | [***sonusmix***](apps/sonusmix.md) | *Next-gen Pipewire audio routing tool.*..[ *read more* ](apps/sonusmix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sonusmix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sonusmix) | -| | [***sound-space-plus***](apps/sound-space-plus.md) | *Unofficial AppImage of sound-space-plus, Rhythm-based aim game.*..[ *read more* ](apps/sound-space-plus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sound-space-plus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sound-space-plus) | -| | [***soundcloud-rpc***](apps/soundcloud-rpc.md) | *A SoundCloud client with Discord Rich Presence and AdBlock.*..[ *read more* ](apps/soundcloud-rpc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soundcloud-rpc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soundcloud-rpc) | -| | [***sourcetrail***](apps/sourcetrail.md) | *Source explorer to get you productive on unfamiliar source code.*..[ *read more* ](apps/sourcetrail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sourcetrail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sourcetrail) | -| | [***sozi***](apps/sozi.md) | *A "zooming" presentation editor.*..[ *read more* ](apps/sozi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sozi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sozi) | -| | [***spacebar***](apps/spacebar.md) | *Themeable and extendable discord-compatible native Spacebar client.*..[ *read more* ](apps/spacebar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spacebar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spacebar) | -| | [***spacebar-debug***](apps/spacebar-debug.md) | *Extendable discord-compatible native Spacebar client, debug.*..[ *read more* ](apps/spacebar-debug.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spacebar-debug) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spacebar-debug) | -| | [***spacecadet***](apps/spacecadet.md) | *Unofficial. Reverse engineered port of 3D Pinball for Windows XP Space Cadet.*..[ *read more* ](apps/spacecadet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spacecadet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spacecadet) | -| | [***spacewars***](apps/spacewars.md) | *A re-imagining of the classic game Spacewar using Amethyst engine.*..[ *read more* ](apps/spacewars.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spacewars) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spacewars) | -| | [***spaghettikart-enhanced***](apps/spaghettikart-enhanced.md) | *Unofficial, Mario Kart 64 PC game Port.*..[ *read more* ](apps/spaghettikart-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spaghettikart-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spaghettikart-enhanced) | -| | [***spark-wallet***](apps/spark-wallet.md) | *A wallet GUI for c-lightning, accessible over web/mobile/pc.*..[ *read more* ](apps/spark-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spark-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spark-wallet) | -| | [***speak-to-ai***](apps/speak-to-ai.md) | *Speak to AI - native Linux voice-to-text app.*..[ *read more* ](apps/speak-to-ai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/speak-to-ai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/speak-to-ai) | -| | [***speaky-miniplayer***](apps/speaky-miniplayer.md) | *A miniplayer with a synthetic radio speaker.*..[ *read more* ](apps/speaky-miniplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/speaky-miniplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/speaky-miniplayer) | -| | [***speed-dreams***](apps/speed-dreams.md) | *A Torcs fork, 3d motorsport simulation and race cars game.*..[ *read more* ](apps/speed-dreams.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/speed-dreams) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/speed-dreams) | -| | [***speedcrunch***](apps/speedcrunch.md) | *Unofficial, a high-precision scientific calculator featuring a fast, keyboard-driven user interface.*..[ *read more* ](apps/speedcrunch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/speedcrunch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/speedcrunch) | -| | [***speedyloader***](apps/speedyloader.md) | *Speeduino universal firmware loader.*..[ *read more* ](apps/speedyloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/speedyloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/speedyloader) | -| | [***speek***](apps/speek.md) | *Privacy focused messenger.*..[ *read more* ](apps/speek.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/speek) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/speek) | -| | [***spek***](apps/spek.md) | *Unofficial AppImage of Spek.*..[ *read more* ](apps/spek.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spek) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spek) | -| | [***sphia***](apps/sphia.md) | *A Proxy Handling Intuitive Application.*..[ *read more* ](apps/sphia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sphia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sphia) | -| | [***spicy-launcher***](apps/spicy-launcher.md) | *Cross-platform launcher for Spicy Lobster games.*..[ *read more* ](apps/spicy-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spicy-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spicy-launcher) | -| | [***spivak***](apps/spivak.md) | *Karaoke player based on GStreamer and Qt5.*..[ *read more* ](apps/spivak.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spivak) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spivak) | -| | [***splayer***](apps/splayer.md) | *A simple music player that supports word-by-word lyrics, song downloads, comment section display, music cloud storage and playlist management, music spectrum analysis, and basic mobile adaptation. NetEase Cloud Music.*..[ *read more* ](apps/splayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/splayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/splayer) | -| | [***spm***](apps/spm.md) | *A simple CLI package manager written in bash mainly for AppImages.*..[ *read more* ](apps/spm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spm) | -| | [***spmp***](apps/spmp.md) | *A YouTube Music client with a focus on customisation of colours and song metadata.*..[ *read more* ](apps/spmp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spmp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spmp) | -| | [***sponge-hash-aes256***](apps/sponge-hash-aes256.md) | *A sponge-based secure hash function that uses AES-256 as its internal PRF.*..[ *read more* ](apps/sponge-hash-aes256.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sponge-hash-aes256) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sponge-hash-aes256) | -| | [***spotify***](apps/spotify.md) | *Unofficial. A proprietary music streaming service.*..[ *read more* ](apps/spotify.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify) | -| | [***spotify-candidate***](apps/spotify-candidate.md) | *Unofficial. A proprietary music streaming service.*..[ *read more* ](apps/spotify-candidate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-candidate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-candidate) | -| | [***spotify-edge***](apps/spotify-edge.md) | *Unofficial. A proprietary music streaming service.*..[ *read more* ](apps/spotify-edge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-edge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-edge) | -| | [***spotify-qt***](apps/spotify-qt.md) | *Lightweight Spotify client using Qt.*..[ *read more* ](apps/spotify-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-qt) | -| | [***spotube***](apps/spotube.md) | *Open source Spotify client that doesn't require Premium.*..[ *read more* ](apps/spotube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotube) | -| | [***spyglass***](apps/spyglass.md) | *A personal search engine to create a searchable library from your personal documents, interests, and more.*..[ *read more* ](apps/spyglass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spyglass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spyglass) | -| | [***sqlitebrowser***](apps/sqlitebrowser.md) | *DB Browser is a light GUI editor for SQLite databases.*..[ *read more* ](apps/sqlitebrowser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sqlitebrowser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sqlitebrowser) | -| | [***squirrel-disk***](apps/squirrel-disk.md) | *Cross-Platform and Super Fast Disk Usage Analysis Tool.*..[ *read more* ](apps/squirrel-disk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/squirrel-disk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/squirrel-disk) | -| | [***srb2***](apps/srb2.md) | *Unofficial, a 3D Sonic the Hedgehog fangame based on a modified version of Doom Legacy.*..[ *read more* ](apps/srb2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/srb2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/srb2) | -| | [***srb2k***](apps/srb2k.md) | *AppImage Package for Sonic Robo Blast 2 Kart, game.*..[ *read more* ](apps/srb2k.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/srb2k) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/srb2k) | -| | [***srb2kart***](apps/srb2kart.md) | *Unofficial AppImage of SRB2kart.*..[ *read more* ](apps/srb2kart.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/srb2kart) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/srb2kart) | -| | [***ssh-mitm***](apps/ssh-mitm.md) | *Server for security audits supporting public key authentication.*..[ *read more* ](apps/ssh-mitm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ssh-mitm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ssh-mitm) | -| | [***ssplot***](apps/ssplot.md) | *A simple plotting utility for dynamical systems.*..[ *read more* ](apps/ssplot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ssplot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ssplot) | -| | [***st***](apps/st.md) | *Unofficial AppImage of the suckless terminal st.*..[ *read more* ](apps/st.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/st) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/st) | -| | [***st+***](apps/st+.md) | *A beautiful, SIXEL-capable, lightweight terminal (~100KB) with just-enough essential features for rock-solid stability in daily usage. Features integration with nerd-fonts and Gogh color schemes.*..[ *read more* ](apps/st+.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/st+) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/st+) | -| | [***stabilitymatrix***](apps/stabilitymatrix.md) | *Multi-Platform Package Manager for Stable Diffusion, a deep AI learning model used for converting text to images.*..[ *read more* ](apps/stabilitymatrix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stabilitymatrix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stabilitymatrix) | -| | [***stacer***](apps/stacer.md) | *Linux System Optimizer and Monitoring.*..[ *read more* ](apps/stacer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stacer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stacer) | -| | [***stack-wallet***](apps/stack-wallet.md) | *Stack Wallet, a multicoin, cryptocurrency wallet.*..[ *read more* ](apps/stack-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stack-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stack-wallet) | -| | [***stackandconquer***](apps/stackandconquer.md) | *A challenging tower conquest board game "Mixtour" inspired.*..[ *read more* ](apps/stackandconquer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stackandconquer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stackandconquer) | -| | [***standard-notes***](apps/standard-notes.md) | *A simple and private place for your notes.*..[ *read more* ](apps/standard-notes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/standard-notes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/standard-notes) | -| | [***starc***](apps/starc.md) | *Story Architect, reinventing the screenwriting software.*..[ *read more* ](apps/starc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/starc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/starc) | -| | [***starfox64recomp***](apps/starfox64recomp.md) | *Unofficial, a native port of Starfox 64, statically recompiled.*..[ *read more* ](apps/starfox64recomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/starfox64recomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/starfox64recomp) | -| | [***stash-electron***](apps/stash-electron.md) | *The friendly secret storage made for teams.*..[ *read more* ](apps/stash-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stash-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stash-electron) | -| | [***station***](apps/station.md) | *A single place for all of your web applications.*..[ *read more* ](apps/station.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/station) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/station) | -| | [***statsbook-tool***](apps/statsbook-tool.md) | *A tool for error checking WFTDA Statsbooks.*..[ *read more* ](apps/statsbook-tool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/statsbook-tool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/statsbook-tool) | -| | [***statuspilatus***](apps/statuspilatus.md) | *Monitor your PC like never before.*..[ *read more* ](apps/statuspilatus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/statuspilatus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/statuspilatus) | -| | [***steam***](apps/steam.md) | *Unofficial. The ultimate destination for playing, discussing, and creating games.*..[ *read more* ](apps/steam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steam) | -| | [***steam-rom-manager***](apps/steam-rom-manager.md) | *An app for managing ROMs in Steam.*..[ *read more* ](apps/steam-rom-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steam-rom-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steam-rom-manager) | -| | [***steamcad***](apps/steamcad.md) | *2D CAD especially designed to draw steam locomotives.*..[ *read more* ](apps/steamcad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steamcad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steamcad) | -| | [***steamdepotdownloadergui***](apps/steamdepotdownloadergui.md) | *Easily download older versions of games from Steam.*..[ *read more* ](apps/steamdepotdownloadergui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steamdepotdownloadergui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steamdepotdownloadergui) | -| | [***steem-messenger***](apps/steem-messenger.md) | *Messer for Steem.*..[ *read more* ](apps/steem-messenger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steem-messenger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steem-messenger) | -| | [***stele***](apps/stele.md) | *Kiosk app wrapper for museum media exhibits.*..[ *read more* ](apps/stele.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stele) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stele) | -| | [***stella***](apps/stella.md) | *Unofficial, A multi-platform Atari 2600 Emulator.*..[ *read more* ](apps/stella.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stella) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stella) | -| | [***stellarium***](apps/stellarium.md) | *Planetarium that shows a realistic sky in 3D.*..[ *read more* ](apps/stellarium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stellarium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stellarium) | -| | [***stellarmaps***](apps/stellarmaps.md) | *Stylized maps from Stellaris saves.*..[ *read more* ](apps/stellarmaps.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stellarmaps) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stellarmaps) | -| | [***sticker-convert***](apps/sticker-convert.md) | *Convert animated stickers.*..[ *read more* ](apps/sticker-convert.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sticker-convert) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sticker-convert) | -| | [***stirling-pdf***](apps/stirling-pdf.md) | *Unofficial. Powerful, open-source PDF editing platform.*..[ *read more* ](apps/stirling-pdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stirling-pdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stirling-pdf) | -| | [***stockstalk***](apps/stockstalk.md) | *Your stocks on your desktop.*..[ *read more* ](apps/stockstalk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stockstalk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stockstalk) | -| | [***stoplight***](apps/stoplight.md) | *The kickass API platform.*..[ *read more* ](apps/stoplight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stoplight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stoplight) | -| | [***storadit***](apps/storadit.md) | *Minimalistic Todo list/notes taking app.*..[ *read more* ](apps/storadit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/storadit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/storadit) | -| | [***storaji***](apps/storaji.md) | *The Light/Responsive Inventory Management System.*..[ *read more* ](apps/storaji.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/storaji) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/storaji) | -| | [***storyboarder***](apps/storyboarder.md) | *Visualize a story as fast you can draw stick figures.*..[ *read more* ](apps/storyboarder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/storyboarder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/storyboarder) | -| | [***strans***](apps/strans.md) | *A powerful command-line utility.*..[ *read more* ](apps/strans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strans) | -| | [***strata***](apps/strata.md) | *Semi-automated selection and scaling of time series.*..[ *read more* ](apps/strata.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strata) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strata) | -| | [***strawberry***](apps/strawberry.md) | *Unofficial AppImage of the strawberry music player.*..[ *read more* ](apps/strawberry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strawberry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strawberry) | -| | [***streamdock***](apps/streamdock.md) | *Streaming service viewer.*..[ *read more* ](apps/streamdock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/streamdock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/streamdock) | -| | [***streamlink***](apps/streamlink.md) | *Command-line which pipes video streams from various services.*..[ *read more* ](apps/streamlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/streamlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/streamlink) | -| | [***streamlink-twitch-gui***](apps/streamlink-twitch-gui.md) | *A multi platform Twitch.tv browser for Streamlink.*..[ *read more* ](apps/streamlink-twitch-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/streamlink-twitch-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/streamlink-twitch-gui) | -| | [***streamon***](apps/streamon.md) | *Create streaming links to instagram live.*..[ *read more* ](apps/streamon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/streamon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/streamon) | -| | [***stremio-enhanced***](apps/stremio-enhanced.md) | *Electron-based Stremio client with support for plugins and themes. This is a community project and is not affiliated with Stremio in any way.*..[ *read more* ](apps/stremio-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stremio-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stremio-enhanced) | -| | [***stretchly***](apps/stretchly.md) | *App that reminds you to take breaks when working on your PC.*..[ *read more* ](apps/stretchly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stretchly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stretchly) | -| | [***strongbox***](apps/strongbox.md) | *A World of Warcraft Addon Manager aimed at Linux players.*..[ *read more* ](apps/strongbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strongbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strongbox) | -| | [***structure***](apps/structure.md) | *A knowledge management tool.*..[ *read more* ](apps/structure.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/structure) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/structure) | -| | [***studymd***](apps/studymd.md) | *Flashcards from Markdown.*..[ *read more* ](apps/studymd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/studymd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/studymd) | -| | [***stunt-car-remake***](apps/stunt-car-remake.md) | *Remake of the old game Stunt Car Racer.*..[ *read more* ](apps/stunt-car-remake.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stunt-car-remake) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stunt-car-remake) | -| | [***subillmanager***](apps/subillmanager.md) | *A simple Flutter app to manage electricity bill.*..[ *read more* ](apps/subillmanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/subillmanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/subillmanager) | -| | [***substrate-ide***](apps/substrate-ide.md) | *Graphic IDE for developing Substrate blockchains.*..[ *read more* ](apps/substrate-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/substrate-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/substrate-ide) | -| | [***subsurface***](apps/subsurface.md) | *Official upstream of the Subsurface divelog program.*..[ *read more* ](apps/subsurface.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/subsurface) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/subsurface) | -| | [***subtitld***](apps/subtitld.md) | *Transform your video content creation with Subtitld, the open source software that streamlines your video content creation process.*..[ *read more* ](apps/subtitld.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/subtitld) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/subtitld) | -| | [***subtitle-composer***](apps/subtitle-composer.md) | *KF5/Qt Video Subtitle Editor for KDE.*..[ *read more* ](apps/subtitle-composer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/subtitle-composer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/subtitle-composer) | -| | [***subtitler***](apps/subtitler.md) | *Quickly download subtitles.*..[ *read more* ](apps/subtitler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/subtitler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/subtitler) | -| | [***sultanpos***](apps/sultanpos.md) | *Simple POS for minimarket.*..[ *read more* ](apps/sultanpos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sultanpos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sultanpos) | -| | [***summoners.war.exporter***](apps/summoners.war.exporter.md) | *To parse intercepted data from Summoners War.*..[ *read more* ](apps/summoners.war.exporter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/summoners.war.exporter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/summoners.war.exporter) | -| | [***sumoco***](apps/sumoco.md) | *Simple Unified Model for Orthopaedics.*..[ *read more* ](apps/sumoco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sumoco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sumoco) | -| | [***sunny***](apps/sunny.md) | *Screenshot software that supports OCR and image translation features.*..[ *read more* ](apps/sunny.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sunny) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sunny) | -| | [***sunsama***](apps/sunsama.md) | *The daily planner for elite professionals.*..[ *read more* ](apps/sunsama.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sunsama) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sunsama) | -| | [***sunshine***](apps/sunshine.md) | *Sunshine is a Gamestream host for Moonlight.*..[ *read more* ](apps/sunshine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sunshine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sunshine) | -| | [***sunvox***](apps/sunvox.md) | *Unofficial. Small, fast and powerful modular synthesizer with pattern-based sequencer (tracker).*..[ *read more* ](apps/sunvox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sunvox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sunvox) | -| | [***sup***](apps/sup.md) | *A Slack client with WhatsApp like UI.*..[ *read more* ](apps/sup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sup) | -| | [***super-zsnes***](apps/super-zsnes.md) | *Unofficial AppImage of SUPER ZSNES.*..[ *read more* ](apps/super-zsnes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/super-zsnes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/super-zsnes) | -| | [***superbacked***](apps/superbacked.md) | *Don’t lose your secrets. A secret management platform used to back up and pass on sensitive data from one generation to the next.*..[ *read more* ](apps/superbacked.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superbacked) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superbacked) | -| | [***supercell-wx***](apps/supercell-wx.md) | *Supercell Wx is a free, open source advanced weather radar viewer.*..[ *read more* ](apps/supercell-wx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supercell-wx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supercell-wx) | -| | [***supermariowar***](apps/supermariowar.md) | *Unofficial, a fan-made multiplayer Super Mario Bros. style deathmatch game.*..[ *read more* ](apps/supermariowar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supermariowar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supermariowar) | -| | [***supermodel***](apps/supermodel.md) | *Unofficial, Sega Model 3 arcade emulator.*..[ *read more* ](apps/supermodel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supermodel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supermodel) | -| | [***supernotes***](apps/supernotes.md) | *Enjoy efficient note-taking without the hassle.*..[ *read more* ](apps/supernotes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supernotes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supernotes) | -| | [***superpaper***](apps/superpaper.md) | *A cross-platform multi monitor wallpaper manager.*..[ *read more* ](apps/superpaper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superpaper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superpaper) | -| | [***superproductivity***](apps/superproductivity.md) | *An advanced todo list app with integrated Timeboxing.*..[ *read more* ](apps/superproductivity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superproductivity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superproductivity) | -| | [***superslicer-bin***](apps/superslicer-bin.md) | *G-code generator for 3D printers.*..[ *read more* ](apps/superslicer-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superslicer-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superslicer-bin) | -| | [***superslicer-prerelease-bin***](apps/superslicer-prerelease-bin.md) | *G-code generator for 3D printers.*..[ *read more* ](apps/superslicer-prerelease-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superslicer-prerelease-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superslicer-prerelease-bin) | -| | [***supersonic***](apps/supersonic.md) | *A lightweight and full-featured cross-platform desktop client for self-hosted music servers.*..[ *read more* ](apps/supersonic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supersonic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supersonic) | -| | [***supertag***](apps/supertag.md) | *A tag-based filesystem written in Rust.*..[ *read more* ](apps/supertag.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supertag) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supertag) | -| | [***supertux***](apps/supertux.md) | *Classic 2D jump'n run sidescroller game inspired to Super Mario.*..[ *read more* ](apps/supertux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supertux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supertux) | -| | [***supertuxkart***](apps/supertuxkart.md) | *Free kart racing game focused on Fun!*..[ *read more* ](apps/supertuxkart.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supertuxkart) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supertuxkart) | -| | [***supertuxkart-dev***](apps/supertuxkart-dev.md) | *Free kart racing game focused on Fun! Pre-release.*..[ *read more* ](apps/supertuxkart-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supertuxkart-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supertuxkart-dev) | -| | [***surrealist***](apps/surrealist.md) | *Surrealist is the ultimate way to visually manage your SurrealDB database.*..[ *read more* ](apps/surrealist.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/surrealist) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/surrealist) | -| | [***suwayomi***](apps/suwayomi.md) | *A rewrite of Tachiyomi for the Desktop.*..[ *read more* ](apps/suwayomi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/suwayomi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/suwayomi) | -| | [***svelte-electron***](apps/svelte-electron.md) | *Create desktop apps with this Svelte boilerplate.*..[ *read more* ](apps/svelte-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/svelte-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/svelte-electron) | -| | [***svgwall***](apps/svgwall.md) | *SVG Wallpaper Utility for Xorg.*..[ *read more* ](apps/svgwall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/svgwall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/svgwall) | -| | [***sview***](apps/sview.md) | *3D Stereoscopic media player for videos and images.*..[ *read more* ](apps/sview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sview) | -| | [***swaglyrics***](apps/swaglyrics.md) | *SwagLyrics AppImage, unofficial.*..[ *read more* ](apps/swaglyrics.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swaglyrics) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swaglyrics) | -| | [***swc-minecraft-launcher***](apps/swc-minecraft-launcher.md) | *SWC Minecraft Launcher.*..[ *read more* ](apps/swc-minecraft-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swc-minecraft-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swc-minecraft-launcher) | -| | [***swell***](apps/swell.md) | *Testing for streaming APIs, right at your desktop.*..[ *read more* ](apps/swell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swell) | -| | [***swiftnessx***](apps/swiftnessx.md) | *Electron application boilerplate based on React/Webpack.*..[ *read more* ](apps/swiftnessx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swiftnessx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swiftnessx) | -| | [***swifty***](apps/swifty.md) | *Free Offline-first Password Manager.*..[ *read more* ](apps/swifty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swifty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swifty) | -| | [***swiftynotes***](apps/swiftynotes.md) | *Unofficial AppImage of swiftynotes.*..[ *read more* ](apps/swiftynotes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swiftynotes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swiftynotes) | -| | [***switchcraft***](apps/switchcraft.md) | *Switchcraft watches GNOME's light/dark preference and runs your shell commands when the theme changes.*..[ *read more* ](apps/switchcraft.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/switchcraft) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/switchcraft) | -| | [***switchhosts***](apps/switchhosts.md) | *Switch hosts quickly!*..[ *read more* ](apps/switchhosts.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/switchhosts) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/switchhosts) | -| | [***switchshuttle***](apps/switchshuttle.md) | *Run predefined commands in various terminal applications.*..[ *read more* ](apps/switchshuttle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/switchshuttle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/switchshuttle) | -| | [***swradio***](apps/swradio.md) | *Shortwave receiver for use with sdrplay/hackrf/dabsticks/pmsdr.*..[ *read more* ](apps/swradio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swradio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swradio) | -| | [***symphonium***](apps/symphonium.md) | *A tool to help when learning to play the piano.*..[ *read more* ](apps/symphonium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/symphonium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/symphonium) | -| | [***syncmyl2p***](apps/syncmyl2p.md) | *L2P synchronisation tool.*..[ *read more* ](apps/syncmyl2p.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/syncmyl2p) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/syncmyl2p) | -| | [***syncplay***](apps/syncplay.md) | *Synchronize video playback over network.*..[ *read more* ](apps/syncplay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/syncplay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/syncplay) | -| | [***syncthing***](apps/syncthing.md) | *Open Source Continuous File Synchronization.*..[ *read more* ](apps/syncthing.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/syncthing) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/syncthing) | -| | [***syncthingctl***](apps/syncthingctl.md) | *Tray control application and Dolphin/Plasma integration for Syncthing.*..[ *read more* ](apps/syncthingctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/syncthingctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/syncthingctl) | -| | [***syncthingtray***](apps/syncthingtray.md) | *Tray application and Dolphin/Plasma integration for Syncthing.*..[ *read more* ](apps/syncthingtray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/syncthingtray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/syncthingtray) | -| | [***synfig***](apps/synfig.md) | *Unofficial. Synfig Studio animation software.*..[ *read more* ](apps/synfig.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/synfig) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/synfig) | -| | [***synthein***](apps/synthein.md) | *A space ship building and combat game.*..[ *read more* ](apps/synthein.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/synthein) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/synthein) | -| | [***synthv1***](apps/synthv1.md) | *An old school polyphonic synthesizer.*..[ *read more* ](apps/synthv1.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/synthv1) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/synthv1) | -| | [***system-monitoring-center***](apps/system-monitoring-center.md) | *Unofficial. Multi-featured system monitor.*..[ *read more* ](apps/system-monitoring-center.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/system-monitoring-center) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/system-monitoring-center) | -| | [***szyszka***](apps/szyszka.md) | *Szyszka is fast and powerful file renamer.*..[ *read more* ](apps/szyszka.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/szyszka) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/szyszka) | -| | [***t.viewer***](apps/t.viewer.md) | *Cross Platform Tizen Log Viewer.*..[ *read more* ](apps/t.viewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/t.viewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/t.viewer) | -| | [***t3code***](apps/t3code.md) | *T3 Code is a minimal web GUI for coding agents (currently Codex and Claude, more coming soon).*..[ *read more* ](apps/t3code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/t3code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/t3code) | -| | [***tabby***](apps/tabby.md) | *A terminal for a more modern age*..[ *read more* ](apps/tabby.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tabby) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tabby) | -| | [***tablo-tools***](apps/tablo-tools.md) | *Tools to Bulk Delete and Export from Tablo DVR.*..[ *read more* ](apps/tablo-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tablo-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tablo-tools) | -| | [***tabularis***](apps/tabularis.md) | *A lightweight, developer-focused database management tool.*..[ *read more* ](apps/tabularis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tabularis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tabularis) | -| | [***tachoparser***](apps/tachoparser.md) | *Unofficial AppImage of tachoparser, CLI and GUI application for reading DDD tachograph cards.*..[ *read more* ](apps/tachoparser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tachoparser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tachoparser) | -| | [***tag-editor***](apps/tag-editor.md) | *Tag Editor, supports MP4, ID3, Vorbis, Opus, FLAC and Matroska.*..[ *read more* ](apps/tag-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tag-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tag-editor) | -| | [***tagger***](apps/tagger.md) | *Unofficial. Simple audio tagger with support for various audio formats.*..[ *read more* ](apps/tagger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tagger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tagger) | -| | [***tagspaces***](apps/tagspaces.md) | *An offline, open source, document manager with tagging support.*..[ *read more* ](apps/tagspaces.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tagspaces) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tagspaces) | -| | [***tagtime-desktop***](apps/tagtime-desktop.md) | *Time tracking for space cadets, desktop edition.*..[ *read more* ](apps/tagtime-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tagtime-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tagtime-desktop) | -| | [***taisei-project***](apps/taisei-project.md) | *Unofficial, A free and open-source Touhou Project fangame.*..[ *read more* ](apps/taisei-project.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/taisei-project) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/taisei-project) | -| | [***talktype***](apps/talktype.md) | *Linux speech to text app.*..[ *read more* ](apps/talktype.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/talktype) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/talktype) | -| | [***tamga***](apps/tamga.md) | *A 3D sculpting, sketching, and stylized rendering app.*..[ *read more* ](apps/tamga.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tamga) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tamga) | -| | [***tangent***](apps/tangent.md) | *A clean and powerful open source notes app.*..[ *read more* ](apps/tangent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tangent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tangent) | -| | [***taradino***](apps/taradino.md) | *Unofficial, SDL2 port of Rise of the Triad.*..[ *read more* ](apps/taradino.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/taradino) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/taradino) | -| | [***taskizer***](apps/taskizer.md) | *A task management app.*..[ *read more* ](apps/taskizer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/taskizer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/taskizer) | -| | [***tasks-org***](apps/tasks-org.md) | *Private, ad-free task lists. Optional sync with Google Tasks, CalDAV or EteSync.*..[ *read more* ](apps/tasks-org.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tasks-org) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tasks-org) | -| | [***tastee-ui***](apps/tastee-ui.md) | *Tool helping you write executable specifications in your lang.*..[ *read more* ](apps/tastee-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tastee-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tastee-ui) | -| | [***tauon***](apps/tauon.md) | *Unofficial, a music player for the desktop.*..[ *read more* ](apps/tauon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tauon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tauon) | -| | [***tbc-video-export***](apps/tbc-video-export.md) | *Tool for exporting S-Video and CVBS-type TBCs to video files.*..[ *read more* ](apps/tbc-video-export.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tbc-video-export) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tbc-video-export) | -| | [***tc***](apps/tc.md) | *A desktop chat client for Twitch.*..[ *read more* ](apps/tc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tc) | -| | [***teams***](apps/teams.md) | *Unofficial, Business communication platform developed by Microsoft.*..[ *read more* ](apps/teams.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teams) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teams) | -| | [***teledrive***](apps/teledrive.md) | *Automatically backup Telegram Saved Messages.*..[ *read more* ](apps/teledrive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teledrive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teledrive) | -| | [***telegram***](apps/telegram.md) | *Official desktop version of Telegram messaging app.*..[ *read more* ](apps/telegram.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/telegram) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/telegram) | -| | [***tenacity***](apps/tenacity.md) | *An easy-to-use, cross-platform multi-track audio editor/recorder.*..[ *read more* ](apps/tenacity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tenacity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tenacity) | -| | [***terabox***](apps/terabox.md) | *Terabox is the simplest way to send your files around the world. Back up and Share photos, videos, docs, and other files of any size to cloud storage.*..[ *read more* ](apps/terabox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/terabox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/terabox) | -| | [***terminalos-sim***](apps/terminalos-sim.md) | *A terminalOS simulator.*..[ *read more* ](apps/terminalos-sim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/terminalos-sim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/terminalos-sim) | -| | [***termora***](apps/termora.md) | *A terminal emulator and SSH client.*..[ *read more* ](apps/termora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/termora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/termora) | -| | [***teslacam-browser***](apps/teslacam-browser.md) | *A minimal TeslaCam Browser.*..[ *read more* ](apps/teslacam-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teslacam-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teslacam-browser) | -| | [***tesler***](apps/tesler.md) | *The Tesla Sentinel Viewer.*..[ *read more* ](apps/tesler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tesler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tesler) | -| | [***tesseract***](apps/tesseract.md) | *Tesseract Open Source OCR Engine AppImage.*..[ *read more* ](apps/tesseract.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tesseract) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tesseract) | -| | [***tetanes***](apps/tetanes.md) | *A cross-platform NES emulator written in Rust using wgpu.*..[ *read more* ](apps/tetanes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tetanes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tetanes) | -| | [***tev***](apps/tev.md) | *High dynamic range (HDR) image viewer for people who care about colors.*..[ *read more* ](apps/tev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tev) | -| | [***texmacs***](apps/texmacs.md) | *Free scientific text editor, inspired by TeX and GNU Emacs.*..[ *read more* ](apps/texmacs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/texmacs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/texmacs) | -| | [***texstudio***](apps/texstudio.md) | *LaTeX development environment.*..[ *read more* ](apps/texstudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/texstudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/texstudio) | -| | [***textosaurus***](apps/textosaurus.md) | *Cross-platform text editor based on Qt and Scintilla.*..[ *read more* ](apps/textosaurus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/textosaurus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/textosaurus) | -| | [***tfcbm***](apps/tfcbm.md) | *The * Clipboard Manager.*..[ *read more* ](apps/tfcbm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tfcbm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tfcbm) | -| | [***thedesk***](apps/thedesk.md) | *Mastodon Client for PC.*..[ *read more* ](apps/thedesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thedesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thedesk) | -| | [***theframe***](apps/theframe.md) | *Animation tool.*..[ *read more* ](apps/theframe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/theframe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/theframe) | -| | [***theia-blueprint***](apps/theia-blueprint.md) | *Building desktop-based products based on Eclipse Theia.*..[ *read more* ](apps/theia-blueprint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/theia-blueprint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/theia-blueprint) | -| | [***thermusqt***](apps/thermusqt.md) | *Calculate particle composition of hadronic state.*..[ *read more* ](apps/thermusqt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thermusqt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thermusqt) | -| | [***theweb***](apps/theweb.md) | *Web Browser.*..[ *read more* ](apps/theweb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/theweb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/theweb) | -| | [***thief***](apps/thief.md) | *An innovative cross-platform fishing tool, in chinese.*..[ *read more* ](apps/thief.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thief) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thief) | -| | [***thinreports-section-editor***](apps/thinreports-section-editor.md) | *A template editor for Thinreports.*..[ *read more* ](apps/thinreports-section-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thinreports-section-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thinreports-section-editor) | -| | [***thlink***](apps/thlink.md) | *Touhou Project Game Netplay Tool.*..[ *read more* ](apps/thlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thlink) | -| | [***thoptv***](apps/thoptv.md) | *Enjoy Ultimate Movies, sports Matches, IPL and Latest Shows.*..[ *read more* ](apps/thoptv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thoptv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thoptv) | -| | [***thorium***](apps/thorium.md) | *Web Browser, a Chromium fork including Widevine and FFmpeg support.*..[ *read more* ](apps/thorium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thorium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thorium) | -| | [***thorium-client***](apps/thorium-client.md) | *A locked-down electron kiosk for Thorium.*..[ *read more* ](apps/thorium-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thorium-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thorium-client) | -| | [***thorium-reader***](apps/thorium-reader.md) | *Desktop application to read ebooks.*..[ *read more* ](apps/thorium-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thorium-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thorium-reader) | -| | [***thunderbird***](apps/thunderbird.md) | *Free and open source eMail client, Stable.*..[ *read more* ](apps/thunderbird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thunderbird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thunderbird) | -| | [***thunderbird-beta***](apps/thunderbird-beta.md) | *Free and open source eMail client, Beta Edition.*..[ *read more* ](apps/thunderbird-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thunderbird-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thunderbird-beta) | -| | [***thunderbird-nightly***](apps/thunderbird-nightly.md) | *Free and open source eMail client, Nightly Edition.*..[ *read more* ](apps/thunderbird-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thunderbird-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thunderbird-nightly) | -| | [***ticktick***](apps/ticktick.md) | *A To-Do List and Calendar to keep you organized.*..[ *read more* ](apps/ticktick.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ticktick) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ticktick) | -| | [***tidal-hifi***](apps/tidal-hifi.md) | *The web version of listen.tidal.com running in electron.*..[ *read more* ](apps/tidal-hifi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tidal-hifi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tidal-hifi) | -| | [***tidybit***](apps/tidybit.md) | *TidyBit is a simple handy tool that can organize messy collection of files and move them to a chosen folder.*..[ *read more* ](apps/tidybit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tidybit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tidybit) | -| | [***tilde-podcast***](apps/tilde-podcast.md) | *Podcast client to listen to all you favorite podcasts.*..[ *read more* ](apps/tilde-podcast.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tilde-podcast) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tilde-podcast) | -| | [***tiled***](apps/tiled.md) | *Tile map editor.*..[ *read more* ](apps/tiled.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tiled) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tiled) | -| | [***tilinggenerator***](apps/tilinggenerator.md) | *Generator of regular and irregular tilings.*..[ *read more* ](apps/tilinggenerator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tilinggenerator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tilinggenerator) | -| | [***timenaut***](apps/timenaut.md) | *Desktop time tracking application.*..[ *read more* ](apps/timenaut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/timenaut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/timenaut) | -| | [***tipitaka-pali-reader***](apps/tipitaka-pali-reader.md) | *A Pali Reading app made in Flutter.*..[ *read more* ](apps/tipitaka-pali-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tipitaka-pali-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tipitaka-pali-reader) | -| | [***tixati***](apps/tixati.md) | *A New and Powerful P2P System 100% Free, Simple and Easy to Use Bittorrent Client.*..[ *read more* ](apps/tixati.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tixati) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tixati) | -| | [***tkmm***](apps/tkmm.md) | *TotK Mod Manager, a mod manager and merger for Tears of the Kingdom.*..[ *read more* ](apps/tkmm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tkmm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tkmm) | -| | [***tlum***](apps/tlum.md) | *Tlum - open-source cross-platform language learning application leverages the power of natural language processing to pinpoint pronunciation gaps and enhance articulation, machine learning to boost vocabulary proficiency.*..[ *read more* ](apps/tlum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tlum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tlum) | -| | [***tmon***](apps/tmon.md) | *A simple CLI tool for monitoring/reporting CPU temperatures.*..[ *read more* ](apps/tmon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tmon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tmon) | -| | [***tmux***](apps/tmux.md) | *Tmux AppImage build via Docker.*..[ *read more* ](apps/tmux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tmux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tmux) | -| | [***tnt***](apps/tnt.md) | *A computer-assisted translation tool.*..[ *read more* ](apps/tnt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tnt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tnt) | -| | [***tockler***](apps/tockler.md) | *An application that tracks your time by monitoring.*..[ *read more* ](apps/tockler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tockler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tockler) | -| | [***todesktop***](apps/todesktop.md) | *Take your web app codebase and transform it into a cross platform desktop app with native functionality.*..[ *read more* ](apps/todesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/todesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/todesktop) | -| | [***todo-bash***](apps/todo-bash.md) | *Todo list for the Bash command line.*..[ *read more* ](apps/todo-bash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/todo-bash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/todo-bash) | -| | [***todoist***](apps/todoist.md) | *The to-do list to organize work & life.*..[ *read more* ](apps/todoist.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/todoist) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/todoist) | -| | [***todorant***](apps/todorant.md) | *Todorant releases.*..[ *read more* ](apps/todorant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/todorant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/todorant) | -| | [***todorust***](apps/todorust.md) | *Simple ToDoList made in rust.*..[ *read more* ](apps/todorust.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/todorust) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/todorust) | -| | [***toerings***](apps/toerings.md) | *A clone of Conky Seamod using Tauri.*..[ *read more* ](apps/toerings.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/toerings) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/toerings) | -| | [***tokodon***](apps/tokodon.md) | *Unofficial, a modern client for Mastodon and other decentralized servers that implement its API (such as Pixelfed).*..[ *read more* ](apps/tokodon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tokodon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tokodon) | -| | [***tomatox***](apps/tomatox.md) | *An online free VIP video analysis player, in chinese.*..[ *read more* ](apps/tomatox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tomatox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tomatox) | -| | [***tonuino-toolbox***](apps/tonuino-toolbox.md) | *SD card manager for your Tonuino.*..[ *read more* ](apps/tonuino-toolbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tonuino-toolbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tonuino-toolbox) | -| | [***toolblex***](apps/toolblex.md) | *Bluetooth Low Energy (and Classic) device scanner and analyzer.*..[ *read more* ](apps/toolblex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/toolblex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/toolblex) | -| | [***torcs***](apps/torcs.md) | *The 3D Open Racing Car Game and Simulator.*..[ *read more* ](apps/torcs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/torcs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/torcs) | -| | [***torrents_digger***](apps/torrents_digger.md) | *Torrents Digger searches already available torrents from internet.*..[ *read more* ](apps/torrents_digger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/torrents_digger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/torrents_digger) | -| | [***torrenttools***](apps/torrenttools.md) | *Cli tool to inspect/create/edit BitTorrent metafiles.*..[ *read more* ](apps/torrenttools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/torrenttools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/torrenttools) | -| | [***torzu***](apps/torzu.md) | *Unofficial AppImage of Torzu (fork of yuzu), with optimized builds for modern cpus.*..[ *read more* ](apps/torzu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/torzu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/torzu) | -| | [***touchhle***](apps/touchhle.md) | *Unofficial, High-level emulator for iPhone OS apps.*..[ *read more* ](apps/touchhle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/touchhle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/touchhle) | -| | [***trackaudio***](apps/trackaudio.md) | *A next generation Audio-For-VATSIM ATC Client.*..[ *read more* ](apps/trackaudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trackaudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trackaudio) | -| | [***transfernow***](apps/transfernow.md) | *TransferNow is a simple, quick and secure free solution to send large files and big documents up to 250 GB per transfer. No registration required.*..[ *read more* ](apps/transfernow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transfernow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transfernow) | -| | [***translatium***](apps/translatium.md) | *Translate Any Languages like a Pro.*..[ *read more* ](apps/translatium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/translatium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/translatium) | -| | [***transmission-gtk***](apps/transmission-gtk.md) | *Unofficial. Fast, easy, and free BitTorrent client, GTK+ GUI.*..[ *read more* ](apps/transmission-gtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transmission-gtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transmission-gtk) | -| | [***transmission-qt***](apps/transmission-qt.md) | *Unofficial, Fast, easy, and free BitTorrent client, Qt GUI.*..[ *read more* ](apps/transmission-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transmission-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transmission-qt) | -| | [***transmissionic***](apps/transmissionic.md) | *Remote for Transmission Daemon.*..[ *read more* ](apps/transmissionic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transmissionic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transmissionic) | -| | [***trelby***](apps/trelby.md) | *Unofficial, Trelby is simple, fast and elegantly laid out to make screenwriting simple.*..[ *read more* ](apps/trelby.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trelby) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trelby) | -| | [***trenchbroom***](apps/trenchbroom.md) | *A modern, cross-platform level editor for Quake engine based games.*..[ *read more* ](apps/trenchbroom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trenchbroom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trenchbroom) | -| | [***trezor-suite***](apps/trezor-suite.md) | *Trezor Suite desktop application.*..[ *read more* ](apps/trezor-suite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trezor-suite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trezor-suite) | -| | [***trgui-ng***](apps/trgui-ng.md) | *Remote GUI for Transmission torrent daemon.*..[ *read more* ](apps/trgui-ng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trgui-ng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trgui-ng) | -| | [***triagem-touch***](apps/triagem-touch.md) | *Novo SGA triage client.*..[ *read more* ](apps/triagem-touch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/triagem-touch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/triagem-touch) | -| | [***trilium***](apps/trilium.md) | *Build your personal knowledge base with Trilium Notes.*..[ *read more* ](apps/trilium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trilium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trilium) | -| | [***trinity-desktop***](apps/trinity-desktop.md) | *Desktop wallet for IOTA.*..[ *read more* ](apps/trinity-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trinity-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trinity-desktop) | -| | [***tropy***](apps/tropy.md) | *Research photo management.*..[ *read more* ](apps/tropy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tropy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tropy) | -| | [***tt***](apps/tt.md) | *A simple Time Tracker to stay basic and intuitive.*..[ *read more* ](apps/tt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tt) | -| | [***tts-now***](apps/tts-now.md) | *A chinese text-to-speech assistant based on the speech synthesi.*..[ *read more* ](apps/tts-now.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tts-now) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tts-now) | -| | [***ttth***](apps/ttth.md) | *An electron based desktop app for online services.*..[ *read more* ](apps/ttth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ttth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ttth) | -| | [***tumblr-downloader-gui***](apps/tumblr-downloader-gui.md) | *Download Tumblr posts that you liked.*..[ *read more* ](apps/tumblr-downloader-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tumblr-downloader-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tumblr-downloader-gui) | -| | [***tumblr-scraper***](apps/tumblr-scraper.md) | *Scrape a Tumblr profile for user uploadede posts.*..[ *read more* ](apps/tumblr-scraper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tumblr-scraper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tumblr-scraper) | -| | [***tunepack***](apps/tunepack.md) | *Finding and download HQ audio files.*..[ *read more* ](apps/tunepack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tunepack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tunepack) | -| | [***tura***](apps/tura.md) | *Tura is an open-source, local-first AI coding agent that works with existing AI subscriptions and coding tools.*..[ *read more* ](apps/tura.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tura) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tura) | -| | [***turbowarp***](apps/turbowarp.md) | *Scratch mod with a compiler to run projects faster.*..[ *read more* ](apps/turbowarp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/turbowarp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/turbowarp) | -| | [***tusk***](apps/tusk.md) | *Evernote desktop app.*..[ *read more* ](apps/tusk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tusk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tusk) | -| | [***tutanota***](apps/tutanota.md) | *Tuta is an email service with a strong focus on security and privacy that lets you encrypt emails, contacts and calendar entries on all your devices.*..[ *read more* ](apps/tutanota.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tutanota) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tutanota) | -| | [***tutanota-enhanced***](apps/tutanota-enhanced.md) | *Unofficial AppImage for Tutanota, an email service with a strong focus on security and privacy that lets you encrypt emails, contacts and calendar entries on all your devices.*..[ *read more* ](apps/tutanota-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tutanota-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tutanota-enhanced) | -| | [***tux-manager***](apps/tux-manager.md) | *A Linux Task Manager alternative built with Qt6, inspired by the Windows Task Manager but designed to go further - providing deep visibility into system processes, performance metrics, users, and services.*..[ *read more* ](apps/tux-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tux-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tux-manager) | -| | [***tuxfootball***](apps/tuxfootball.md) | *Unofficial, is a great 2D football game for Windows and Linux.*..[ *read more* ](apps/tuxfootball.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tuxfootball) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tuxfootball) | -| | [***tuxpuck***](apps/tuxpuck.md) | *Unofficial, hockey-like table game.*..[ *read more* ](apps/tuxpuck.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tuxpuck) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tuxpuck) | -| | [***twake***](apps/twake.md) | *Desktop App for Twake.*..[ *read more* ](apps/twake.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/twake) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/twake) | -| | [***tweaksophia***](apps/tweaksophia.md) | *An app to automatically renew the books of the SophiA system.*..[ *read more* ](apps/tweaksophia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tweaksophia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tweaksophia) | -| | [***tweet-tray***](apps/tweet-tray.md) | *Tweet quickly from the desktop without any distractions.*..[ *read more* ](apps/tweet-tray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tweet-tray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tweet-tray) | -| | [***twetter***](apps/twetter.md) | *Client for the pubsub app.*..[ *read more* ](apps/twetter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/twetter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/twetter) | -| | [***twitch-wrapper***](apps/twitch-wrapper.md) | *An Electron wrapper for Twitch.tv.*..[ *read more* ](apps/twitch-wrapper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/twitch-wrapper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/twitch-wrapper) | -| | [***uad-ng***](apps/uad-ng.md) | *GUI Rust wrapper for ADB to debloat non-rooted Android devices.*..[ *read more* ](apps/uad-ng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uad-ng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uad-ng) | -| | [***ubiquity***](apps/ubiquity.md) | *A cross-platform markdown editor.*..[ *read more* ](apps/ubiquity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ubiquity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ubiquity) | -| | [***ubports-installer***](apps/ubports-installer.md) | *A simple tool to install Ubuntu Touch on UBports devices*..[ *read more* ](apps/ubports-installer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ubports-installer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ubports-installer) | -| | [***uefitool***](apps/uefitool.md) | *Unofficial, UEFI firmware image viewer and editor.*..[ *read more* ](apps/uefitool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uefitool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uefitool) | -| | [***ueli***](apps/ueli.md) | *Cross-Platform Keystroke Launcher.*..[ *read more* ](apps/ueli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ueli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ueli) | -| | [***uhk.agent***](apps/uhk.agent.md) | *Configuration app of the Ultimate Hacking Keyboard.*..[ *read more* ](apps/uhk.agent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uhk.agent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uhk.agent) | -| | [***uivonim***](apps/uivonim.md) | *Fork of the Veonim Neovim GUI.*..[ *read more* ](apps/uivonim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uivonim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uivonim) | -| | [***ultragrid***](apps/ultragrid.md) | *UltraGrid low-latency audio/video network transmission system.*..[ *read more* ](apps/ultragrid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ultragrid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ultragrid) | -| | [***ultrascreen***](apps/ultrascreen.md) | *Share your screens with friends.*..[ *read more* ](apps/ultrascreen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ultrascreen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ultrascreen) | -| | [***ums***](apps/ums.md) | *Universal Media Server. A DLNA, UPnP and HTTP(S) Media Server.*..[ *read more* ](apps/ums.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ums) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ums) | -| | [***uncov***](apps/uncov.md) | *A tool that collects and processes code coverage reports.*..[ *read more* ](apps/uncov.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uncov) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uncov) | -| | [***undertaker141***](apps/undertaker141.md) | *A free and open-source game-center for linux. Pre-configured Wine and Native Games for Linux.*..[ *read more* ](apps/undertaker141.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/undertaker141) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/undertaker141) | -| | [***ungoogled-chromium***](apps/ungoogled-chromium.md) | *Chromium Web Browser without Google services.*..[ *read more* ](apps/ungoogled-chromium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ungoogled-chromium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ungoogled-chromium) | -| | [***unishellect***](apps/unishellect.md) | *JSON parser file and menu customizez Hyper-inspired.*..[ *read more* ](apps/unishellect.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unishellect) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unishellect) | -| | [***unityhub***](apps/unityhub.md) | *Unofficial AppImage for Unity Hub.*..[ *read more* ](apps/unityhub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unityhub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unityhub) | -| | [***unleashedrecomp***](apps/unleashedrecomp.md) | *Unofficial AppImage of UnleashedRecomp (Sonic Unleashed port)*..[ *read more* ](apps/unleashedrecomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unleashedrecomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unleashedrecomp) | -| | [***unofficial-homestuck-collection***](apps/unofficial-homestuck-collection.md) | *An offline collection of Homestuck and its related works.*..[ *read more* ](apps/unofficial-homestuck-collection.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unofficial-homestuck-collection) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unofficial-homestuck-collection) | -| | [***unofficial-zalo***](apps/unofficial-zalo.md) | *Unofficial Zalo App.*..[ *read more* ](apps/unofficial-zalo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unofficial-zalo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unofficial-zalo) | -| | [***unreel***](apps/unreel.md) | *A GUI to create Reveal presentations.*..[ *read more* ](apps/unreel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unreel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unreel) | -| | [***unyo***](apps/unyo.md) | *Anime streaming and Manga reader desktop app without ads.*..[ *read more* ](apps/unyo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unyo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unyo) | -| | [***updatedeployqt***](apps/updatedeployqt.md) | *Tool to deploy auto update for qt applications.*..[ *read more* ](apps/updatedeployqt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/updatedeployqt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/updatedeployqt) | -| | [***upnote***](apps/upnote.md) | *Stay focused and productive with a clean and clutter-free note space.*..[ *read more* ](apps/upnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/upnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/upnote) | -| | [***upnotes***](apps/upnotes.md) | *A notes app for software developers.*..[ *read more* ](apps/upnotes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/upnotes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/upnotes) | -| | [***upscayl***](apps/upscayl.md) | *Free and Open Source AI Image Upscaler.*..[ *read more* ](apps/upscayl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/upscayl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/upscayl) | -| | [***urbanterror***](apps/urbanterror.md) | *A team-based tactical game shooter based on the Quake 3 Engine.*..[ *read more* ](apps/urbanterror.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/urbanterror) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/urbanterror) | -| | [***utilso***](apps/utilso.md) | *Regex Tester, JWT Verify, Image Converter, Format JSON, Decode...*..[ *read more* ](apps/utilso.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/utilso) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/utilso) | -| | [***uyou***](apps/uyou.md) | *This is a todo list with electron.*..[ *read more* ](apps/uyou.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uyou) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uyou) | -| | [***uzdoom***](apps/uzdoom.md) | *UZDoom is a feature centric port for all Doom engine games, based on GZDoom, adding an advanced renderer and powerful scripting capabilities.*..[ *read more* ](apps/uzdoom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uzdoom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uzdoom) | -| | [***v2ray-desktop***](apps/v2ray-desktop.md) | *V2Ray GUI client for Linux.*..[ *read more* ](apps/v2ray-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/v2ray-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/v2ray-desktop) | -| | [***valeronoi***](apps/valeronoi.md) | *Companion app for Valetudo for generating WiFi heat maps.*..[ *read more* ](apps/valeronoi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/valeronoi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/valeronoi) | -| | [***vapour***](apps/vapour.md) | *An alternative open source Steam client.*..[ *read more* ](apps/vapour.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vapour) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vapour) | -| | [***varia***](apps/varia.md) | *Unofficial. Aria2-based advanced download manager with support for downloading files, torrents, video and audio + support for Chromium and Firefox extension.*..[ *read more* ](apps/varia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/varia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/varia) | -| | [***vcard-studio***](apps/vcard-studio.md) | *A contact management application with support for vCard file format (.vcf).*..[ *read more* ](apps/vcard-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vcard-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vcard-studio) | -| | [***vcloudcam***](apps/vcloudcam.md) | *Solution for the camera systems of gas and fuel stations.*..[ *read more* ](apps/vcloudcam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vcloudcam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vcloudcam) | -| | [***vcmi***](apps/vcmi.md) | *Unofficial AppImage of vcmi open-source engine for Heroes of Might and Magic III*..[ *read more* ](apps/vcmi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vcmi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vcmi) | -| | [***vechain***](apps/vechain.md) | *A browser that empowers DApps on VeChain.*..[ *read more* ](apps/vechain.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vechain) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vechain) | -| | [***vector***](apps/vector.md) | *Vector is a decentralized communication platform built on the Nostr Protocol.*..[ *read more* ](apps/vector.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vector) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vector) | -| | [***veracrypt***](apps/veracrypt.md) | *VeraCrypt is a free open source disk encryption software.*..[ *read more* ](apps/veracrypt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/veracrypt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/veracrypt) | -| | [***verto***](apps/verto.md) | *A multi-currency crypto wallet with support for EOS & VTX.*..[ *read more* ](apps/verto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/verto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/verto) | -| | [***vesktop***](apps/vesktop.md) | *Vesktop gives you the performance of web Discord.*..[ *read more* ](apps/vesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vesktop) | -| | [***vgmtrans***](apps/vgmtrans.md) | *A tool to convert proprietary, sequenced videogame music.*..[ *read more* ](apps/vgmtrans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vgmtrans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vgmtrans) | -| | [***vhc-viewer-wayland***](apps/vhc-viewer-wayland.md) | *Vulkan Hardware Capability Viewer.*..[ *read more* ](apps/vhc-viewer-wayland.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vhc-viewer-wayland) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vhc-viewer-wayland) | -| | [***vhc-viewer-x11***](apps/vhc-viewer-x11.md) | *Vulkan Hardware Capability Viewer.*..[ *read more* ](apps/vhc-viewer-x11.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vhc-viewer-x11) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vhc-viewer-x11) | -| | [***via***](apps/via.md) | *Your keyboard's best friend.*..[ *read more* ](apps/via.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/via) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/via) | -| | [***vial***](apps/vial.md) | *GUI and a QMK fork for configuring your keyboard in real time.*..[ *read more* ](apps/vial.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vial) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vial) | -| | [***vibeprint-studio***](apps/vibeprint-studio.md) | *Unofficial AppImage of Vibeprint Studio.*..[ *read more* ](apps/vibeprint-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vibeprint-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vibeprint-studio) | -| | [***viber***](apps/viber.md) | *Proprietary cross-platform IM and VoIP software.*..[ *read more* ](apps/viber.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viber) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viber) | -| | [***viber-enhanced***](apps/viber-enhanced.md) | *Unofficial. Enhanced AppImage of proprietary cross-platform IM and VoIP software.*..[ *read more* ](apps/viber-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viber-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viber-enhanced) | -| | [***vice***](apps/vice.md) | *Unofficial AppImage of VICE.*..[ *read more* ](apps/vice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vice) | -| | [***vicinae***](apps/vicinae.md) | *A high-performance, native launcher for your desktop built with C++ and Qt. Native, fast, extensible.*..[ *read more* ](apps/vicinae.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vicinae) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vicinae) | -| | [***vidbee***](apps/vidbee.md) | *Download videos from almost any website worldwide.*..[ *read more* ](apps/vidbee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vidbee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vidbee) | -| | [***vidcutter***](apps/vidcutter.md) | *Simple and fast video cutter and joiner.*..[ *read more* ](apps/vidcutter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vidcutter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vidcutter) | -| | [***video-hub***](apps/video-hub.md) | *A fastest way to browse and search for videos on your computer.*..[ *read more* ](apps/video-hub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/video-hub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/video-hub) | -| | [***video-trimmer***](apps/video-trimmer.md) | *Unofficial. Simple video trimming, with option to trim precisely or to trim without loosing video quality.*..[ *read more* ](apps/video-trimmer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/video-trimmer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/video-trimmer) | -| | [***videomass***](apps/videomass.md) | *Free, open source and cross-platform GUI for FFmpeg.*..[ *read more* ](apps/videomass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/videomass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/videomass) | -| | [***vieb***](apps/vieb.md) | *Vim Inspired Electron Browser.*..[ *read more* ](apps/vieb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vieb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vieb) | -| | [***vifm***](apps/vifm.md) | *File manager with curses interface providing Vim-like environment.*..[ *read more* ](apps/vifm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vifm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vifm) | -| | [***vigad***](apps/vigad.md) | *Extract live-data from your screen.*..[ *read more* ](apps/vigad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vigad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vigad) | -| | [***vikunja***](apps/vikunja.md) | *The open-source, self-hostable to-do app.*..[ *read more* ](apps/vikunja.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vikunja) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vikunja) | -| | [***viper***](apps/viper.md) | *Launcher and Updater for TF2 Northstar.*..[ *read more* ](apps/viper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viper) | -| | [***viper-browser***](apps/viper-browser.md) | *Fast and lightweight Qt web browser.*..[ *read more* ](apps/viper-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viper-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viper-browser) | -| | [***vipster***](apps/vipster.md) | *Visual periodic structure editor.*..[ *read more* ](apps/vipster.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vipster) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vipster) | -| | [***vircadia***](apps/vircadia.md) | *Open Source continuation of the High Fidelity metaverse.*..[ *read more* ](apps/vircadia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vircadia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vircadia) | -| | [***virt-manager***](apps/virt-manager.md) | *Unofficial AppImage of virt-manager, interface for managing virtual machines.*..[ *read more* ](apps/virt-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/virt-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/virt-manager) | -| | [***virtscreen***](apps/virtscreen.md) | *Make your iPad/tablet/computer into a secondary monitor on Linux.*..[ *read more* ](apps/virtscreen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/virtscreen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/virtscreen) | -| | [***virtualbox***](apps/virtualbox.md) | *Powerful x86 virtualization for enterprise as well as home use.*..[ *read more* ](apps/virtualbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/virtualbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/virtualbox) | -| | [***visipics***](apps/visipics.md) | *Windows software to find and remove duplicate pictures. Unofficial AppImage built using "wine32-deploy" and powered by "wine".*..[ *read more* ](apps/visipics.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/visipics) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/visipics) | -| | [***visual-define-xml-editor***](apps/visual-define-xml-editor.md) | *Editor for CDISC Define-XML standard.*..[ *read more* ](apps/visual-define-xml-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/visual-define-xml-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/visual-define-xml-editor) | -| | [***visual-lvm***](apps/visual-lvm.md) | *Visual LVM the remote gui lvm manager for all linux platform.*..[ *read more* ](apps/visual-lvm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/visual-lvm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/visual-lvm) | -| | [***visual-studio-code***](apps/visual-studio-code.md) | *Unofficial AppImage of Visual Studio Code.*..[ *read more* ](apps/visual-studio-code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/visual-studio-code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/visual-studio-code) | -| | [***visualboyadvance-m***](apps/visualboyadvance-m.md) | *Unofficial AppImage of VisualBoyAdvance-M.*..[ *read more* ](apps/visualboyadvance-m.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/visualboyadvance-m) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/visualboyadvance-m) | -| | [***visualfamilytree***](apps/visualfamilytree.md) | *Create a family tree with information and pictures.*..[ *read more* ](apps/visualfamilytree.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/visualfamilytree) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/visualfamilytree) | -| | [***vita3k***](apps/vita3k.md) | *Experimental PlayStation Vita emulator.*..[ *read more* ](apps/vita3k.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vita3k) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vita3k) | -| | [***vitomu***](apps/vitomu.md) | *Easy to use video to audio converter.*..[ *read more* ](apps/vitomu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vitomu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vitomu) | -| | [***vivaldi-snapshot***](apps/vivaldi-snapshot.md) | *Unofficial. Advanced Web Browser, Testing Version.*..[ *read more* ](apps/vivaldi-snapshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vivaldi-snapshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vivaldi-snapshot) | -| | [***vivaldi-stable***](apps/vivaldi-stable.md) | *Unofficial. Advanced Web Browser, Stable Version.*..[ *read more* ](apps/vivaldi-stable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vivaldi-stable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vivaldi-stable) | -| | [***vivifyscrum***](apps/vivifyscrum.md) | *Agile Tool for Professionals.*..[ *read more* ](apps/vivifyscrum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vivifyscrum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vivifyscrum) | -| | [***vizgraph***](apps/vizgraph.md) | *A simple tool for Using Graphviz.*..[ *read more* ](apps/vizgraph.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vizgraph) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vizgraph) | -| | [***vk-desktop***](apps/vk-desktop.md) | *Cross-platform client VKontakte.*..[ *read more* ](apps/vk-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vk-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vk-desktop) | -| | [***vk-music-fs***](apps/vk-music-fs.md) | *Listen to the music from VK.*..[ *read more* ](apps/vk-music-fs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vk-music-fs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vk-music-fs) | -| | [***vkdt***](apps/vkdt.md) | *Raw photography workflow that sucks less, enabling real-time support for animations, timelapses, raw video, and heavy lifting algorithms like image alignment and better highlight inpainting.*..[ *read more* ](apps/vkdt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vkdt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vkdt) | -| | [***vkquake***](apps/vkquake.md) | *Vulkan Quake game port based on QuakeSpasm.*..[ *read more* ](apps/vkquake.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vkquake) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vkquake) | -| | [***vlc***](apps/vlc.md) | *Unofficial. Free and Open Source Video & Media player for Audio, streaming and more.*..[ *read more* ](apps/vlc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vlc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vlc) | -| | [***vlc-git***](apps/vlc-git.md) | *Unofficial. Free and Open Source Video & Media player, GIT version.*..[ *read more* ](apps/vlc-git.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vlc-git) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vlc-git) | -| | [***vnote***](apps/vnote.md) | *Note-taking application for pleasant Markdown.*..[ *read more* ](apps/vnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vnote) | -| | [***vocabsieve***](apps/vocabsieve.md) | *Simple sentence mining tool for language learning.*..[ *read more* ](apps/vocabsieve.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vocabsieve) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vocabsieve) | -| | [***voicevox***](apps/voicevox.md) | *Offical Frontend for the free VOICEVOX TTS Engine.*..[ *read more* ](apps/voicevox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/voicevox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/voicevox) | -| | [***vokoscreenng***](apps/vokoscreenng.md) | *Unofficial, a powerful screencast creator.*..[ *read more* ](apps/vokoscreenng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vokoscreenng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vokoscreenng) | -| | [***volaris***](apps/volaris.md) | *Volaris-Gui is the wrapper for Volaris, a secure file encryption software.*..[ *read more* ](apps/volaris.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/volaris) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/volaris) | -| | [***vpaint***](apps/vpaint.md) | *Experimental vector graphics and 2D animation editor.*..[ *read more* ](apps/vpaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vpaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vpaint) | -| | [***vrcft-avalonia***](apps/vrcft-avalonia.md) | *Cross-platform VRCFaceTracking made with Avalonia.*..[ *read more* ](apps/vrcft-avalonia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vrcft-avalonia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vrcft-avalonia) | -| | [***vrcx***](apps/vrcx.md) | *Friendship management tool for VRChat.*..[ *read more* ](apps/vrcx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vrcx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vrcx) | -| | [***vrest-ng***](apps/vrest-ng.md) | *Zero code API test automation solution.*..[ *read more* ](apps/vrest-ng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vrest-ng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vrest-ng) | -| | [***vrew***](apps/vrew.md) | *Your first video editor, your easiest choice.*..[ *read more* ](apps/vrew.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vrew) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vrew) | -| | [***vscodium***](apps/vscodium.md) | *Community-driven, freely-licensed binary distribution of MS VSCode.*..[ *read more* ](apps/vscodium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vscodium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vscodium) | -| | [***vue-calc***](apps/vue-calc.md) | *A Simple VueJS's Calculator built with ElectronJS.*..[ *read more* ](apps/vue-calc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vue-calc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vue-calc) | -| | [***vuerd***](apps/vuerd.md) | *A desktop ERD app.*..[ *read more* ](apps/vuerd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vuerd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vuerd) | -| | [***vup***](apps/vup.md) | *Private and decentralized cloud storage.*..[ *read more* ](apps/vup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vup) | -| | [***walc***](apps/walc.md) | *WhatsApp Linux Client, Unofficial.*..[ *read more* ](apps/walc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/walc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/walc) | -| | [***wallettech***](apps/wallettech.md) | *BytechCoin GUI Wallet.*..[ *read more* ](apps/wallettech.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wallettech) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wallettech) | -| | [***warp***](apps/warp.md) | *Unofficial. Fast and secure file transfer through internet or local network exchanging a word-based code.*..[ *read more* ](apps/warp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/warp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/warp) | -| | [***warp-terminal***](apps/warp-terminal.md) | *Terminal reimagined with AI and collaborative tools.*..[ *read more* ](apps/warp-terminal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/warp-terminal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/warp-terminal) | -| | [***warteschlangensimulator***](apps/warteschlangensimulator.md) | *A free, platform independent, discrete-event, stochastic simulator which allows to model queueing systems in form of flowcharts.*..[ *read more* ](apps/warteschlangensimulator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/warteschlangensimulator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/warteschlangensimulator) | -| | [***wasistlos***](apps/wasistlos.md) | *Unofficial, WhatsApp Linux Client, formerly known as "whatsapp-for-linux".*..[ *read more* ](apps/wasistlos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wasistlos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wasistlos) | -| | [***watched***](apps/watched.md) | *A media player and a browser for Excellent entertainment.*..[ *read more* ](apps/watched.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/watched) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/watched) | -| | [***watchflower***](apps/watchflower.md) | *Read and plot datas from your Xiaomi devices.*..[ *read more* ](apps/watchflower.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/watchflower) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/watchflower) | -| | [***watchit***](apps/watchit.md) | *Open movies everywhere.*..[ *read more* ](apps/watchit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/watchit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/watchit) | -| | [***waterfox***](apps/waterfox.md) | *A privacy-focused web browser engineered to give you speed, control, and peace of mind on the internet.*..[ *read more* ](apps/waterfox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/waterfox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/waterfox) | -| | [***waydroid-helper***](apps/waydroid-helper.md) | *App that provides a user-friendly way to configure Waydroid and install extensions, including Magisk and ARM translation (android).*..[ *read more* ](apps/waydroid-helper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/waydroid-helper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/waydroid-helper) | -| | [***wazo-desktop***](apps/wazo-desktop.md) | *Wazo desktop client for wazo VOIP server.*..[ *read more* ](apps/wazo-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wazo-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wazo-desktop) | -| | [***weakauras***](apps/weakauras.md) | *App to provide missing link between Wago.io and World of Warcraft.*..[ *read more* ](apps/weakauras.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/weakauras) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/weakauras) | -| | [***weatherdump***](apps/weatherdump.md) | *A WeatherDump GUI.*..[ *read more* ](apps/weatherdump.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/weatherdump) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/weatherdump) | -| | [***webamp***](apps/webamp.md) | *Winamp Player 2.9 reimplementation in HTML5 and JS.*..[ *read more* ](apps/webamp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webamp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webamp) | -| | [***webamp-desktop-enhanced***](apps/webamp-desktop-enhanced.md) | *Unofficial, experimental cross-platform desktop version of Winamp 2.9 reimplementation in electron.*..[ *read more* ](apps/webamp-desktop-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webamp-desktop-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webamp-desktop-enhanced) | -| | [***webcamoid***](apps/webcamoid.md) | *Unofficial. A multi-platform camera capture app focused on providing all major features required by power users with a very simple and intuitive interface.*..[ *read more* ](apps/webcamoid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webcamoid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webcamoid) | -| | [***webcord***](apps/webcord.md) | *A Discord and Fosscord client implemented without Discord API.*..[ *read more* ](apps/webcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webcord) | -| | [***webcord-enhanced***](apps/webcord-enhanced.md) | *Unofficial, A Discord and Fosscord client implemented without Discord API.*..[ *read more* ](apps/webcord-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webcord-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webcord-enhanced) | -| | [***webdesktop***](apps/webdesktop.md) | *WebDesktop make apps with just a text editor and nodejs.*..[ *read more* ](apps/webdesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webdesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webdesktop) | -| | [***webkitty***](apps/webkitty.md) | *Local web development IDE.*..[ *read more* ](apps/webkitty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webkitty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webkitty) | -| | [***webrecorder***](apps/webrecorder.md) | *A complete packaging of Webrecorder hosted service in Electron.*..[ *read more* ](apps/webrecorder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webrecorder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webrecorder) | -| | [***weektodo***](apps/weektodo.md) | *WeekToDo is a Free and Open Source Weekly Planner.*..[ *read more* ](apps/weektodo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/weektodo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/weektodo) | -| | [***westeroscraftlauncher***](apps/westeroscraftlauncher.md) | *Custom launcher for modded Minecraft, game.*..[ *read more* ](apps/westeroscraftlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/westeroscraftlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/westeroscraftlauncher) | -| | [***wewechat***](apps/wewechat.md) | *Unofficial WeChat client built with React, MobX and Electron.*..[ *read more* ](apps/wewechat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wewechat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wewechat) | -| | [***wexond***](apps/wexond.md) | *Extensible, fast and innovative web browser with material UI.*..[ *read more* ](apps/wexond.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wexond) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wexond) | -| | [***wezterm***](apps/wezterm.md) | *A GPU-accelerated terminal emulator and multiplexer.*..[ *read more* ](apps/wezterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wezterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wezterm) | -| | [***wezterm-nightly***](apps/wezterm-nightly.md) | *A GPU-accelerated terminal emulator and multiplexer.*..[ *read more* ](apps/wezterm-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wezterm-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wezterm-nightly) | -| | [***whalebird***](apps/whalebird.md) | *An Electron based Mastodon client.*..[ *read more* ](apps/whalebird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whalebird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whalebird) | -| | [***whatsdesk***](apps/whatsdesk.md) | *Unofficial, An unofficial client of WhatsApp.*..[ *read more* ](apps/whatsdesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whatsdesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whatsdesk) | -| | [***whatsie***](apps/whatsie.md) | *Unofficial, feature rich WhatsApp web client based on Qt WebEngine.*..[ *read more* ](apps/whatsie.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whatsie) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whatsie) | -| | [***whatstron***](apps/whatstron.md) | *Unofficial WhatsApp desktop client for Linux.*..[ *read more* ](apps/whatstron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whatstron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whatstron) | -| | [***whirlpool-gui***](apps/whirlpool-gui.md) | *Desktop GUI for Whirlpool by Samourai-Wallet.*..[ *read more* ](apps/whirlpool-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whirlpool-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whirlpool-gui) | -| | [***whispering***](apps/whispering.md) | *Press shortcut → speak → get text. Free and open source. More local-first apps soon ❤️.*..[ *read more* ](apps/whispering.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whispering) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whispering) | -| | [***whu-library-seat***](apps/whu-library-seat.md) | *Wuhan University Library Assistant, for Jinan University.*..[ *read more* ](apps/whu-library-seat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whu-library-seat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whu-library-seat) | -| | [***wick-editor***](apps/wick-editor.md) | *A free and open-source tool for creating games, animations and everything in-between!*..[ *read more* ](apps/wick-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wick-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wick-editor) | -| | [***widelands***](apps/widelands.md) | *Real-time strategy game with singleplayer campaigns.*..[ *read more* ](apps/widelands.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/widelands) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/widelands) | -| | [***wiiu-downloader***](apps/wiiu-downloader.md) | *Allows to download encrypted wiiu files from nintendo's official servers.*..[ *read more* ](apps/wiiu-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wiiu-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wiiu-downloader) | -| | [***wikilynx***](apps/wikilynx.md) | *A simple game browser made using Qt C++ for playing wikipedia speed-runs the right way.*..[ *read more* ](apps/wikilynx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wikilynx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wikilynx) | -| | [***win11-clipboard-history***](apps/win11-clipboard-history.md) | *A beautiful, Windows 11-style Clipboard History Manager for Linux.*..[ *read more* ](apps/win11-clipboard-history.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/win11-clipboard-history) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/win11-clipboard-history) | -| | [***winboat***](apps/winboat.md) | *Run Windows apps on 🐧 Linux with ✨ seamless integration.*..[ *read more* ](apps/winboat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/winboat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/winboat) | -| | [***window-pet***](apps/window-pet.md) | *Pet overlay app that lets you have adorable companion such as pets, anime characters on your screen.*..[ *read more* ](apps/window-pet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/window-pet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/window-pet) | -| | [***windows2usb***](apps/windows2usb.md) | *Flash Drive burning utility, MBR/GPT, BIOS/UEFI, FAT32/NTFS.*..[ *read more* ](apps/windows2usb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/windows2usb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/windows2usb) | -| | [***windows95***](apps/windows95.md) | *Unofficial. Windows 95 in Electron.*..[ *read more* ](apps/windows95.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/windows95) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/windows95) | -| | [***windusb-gui***](apps/windusb-gui.md) | *A modern, Rust-based graphical tool for creating bootable Windows USB installers on Linux.*..[ *read more* ](apps/windusb-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/windusb-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/windusb-gui) | -| | [***wine***](apps/wine.md) | *Unofficial. Run Windows programs, select a version from mmtrt/WINE_AppImage.*..[ *read more* ](apps/wine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine) | -| | [***wine-devel***](apps/wine-devel.md) | *Unofficial. Compatibility layer to run x86_64 Windows programs, Dev Edition.*..[ *read more* ](apps/wine-devel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-devel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-devel) | -| | [***wine-stable***](apps/wine-stable.md) | *Unofficial. Compatibility layer to run x86_64 Windows programs, Stable.*..[ *read more* ](apps/wine-stable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-stable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-stable) | -| | [***wine-staging***](apps/wine-staging.md) | *Unofficial. Compatibility layer to run x86_64 Windows programs, Staging.*..[ *read more* ](apps/wine-staging.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-staging) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-staging) | -| | [***wine-staging-ge-proton***](apps/wine-staging-ge-proton.md) | *Unofficial. Run x86_64 Windows programs, Staging GE Proton.*..[ *read more* ](apps/wine-staging-ge-proton.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-staging-ge-proton) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-staging-ge-proton) | -| | [***wine32-deploy***](apps/wine32-deploy.md) | *Tool for creating AppImages for 32-bit Microsoft Windows apps.*..[ *read more* ](apps/wine32-deploy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine32-deploy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine32-deploy) | -| | [***winrar***](apps/winrar.md) | *Unofficial, data compression, encryption and archiving tool.*..[ *read more* ](apps/winrar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/winrar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/winrar) | -| | [***wipeout-rewrite***](apps/wipeout-rewrite.md) | *Unofficial, re-implementation of the 1995 PSX game wipEout.*..[ *read more* ](apps/wipeout-rewrite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wipeout-rewrite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wipeout-rewrite) | -| | [***wire***](apps/wire.md) | *The most secure collaboration platform.*..[ *read more* ](apps/wire.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wire) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wire) | -| | [***wireguard-gui***](apps/wireguard-gui.md) | *A wireguard client GUI for Debian/Linux made with nextauri.*..[ *read more* ](apps/wireguard-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wireguard-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wireguard-gui) | -| | [***wireshark***](apps/wireshark.md) | *Unofficial, the world's most popular network protocol analyze.*..[ *read more* ](apps/wireshark.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wireshark) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wireshark) | -| | [***wishdemo***](apps/wishdemo.md) | *A μ Tcl/Tk distribution statically linked, AppImage.*..[ *read more* ](apps/wishdemo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wishdemo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wishdemo) | -| | [***wives***](apps/wives.md) | *A beautiful, modern & feature-rich Terminal Emulator.*..[ *read more* ](apps/wives.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wives) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wives) | -| | [***wiznoteplus***](apps/wiznoteplus.md) | *The third party that supports the plug-in is Zhinote client.*..[ *read more* ](apps/wiznoteplus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wiznoteplus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wiznoteplus) | -| | [***wled-gui***](apps/wled-gui.md) | *Cross-platform desktop app for WLED.*..[ *read more* ](apps/wled-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wled-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wled-gui) | -| | [***wlx-overlay-s***](apps/wlx-overlay-s.md) | *Access your Wayland/X11 desktop from Monado/WiVRn/SteamVR.*..[ *read more* ](apps/wlx-overlay-s.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wlx-overlay-s) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wlx-overlay-s) | -| | [***wnr***](apps/wnr.md) | *Work/Rest Timer. Stricter. Prettier. More features.*..[ *read more* ](apps/wnr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wnr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wnr) | -| | [***woke***](apps/woke.md) | *A REST client with grand ambitions and limited scope.*..[ *read more* ](apps/woke.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/woke) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/woke) | -| | [***wolai***](apps/wolai.md) | *A new form of document/note/information system, in chinese.*..[ *read more* ](apps/wolai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wolai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wolai) | -| | [***wonderlab***](apps/wonderlab.md) | *A new generation Minecraft launcher.*..[ *read more* ](apps/wonderlab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wonderlab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wonderlab) | -| | [***wonderwall***](apps/wonderwall.md) | *Wallpaper manager for Linux.*..[ *read more* ](apps/wonderwall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wonderwall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wonderwall) | -| | [***woocommerce-pos***](apps/woocommerce-pos.md) | *Electron Desktop App for WooCommerce POS*..[ *read more* ](apps/woocommerce-pos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/woocommerce-pos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/woocommerce-pos) | -| | [***woof-doom***](apps/woof-doom.md) | *Woof! is a continuation of the Boom/MBF bloodline of Doom source ports.*..[ *read more* ](apps/woof-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/woof-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/woof-doom) | -| | [***wootility***](apps/wootility.md) | *Utility for configuring Wooting keyboards.*..[ *read more* ](apps/wootility.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wootility) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wootility) | -| | [***wooting-analog-midi***](apps/wooting-analog-midi.md) | *Virtual MIDI device for, Wooting analog keyboards.*..[ *read more* ](apps/wooting-analog-midi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wooting-analog-midi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wooting-analog-midi) | -| | [***wootomation***](apps/wootomation.md) | *The official Wooting Macros software.*..[ *read more* ](apps/wootomation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wootomation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wootomation) | -| | [***wora***](apps/wora.md) | *A beautiful player for audiophiles.*..[ *read more* ](apps/wora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wora) | -| | [***workflowy***](apps/workflowy.md) | *A notetaking tool.*..[ *read more* ](apps/workflowy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/workflowy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/workflowy) | -| | [***wournal***](apps/wournal.md) | *Simple "digitial paper" for note taking and PDF annotation. Heavily inspired by Xournal.*..[ *read more* ](apps/wournal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wournal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wournal) | -| | [***wowup***](apps/wowup.md) | *WowUp the World of Warcraft addon updater.*..[ *read more* ](apps/wowup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wowup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wowup) | -| | [***wox***](apps/wox.md) | *A cross-platform launcher that simply works.*..[ *read more* ](apps/wox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wox) | -| | [***wps-office***](apps/wps-office.md) | *Unofficial, Office suite built from the official .deb package.*..[ *read more* ](apps/wps-office.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wps-office) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wps-office) | -| | [***wrapbox***](apps/wrapbox.md) | *An Electron wrapper for web pages.*..[ *read more* ](apps/wrapbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wrapbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wrapbox) | -| | [***wsjtz***](apps/wsjtz.md) | *AppImage of WSJT-Z – fork of WSJT-X with automation features.*..[ *read more* ](apps/wsjtz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wsjtz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wsjtz) | -| | [***wsocks***](apps/wsocks.md) | *A light websocket based proxy.*..[ *read more* ](apps/wsocks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wsocks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wsocks) | -| | [***wsrx***](apps/wsrx.md) | *Controlled TCP-over-WebSocket forwarding tunnel.*..[ *read more* ](apps/wsrx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wsrx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wsrx) | -| | [***wthrr***](apps/wthrr.md) | *Weather companion for the terminal.*..[ *read more* ](apps/wthrr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wthrr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wthrr) | -| | [***wxmaxima***](apps/wxmaxima.md) | *A document based interface for the computer algebra system Maxima.*..[ *read more* ](apps/wxmaxima.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wxmaxima) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wxmaxima) | -| | [***wxmedit***](apps/wxmedit.md) | *A cross-platform Text/Hex Editor, an improved version of MadEdit.*..[ *read more* ](apps/wxmedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wxmedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wxmedit) | -| | [***wyrmhole***](apps/wyrmhole.md) | *A cross-platform GUI wrapper for the p2p magic-wormhole.rs library.*..[ *read more* ](apps/wyrmhole.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wyrmhole) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wyrmhole) | -| | [***x-loc***](apps/x-loc.md) | *Extra localizations/translations manager for Stardew Valley.*..[ *read more* ](apps/x-loc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/x-loc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/x-loc) | -| | [***x-minecraft-launcher***](apps/x-minecraft-launcher.md) | *An Open Source Minecraft Launcher with Modern UX.*..[ *read more* ](apps/x-minecraft-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/x-minecraft-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/x-minecraft-launcher) | -| | [***xapkdetector***](apps/xapkdetector.md) | *APK/DEX detector that shows an information about build tools, libraries and protection of APK/DEX files.*..[ *read more* ](apps/xapkdetector.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xapkdetector) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xapkdetector) | -| | [***xash3d-fwgs***](apps/xash3d-fwgs.md) | *A game engine aimed to provide compatibility with Half-Life Engine and extend it.*..[ *read more* ](apps/xash3d-fwgs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xash3d-fwgs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xash3d-fwgs) | -| | [***xash3d-fwgs-enhanced***](apps/xash3d-fwgs-enhanced.md) | *Unofficial, a game engine aimed to provide compatibility with Half-Life Engine and extend it.*..[ *read more* ](apps/xash3d-fwgs-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xash3d-fwgs-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xash3d-fwgs-enhanced) | -| | [***xbydriver***](apps/xbydriver.md) | *Xiaobaiyang Cloud Drive - Powered by Alibaba Cloud Drive.*..[ *read more* ](apps/xbydriver.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xbydriver) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xbydriver) | -| | [***xchat***](apps/xchat.md) | *Chat with other people using Internet Relay Chat.*..[ *read more* ](apps/xchat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xchat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xchat) | -| | [***xclock***](apps/xclock.md) | *Unofficial AppImage of xclock.*..[ *read more* ](apps/xclock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xclock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xclock) | -| | [***xcloud-desktop***](apps/xcloud-desktop.md) | *An unofficial desktop app for the XCloud web beta.*..[ *read more* ](apps/xcloud-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xcloud-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xcloud-desktop) | -| | [***xde***](apps/xde.md) | *The Expo Development Environment.*..[ *read more* ](apps/xde.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xde) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xde) | -| | [***xdelta3-cross-gui***](apps/xdelta3-cross-gui.md) | *A cross-platform GUI for creating xDelta3 patches.*..[ *read more* ](apps/xdelta3-cross-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xdelta3-cross-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xdelta3-cross-gui) | -| | [***xelfviewer***](apps/xelfviewer.md) | *A multiplatform ELF file viewer/editor.*..[ *read more* ](apps/xelfviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xelfviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xelfviewer) | -| | [***xemu***](apps/xemu.md) | *Original Xbox Emulator.*..[ *read more* ](apps/xemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xemu) | -| | [***xemu-enhanced***](apps/xemu-enhanced.md) | *Unofficial, original Xbox Emulator for Windows, macOS, and Linux (Active Development).*..[ *read more* ](apps/xemu-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xemu-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xemu-enhanced) | -| | [***xenia-canary***](apps/xenia-canary.md) | *Unofficial AppImage of xenia-canary Xbox360 emulator.*..[ *read more* ](apps/xenia-canary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xenia-canary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xenia-canary) | -| | [***xenia-edge***](apps/xenia-edge.md) | *Xbox 360 Emulator Research Project, fork of the Xenia emulator, with the aim of quicker iteration and improvements to Vulkan backend.*..[ *read more* ](apps/xenia-edge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xenia-edge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xenia-edge) | -| | [***xeyes***](apps/xeyes.md) | *Unofficial, a "follow the mouse" X demo, using the X SHAPE extension.*..[ *read more* ](apps/xeyes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xeyes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xeyes) | -| | [***xgetter***](apps/xgetter.md) | *Download video on Youtube, Facebook, X(Twitter), Instagram, Tiktok, Bilibili, Douyin and more.*..[ *read more* ](apps/xgetter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xgetter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xgetter) | -| | [***xilinota***](apps/xilinota.md) | *Note-taking app boasting instant syncing among devices and direct keeping of markdown files.*..[ *read more* ](apps/xilinota.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xilinota) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xilinota) | -| | [***xiphos***](apps/xiphos.md) | *Unofficial, a Bible study tool using GTK.*..[ *read more* ](apps/xiphos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xiphos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xiphos) | -| | [***xl-converter***](apps/xl-converter.md) | *Powerful image converter with support for multithreading.*..[ *read more* ](apps/xl-converter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xl-converter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xl-converter) | -| | [***xlights***](apps/xlights.md) | *A sequencer for Lights and sequences manager.*..[ *read more* ](apps/xlights.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xlights) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xlights) | -| | [***xm8***](apps/xm8.md) | *PC-8801 emulator.*..[ *read more* ](apps/xm8.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xm8) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xm8) | -| | [***xmachoviewer***](apps/xmachoviewer.md) | *XMachOViewer is a Mach-O viewer.*..[ *read more* ](apps/xmachoviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xmachoviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xmachoviewer) | -| | [***xmedcon***](apps/xmedcon.md) | *An open-source toolkit for medical image conversion.*..[ *read more* ](apps/xmedcon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xmedcon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xmedcon) | -| | [***xmoto***](apps/xmoto.md) | *A challenging 2D motocross platform game, where physics play an important role.*..[ *read more* ](apps/xmoto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xmoto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xmoto) | -| | [***xnconvert***](apps/xnconvert.md) | *A fast, powerful and free cross-platform batch image converter.*..[ *read more* ](apps/xnconvert.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xnconvert) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xnconvert) | -| | [***xnviewmp***](apps/xnviewmp.md) | *Graphic viewer, browser, converter.*..[ *read more* ](apps/xnviewmp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xnviewmp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xnviewmp) | -| | [***xonsh***](apps/xonsh.md) | *Python-powered, cross-platform, Unix-gazing shell.*..[ *read more* ](apps/xonsh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xonsh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xonsh) | -| | [***xopcodecalc***](apps/xopcodecalc.md) | *Opcode calculator / ASM calculator.*..[ *read more* ](apps/xopcodecalc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xopcodecalc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xopcodecalc) | -| | [***xoreos***](apps/xoreos.md) | *Unofficial, A reimplementation of BioWare's Aurora engine.*..[ *read more* ](apps/xoreos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xoreos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xoreos) | -| | [***xournal++***](apps/xournal++.md) | *A C++ handwriting notetaking software with PDF annotation support.*..[ *read more* ](apps/xournal++.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xournal++) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xournal++) | -| | [***xournal++nightly***](apps/xournal++nightly.md) | *C++ notetaking software with PDF annotation support, DEV.*..[ *read more* ](apps/xournal++nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xournal++nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xournal++nightly) | -| | [***xournalpp***](apps/xournalpp.md) | *Unofficial. Handwriting notetaking software with PDF annotation support. Written in C++ with GTK3.*..[ *read more* ](apps/xournalpp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xournalpp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xournalpp) | -| | [***xpeviewer***](apps/xpeviewer.md) | *PE file viewer/editor.*..[ *read more* ](apps/xpeviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xpeviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xpeviewer) | -| | [***xpipe***](apps/xpipe.md) | *Your entire server infrastructure at your fingertips. Manage all your servers from your local desktop. No remote setup required.*..[ *read more* ](apps/xpipe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xpipe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xpipe) | -| | [***xplist***](apps/xplist.md) | *Cross-platform Plist Editor.*..[ *read more* ](apps/xplist.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xplist) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xplist) | -| | [***xplorer***](apps/xplorer.md) | *Xplorer, a customizable, modern file manager.*..[ *read more* ](apps/xplorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xplorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xplorer) | -| | [***xsnow***](apps/xsnow.md) | *Unofficial, let it snow on your desktop.*..[ *read more* ](apps/xsnow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xsnow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xsnow) | -| | [***xtomarkdown***](apps/xtomarkdown.md) | *A cross-platform GUI application for converting documents to Markdown.*..[ *read more* ](apps/xtomarkdown.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xtomarkdown) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xtomarkdown) | -| | [***xtool***](apps/xtool.md) | *Cross-platform Xcode replacement. Build and deploy iOS apps with SwiftPM.*..[ *read more* ](apps/xtool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xtool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xtool) | -| | [***xtuber***](apps/xtuber.md) | *Simple YouTube Downloader.*..[ *read more* ](apps/xtuber.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xtuber) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xtuber) | -| | [***xxh***](apps/xxh.md) | *Bring your favorite shell wherever you go through the ssh.*..[ *read more* ](apps/xxh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xxh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xxh) | -| | [***xyce***](apps/xyce.md) | *Xyce Parallel Electronic Simulator.*..[ *read more* ](apps/xyce.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xyce) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xyce) | -| | [***yaak***](apps/yaak.md) | *The most intuitive desktop API client. Organize and execute REST, GraphQL, WebSockets, Server Sent Events, and gRPC.*..[ *read more* ](apps/yaak.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yaak) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yaak) | -| | [***yaka***](apps/yaka.md) | *No fuss todo-list manager with full keyboard navigation.*..[ *read more* ](apps/yaka.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yaka) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yaka) | -| | [***yakit***](apps/yakit.md) | *Cyber Security ALL-IN-ONE Platform.*..[ *read more* ](apps/yakit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yakit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yakit) | -| | [***yakit-legacy***](apps/yakit-legacy.md) | *Cyber Security ALL-IN-ONE Platform (legacy).*..[ *read more* ](apps/yakit-legacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yakit-legacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yakit-legacy) | -| | [***yam***](apps/yam.md) | *Unofficial Game Updater for the F95Zone platform.*..[ *read more* ](apps/yam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yam) | -| | [***yamagi-quake-ii***](apps/yamagi-quake-ii.md) | *Unofficial, an enhanced client for id Software's Quake II.*..[ *read more* ](apps/yamagi-quake-ii.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yamagi-quake-ii) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yamagi-quake-ii) | -| | [***yamata-launcher***](apps/yamata-launcher.md) | *A multi-platform game launcher designed to unify game catalogs, downloads, and libraries from multiple ecosystems into a single, extensible application.*..[ *read more* ](apps/yamata-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yamata-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yamata-launcher) | -| | [***yana***](apps/yana.md) | *Note-taking app with nested documents, text search/editor, code...*..[ *read more* ](apps/yana.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yana) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yana) | -| | [***yandex-browser***](apps/yandex-browser.md) | *Unofficial Yandex Browser AppImage, Stable.*..[ *read more* ](apps/yandex-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yandex-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yandex-browser) | -| | [***yandex-browser-beta***](apps/yandex-browser-beta.md) | *Unofficial Yandex Browser AppImage, Beta.*..[ *read more* ](apps/yandex-browser-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yandex-browser-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yandex-browser-beta) | -| | [***yandex-browser-corporate***](apps/yandex-browser-corporate.md) | *Unofficial Yandex Browser AppImage, Corporate.*..[ *read more* ](apps/yandex-browser-corporate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yandex-browser-corporate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yandex-browser-corporate) | -| | [***yandex-music***](apps/yandex-music.md) | *Personal recommendations, mixes for any occasion and the latest musical releases.*..[ *read more* ](apps/yandex-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yandex-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yandex-music) | -| | [***yangdownloader***](apps/yangdownloader.md) | *Downloads best-quality audio and video from YouTube.*..[ *read more* ](apps/yangdownloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yangdownloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yangdownloader) | -| | [***yank-note***](apps/yank-note.md) | *A Hackable Markdown Note Application for Programmers.*..[ *read more* ](apps/yank-note.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yank-note) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yank-note) | -| | [***yaya***](apps/yaya.md) | *Yet Another Yahtzee-esque Application.*..[ *read more* ](apps/yaya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yaya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yaya) | -| | [***yesplaymusic***](apps/yesplaymusic.md) | *A third party music player for Netease Music.*..[ *read more* ](apps/yesplaymusic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yesplaymusic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yesplaymusic) | -| | [***yet-another-open-file-converter***](apps/yet-another-open-file-converter.md) | *Simple Open Source Video and Image Conventer.*..[ *read more* ](apps/yet-another-open-file-converter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yet-another-open-file-converter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yet-another-open-file-converter) | -| | [***ym-desktop***](apps/ym-desktop.md) | *The YouTube music desktop app.*..[ *read more* ](apps/ym-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ym-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ym-desktop) | -| | [***ymir***](apps/ymir.md) | *Unofficial, Sega Saturn emulator.*..[ *read more* ](apps/ymir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ymir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ymir) | -| | [***yolx***](apps/yolx.md) | *A modern download tool developed with Flutter, powered by Aria 2 at its core.*..[ *read more* ](apps/yolx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yolx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yolx) | -| | [***youplaytx***](apps/youplaytx.md) | *A full-screen, dual-pane YouTube audio player for the terminal.*..[ *read more* ](apps/youplaytx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youplaytx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youplaytx) | -| | [***youtube-downloader***](apps/youtube-downloader.md) | *Download video/audio from youtube (and instagram) videos.*..[ *read more* ](apps/youtube-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-downloader) | -| | [***youtube-music***](apps/youtube-music.md) | *Unofficial. Amazing electron wrapper for YouTube Music featuring plugins.*..[ *read more* ](apps/youtube-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-music) | -| | [***youtubeanddownloader***](apps/youtubeanddownloader.md) | *An app to use youtube and download videos as mp3s or mp4s.*..[ *read more* ](apps/youtubeanddownloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtubeanddownloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtubeanddownloader) | -| | [***youtubesearchfilter***](apps/youtubesearchfilter.md) | *YouTube searches with/without a pre-filter from CLI.*..[ *read more* ](apps/youtubesearchfilter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtubesearchfilter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtubesearchfilter) | -| | [***yt-dlandcut***](apps/yt-dlandcut.md) | *Download and cut Youtube videos by providing url and time range.*..[ *read more* ](apps/yt-dlandcut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yt-dlandcut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yt-dlandcut) | -| | [***ytdownloader***](apps/ytdownloader.md) | *App for downloading Videos and Audios from hundreds of sites.*..[ *read more* ](apps/ytdownloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytdownloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytdownloader) | -| | [***ytmdesktop***](apps/ytmdesktop.md) | *A Desktop App for YouTube Music.*..[ *read more* ](apps/ytmdesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytmdesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytmdesktop) | -| | [***ytmdesktop2***](apps/ytmdesktop2.md) | *Unofficial Youtube Music Desktop App, with LastFM support.*..[ *read more* ](apps/ytmdesktop2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytmdesktop2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytmdesktop2) | -| | [***yts-streaming***](apps/yts-streaming.md) | *Stream or play yts and torrent movies.*..[ *read more* ](apps/yts-streaming.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yts-streaming) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yts-streaming) | -| | [***ytsage***](apps/ytsage.md) | *Modern YouTube downloader with a clean PySide6 interface. Download videos in any quality, extract audio, fetch subtitles, sponsorBlock, and view video metadata. Built with yt-dlp for reliable performance.*..[ *read more* ](apps/ytsage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytsage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytsage) | -| | [***yubikey-manager***](apps/yubikey-manager.md) | *Configure your YubiKey over all USB transports.*..[ *read more* ](apps/yubikey-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yubikey-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yubikey-manager) | -| | [***yuview***](apps/yuview.md) | *YUV player with an advanced analytic toolset.*..[ *read more* ](apps/yuview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yuview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yuview) | -| | [***zapdesktop***](apps/zapdesktop.md) | *Desktop application for the lightning network.*..[ *read more* ](apps/zapdesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zapdesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zapdesktop) | -| | [***zapzap***](apps/zapzap.md) | *WhatsApp desktop application written in Pyqt6 + PyQt6-WebEngine.*..[ *read more* ](apps/zapzap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zapzap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zapzap) | -| | [***zapzap-enhanced***](apps/zapzap-enhanced.md) | *Unofficial AppImage of ZapZap WhatsApp client.*..[ *read more* ](apps/zapzap-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zapzap-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zapzap-enhanced) | -| | [***zegarek***](apps/zegarek.md) | *A simple clock with millisecond resolution.*..[ *read more* ](apps/zegarek.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zegarek) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zegarek) | -| | [***zegrapher***](apps/zegrapher.md) | *Math graphing software.*..[ *read more* ](apps/zegrapher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zegrapher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zegrapher) | -| | [***zelda64-recompiled***](apps/zelda64-recompiled.md) | *Unofficial, a native port of the N64 Legend of Zelda games, statically recompiled.*..[ *read more* ](apps/zelda64-recompiled.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zelda64-recompiled) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zelda64-recompiled) | -| | [***zen-app-manager***](apps/zen-app-manager.md) | *Zen App Manager is a modern and lightweight startup manager that lets you manage startup applications from a single location.*..[ *read more* ](apps/zen-app-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zen-app-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zen-app-manager) | -| | [***zen-browser***](apps/zen-browser.md) | *Experience tranquillity while browsing the web without tracking.*..[ *read more* ](apps/zen-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zen-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zen-browser) | -| | [***zenity***](apps/zenity.md) | *Unofficial, A CLI utility that creates dialog boxes, GTK3 version.*..[ *read more* ](apps/zenity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zenity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zenity) | -| | [***zenkit***](apps/zenkit.md) | *A platform for collaboration and project management.*..[ *read more* ](apps/zenkit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zenkit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zenkit) | -| | [***zenroomstudio***](apps/zenroomstudio.md) | *Extensible IDE which targets multiple dev platforms.*..[ *read more* ](apps/zenroomstudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zenroomstudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zenroomstudio) | -| | [***zettlr***](apps/zettlr.md) | *A Markdown Editor for the 21st century.*..[ *read more* ](apps/zettlr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zettlr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zettlr) | -| | [***zmk-studio***](apps/zmk-studio.md) | *ZMK Firmware. Modern, open source keyboard firmware.*..[ *read more* ](apps/zmk-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zmk-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zmk-studio) | -| | [***zmninja***](apps/zmninja.md) | *Ionic app for Home/Commerical Security Surveillance.*..[ *read more* ](apps/zmninja.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zmninja) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zmninja) | -| | [***znax***](apps/znax.md) | *Znax is a cross platform puzzle / arcade game using SDL2 libraries.*..[ *read more* ](apps/znax.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/znax) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/znax) | -| | [***znote***](apps/znote.md) | *A Beautiful markdown editor inspired by Jupyter.*..[ *read more* ](apps/znote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/znote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/znote) | -| | [***zod-engine***](apps/zod-engine.md) | *Unofficial, an open source remake of the 1996 game Z by the Bitmap Brothers.*..[ *read more* ](apps/zod-engine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zod-engine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zod-engine) | -| | [***zograscope***](apps/zograscope.md) | *Syntax-aware diff that provides a number of additional tools.*..[ *read more* ](apps/zograscope.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zograscope) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zograscope) | -| | [***zoo-design-studio***](apps/zoo-design-studio.md) | *The Zoo Design Studio app.*..[ *read more* ](apps/zoo-design-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zoo-design-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zoo-design-studio) | -| | [***zoom***](apps/zoom.md) | *Unofficial. Video Conferencing and Web Conferencing Service.*..[ *read more* ](apps/zoom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zoom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zoom) | -| | [***zsnes***](apps/zsnes.md) | *Unofficial, a Super Nintendo emulator.*..[ *read more* ](apps/zsnes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zsnes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zsnes) | -| | [***zsync2***](apps/zsync2.md) | *A rewrite of the advanced file download/sync tool zsync.*..[ *read more* ](apps/zsync2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zsync2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zsync2) | -| | [***zulip***](apps/zulip.md) | *Zulip Desktop Client for Linux.*..[ *read more* ](apps/zulip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zulip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zulip) | -| | [***zx-poly***](apps/zx-poly.md) | *a multi-CPU ZX-Spectrum 128 concept platform.*..[ *read more* ](apps/zx-poly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zx-poly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zx-poly) | -| | [***zxinfo-file-browser***](apps/zxinfo-file-browser.md) | *Organize and manage your emulator files for ZX Spectrum.*..[ *read more* ](apps/zxinfo-file-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zxinfo-file-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zxinfo-file-browser) | -| | [***zy-player***](apps/zy-player.md) | *Video resource player, simple, ad-free and high-value.*..[ *read more* ](apps/zy-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zy-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zy-player) | -| | [***zyfun***](apps/zyfun.md) | *ZyPlayer. Cross-platform desktop video player, free and visually appealing.*..[ *read more* ](apps/zyfun.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zyfun) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zyfun) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/apps.html b/apps.html new file mode 100644 index 000000000..6791dd2ab --- /dev/null +++ b/apps.html @@ -0,0 +1,53 @@ + + + + + + APPLICATIONS - PORTABLE LINUX APPS + + + + + + + + + + + + + + + +
+ +
+

APPLICATIONS

+

+ +
+
+ + + + +
+ + + + diff --git a/apps.json b/apps.json deleted file mode 100644 index c69ab87a7..000000000 --- a/apps.json +++ /dev/null @@ -1,20228 +0,0 @@ -[ - { - "packageName": "0ad", - "description": "FOSS historical Real Time Strategy, RTS game of ancient warfare...", - "icon": "https://portable-linux-apps.github.io/icons/0ad.png", - "arch": ["x86_64"] - }, - { - "packageName": "0ad-prerelease", - "description": "FOSS historical Real Time Strategy, RTS game of ancient warfare (Pre-release)...", - "icon": "https://portable-linux-apps.github.io/icons/0ad-prerelease.png", - "arch": ["x86_64"] - }, - { - "packageName": "12to11", - "description": "Unofficial, tool for running Wayland applications on an X server...", - "icon": "https://portable-linux-apps.github.io/icons/12to11.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "3d-puzzles", - "description": "3D-Puzzles are Rubik, Dogic and Dogic12...", - "icon": "https://portable-linux-apps.github.io/icons/3d-puzzles.png", - "arch": ["x86_64"] - }, - { - "packageName": "432hz-player", - "description": "Because most music is recorded in 440hz, Audio Player...", - "icon": "https://portable-linux-apps.github.io/icons/432hz-player.png", - "arch": ["x86_64"] - }, - { - "packageName": "5ire", - "description": "5ire is a cross-platform desktop AI assistant, MCP client. It compatible with major service providers, supports local knowledge base and tools via model context protocol servers...", - "icon": "https://portable-linux-apps.github.io/icons/5ire.png", - "arch": ["x86_64"] - }, - { - "packageName": "7z", - "description": "Archiver with a high compression ratio. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/7z.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "7zip", - "description": "7-Zip is a file archiver with a high compression ratio...", - "icon": "https://portable-linux-apps.github.io/icons/7zip.png", - "arch": ["x86_64"] - }, - { - "packageName": "86box", - "description": "Emulator of x86-based machines based on PCem...", - "icon": "https://portable-linux-apps.github.io/icons/86box.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "86box-enhanced", - "description": "Unofficial, emulator of x86-based machines based on PCem...", - "icon": "https://portable-linux-apps.github.io/icons/86box-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "9launcher", - "description": "An actively maintained and cross platform remake of Touhou Relauncher...", - "icon": "https://portable-linux-apps.github.io/icons/9launcher.png", - "arch": ["x86_64"] - }, - { - "packageName": "aaaaxy", - "description": "A nonlinear puzzle platformer, game...", - "icon": "https://portable-linux-apps.github.io/icons/aaaaxy.png", - "arch": ["x86_64"] - }, - { - "packageName": "ab-download-manager", - "description": "A Download Manager that speeds up your downloads...", - "icon": "https://portable-linux-apps.github.io/icons/ab-download-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "abaddon", - "description": "Unofficial, an alternative Discord client with voice support made with C++ and GTK 3...", - "icon": "https://portable-linux-apps.github.io/icons/abaddon.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "abiword", - "description": "Unofficial. A light and free word processing software...", - "icon": "https://portable-linux-apps.github.io/icons/abiword.png", - "arch": ["x86_64"] - }, - { - "packageName": "acestep-cpp-ui", - "description": "AceStep-cpp UI, 100% local and free Suno alternative powered by acestep-cpp. Native C++ bundle for local AI music generation with 0% python...", - "icon": "https://portable-linux-apps.github.io/icons/acestep-cpp-ui.png", - "arch": ["x86_64"] - }, - { - "packageName": "acestream", - "description": "Створення бінарника AppImage з AceStream Media...", - "icon": "https://portable-linux-apps.github.io/icons/acestream.png", - "arch": ["x86_64"] - }, - { - "packageName": "acreom", - "description": "Acreom desktop app releases...", - "icon": "https://portable-linux-apps.github.io/icons/acreom.png", - "arch": ["x86_64"] - }, - { - "packageName": "actiona", - "description": "Actiona is an automation tool that allows you to execute many actions on your computer such as emulating mouse clicks, key presses, showing message boxes, editing text files, etc...", - "icon": "https://portable-linux-apps.github.io/icons/actiona.png", - "arch": ["x86_64"] - }, - { - "packageName": "actual", - "description": "A super fast privacy-focused app for managing your finances...", - "icon": "https://portable-linux-apps.github.io/icons/actual.png", - "arch": ["x86_64"] - }, - { - "packageName": "adb", - "description": "Command-line tool for communicating with Android devices or emulators. This is part of \"platform-tools\"...", - "icon": "https://portable-linux-apps.github.io/icons/adb.png", - "arch": ["x86_64"] - }, - { - "packageName": "addr2line", - "description": "Or symbol+offset into file names and. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/addr2line.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "adobe-flash-player", - "description": "Unofficial port. Adobe Flash is a mostly discontinued multimedia software platform used for production of animations, rich internet applications, desktop applications, mobile apps, mobile games, and embedded web browser video players. Over 67 billion devices use adobe flash player!..", - "icon": "https://portable-linux-apps.github.io/icons/adobe-flash-player.png", - "arch": ["x86_64"] - }, - { - "packageName": "advanced-passgen", - "description": "Advanced Password Generator...", - "icon": "https://portable-linux-apps.github.io/icons/advanced-passgen.png", - "arch": ["x86_64"] - }, - { - "packageName": "advanced-rest-client", - "description": "Advanced REST Client and API console, by Mulesoft...", - "icon": "https://portable-linux-apps.github.io/icons/advanced-rest-client.png", - "arch": ["x86_64"] - }, - { - "packageName": "aegisub", - "description": "Cross-platform advanced subtitle editor, with new feature branches. Read the README on the feature branch. Cross-platform advanced subtitle editor Cross-platform advanced subtitle editor...", - "icon": "https://portable-linux-apps.github.io/icons/aegisub.png", - "arch": ["x86_64"] - }, - { - "packageName": "aerofoil", - "description": "Unofficial, multiplatform port of Glider PRO...", - "icon": "https://portable-linux-apps.github.io/icons/aerofoil.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "afetch", - "description": "A CLI system information tool written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/afetch.png", - "arch": ["x86_64"] - }, - { - "packageName": "affine", - "description": "Next-gen knowledge base that brings planning, sorting and creating...", - "icon": "https://portable-linux-apps.github.io/icons/affine.png", - "arch": ["x86_64"] - }, - { - "packageName": "affine-beta", - "description": "Next-gen knowledge base that brings planning, sorting and creating...", - "icon": "https://portable-linux-apps.github.io/icons/affine-beta.png", - "arch": ["x86_64"] - }, - { - "packageName": "affine-canary", - "description": "Next-gen knowledge base that brings planning/sorting/creating...", - "icon": "https://portable-linux-apps.github.io/icons/affine-canary.png", - "arch": ["x86_64"] - }, - { - "packageName": "affinity", - "description": "Affinity is a suite of professional graphic design, photo editing, and desktop publishing software. It's a common alternative to software from the Adobe Suite such as for Adobe Photoshop, Adobe Illustrator, Adobe InDesign...", - "icon": "https://portable-linux-apps.github.io/icons/affinity.png", - "arch": ["x86_64"] - }, - { - "packageName": "agregore", - "description": "A minimal browser for the distributed web, Desktop version...", - "icon": "https://portable-linux-apps.github.io/icons/agregore.png", - "arch": ["x86_64"] - }, - { - "packageName": "ahk_x11", - "description": "AutoHotkey for Linux (X11-based systems)...", - "icon": "https://portable-linux-apps.github.io/icons/ahk_x11.png", - "arch": ["x86_64"] - }, - { - "packageName": "ai-bot-workspace", - "description": "Electron app including testing workspaces...", - "icon": "https://portable-linux-apps.github.io/icons/ai-bot-workspace.png", - "arch": ["x86_64"] - }, - { - "packageName": "aichat", - "description": "AIO AI CLI tool integrating 20+ AI platforms, including OpenAI...", - "icon": "https://portable-linux-apps.github.io/icons/aichat.png", - "arch": ["x86_64"] - }, - { - "packageName": "aidm", - "description": "AppImage Desktop Maker...", - "icon": "https://portable-linux-apps.github.io/icons/aidm.png", - "arch": ["x86_64"] - }, - { - "packageName": "aillio-ts", - "description": "The desktop application for Aillio Bullet R1...", - "icon": "https://portable-linux-apps.github.io/icons/aillio-ts.png", - "arch": ["x86_64"] - }, - { - "packageName": "aim", - "description": "A command line download/upload tool with resume...", - "icon": "https://portable-linux-apps.github.io/icons/aim.png", - "arch": ["x86_64"] - }, - { - "packageName": "air-controller-desktop", - "description": "Android phone assistant,powered by Flutter...", - "icon": "https://portable-linux-apps.github.io/icons/air-controller-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "airspaces", - "description": "An online map for your X-Plane flight sessions...", - "icon": "https://portable-linux-apps.github.io/icons/airspaces.png", - "arch": ["x86_64"] - }, - { - "packageName": "aisap", - "description": "Tool to make sandboxing AppImages easy through bwrap/bubblewrap...", - "icon": "https://portable-linux-apps.github.io/icons/aisap.png", - "arch": ["x86_64"] - }, - { - "packageName": "aisleriot", - "description": "Unofficial. A card game featuring over 80 different solitaire-type card games...", - "icon": "https://portable-linux-apps.github.io/icons/aisleriot.png", - "arch": ["x86_64"] - }, - { - "packageName": "akasha", - "description": "AKASHA community client...", - "icon": "https://portable-linux-apps.github.io/icons/akasha.png", - "arch": ["x86_64"] - }, - { - "packageName": "akhenaten", - "description": "Unofficial, open-source engine for Pharaoh (+Cleopatra) city-building game...", - "icon": "https://portable-linux-apps.github.io/icons/akhenaten.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "akuse", - "description": "Simple and easy to use anime streaming desktop app without ads...", - "icon": "https://portable-linux-apps.github.io/icons/akuse.png", - "arch": ["x86_64"] - }, - { - "packageName": "alacritty", - "description": "Unofficial. A modern terminal emulator that comes with sensible defaults, but allows for extensive configuration...", - "icon": "https://portable-linux-apps.github.io/icons/alacritty.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "albafetch", - "description": "CLI, faster neofetch alternative, written in C. Still improving...", - "icon": "https://portable-linux-apps.github.io/icons/albafetch.png", - "arch": ["x86_64"] - }, - { - "packageName": "alduin", - "description": "An Atom and RSS feed aggregator...", - "icon": "https://portable-linux-apps.github.io/icons/alduin.png", - "arch": ["x86_64"] - }, - { - "packageName": "alephium-wallet", - "description": "The official Alephium wallet for desktop...", - "icon": "https://portable-linux-apps.github.io/icons/alephium-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "alexandria", - "description": "eBook reader built with Tauri, Epub.js, and Typescript...", - "icon": "https://portable-linux-apps.github.io/icons/alexandria.png", - "arch": ["x86_64"] - }, - { - "packageName": "alien-tec-ui", - "description": "Alien-Tec Tron Matrix Like Shell Terminal User Interface...", - "icon": "https://portable-linux-apps.github.io/icons/alien-tec-ui.png", - "arch": ["x86_64"] - }, - { - "packageName": "allusion", - "description": "A desktop application for managing your visual library...", - "icon": "https://portable-linux-apps.github.io/icons/allusion.png", - "arch": ["x86_64"] - }, - { - "packageName": "alma", - "description": "Elegant AI Provider Orchestration. A beautiful desktop application that unifies your AI experience. Seamlessly switch between OpenAI, Anthropic, Google Gemini, and custom providers...", - "icon": "https://portable-linux-apps.github.io/icons/alma.png", - "arch": ["x86_64"] - }, - { - "packageName": "alpine-flatimage", - "description": "A hybrid of Flatpak sandboxing with AppImage portability...", - "icon": "https://portable-linux-apps.github.io/icons/alpine-flatimage.png", - "arch": ["x86_64"] - }, - { - "packageName": "alr2appimage", - "description": "Tool for building an AppImage from an Alire crate...", - "icon": "https://portable-linux-apps.github.io/icons/alr2appimage.png", - "arch": ["x86_64"] - }, - { - "packageName": "alt-sendme", - "description": "Share files and directories anywhere - Local or Global..", - "icon": "https://portable-linux-apps.github.io/icons/alt-sendme.png", - "arch": ["x86_64"] - }, - { - "packageName": "altair", - "description": "The best graphQL client you will ever need...", - "icon": "https://portable-linux-apps.github.io/icons/altair.png", - "arch": ["x86_64"] - }, - { - "packageName": "altersend", - "description": "Send files directly between devices over the internet - no cloud, no servers, no size limits...", - "icon": "https://portable-linux-apps.github.io/icons/altersend.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "altitude", - "description": "The Altitude wallet by Linda Project Inc...", - "icon": "https://portable-linux-apps.github.io/icons/altitude.png", - "arch": ["x86_64"] - }, - { - "packageName": "altrady", - "description": "Altrady Crypto Trading Terminal...", - "icon": "https://portable-linux-apps.github.io/icons/altrady.png", - "arch": ["x86_64"] - }, - { - "packageName": "altus", - "description": "Client for WhatsApp Web with themes & multiple account support...", - "icon": "https://portable-linux-apps.github.io/icons/altus.png", - "arch": ["x86_64"] - }, - { - "packageName": "alvr", - "description": "Stream VR games from your PC to your headset via Wi-Fi...", - "icon": "https://portable-linux-apps.github.io/icons/alvr.png", - "arch": ["x86_64"] - }, - { - "packageName": "am-gui", - "description": "AM-GUI is a graphical Front for AM...", - "icon": "https://portable-linux-apps.github.io/icons/am-gui.png", - "arch": ["x86_64"] - }, - { - "packageName": "amarok", - "description": "Unofficial, powerful music player that lets you rediscover your music...", - "icon": "https://portable-linux-apps.github.io/icons/amarok.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "amazingmarvin", - "description": "Incorporates principles from behavioral psychology...", - "icon": "https://portable-linux-apps.github.io/icons/amazingmarvin.png", - "arch": ["x86_64"] - }, - { - "packageName": "ambermoon.net", - "description": "Ambermoon rewrite in C#...", - "icon": "https://portable-linux-apps.github.io/icons/ambermoon.net.png", - "arch": ["x86_64"] - }, - { - "packageName": "amdgpu_top", - "description": "Tool to display AMDGPU usage...", - "icon": "https://portable-linux-apps.github.io/icons/amdgpu_top.png", - "arch": ["x86_64"] - }, - { - "packageName": "amethyst-mod-manager", - "description": "A Linux native mod manager for a variety of games...", - "icon": "https://portable-linux-apps.github.io/icons/amethyst-mod-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "amfora", - "description": "A fancy terminal browser for the Gemini protocol...", - "icon": "https://portable-linux-apps.github.io/icons/amfora.png", - "arch": ["x86_64"] - }, - { - "packageName": "amiberry", - "description": "Unofficial, optimized Amiga emulator...", - "icon": "https://portable-linux-apps.github.io/icons/amiberry.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "amplitude-soundboard", - "description": "A sleek, cross-platform soundboard, available...", - "icon": "https://portable-linux-apps.github.io/icons/amplitude-soundboard.png", - "arch": ["x86_64"] - }, - { - "packageName": "amule", - "description": "All-platform P2P client based on eMule. aMule is a free, GPL-licensed peer-to-peer file-sharing client for the eD2k and Kademlia networks...", - "icon": "https://portable-linux-apps.github.io/icons/amule.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "amusiz", - "description": "Unofficial and unpretentious Amazon Music client...", - "icon": "https://portable-linux-apps.github.io/icons/amusiz.png", - "arch": ["x86_64"] - }, - { - "packageName": "anavis", - "description": "Tool to visualize musical form...", - "icon": "https://portable-linux-apps.github.io/icons/anavis.png", - "arch": ["x86_64"] - }, - { - "packageName": "anchor", - "description": "An EOSIO Light Wallet with simple and advanced tools...", - "icon": "https://portable-linux-apps.github.io/icons/anchor.png", - "arch": ["x86_64"] - }, - { - "packageName": "android-messages-desktop", - "description": "Messages for web, as a desktop app...", - "icon": "https://portable-linux-apps.github.io/icons/android-messages-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "android-studio", - "description": "Unofficial. Android Studio as AppImages, stable...", - "icon": "https://portable-linux-apps.github.io/icons/android-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "android-studio-latest", - "description": "Unofficial. Android Studio as AppImages, release...", - "icon": "https://portable-linux-apps.github.io/icons/android-studio-latest.png", - "arch": ["x86_64"] - }, - { - "packageName": "android-tools", - "description": "Unofficial AppImage for the Android Platform tools, adb, fastboot, etc...", - "icon": "https://portable-linux-apps.github.io/icons/android-tools.png", - "arch": ["x86_64"] - }, - { - "packageName": "android-translation-layer", - "description": "Unofficial, A translation layer that allows running Android apps on a Linux system...", - "icon": "https://portable-linux-apps.github.io/icons/android-translation-layer.png", - "arch": ["x86_64"] - }, - { - "packageName": "ani-cli", - "description": "A cli tool to browse and play anime...", - "icon": "https://portable-linux-apps.github.io/icons/ani-cli.png", - "arch": ["x86_64"] - }, - { - "packageName": "animashooter-junior", - "description": "User-friendly Stop-Motion Animation Software, FREE...", - "icon": "https://portable-linux-apps.github.io/icons/animashooter-junior.png", - "arch": ["x86_64"] - }, - { - "packageName": "animashooter-pioneer", - "description": "User-friendly Stop-Motion Animation Software, PRO...", - "icon": "https://portable-linux-apps.github.io/icons/animashooter-pioneer.png", - "arch": ["x86_64"] - }, - { - "packageName": "animecoin", - "description": "Animecoin is a free open source peer-to-peer electronic cash system that is completely decentralized, without the need for a central server or trusted parties. Users hold the crypto keys to their own money and transact directly with each other, with the help of a P2P network to check for double-spending...", - "icon": "https://portable-linux-apps.github.io/icons/animecoin.png", - "arch": ["x86_64"] - }, - { - "packageName": "animeko", - "description": "A one-stop platform for finding, following, and watching anime, featuring danmaku (bullet comments) and cloud-based collection synchronization (Bangumi), offline caching, BitTorrent, and cloud-based danmaku filtering...", - "icon": "https://portable-linux-apps.github.io/icons/animeko.png", - "arch": ["x86_64"] - }, - { - "packageName": "animos", - "description": "Anime-streaming desktop application without any ads...", - "icon": "https://portable-linux-apps.github.io/icons/animos.png", - "arch": ["x86_64"] - }, - { - "packageName": "aniship", - "description": "Allows for easy viewing of anime on PCs and laptops...", - "icon": "https://portable-linux-apps.github.io/icons/aniship.png", - "arch": ["x86_64"] - }, - { - "packageName": "ankama-launcher", - "description": "Ankama is an entertainment and digital creation group...", - "icon": "https://portable-linux-apps.github.io/icons/ankama-launcher.png", - "arch": ["x86_64"] - }, - { - "packageName": "anki", - "description": "Unofficial, Anki's shared backend and web components, and the Qt frontend...", - "icon": "https://portable-linux-apps.github.io/icons/anki.png", - "arch": ["x86_64"] - }, - { - "packageName": "another-redis-desktop-manager", - "description": "Faster and better redis desktop manager...", - "icon": "https://portable-linux-apps.github.io/icons/another-redis-desktop-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "ansel", - "description": "An open-source photo-editing software for digital artists, designed to help you achieve your own interpretation of raw digital photographs...", - "icon": "https://portable-linux-apps.github.io/icons/ansel.png", - "arch": ["x86_64"] - }, - { - "packageName": "ant-downloader", - "description": "BitTorrent Client developed by golang, angular, electron...", - "icon": "https://portable-linux-apps.github.io/icons/ant-downloader.png", - "arch": ["x86_64"] - }, - { - "packageName": "antares", - "description": "An useful SQL client based on Electron.js and Vue.js...", - "icon": "https://portable-linux-apps.github.io/icons/antares.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "antidot", - "description": "Cleans up your $HOME from those pesky dotfiles...", - "icon": "https://portable-linux-apps.github.io/icons/antidot.png", - "arch": ["x86_64"] - }, - { - "packageName": "antigravity", - "description": "Unofficial AppImage of Google Antigravity...", - "icon": "https://portable-linux-apps.github.io/icons/antigravity.png", - "arch": ["x86_64"] - }, - { - "packageName": "antigravity-ide", - "description": "Unofficial AppImage of Google Antigravity IDE...", - "icon": "https://portable-linux-apps.github.io/icons/antigravity-ide.png", - "arch": ["x86_64"] - }, - { - "packageName": "antimicrox", - "description": "Use a gamepad to control a variety of programs...", - "icon": "https://portable-linux-apps.github.io/icons/antimicrox.png", - "arch": ["x86_64"] - }, - { - "packageName": "antra", - "description": "A desktop music library builder. Resolves Spotify / Apple Music / Amazon Music URLs → get lossless audio → auto-tags, transcodes, and organizes. No subscriptions. No compromises...", - "icon": "https://portable-linux-apps.github.io/icons/antra.png", - "arch": ["x86_64"] - }, - { - "packageName": "any-code", - "description": "Claude Code CLI, OpenAI Codex, and Google Gemini CLI...", - "icon": "https://portable-linux-apps.github.io/icons/any-code.png", - "arch": ["x86_64"] - }, - { - "packageName": "anydesk", - "description": "Unofficial. Remote desktop application distributed...", - "icon": "https://portable-linux-apps.github.io/icons/anydesk.png", - "arch": ["x86_64"] - }, - { - "packageName": "anything-llm", - "description": "AI business intelligence tool. Any LLM, any document...", - "icon": "https://portable-linux-apps.github.io/icons/anything-llm.png", - "arch": ["x86_64"] - }, - { - "packageName": "anytype", - "description": "The everything app for those who celebrate trust & autonomy...", - "icon": "https://portable-linux-apps.github.io/icons/anytype.png", - "arch": ["x86_64"] - }, - { - "packageName": "anzeigenchef", - "description": "AdsChef manages your classified ads...", - "icon": "https://portable-linux-apps.github.io/icons/anzeigenchef.png", - "arch": ["x86_64"] - }, - { - "packageName": "aphelion-wallet", - "description": "Aphelion desktop wallet application built with Electron...", - "icon": "https://portable-linux-apps.github.io/icons/aphelion-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "aphototoollibre", - "description": "Photo editing app for GNU/Linux...", - "icon": "https://portable-linux-apps.github.io/icons/aphototoollibre.png", - "arch": ["x86_64"] - }, - { - "packageName": "apidog", - "description": "API design, debugging, testing, and mock tool...", - "icon": "https://portable-linux-apps.github.io/icons/apidog.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "apiflow", - "description": "A modern API workspace that works both online and offlinecombining API documentation, testing, mock, and AI-powered automation in one lightweight tool...", - "icon": "https://portable-linux-apps.github.io/icons/apiflow.png", - "arch": ["x86_64"] - }, - { - "packageName": "apk-editor-studio", - "description": "Easy to use APK, Android reverse-engineering tool...", - "icon": "https://portable-linux-apps.github.io/icons/apk-editor-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "apla", - "description": "Project was bootstrapped with Create React App...", - "icon": "https://portable-linux-apps.github.io/icons/apla.png", - "arch": ["x86_64"] - }, - { - "packageName": "app-outlet", - "description": "A Universal linux app store for Flatpak/Snap/AppImage...", - "icon": "https://portable-linux-apps.github.io/icons/app-outlet.png", - "arch": ["x86_64"] - }, - { - "packageName": "appflowy", - "description": "Bring projects, wikis, and teams together with AI. AppFlowy is the AI collaborative workspace where you achieve more without losing control of your data. The leading open source Notion alternative...", - "icon": "https://portable-linux-apps.github.io/icons/appflowy.png", - "arch": ["x86_64"] - }, - { - "packageName": "apphub", - "description": "App that simplifies installation/management of .appImage packages...", - "icon": "https://portable-linux-apps.github.io/icons/apphub.png", - "arch": ["x86_64"] - }, - { - "packageName": "appimage-builder", - "description": "GNU/Linux packaging solution using the AppImage format...", - "icon": "https://portable-linux-apps.github.io/icons/appimage-builder.png", - "arch": ["x86_64"] - }, - { - "packageName": "appimage-creator", - "description": "GUI for easily generating AppImage packages on Linux...", - "icon": "https://portable-linux-apps.github.io/icons/appimage-creator.png", - "arch": ["x86_64"] - }, - { - "packageName": "appimagecraft", - "description": "Powerful build script generator with a focus on AppImages...", - "icon": "https://portable-linux-apps.github.io/icons/appimagecraft.png", - "arch": ["x86_64"] - }, - { - "packageName": "appimagelauncher", - "description": "CLI helper for running and integrating AppImages...", - "icon": "https://portable-linux-apps.github.io/icons/appimagelauncher.png", - "arch": ["x86_64","i686"] - }, - { - "packageName": "appimagelint", - "description": "Check AppImages for compatibility, best practices etc...", - "icon": "https://portable-linux-apps.github.io/icons/appimagelint.png", - "arch": ["x86_64"] - }, - { - "packageName": "appimagen", - "description": "A script that generates a custom AppImage from a PPA...", - "icon": "https://portable-linux-apps.github.io/icons/appimagen.png", - "arch": ["x86_64"] - }, - { - "packageName": "appimagepool", - "description": "A simple, modern AppImageHub Client, powered by flutter...", - "icon": "https://portable-linux-apps.github.io/icons/appimagepool.png", - "arch": ["x86_64"] - }, - { - "packageName": "appimagetool", - "description": "Tool to generate an AppImage from an existing AppDir...", - "icon": "https://portable-linux-apps.github.io/icons/appimagetool.png", - "arch": ["x86_64","aarch64","i686"] - }, - { - "packageName": "appimageupdate", - "description": "A Rust implementation of AppImageUpdate, a tool for updating AppImages using efficient delta updates using zsync...", - "icon": "https://portable-linux-apps.github.io/icons/appimageupdate.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "appimageupdater", - "description": "AppImage Updater for Humans built with QML/C++ with Qt5...", - "icon": "https://portable-linux-apps.github.io/icons/appimageupdater.png", - "arch": ["x86_64"] - }, - { - "packageName": "appimageupdatetool", - "description": "Tool to update an AppImage using embedded information...", - "icon": "https://portable-linux-apps.github.io/icons/appimageupdatetool.png", - "arch": ["x86_64","aarch64","i686"] - }, - { - "packageName": "appimg", - "description": "Appimg is a lightweight command-line tool that helps you manage AppImage files on Linux...", - "icon": "https://portable-linux-apps.github.io/icons/appimg.png", - "arch": ["x86_64"] - }, - { - "packageName": "appinstall", - "description": "AppImage Installer, a tool integrate AppImages to a linux desktop environment...", - "icon": "https://portable-linux-apps.github.io/icons/appinstall.png", - "arch": ["x86_64"] - }, - { - "packageName": "appium-inspector", - "description": "A GUI inspector for mobile apps and more, powered by a (separately installed) Appium server...", - "icon": "https://portable-linux-apps.github.io/icons/appium-inspector.png", - "arch": ["x86_64"] - }, - { - "packageName": "appmanager", - "description": "MacOS style AppImage installer and management application...", - "icon": "https://portable-linux-apps.github.io/icons/appmanager.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "aptakube", - "description": "A modern and lightweight Kubernetes desktop client...", - "icon": "https://portable-linux-apps.github.io/icons/aptakube.png", - "arch": ["x86_64"] - }, - { - "packageName": "aptly", - "description": "Debian repository management CLI tool...", - "icon": "https://portable-linux-apps.github.io/icons/aptly.png", - "arch": ["x86_64"] - }, - { - "packageName": "apx-gcs", - "description": "APX Ground Control...", - "icon": "https://portable-linux-apps.github.io/icons/apx-gcs.png", - "arch": ["x86_64"] - }, - { - "packageName": "ar", - "description": "Create, modify, and extract from .deb archives. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/ar.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "aranym", - "description": "Virtual Machine for Atari 32-bit applications...", - "icon": "https://portable-linux-apps.github.io/icons/aranym.png", - "arch": ["x86_64"] - }, - { - "packageName": "arcade-manager", - "description": "Manage your rom collection, Games/Retropie & Recalbox...", - "icon": "https://portable-linux-apps.github.io/icons/arcade-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "arcdlp", - "description": "Open-source desktop video downloader powered by yt-dlp and electron. Download videos and audio from YouTube, Vimeo, Twitter, and thousands of sites...", - "icon": "https://portable-linux-apps.github.io/icons/arcdlp.png", - "arch": ["x86_64"] - }, - { - "packageName": "arch", - "description": "Hardware name (same as uname -m). This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/arch.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "arch-deployer", - "description": "A script to bulk download an Arch Linux package with all its dependencies to be converted in AppImage...", - "icon": "https://portable-linux-apps.github.io/icons/arch-deployer.png", - "arch": ["x86_64"] - }, - { - "packageName": "arch-flatimage", - "description": "A hybrid of Flatpak sandboxing with AppImage portability...", - "icon": "https://portable-linux-apps.github.io/icons/arch-flatimage.png", - "arch": ["x86_64"] - }, - { - "packageName": "archimage-cli", - "description": "Build AppImage packages using JuNest, Arch Linux...", - "icon": "https://portable-linux-apps.github.io/icons/archimage-cli.png", - "arch": ["x86_64"] - }, - { - "packageName": "archimede", - "description": "Unobtrusive directory information fetcher...", - "icon": "https://portable-linux-apps.github.io/icons/archimede.png", - "arch": ["x86_64"] - }, - { - "packageName": "archipel", - "description": "Decentralized archiving and media library system...", - "icon": "https://portable-linux-apps.github.io/icons/archipel.png", - "arch": ["x86_64"] - }, - { - "packageName": "archipelago", - "description": "Archipelago Multi-Game Randomizer and Server...", - "icon": "https://portable-linux-apps.github.io/icons/archipelago.png", - "arch": ["x86_64"] - }, - { - "packageName": "archisteamfarm", - "description": "C# application with primary purpose of farming Steam cards from multiple accounts simultaneously...", - "icon": "https://portable-linux-apps.github.io/icons/archisteamfarm.png", - "arch": ["x86_64"] - }, - { - "packageName": "archiveweb.page", - "description": "A High-Fidelity Web Archiving Extension for Chrome and Chromium based browsers...", - "icon": "https://portable-linux-apps.github.io/icons/archiveweb.page.png", - "arch": ["x86_64"] - }, - { - "packageName": "arduino-ide", - "description": "Open-source electronics platform...", - "icon": "https://portable-linux-apps.github.io/icons/arduino-ide.png", - "arch": ["x86_64"] - }, - { - "packageName": "arena-tracker", - "description": "Deck Tracker for Hearthstone game with arena in focus...", - "icon": "https://portable-linux-apps.github.io/icons/arena-tracker.png", - "arch": ["x86_64"] - }, - { - "packageName": "ares", - "description": "AppImage for the ares emulator...", - "icon": "https://portable-linux-apps.github.io/icons/ares.png", - "arch": ["x86_64"] - }, - { - "packageName": "ares-emu", - "description": "Unofficial AppImage of the ares emulator...", - "icon": "https://portable-linux-apps.github.io/icons/ares-emu.png", - "arch": ["x86_64"] - }, - { - "packageName": "aretext", - "description": "Minimalist text editor with vim-compatible key bindings...", - "icon": "https://portable-linux-apps.github.io/icons/aretext.png", - "arch": ["x86_64"] - }, - { - "packageName": "ark", - "description": "Archiving tool for .zip/.tar/.rar and more. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/ark.png", - "arch": ["x86_64"] - }, - { - "packageName": "ark.desktop.wallet", - "description": "Ark Ecosystem Desktop Wallet...", - "icon": "https://portable-linux-apps.github.io/icons/ark.desktop.wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "arkaway", - "description": "Another Arkanoid clone and make with Pyxel...", - "icon": "https://portable-linux-apps.github.io/icons/arkaway.png", - "arch": ["x86_64"] - }, - { - "packageName": "arma3-unix-launcher", - "description": "ArmA 3 Unix Launcher, game...", - "icon": "https://portable-linux-apps.github.io/icons/arma3-unix-launcher.png", - "arch": ["x86_64"] - }, - { - "packageName": "armagetronad", - "description": "Multiplayer game in 3d that emulates the movie \"Tron\"...", - "icon": "https://portable-linux-apps.github.io/icons/armagetronad.png", - "arch": ["x86_64","i686"] - }, - { - "packageName": "armcord", - "description": "Custom client designed to enhance your Discord experience...", - "icon": "https://portable-linux-apps.github.io/icons/armcord.png", - "arch": ["x86_64"] - }, - { - "packageName": "artisan", - "description": "Visualizes the coffee roasting process...", - "icon": "https://portable-linux-apps.github.io/icons/artisan.png", - "arch": ["x86_64"] - }, - { - "packageName": "artix", - "description": "One app. All your favorite Artix games...", - "icon": "https://portable-linux-apps.github.io/icons/artix.png", - "arch": ["x86_64"] - }, - { - "packageName": "arx-libertatis", - "description": "Unofficial AppImage of Arx Libertatis...", - "icon": "https://portable-linux-apps.github.io/icons/arx-libertatis.png", - "arch": ["x86_64"] - }, - { - "packageName": "as", - "description": "GNU assembler.. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/as.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "asarui", - "description": "UI for Asar...", - "icon": "https://portable-linux-apps.github.io/icons/asarui.png", - "arch": ["x86_64"] - }, - { - "packageName": "ascendara", - "description": "Skip extracting files, navigating setup processes, or any unnecessary hassles...", - "icon": "https://portable-linux-apps.github.io/icons/ascendara.png", - "arch": ["x86_64"] - }, - { - "packageName": "asgardex", - "description": "Thorchain wallet desktop app...", - "icon": "https://portable-linux-apps.github.io/icons/asgardex.png", - "arch": ["x86_64"] - }, - { - "packageName": "aspect", - "description": "Photo organization application with support for peer-to-peer based synchronization across devices...", - "icon": "https://portable-linux-apps.github.io/icons/aspect.png", - "arch": ["x86_64"] - }, - { - "packageName": "asphyxia-core", - "description": "Unofficial AppImage of Asphyxia CORE...", - "icon": "https://portable-linux-apps.github.io/icons/asphyxia-core.png", - "arch": ["x86_64"] - }, - { - "packageName": "astroffers", - "description": "Take offers to watch at given nights by the NGC2000 catalog...", - "icon": "https://portable-linux-apps.github.io/icons/astroffers.png", - "arch": ["x86_64"] - }, - { - "packageName": "astrofox", - "description": "Audio reactive motion graphics program...", - "icon": "https://portable-linux-apps.github.io/icons/astrofox.png", - "arch": ["x86_64"] - }, - { - "packageName": "asunder", - "description": "Unofficial. Audio CD ripper and encoder, WAV, MP3, OGG, FLAC, Opus, AAC......", - "icon": "https://portable-linux-apps.github.io/icons/asunder.png", - "arch": ["x86_64"] - }, - { - "packageName": "atomicwallet", - "description": "Atomic vue-electron...", - "icon": "https://portable-linux-apps.github.io/icons/atomicwallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "atuin", - "description": "Magical shell history...", - "icon": "https://portable-linux-apps.github.io/icons/atuin.png", - "arch": ["x86_64"] - }, - { - "packageName": "audacious", - "description": "Unofficial. An open source audio and music player, descendant of XMMS...", - "icon": "https://portable-linux-apps.github.io/icons/audacious.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "audacity", - "description": "Multiplatform Audio Editor...", - "icon": "https://portable-linux-apps.github.io/icons/audacity.png", - "arch": ["x86_64"] - }, - { - "packageName": "audacity-enhanced", - "description": "Unofficial, multiplatform Audio Editor...", - "icon": "https://portable-linux-apps.github.io/icons/audacity-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "audapolis", - "description": "An editor for spoken-word audio with automatic transcription...", - "icon": "https://portable-linux-apps.github.io/icons/audapolis.png", - "arch": ["x86_64"] - }, - { - "packageName": "audio-sharing", - "description": "Unofficial. Share audio from the desktop on local network using RTSP protocol...", - "icon": "https://portable-linux-apps.github.io/icons/audio-sharing.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "audiomoth-configuration-app", - "description": "An Electron-based application capable of configuring the functionality of the AudioMoth recording device and setting the onboard clock...", - "icon": "https://portable-linux-apps.github.io/icons/audiomoth-configuration-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "audiomoth-flash-app", - "description": "An Electron-based application designed to flash the AudioMoth recording device with new firmware...", - "icon": "https://portable-linux-apps.github.io/icons/audiomoth-flash-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "audiomoth-gps-sync-app", - "description": "An Electron-based application to generate WAV files synchronised with GPS time from the files generated by the AudioMoth-GPS-Sync firmware...", - "icon": "https://portable-linux-apps.github.io/icons/audiomoth-gps-sync-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "audiomoth-live-app", - "description": "An Electron-based application for recording and analysing live audio from high sample rate microphones, including the AudioMoth USB Microphone...", - "icon": "https://portable-linux-apps.github.io/icons/audiomoth-live-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "audiomoth-time-app", - "description": "An Electron-based application capable of setting the on-board clock of the AudioMoth recording device...", - "icon": "https://portable-linux-apps.github.io/icons/audiomoth-time-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "audiomoth-usb-microphone-app", - "description": "An Electron-based application capable of configuring the functionality of the AudioMoth-USB-Microphone firmware...", - "icon": "https://portable-linux-apps.github.io/icons/audiomoth-usb-microphone-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "audiorelay", - "description": "Stream audio between your devices. Turn your phone into a microphone or speakers for PC...", - "icon": "https://portable-linux-apps.github.io/icons/audiorelay.png", - "arch": ["x86_64"] - }, - { - "packageName": "augur", - "description": "Augur Desktop Application...", - "icon": "https://portable-linux-apps.github.io/icons/augur.png", - "arch": ["x86_64"] - }, - { - "packageName": "augustus", - "description": "An open source re-implementation of the game Caesar III...", - "icon": "https://portable-linux-apps.github.io/icons/augustus.png", - "arch": ["x86_64"] - }, - { - "packageName": "augustus-enhanced", - "description": "Unofficial, a fork of the Julius project that intends to incorporate gameplay changes...", - "icon": "https://portable-linux-apps.github.io/icons/augustus-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "aurora", - "description": "A utility to control RGB keyboard back-light and charging threshold for Asus TUF-gaming laptops...", - "icon": "https://portable-linux-apps.github.io/icons/aurora.png", - "arch": ["x86_64"] - }, - { - "packageName": "auryo", - "description": "An audio/music desktop client for SoundCloud...", - "icon": "https://portable-linux-apps.github.io/icons/auryo.png", - "arch": ["x86_64"] - }, - { - "packageName": "authenticator", - "description": "Unofficial. An application which generates 2FA code in realtime...", - "icon": "https://portable-linux-apps.github.io/icons/authenticator.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "authme", - "description": "Simple cross-platform two-factor authenticator app for desktop...", - "icon": "https://portable-linux-apps.github.io/icons/authme.png", - "arch": ["x86_64"] - }, - { - "packageName": "authy", - "description": "Unofficial, Protect all your accounts with 2FA...", - "icon": "https://portable-linux-apps.github.io/icons/authy.png", - "arch": ["x86_64"] - }, - { - "packageName": "auto-claude", - "description": "Autonomous multi-session AI coding framework that plans, builds, and validates software for you...", - "icon": "https://portable-linux-apps.github.io/icons/auto-claude.png", - "arch": ["x86_64"] - }, - { - "packageName": "autoedit2", - "description": "autoEdit2 Desktop Client for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/autoedit2.png", - "arch": ["x86_64"] - }, - { - "packageName": "autosubsync", - "description": "Automatic subtitle synchronization tool...", - "icon": "https://portable-linux-apps.github.io/icons/autosubsync.png", - "arch": ["x86_64"] - }, - { - "packageName": "avantgarde", - "description": "Avalonia XAML Preview...", - "icon": "https://portable-linux-apps.github.io/icons/avantgarde.png", - "arch": ["x86_64"] - }, - { - "packageName": "avidemux", - "description": "Multiplatform Video Editor...", - "icon": "https://portable-linux-apps.github.io/icons/avidemux.png", - "arch": ["x86_64"] - }, - { - "packageName": "avidemux-qt", - "description": "Unofficial, my custom Avidemux Video Editor built to use system themes...", - "icon": "https://portable-linux-apps.github.io/icons/avidemux-qt.png", - "arch": ["x86_64"] - }, - { - "packageName": "avogadro2", - "description": "Molecular editor for computational chemistry, bioinformatics...", - "icon": "https://portable-linux-apps.github.io/icons/avogadro2.png", - "arch": ["x86_64"] - }, - { - "packageName": "awakened-poe-trade", - "description": "Path of Exile trading app for price checking...", - "icon": "https://portable-linux-apps.github.io/icons/awakened-poe-trade.png", - "arch": ["x86_64"] - }, - { - "packageName": "awakened-poe-trade-enhanced", - "description": "Unofficial AppImage of Awakened POE Trade with some fixes and wider OS support...", - "icon": "https://portable-linux-apps.github.io/icons/awakened-poe-trade-enhanced.png", - "arch": ["x86_64"] - }, - { - "packageName": "axe-electrum", - "description": "Axe Electrum Wallet...", - "icon": "https://portable-linux-apps.github.io/icons/axe-electrum.png", - "arch": ["x86_64"] - }, - { - "packageName": "axolotl", - "description": "A Signal compatible cross plattform client written in Go and Vuejs...", - "icon": "https://portable-linux-apps.github.io/icons/axolotl.png", - "arch": ["x86_64"] - }, - { - "packageName": "aya", - "description": "A desktop application for easily controlling android devices, which can be considered as a GUI wrapper for ADB...", - "icon": "https://portable-linux-apps.github.io/icons/aya.png", - "arch": ["x86_64"] - }, - { - "packageName": "ayandict", - "description": "Simple yet advanced multi-lingual cross-platform offline dictionary for desktop, using Qt and Go...", - "icon": "https://portable-linux-apps.github.io/icons/ayandict.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "azahar-enhanced", - "description": "Unofficial AppImage of Azahar, with optimized builds for modern cpus...", - "icon": "https://portable-linux-apps.github.io/icons/azahar-enhanced.png", - "arch": ["x86_64"] - }, - { - "packageName": "azaharplus", - "description": "A fork of the Azahar 3DS emulator with extra features an open-source 3DS emulator project based on Citra...", - "icon": "https://portable-linux-apps.github.io/icons/azaharplus.png", - "arch": ["x86_64"] - }, - { - "packageName": "azaharplus-pkg-extractor", - "description": "Standalone PKG extractor CLI based on code that used to be in ShadPS4 PlayStation 4 emulator written in C++...", - "icon": "https://portable-linux-apps.github.io/icons/azaharplus-pkg-extractor.png", - "arch": ["x86_64"] - }, - { - "packageName": "b2sum", - "description": "Check BLAKE2 message digest. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/b2sum.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "badlion", - "description": "Most Complete All-In-One Mod Library for Minecraft with 100+ Mods...", - "icon": "https://portable-linux-apps.github.io/icons/badlion.png", - "arch": ["x86_64"] - }, - { - "packageName": "baijimangaviewer", - "description": "Manga viewer that uses Material Design...", - "icon": "https://portable-linux-apps.github.io/icons/baijimangaviewer.png", - "arch": ["x86_64"] - }, - { - "packageName": "balatro-multiplayer", - "description": "A Multiplayer Mod for Balatro...", - "icon": "https://portable-linux-apps.github.io/icons/balatro-multiplayer.png", - "arch": ["x86_64"] - }, - { - "packageName": "bambustudio", - "description": "PC Software for BambuLab's 3D printers...", - "icon": "https://portable-linux-apps.github.io/icons/bambustudio.png", - "arch": ["x86_64"] - }, - { - "packageName": "bananas", - "description": "Bananas, Cross-Platform screen sharing made simple...", - "icon": "https://portable-linux-apps.github.io/icons/bananas.png", - "arch": ["x86_64"] - }, - { - "packageName": "banban", - "description": "A productivity app inspired by GitHub Projects Kanban...", - "icon": "https://portable-linux-apps.github.io/icons/banban.png", - "arch": ["x86_64"] - }, - { - "packageName": "bandwhich", - "description": "Terminal bandwidth utilization tool...", - "icon": "https://portable-linux-apps.github.io/icons/bandwhich.png", - "arch": ["x86_64"] - }, - { - "packageName": "banjo-recompiled", - "description": "Unofficial, a static recompiled port of N64 Banjo-Kazooie for PC...", - "icon": "https://portable-linux-apps.github.io/icons/banjo-recompiled.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "banjorecomp", - "description": "Recompiled...", - "icon": "https://portable-linux-apps.github.io/icons/banjorecomp.png", - "arch": ["x86_64"] - }, - { - "packageName": "baobab", - "description": "A graphical directory tree analyzer for the GNOME desktop environment, to keep your disk usage and available space under control...", - "icon": "https://portable-linux-apps.github.io/icons/baobab.png", - "arch": ["x86_64"] - }, - { - "packageName": "barnacal", - "description": "A simple menu bar app for viewing a calendar..", - "icon": "https://portable-linux-apps.github.io/icons/barnacal.png", - "arch": ["x86_64"] - }, - { - "packageName": "base32", - "description": "Base32 encode/decode data and print to standard. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/base32.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "base64", - "description": "Base64 encode/decode data and print to standard. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/base64.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "basename", - "description": "Strip directory and suffix from filenames. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/basename.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "basenc", - "description": "Encode and decode with multiple base encodings.. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/basenc.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "basilisk2", - "description": "Classic Macintosh emulator BasiliskII...", - "icon": "https://portable-linux-apps.github.io/icons/basilisk2.png", - "arch": ["x86_64"] - }, - { - "packageName": "basiliskii-enhanced", - "description": "Unofficial, classic Macintosh emulator BasiliskII...", - "icon": "https://portable-linux-apps.github.io/icons/basiliskii-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "bastyon", - "description": "Decentralized social network based on the blockchain...", - "icon": "https://portable-linux-apps.github.io/icons/bastyon.png", - "arch": ["x86_64"] - }, - { - "packageName": "bat", - "description": "A \"cat\" clone with wings...", - "icon": "https://portable-linux-apps.github.io/icons/bat.png", - "arch": ["x86_64"] - }, - { - "packageName": "bat-extras", - "description": "Bash scripts that integrate bat with various command line tools...", - "icon": "https://portable-linux-apps.github.io/icons/bat-extras.png", - "arch": ["x86_64"] - }, - { - "packageName": "batch-explorer", - "description": "A client tool to create/debug/monitor Azure Batch Apps...", - "icon": "https://portable-linux-apps.github.io/icons/batch-explorer.png", - "arch": ["x86_64"] - }, - { - "packageName": "battop", - "description": "CLI, interactive batteries viewer...", - "icon": "https://portable-linux-apps.github.io/icons/battop.png", - "arch": ["x86_64"] - }, - { - "packageName": "bauh", - "description": "GUI for managing AppImage, Arch/AUR, DEBs, Flatpak, Snap and webapps...", - "icon": "https://portable-linux-apps.github.io/icons/bauh.png", - "arch": ["x86_64"] - }, - { - "packageName": "bazecor", - "description": "Graphical configurator for Dygma Raise...", - "icon": "https://portable-linux-apps.github.io/icons/bazecor.png", - "arch": ["x86_64"] - }, - { - "packageName": "bbg", - "description": "A static blog generator based on Electron Technology...", - "icon": "https://portable-linux-apps.github.io/icons/bbg.png", - "arch": ["x86_64"] - }, - { - "packageName": "bchat-desktop", - "description": "About A decentralized cionfidential messaging app that runs on Beldex network...", - "icon": "https://portable-linux-apps.github.io/icons/bchat-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "bdash", - "description": "A simple business intelligence application...", - "icon": "https://portable-linux-apps.github.io/icons/bdash.png", - "arch": ["x86_64"] - }, - { - "packageName": "bearly", - "description": "The world's best AI at your fingertips...", - "icon": "https://portable-linux-apps.github.io/icons/bearly.png", - "arch": ["x86_64"] - }, - { - "packageName": "beatconnect-client", - "description": "Beatconnect power for osu irc...", - "icon": "https://portable-linux-apps.github.io/icons/beatconnect-client.png", - "arch": ["x86_64"] - }, - { - "packageName": "beatmapexporter", - "description": "osu!lazer beatmap exporter utility. Allowing mass export of beatmaps from the new osu!lazer file storage back into .osz files...", - "icon": "https://portable-linux-apps.github.io/icons/beatmapexporter.png", - "arch": ["x86_64"] - }, - { - "packageName": "beatsaber-mod-manager", - "description": "Yet another mod installer for Beat Saber, heavily inspired by ModAssistant...", - "icon": "https://portable-linux-apps.github.io/icons/beatsaber-mod-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "beaver-notes", - "description": "Build your knowledge one log at a time...", - "icon": "https://portable-linux-apps.github.io/icons/beaver-notes.png", - "arch": ["x86_64"] - }, - { - "packageName": "beekeeper-studio", - "description": "SQL query editor and database UI...", - "icon": "https://portable-linux-apps.github.io/icons/beekeeper-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "beeref", - "description": "BeeRef Reference Image Viewer...", - "icon": "https://portable-linux-apps.github.io/icons/beeref.png", - "arch": ["x86_64"] - }, - { - "packageName": "bemoji", - "description": "Emoji picker for bemenu/wofi/rofi/dmenu, remembers your favorites...", - "icon": "https://portable-linux-apps.github.io/icons/bemoji.png", - "arch": ["x86_64"] - }, - { - "packageName": "bench-cli", - "description": "CLI tool to benchmark commands, written in `Fortran`...", - "icon": "https://portable-linux-apps.github.io/icons/bench-cli.png", - "arch": ["x86_64"] - }, - { - "packageName": "berserkerquake2", - "description": "Berserker@Quake2 game engine, ported to SDL2 library...", - "icon": "https://portable-linux-apps.github.io/icons/berserkerquake2.png", - "arch": ["x86_64"] - }, - { - "packageName": "better-osu-skills", - "description": "Gets results from the osu! Using your own IRC credentials...", - "icon": "https://portable-linux-apps.github.io/icons/better-osu-skills.png", - "arch": ["x86_64"] - }, - { - "packageName": "betterbird", - "description": "Unofficial, Betterbird is a fine-tuned version of Mozilla Thunderbird, a free and open-source email client...", - "icon": "https://portable-linux-apps.github.io/icons/betterbird.png", - "arch": ["x86_64"] - }, - { - "packageName": "bettercrewlink", - "description": "Free, open, Among Us proximity voice chat...", - "icon": "https://portable-linux-apps.github.io/icons/bettercrewlink.png", - "arch": ["x86_64"] - }, - { - "packageName": "bettermediainfo-enhanced", - "description": "Unofficial AppImage of BetterMediaInfo...", - "icon": "https://portable-linux-apps.github.io/icons/bettermediainfo-enhanced.png", - "arch": ["x86_64"] - }, - { - "packageName": "bettersis", - "description": "Modern shell for SIS...", - "icon": "https://portable-linux-apps.github.io/icons/bettersis.png", - "arch": ["x86_64"] - }, - { - "packageName": "betterx", - "description": "Enhance your X (formerly Twitter) experience with BetterX Desktop!..", - "icon": "https://portable-linux-apps.github.io/icons/betterx.png", - "arch": ["x86_64"] - }, - { - "packageName": "beurerscalemanager", - "description": "AppImage packaging project for BeurerScaleManager...", - "icon": "https://portable-linux-apps.github.io/icons/beurerscalemanager.png", - "arch": ["x86_64"] - }, - { - "packageName": "beyond-all-reason", - "description": "3D Real-Time Strategy Total Annihilation Inspired, game...", - "icon": "https://portable-linux-apps.github.io/icons/beyond-all-reason.png", - "arch": ["x86_64"] - }, - { - "packageName": "bezique", - "description": "Plays bezique game against the AI...", - "icon": "https://portable-linux-apps.github.io/icons/bezique.png", - "arch": ["x86_64"] - }, - { - "packageName": "bforartists", - "description": "3D modeling, animation, rendering and post-production...", - "icon": "https://portable-linux-apps.github.io/icons/bforartists.png", - "arch": ["x86_64"] - }, - { - "packageName": "biblemultithelife", - "description": "Bible multi languages, free, offline, no advertising...", - "icon": "https://portable-linux-apps.github.io/icons/biblemultithelife.png", - "arch": ["x86_64"] - }, - { - "packageName": "biblemultithesonofman", - "description": "Offline Bible for Terminal...", - "icon": "https://portable-linux-apps.github.io/icons/biblemultithesonofman.png", - "arch": ["x86_64"] - }, - { - "packageName": "bibletime", - "description": "Unofficial, a Bible study application based on the Sword library and Qt toolkit...", - "icon": "https://portable-linux-apps.github.io/icons/bibletime.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "bidirectional", - "description": "Write Arabic text on apps that don't support the bidirectional text...", - "icon": "https://portable-linux-apps.github.io/icons/bidirectional.png", - "arch": ["x86_64"] - }, - { - "packageName": "bigpemu", - "description": "Unofficial AppImage of BigPEmu...", - "icon": "https://portable-linux-apps.github.io/icons/bigpemu.png", - "arch": ["x86_64"] - }, - { - "packageName": "bili-liveluckdraw", - "description": "A Bilibili live stream lottery tool that draws winners based on keywords retrieved from the chat comments. It is built using Electron + React + Vite...", - "icon": "https://portable-linux-apps.github.io/icons/bili-liveluckdraw.png", - "arch": ["x86_64"] - }, - { - "packageName": "bilibili", - "description": "Bilibili official desktop client...", - "icon": "https://portable-linux-apps.github.io/icons/bilibili.png", - "arch": ["x86_64"] - }, - { - "packageName": "bilibilivideodownload", - "description": "Bilibili video downloader...", - "icon": "https://portable-linux-apps.github.io/icons/bilibilivideodownload.png", - "arch": ["x86_64"] - }, - { - "packageName": "biliup-app", - "description": "Bilibili uploader...", - "icon": "https://portable-linux-apps.github.io/icons/biliup-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "billard-gl", - "description": "Unofficial. 3D billiards game, play a game of 8-ball or 9-ball...", - "icon": "https://portable-linux-apps.github.io/icons/billard-gl.png", - "arch": ["x86_64"] - }, - { - "packageName": "billyfrontier", - "description": "Pangea Software’s Billy Frontier for modern systems...", - "icon": "https://portable-linux-apps.github.io/icons/billyfrontier.png", - "arch": ["x86_64"] - }, - { - "packageName": "bin", - "description": "Effortless binary manager...", - "icon": "https://portable-linux-apps.github.io/icons/bin.png", - "arch": ["x86_64"] - }, - { - "packageName": "binclock", - "description": "Binary clock in terminal...", - "icon": "https://portable-linux-apps.github.io/icons/binclock.png", - "arch": ["x86_64"] - }, - { - "packageName": "binfinder", - "description": "Find binary files not installed through package manager...", - "icon": "https://portable-linux-apps.github.io/icons/binfinder.png", - "arch": ["x86_64"] - }, - { - "packageName": "bingada", - "description": "Bingo application in GTKAda...", - "icon": "https://portable-linux-apps.github.io/icons/bingada.png", - "arch": ["x86_64"] - }, - { - "packageName": "binglite", - "description": "A lightweight new Bing (AI chat) desktop application based on Tauri...", - "icon": "https://portable-linux-apps.github.io/icons/binglite.png", - "arch": ["x86_64"] - }, - { - "packageName": "bioanimation", - "description": "CCNY Electrochemical Gradient Simulator...", - "icon": "https://portable-linux-apps.github.io/icons/bioanimation.png", - "arch": ["x86_64"] - }, - { - "packageName": "biplanes-revival", - "description": "An old cellphone arcade recreated for PC...", - "icon": "https://portable-linux-apps.github.io/icons/biplanes-revival.png", - "arch": ["x86_64"] - }, - { - "packageName": "birds-kitchen", - "description": "Recipe manager...", - "icon": "https://portable-linux-apps.github.io/icons/birds-kitchen.png", - "arch": ["x86_64"] - }, - { - "packageName": "bitbox-wallet", - "description": "Cryptocurrency hardware wallet desktop app...", - "icon": "https://portable-linux-apps.github.io/icons/bitbox-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "bitshares", - "description": "Advanced wallet interface for the BitShares financial blockchain...", - "icon": "https://portable-linux-apps.github.io/icons/bitshares.png", - "arch": ["x86_64"] - }, - { - "packageName": "bitwarden", - "description": "Password manager for individuals, teams and business...", - "icon": "https://portable-linux-apps.github.io/icons/bitwarden.png", - "arch": ["x86_64"] - }, - { - "packageName": "biying", - "description": "Biying Wallpaper for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/biying.png", - "arch": ["x86_64"] - }, - { - "packageName": "bk", - "description": "Terminal Epub reader...", - "icon": "https://portable-linux-apps.github.io/icons/bk.png", - "arch": ["x86_64"] - }, - { - "packageName": "black-chocobo", - "description": "FF7 Save Game Editor...", - "icon": "https://portable-linux-apps.github.io/icons/black-chocobo.png", - "arch": ["x86_64"] - }, - { - "packageName": "blacknut", - "description": "Cloud gaming client...", - "icon": "https://portable-linux-apps.github.io/icons/blacknut.png", - "arch": ["x86_64"] - }, - { - "packageName": "blank", - "description": "Blank is a minimalist, opinionated markdown editor made for writing...", - "icon": "https://portable-linux-apps.github.io/icons/blank.png", - "arch": ["x86_64"] - }, - { - "packageName": "blastem", - "description": "Clone of Mercurial Repo...", - "icon": "https://portable-linux-apps.github.io/icons/blastem.png", - "arch": ["x86_64"] - }, - { - "packageName": "blender", - "description": "Very fast and versatile 3D modeller/renderer, Stable...", - "icon": "https://portable-linux-apps.github.io/icons/blender.png", - "arch": ["x86_64"] - }, - { - "packageName": "blender-alpha", - "description": "Very fast and versatile 3D modeller/renderer, Alpha...", - "icon": "https://portable-linux-apps.github.io/icons/blender-alpha.png", - "arch": ["x86_64"] - }, - { - "packageName": "blender-beta", - "description": "Very fast and versatile 3D modeller/renderer, Beta...", - "icon": "https://portable-linux-apps.github.io/icons/blender-beta.png", - "arch": ["x86_64"] - }, - { - "packageName": "blender-rc", - "description": "Very fast and versatile 3D modeller/renderer, Release Candidate...", - "icon": "https://portable-linux-apps.github.io/icons/blender-rc.png", - "arch": ["x86_64"] - }, - { - "packageName": "blensor", - "description": "3D modeling, animation, rendering and post-production...", - "icon": "https://portable-linux-apps.github.io/icons/blensor.png", - "arch": ["x86_64"] - }, - { - "packageName": "blimp", - "description": "Customizable terminal UI for monitoring weather information, application status, network latency, and more...", - "icon": "https://portable-linux-apps.github.io/icons/blimp.png", - "arch": ["x86_64"] - }, - { - "packageName": "blink", - "description": "GUI of live indexed grep search for source code...", - "icon": "https://portable-linux-apps.github.io/icons/blink.png", - "arch": ["x86_64"] - }, - { - "packageName": "blizzard-4", - "description": "Emulator & toolchain for the Blizzard 4 16-bit computer...", - "icon": "https://portable-linux-apps.github.io/icons/blizzard-4.png", - "arch": ["x86_64"] - }, - { - "packageName": "blob-dl", - "description": "Blob-dl is a yt-dlp CLI interface used to download video and audio files from YouTube...", - "icon": "https://portable-linux-apps.github.io/icons/blob-dl.png", - "arch": ["x86_64"] - }, - { - "packageName": "blobdrop", - "description": "Drag and drop files directly out of the terminal...", - "icon": "https://portable-linux-apps.github.io/icons/blobdrop.png", - "arch": ["x86_64"] - }, - { - "packageName": "block-dx", - "description": "Exchange dApp built on top of the Blocknet Protocol...", - "icon": "https://portable-linux-apps.github.io/icons/block-dx.png", - "arch": ["x86_64"] - }, - { - "packageName": "blockbench", - "description": "Editor for boxy models and pixel art textures like Minecraft...", - "icon": "https://portable-linux-apps.github.io/icons/blockbench.png", - "arch": ["x86_64"] - }, - { - "packageName": "blockstream-green", - "description": "Bitcoin wallet compatible with Blockstream Jade...", - "icon": "https://portable-linux-apps.github.io/icons/blockstream-green.png", - "arch": ["x86_64"] - }, - { - "packageName": "bloks", - "description": "An electron-vue project...", - "icon": "https://portable-linux-apps.github.io/icons/bloks.png", - "arch": ["x86_64"] - }, - { - "packageName": "bloomee", - "description": "Music app designed to bring you ad-free tunes from various sources...", - "icon": "https://portable-linux-apps.github.io/icons/bloomee.png", - "arch": ["x86_64"] - }, - { - "packageName": "bloomrpc", - "description": "GRPC GUI client...", - "icon": "https://portable-linux-apps.github.io/icons/bloomrpc.png", - "arch": ["x86_64"] - }, - { - "packageName": "blowfish", - "description": "Display your total Ocean Token balances...", - "icon": "https://portable-linux-apps.github.io/icons/blowfish.png", - "arch": ["x86_64"] - }, - { - "packageName": "blueglow", - "description": "A simple system tray application to watch github notifications...", - "icon": "https://portable-linux-apps.github.io/icons/blueglow.png", - "arch": ["x86_64"] - }, - { - "packageName": "bluetuith", - "description": "A TUI bluetooth manager for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/bluetuith.png", - "arch": ["x86_64"] - }, - { - "packageName": "bm64recomp-enhanced", - "description": "Unofficial AppImage of Bomberman 64 Recompiled...", - "icon": "https://portable-linux-apps.github.io/icons/bm64recomp-enhanced.png", - "arch": ["x86_64"] - }, - { - "packageName": "bmherorecomp-enhanced", - "description": "Unofficial AppImage of Bomberman Hero Recompiled...", - "icon": "https://portable-linux-apps.github.io/icons/bmherorecomp-enhanced.png", - "arch": ["x86_64"] - }, - { - "packageName": "boardgamestar", - "description": "A platform for playing digital boardgames...", - "icon": "https://portable-linux-apps.github.io/icons/boardgamestar.png", - "arch": ["x86_64"] - }, - { - "packageName": "bodacious", - "description": "A bodacious music player...", - "icon": "https://portable-linux-apps.github.io/icons/bodacious.png", - "arch": ["x86_64"] - }, - { - "packageName": "bodhi", - "description": "Bodhi Prediction Market app...", - "icon": "https://portable-linux-apps.github.io/icons/bodhi.png", - "arch": ["x86_64"] - }, - { - "packageName": "boilr", - "description": "Synchronize games from other platforms into your Steam library...", - "icon": "https://portable-linux-apps.github.io/icons/boilr.png", - "arch": ["x86_64"] - }, - { - "packageName": "bomber", - "description": "Arcade spaceship game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/bomber.png", - "arch": ["x86_64"] - }, - { - "packageName": "bongocat", - "description": "A chinese cute interactive desktop pet application that makes your desktop full of fun!..", - "icon": "https://portable-linux-apps.github.io/icons/bongocat.png", - "arch": ["x86_64"] - }, - { - "packageName": "book-manager", - "description": "Simple desktop app to manage personal library...", - "icon": "https://portable-linux-apps.github.io/icons/book-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "bookdb", - "description": "A book catalog database for personal collections. Can import data from Readerware 4...", - "icon": "https://portable-linux-apps.github.io/icons/bookdb.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "bookmarks-manager", - "description": "Edit bookmarks, check url...", - "icon": "https://portable-linux-apps.github.io/icons/bookmarks-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "boost-note", - "description": "Document driven project management tool to speedup remote DevOps...", - "icon": "https://portable-linux-apps.github.io/icons/boost-note.png", - "arch": ["x86_64"] - }, - { - "packageName": "boostchanger", - "description": "Control CPU turbo boost and the settings of the cpu speed...", - "icon": "https://portable-linux-apps.github.io/icons/boostchanger.png", - "arch": ["x86_64"] - }, - { - "packageName": "botclient", - "description": "A discord botclient built with Electron and React...", - "icon": "https://portable-linux-apps.github.io/icons/botclient.png", - "arch": ["x86_64"] - }, - { - "packageName": "botframework-emulator", - "description": "Test and debug chat bots built with Bot Framework SDK...", - "icon": "https://portable-linux-apps.github.io/icons/botframework-emulator.png", - "arch": ["x86_64"] - }, - { - "packageName": "bottlebats", - "description": "Client for the 2018 edition of the BottleBats AI competition...", - "icon": "https://portable-linux-apps.github.io/icons/bottlebats.png", - "arch": ["x86_64"] - }, - { - "packageName": "bottles", - "description": "Unofficial. Manage wine prefixes and run Windows software & games in a new way...", - "icon": "https://portable-linux-apps.github.io/icons/bottles.png", - "arch": ["x86_64"] - }, - { - "packageName": "bottom", - "description": "Yet another cross-platform graphical process/system monitor...", - "icon": "https://portable-linux-apps.github.io/icons/bottom.png", - "arch": ["x86_64"] - }, - { - "packageName": "bovo", - "description": "Five in a row game from. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/bovo.png", - "arch": ["x86_64"] - }, - { - "packageName": "boxxy", - "description": "Put bad Linux applications in a box with only their files...", - "icon": "https://portable-linux-apps.github.io/icons/boxxy.png", - "arch": ["x86_64"] - }, - { - "packageName": "brainverse", - "description": "Electronic Lab Notebook for Reproducible Neuro Imaging Research...", - "icon": "https://portable-linux-apps.github.io/icons/brainverse.png", - "arch": ["x86_64"] - }, - { - "packageName": "brainwaves", - "description": "EEG Desktop Application...", - "icon": "https://portable-linux-apps.github.io/icons/brainwaves.png", - "arch": ["x86_64"] - }, - { - "packageName": "brave", - "description": "Unofficial, a privacy oriented Web Browser based on Chromium, this is the \"stable\" release...", - "icon": "https://portable-linux-apps.github.io/icons/brave.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "brave-beta", - "description": "Unofficial, a privacy oriented Web Browser based on Chromium, this is the \"beta\" release...", - "icon": "https://portable-linux-apps.github.io/icons/brave-beta.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "brave-nightly", - "description": "Unofficial, a privacy oriented Web Browser based on Chromium, this is the \"nightly\" release...", - "icon": "https://portable-linux-apps.github.io/icons/brave-nightly.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "brave-origin", - "description": "Unofficial, stripped down version of Brave Browser with no extra features...", - "icon": "https://portable-linux-apps.github.io/icons/brave-origin.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "bread", - "description": "Install, update and remove AppImage from GitHub using your CLI...", - "icon": "https://portable-linux-apps.github.io/icons/bread.png", - "arch": ["x86_64"] - }, - { - "packageName": "breaktimer", - "description": "Save yourself from RSI and eye-strain...", - "icon": "https://portable-linux-apps.github.io/icons/breaktimer.png", - "arch": ["x86_64"] - }, - { - "packageName": "briar", - "description": "Briar Desktop. Censorship-resistant peer-to-peer messaging that bypasses centralized servers. Connect via Bluetooth, Wi-Fi or Tor, with privacy built-in...", - "icon": "https://portable-linux-apps.github.io/icons/briar.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "brickstore", - "description": "An offline BrickLink inventory management tool...", - "icon": "https://portable-linux-apps.github.io/icons/brickstore.png", - "arch": ["x86_64"] - }, - { - "packageName": "bridge", - "description": "The perfect Bridge between Megascans and your favorite tools...", - "icon": "https://portable-linux-apps.github.io/icons/bridge.png", - "arch": ["x86_64"] - }, - { - "packageName": "brisk", - "description": "Ultra-fast, moden download manager for desktop...", - "icon": "https://portable-linux-apps.github.io/icons/brisk.png", - "arch": ["x86_64"] - }, - { - "packageName": "brisqi", - "description": "Offline-first Personal Kanban app...", - "icon": "https://portable-linux-apps.github.io/icons/brisqi.png", - "arch": ["x86_64"] - }, - { - "packageName": "browservice", - "description": "Browse the modern web on historical browsers...", - "icon": "https://portable-linux-apps.github.io/icons/browservice.png", - "arch": ["x86_64"] - }, - { - "packageName": "brs-emu-app", - "description": "BrightScript Emulator, runs on browsers and Electron apps...", - "icon": "https://portable-linux-apps.github.io/icons/brs-emu-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "bruno", - "description": "An Opensource API Collection Collaboration Suite...", - "icon": "https://portable-linux-apps.github.io/icons/bruno.png", - "arch": ["x86_64"] - }, - { - "packageName": "brutespray", - "description": "Bruteforcing from various scanner output. Automatically attempts default creds on found services...", - "icon": "https://portable-linux-apps.github.io/icons/brutespray.png", - "arch": ["x86_64"] - }, - { - "packageName": "bscanfftwebcam", - "description": "FDOCT tool...", - "icon": "https://portable-linux-apps.github.io/icons/bscanfftwebcam.png", - "arch": ["x86_64"] - }, - { - "packageName": "bsky", - "description": "A desktop app of bsky.app...", - "icon": "https://portable-linux-apps.github.io/icons/bsky.png", - "arch": ["x86_64"] - }, - { - "packageName": "btop", - "description": "A command line utility to monitor system resources, like Htop...", - "icon": "https://portable-linux-apps.github.io/icons/btop.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "bts-ce-lite", - "description": "Telecommunication network management application...", - "icon": "https://portable-linux-apps.github.io/icons/bts-ce-lite.png", - "arch": ["x86_64"] - }, - { - "packageName": "buckets", - "description": "Budgeting fast, simple and private...", - "icon": "https://portable-linux-apps.github.io/icons/buckets.png", - "arch": ["x86_64"] - }, - { - "packageName": "bugdom", - "description": "Pangea Software's Bugdom game...", - "icon": "https://portable-linux-apps.github.io/icons/bugdom.png", - "arch": ["x86_64"] - }, - { - "packageName": "bugdom2", - "description": "Pangea Software’s Bugdom 2 for modern systems...", - "icon": "https://portable-linux-apps.github.io/icons/bugdom2.png", - "arch": ["x86_64"] - }, - { - "packageName": "bulkreviewer", - "description": "Identify, review, and remove private information...", - "icon": "https://portable-linux-apps.github.io/icons/bulkreviewer.png", - "arch": ["x86_64"] - }, - { - "packageName": "bulkurlopener", - "description": "Desktop version of the Bulk URL Opener extension...", - "icon": "https://portable-linux-apps.github.io/icons/bulkurlopener.png", - "arch": ["x86_64"] - }, - { - "packageName": "bulky", - "description": "Unofficial, an XApp used to rename multiple files and directories...", - "icon": "https://portable-linux-apps.github.io/icons/bulky.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "bunnyfetch", - "description": "A small and fast tool for getting info about your system...", - "icon": "https://portable-linux-apps.github.io/icons/bunnyfetch.png", - "arch": ["x86_64"] - }, - { - "packageName": "bunqdesktop", - "description": "A desktop implementation for the bunq API...", - "icon": "https://portable-linux-apps.github.io/icons/bunqdesktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "burning-series", - "description": "Watch any series from Burning Series, Unofficial client...", - "icon": "https://portable-linux-apps.github.io/icons/burning-series.png", - "arch": ["x86_64"] - }, - { - "packageName": "busybox", - "description": "AppImage of BusyBox, a tool that combines stripped-down versions of many common UNIX utilities into a single, small executable...", - "icon": "https://portable-linux-apps.github.io/icons/busybox.png", - "arch": ["x86_64","aarch64","i686"] - }, - { - "packageName": "buttercup", - "description": "Free and Open Source password vault...", - "icon": "https://portable-linux-apps.github.io/icons/buttercup.png", - "arch": ["x86_64"] - }, - { - "packageName": "bypass-cors", - "description": "Unlock browser’s full potential!..", - "icon": "https://portable-linux-apps.github.io/icons/bypass-cors.png", - "arch": ["x86_64"] - }, - { - "packageName": "bytespeichertrayicon", - "description": "Bytespeicher Status App...", - "icon": "https://portable-linux-apps.github.io/icons/bytespeichertrayicon.png", - "arch": ["x86_64"] - }, - { - "packageName": "bzip2", - "description": "A high-quality data compression program. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/bzip2.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "c++filt", - "description": "And Java symbols. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/c++filt.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "c-evo", - "description": "C-evo is an empire building game based on Civilization II, but with a different focus. It aims to be a pure game with all players playing to win...", - "icon": "https://portable-linux-apps.github.io/icons/c-evo.png", - "arch": ["x86_64"] - }, - { - "packageName": "cabal-desktop", - "description": "Cabal p2p offline-first desktop application...", - "icon": "https://portable-linux-apps.github.io/icons/cabal-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "cables-gl", - "description": "A tool for creating beautiful interactive content. With an easy to navigate interface and real time visuals...", - "icon": "https://portable-linux-apps.github.io/icons/cables-gl.png", - "arch": ["x86_64"] - }, - { - "packageName": "cacher", - "description": "Cacher is a code snippet library for professional developers...", - "icon": "https://portable-linux-apps.github.io/icons/cacher.png", - "arch": ["x86_64"] - }, - { - "packageName": "cacoco", - "description": "A (slightly, but aspirationally) finished SBARDEF editor. Mostly...", - "icon": "https://portable-linux-apps.github.io/icons/cacoco.png", - "arch": ["x86_64"] - }, - { - "packageName": "cadassistant", - "description": "Offline 3D CAD viewer and converter, free for personal and commercial use...", - "icon": "https://portable-linux-apps.github.io/icons/cadassistant.png", - "arch": ["x86_64"] - }, - { - "packageName": "cadmus", - "description": "Pulse Audio real-time noise suppression plugin...", - "icon": "https://portable-linux-apps.github.io/icons/cadmus.png", - "arch": ["x86_64"] - }, - { - "packageName": "caesium", - "description": "Image compression software that helps you store, send and share digital pictures, supporting JPG, PNG, WebP and TIFF formats...", - "icon": "https://portable-linux-apps.github.io/icons/caesium.png", - "arch": ["x86_64"] - }, - { - "packageName": "cake-wallet", - "description": "Easily and safely store, send, receive, and exchange your cryptocurrency...", - "icon": "https://portable-linux-apps.github.io/icons/cake-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "calibre", - "description": "Unofficial. The one stop solution to all your e-book needs...", - "icon": "https://portable-linux-apps.github.io/icons/calibre.png", - "arch": ["x86_64"] - }, - { - "packageName": "calibre-beta", - "description": "Unofficial. The one stop solution to all your e-book needs. Beta version...", - "icon": "https://portable-linux-apps.github.io/icons/calibre-beta.png", - "arch": ["x86_64"] - }, - { - "packageName": "calibre-preview", - "description": "Unofficial. The one stop solution to all your e-book needs. Preview version...", - "icon": "https://portable-linux-apps.github.io/icons/calibre-preview.png", - "arch": ["x86_64"] - }, - { - "packageName": "calligra", - "description": "Calligra Suite is an office and graphic art suite by KDE. It contains applications for word processing, spreadsheets, presentation, vector graphics, and editing databases...", - "icon": "https://portable-linux-apps.github.io/icons/calligra.png", - "arch": ["x86_64"] - }, - { - "packageName": "calm-circles", - "description": "Calm down and draw something, in Lisp...", - "icon": "https://portable-linux-apps.github.io/icons/calm-circles.png", - "arch": ["x86_64"] - }, - { - "packageName": "calm-fan", - "description": "Calm down and draw something, in Lisp...", - "icon": "https://portable-linux-apps.github.io/icons/calm-fan.png", - "arch": ["x86_64"] - }, - { - "packageName": "calm-meditator", - "description": "Calm down and draw something, in Lisp...", - "icon": "https://portable-linux-apps.github.io/icons/calm-meditator.png", - "arch": ["x86_64"] - }, - { - "packageName": "calm-mondrian", - "description": "Calm down and draw something, in Lisp...", - "icon": "https://portable-linux-apps.github.io/icons/calm-mondrian.png", - "arch": ["x86_64"] - }, - { - "packageName": "camelot", - "description": "Camelot is cross-platform file manager written in C...", - "icon": "https://portable-linux-apps.github.io/icons/camelot.png", - "arch": ["x86_64"] - }, - { - "packageName": "candycrisis", - "description": "Candy Crisis source port for modern operating systems...", - "icon": "https://portable-linux-apps.github.io/icons/candycrisis.png", - "arch": ["x86_64"] - }, - { - "packageName": "cannonball", - "description": "Unofficial, an Enhanced OutRun Engine...", - "icon": "https://portable-linux-apps.github.io/icons/cannonball.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "caprine", - "description": "Unofficial, elegant privacy focused Facebook Messenger app...", - "icon": "https://portable-linux-apps.github.io/icons/caprine.png", - "arch": ["x86_64"] - }, - { - "packageName": "carbonyl", - "description": "Chromium running inside your terminal...", - "icon": "https://portable-linux-apps.github.io/icons/carbonyl.png", - "arch": ["x86_64"] - }, - { - "packageName": "cardo", - "description": "Podcast client...", - "icon": "https://portable-linux-apps.github.io/icons/cardo.png", - "arch": ["x86_64"] - }, - { - "packageName": "cargo", - "description": "Converts your crate into an AppImage...", - "icon": "https://portable-linux-apps.github.io/icons/cargo.png", - "arch": ["x86_64"] - }, - { - "packageName": "carpenters", - "description": "Digital preservation ingest utility...", - "icon": "https://portable-linux-apps.github.io/icons/carpenters.png", - "arch": ["x86_64"] - }, - { - "packageName": "carta", - "description": "Cube Analysis and Rendering Tool for Astronomy...", - "icon": "https://portable-linux-apps.github.io/icons/carta.png", - "arch": ["x86_64"] - }, - { - "packageName": "cartridges", - "description": "Unofficial. Game launcher, which helps you visualize your game collection and easily launch games...", - "icon": "https://portable-linux-apps.github.io/icons/cartridges.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "cashonize", - "description": "A cross-platform Bitcoin Cash Wallet...", - "icon": "https://portable-linux-apps.github.io/icons/cashonize.png", - "arch": ["x86_64"] - }, - { - "packageName": "cask", - "description": "A universal, distributed binary file manager...", - "icon": "https://portable-linux-apps.github.io/icons/cask.png", - "arch": ["x86_64"] - }, - { - "packageName": "casm", - "description": "Corinthian Abstract State Machine, CASM...", - "icon": "https://portable-linux-apps.github.io/icons/casm.png", - "arch": ["x86_64"] - }, - { - "packageName": "casterr", - "description": "Screen recorder, easing recording and clipping in-game...", - "icon": "https://portable-linux-apps.github.io/icons/casterr.png", - "arch": ["x86_64"] - }, - { - "packageName": "castersoundboard", - "description": "Soundboard for hot-keying and playing back sounds...", - "icon": "https://portable-linux-apps.github.io/icons/castersoundboard.png", - "arch": ["x86_64"] - }, - { - "packageName": "cat", - "description": "Concatenate files and print on the standard output. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/cat.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "catacombgl", - "description": "Unofficial, a source port with OpenGL graphics for Catacomb 3D (1991), The Catacomb Abyss (1992), The Catacomb Armageddon (1992) and The Catacomb Apocalypse (1993)...", - "icon": "https://portable-linux-apps.github.io/icons/catacombgl.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "catalyst", - "description": "Catalyst web browser...", - "icon": "https://portable-linux-apps.github.io/icons/catalyst.png", - "arch": ["x86_64"] - }, - { - "packageName": "catapult", - "description": "A cross-platform launcher for Cataclysm DDA and BN...", - "icon": "https://portable-linux-apps.github.io/icons/catapult.png", - "arch": ["x86_64"] - }, - { - "packageName": "catcher", - "description": "Peer-testing of software projects...", - "icon": "https://portable-linux-apps.github.io/icons/catcher.png", - "arch": ["x86_64"] - }, - { - "packageName": "catfish", - "description": "Unofficial AppImage of catfish...", - "icon": "https://portable-linux-apps.github.io/icons/catfish.png", - "arch": ["x86_64"] - }, - { - "packageName": "cavoke", - "description": "Platform to create/host multiplayer turn-based board games...", - "icon": "https://portable-linux-apps.github.io/icons/cavoke.png", - "arch": ["x86_64"] - }, - { - "packageName": "cbetar2", - "description": "ePub viewer supporting fetching and displaying HTML as ePub...", - "icon": "https://portable-linux-apps.github.io/icons/cbetar2.png", - "arch": ["x86_64"] - }, - { - "packageName": "cbird", - "description": "Command-line program for Content-Based Image Retrieval of images and videos. Includes tools for general search and de-duplication...", - "icon": "https://portable-linux-apps.github.io/icons/cbird.png", - "arch": ["x86_64"] - }, - { - "packageName": "cccp", - "description": "Cortex Command, a community-driven effort to continue the development of Cortex Command...", - "icon": "https://portable-linux-apps.github.io/icons/cccp.png", - "arch": ["x86_64"] - }, - { - "packageName": "cdogs-sdl", - "description": "Unofficial, classic overhead run-and-gun game...", - "icon": "https://portable-linux-apps.github.io/icons/cdogs-sdl.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "celeste64", - "description": "A game made by the Celeste developers...", - "icon": "https://portable-linux-apps.github.io/icons/celeste64.png", - "arch": ["x86_64"] - }, - { - "packageName": "celestia", - "description": "Real time 3D space simulator...", - "icon": "https://portable-linux-apps.github.io/icons/celestia.png", - "arch": ["x86_64"] - }, - { - "packageName": "celestia-dev", - "description": "Real time 3D space simulator, developer edition...", - "icon": "https://portable-linux-apps.github.io/icons/celestia-dev.png", - "arch": ["x86_64"] - }, - { - "packageName": "celestia-enanched", - "description": "Unofficial. Real-time 3D space simulator with extra detailed maps...", - "icon": "https://portable-linux-apps.github.io/icons/celestia-enanched.png", - "arch": ["x86_64"] - }, - { - "packageName": "celoterminal-bin", - "description": "Celo Terminal, AppImage version...", - "icon": "https://portable-linux-apps.github.io/icons/celoterminal-bin.png", - "arch": ["x86_64"] - }, - { - "packageName": "cemu", - "description": "A Nintendo Wii U emulator that is able to run most Wii U games...", - "icon": "https://portable-linux-apps.github.io/icons/cemu.png", - "arch": ["x86_64"] - }, - { - "packageName": "cemu-enhanced", - "description": "Unofficial AppImage of Cemu, Nintendo Wii U emulator that is able to run most Wii U games, which is able to work on any linux distro...", - "icon": "https://portable-linux-apps.github.io/icons/cemu-enhanced.png", - "arch": ["x86_64"] - }, - { - "packageName": "cerebral-debugger", - "description": "Cerebral Debugger...", - "icon": "https://portable-linux-apps.github.io/icons/cerebral-debugger.png", - "arch": ["x86_64"] - }, - { - "packageName": "cerebro", - "description": "Open-source productivity booster with a brain...", - "icon": "https://portable-linux-apps.github.io/icons/cerebro.png", - "arch": ["x86_64"] - }, - { - "packageName": "chain-desktop-wallet", - "description": "Crypto.com DeFi Desktop Wallet...", - "icon": "https://portable-linux-apps.github.io/icons/chain-desktop-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "chainx-signer", - "description": "Manage ChainX account, sign and sign transactions...", - "icon": "https://portable-linux-apps.github.io/icons/chainx-signer.png", - "arch": ["x86_64"] - }, - { - "packageName": "chat-gpt", - "description": "Unofficial. ChatGPT Desktop Application...", - "icon": "https://portable-linux-apps.github.io/icons/chat-gpt.png", - "arch": ["x86_64"] - }, - { - "packageName": "chatall", - "description": "Concurrently chat with ChatGPT, Bing Chat, bard, Alpaca and more...", - "icon": "https://portable-linux-apps.github.io/icons/chatall.png", - "arch": ["x86_64"] - }, - { - "packageName": "chatbox", - "description": "Chatbox is a desktop app for GPT-4 / GPT-3.5, OpenAI API...", - "icon": "https://portable-linux-apps.github.io/icons/chatbox.png", - "arch": ["x86_64"] - }, - { - "packageName": "chatgpt-next-web", - "description": "A cross-platform ChatGPT/Gemini UI...", - "icon": "https://portable-linux-apps.github.io/icons/chatgpt-next-web.png", - "arch": ["x86_64"] - }, - { - "packageName": "chatpad-ai", - "description": "Not just another ChatGPT user-interface...", - "icon": "https://portable-linux-apps.github.io/icons/chatpad-ai.png", - "arch": ["x86_64"] - }, - { - "packageName": "chatterino2", - "description": "Second installment of the Twitch chat client...", - "icon": "https://portable-linux-apps.github.io/icons/chatterino2.png", - "arch": ["x86_64"] - }, - { - "packageName": "chatterino2-nightly", - "description": "Second installment of the Twitch chat client...", - "icon": "https://portable-linux-apps.github.io/icons/chatterino2-nightly.png", - "arch": ["x86_64"] - }, - { - "packageName": "chcon", - "description": "Security context. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/chcon.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "cheat", - "description": "Create and view interactive cheatsheets on the command-line...", - "icon": "https://portable-linux-apps.github.io/icons/cheat.png", - "arch": ["x86_64"] - }, - { - "packageName": "cheatbreaker", - "description": "The free FPS boosting modpack for Minecraft 1.7 & 1.8...", - "icon": "https://portable-linux-apps.github.io/icons/cheatbreaker.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "checkra1n", - "description": "Jailbreak for iPhone 5s through iPhone X, iOS 12.0 and up..", - "icon": "https://portable-linux-apps.github.io/icons/checkra1n.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "chemcanvas", - "description": "A very intuitive 2D chemical drawing tool...", - "icon": "https://portable-linux-apps.github.io/icons/chemcanvas.png", - "arch": ["x86_64"] - }, - { - "packageName": "cherry-studio", - "description": "Agentic AI desktop with autonomous coding, intelligent automation, and unified access to frontier LLMs...", - "icon": "https://portable-linux-apps.github.io/icons/cherry-studio.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "cherrytree", - "description": "A hierarchical note taking application...", - "icon": "https://portable-linux-apps.github.io/icons/cherrytree.png", - "arch": ["x86_64"] - }, - { - "packageName": "chess-tui", - "description": "Play chess from your terminal...", - "icon": "https://portable-linux-apps.github.io/icons/chess-tui.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "chessmd", - "description": "Open source chess training software. Play against bots, analyze with engines, explore chess openings, and more...", - "icon": "https://portable-linux-apps.github.io/icons/chessmd.png", - "arch": ["x86_64"] - }, - { - "packageName": "chezmoi", - "description": "Manage your dotfiles across multiple diverse machines, securely...", - "icon": "https://portable-linux-apps.github.io/icons/chezmoi.png", - "arch": ["x86_64"] - }, - { - "packageName": "chgrp", - "description": "Change group ownership. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/chgrp.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "chimeradesk", - "description": "Simple, fast and flexible DIY Remote Desktop software...", - "icon": "https://portable-linux-apps.github.io/icons/chimeradesk.png", - "arch": ["x86_64"] - }, - { - "packageName": "chimeradesk-kvm", - "description": "Simple, fast and flexible DIY Remote Desktop software...", - "icon": "https://portable-linux-apps.github.io/icons/chimeradesk-kvm.png", - "arch": ["x86_64"] - }, - { - "packageName": "chmod", - "description": "Change file mode bits. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/chmod.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "chown", - "description": "Change file owner and group. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/chown.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "chromium", - "description": "Unofficial. FOSS Web Browser, base of Google Chrome, Edge and Brave, stable...", - "icon": "https://portable-linux-apps.github.io/icons/chromium.png", - "arch": ["x86_64","i686"] - }, - { - "packageName": "chromium-beta", - "description": "Unofficial. FOSS Web Browser, base of Google Chrome, beta edition...", - "icon": "https://portable-linux-apps.github.io/icons/chromium-beta.png", - "arch": ["x86_64"] - }, - { - "packageName": "chromium-bsu", - "description": "Unofficial. Fast paced arcade style scrolling space shooter, game...", - "icon": "https://portable-linux-apps.github.io/icons/chromium-bsu.png", - "arch": ["x86_64"] - }, - { - "packageName": "chromium-edge", - "description": "Unofficial. FOSS Web Browser, base of Google Chrome, edge edition...", - "icon": "https://portable-linux-apps.github.io/icons/chromium-edge.png", - "arch": ["x86_64"] - }, - { - "packageName": "chromium-rc", - "description": "Unofficial. FOSS Web Browser, base of Google Chrome, release candidate...", - "icon": "https://portable-linux-apps.github.io/icons/chromium-rc.png", - "arch": ["x86_64"] - }, - { - "packageName": "chroot", - "description": "Run command or interactive shell with special root. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/chroot.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "chrysalis-bin", - "description": "Graphical configurator for Kaleidoscope-powered keyboards...", - "icon": "https://portable-linux-apps.github.io/icons/chrysalis-bin.png", - "arch": ["x86_64"] - }, - { - "packageName": "ciaa-suite", - "description": "Makefile based IDE for embedded systems...", - "icon": "https://portable-linux-apps.github.io/icons/ciaa-suite.png", - "arch": ["x86_64"] - }, - { - "packageName": "cicada", - "description": "An old-school bash-like Unix shell written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/cicada.png", - "arch": ["x86_64"] - }, - { - "packageName": "cine", - "description": "Unofficial AppImage of Cine...", - "icon": "https://portable-linux-apps.github.io/icons/cine.png", - "arch": ["x86_64"] - }, - { - "packageName": "cinelerra", - "description": "CINELERRA-GG is a software program NLE, Non-Linear Editor, that provides a way to edit, record, and play audio or video media. It can also be used to transcode media from one format to another or to correct and retouch photos...", - "icon": "https://portable-linux-apps.github.io/icons/cinelerra.png", - "arch": ["x86_64"] - }, - { - "packageName": "cinny", - "description": "Yet another matrix client for desktop...", - "icon": "https://portable-linux-apps.github.io/icons/cinny.png", - "arch": ["x86_64"] - }, - { - "packageName": "circle-z", - "description": "A chat client for online math courses...", - "icon": "https://portable-linux-apps.github.io/icons/circle-z.png", - "arch": ["x86_64"] - }, - { - "packageName": "circuitblocks", - "description": "Helps newbies get into embedded programming...", - "icon": "https://portable-linux-apps.github.io/icons/circuitblocks.png", - "arch": ["x86_64"] - }, - { - "packageName": "city-hub", - "description": "Hub into everything on City Chain/Smart City Platform...", - "icon": "https://portable-linux-apps.github.io/icons/city-hub.png", - "arch": ["x86_64"] - }, - { - "packageName": "ciyue", - "description": "A simple mdict dictionary...", - "icon": "https://portable-linux-apps.github.io/icons/ciyue.png", - "arch": ["x86_64"] - }, - { - "packageName": "cksum", - "description": "Compute and verify file checksums. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/cksum.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "clagrange", - "description": "Lagrange is a cross-platform client for browsing Geminispace (CLI Version)...", - "icon": "https://portable-linux-apps.github.io/icons/clagrange.png", - "arch": ["x86_64"] - }, - { - "packageName": "clamtk", - "description": "An easy to use, light-weight, on-demand virus scanner for Linux systems..", - "icon": "https://portable-linux-apps.github.io/icons/clamtk.png", - "arch": ["x86_64"] - }, - { - "packageName": "clamui", - "description": "ClamAV Desktop application (GUI)...", - "icon": "https://portable-linux-apps.github.io/icons/clamui.png", - "arch": ["x86_64"] - }, - { - "packageName": "clapper", - "description": "Unofficial. A modern media player designed for simplicity and ease of use...", - "icon": "https://portable-linux-apps.github.io/icons/clapper.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "clash-nyanpasu", - "description": "A Clash GUI based on tauri...", - "icon": "https://portable-linux-apps.github.io/icons/clash-nyanpasu.png", - "arch": ["x86_64"] - }, - { - "packageName": "clash-verge", - "description": "A multiplatform Clash GUI based on tauri...", - "icon": "https://portable-linux-apps.github.io/icons/clash-verge.png", - "arch": ["x86_64"] - }, - { - "packageName": "classicimageviewer", - "description": "A simple image viewer with some editing features...", - "icon": "https://portable-linux-apps.github.io/icons/classicimageviewer.png", - "arch": ["x86_64"] - }, - { - "packageName": "classicube", - "description": "Unofficial, Custom Minecraft Classic / ClassiCube client written in C from scratch..", - "icon": "https://portable-linux-apps.github.io/icons/classicube.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "classipod", - "description": "A local music player app designed to capture the nostalgic essence of the iconic iPod Classic...", - "icon": "https://portable-linux-apps.github.io/icons/classipod.png", - "arch": ["x86_64"] - }, - { - "packageName": "claude-code", - "description": "Unofficial AppImage of claude-code...", - "icon": "https://portable-linux-apps.github.io/icons/claude-code.png", - "arch": ["x86_64"] - }, - { - "packageName": "claude-desktop", - "description": "Unofficial, Claude is a next generation AI assistant built by Anthropic and trained to be safe, accurate, and secure to help you do your best work...", - "icon": "https://portable-linux-apps.github.io/icons/claude-desktop.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "clear", - "description": "Clear the terminal screen. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/clear.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "cleepdesktop", - "description": "Desktop application to manage your Cleep devices...", - "icon": "https://portable-linux-apps.github.io/icons/cleepdesktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "clementine", - "description": "Unofficial AppImage of the Clementine music player...", - "icon": "https://portable-linux-apps.github.io/icons/clementine.png", - "arch": ["x86_64"] - }, - { - "packageName": "clementineremote", - "description": "Remote for Clementine Music Player...", - "icon": "https://portable-linux-apps.github.io/icons/clementineremote.png", - "arch": ["x86_64"] - }, - { - "packageName": "clifm", - "description": "The shell-like, command line terminal file manager simple, fast, extensible, and lightweight as hell...", - "icon": "https://portable-linux-apps.github.io/icons/clifm.png", - "arch": ["x86_64"] - }, - { - "packageName": "cliniface", - "description": "3D Facial Image Visualisation and Analysis...", - "icon": "https://portable-linux-apps.github.io/icons/cliniface.png", - "arch": ["x86_64"] - }, - { - "packageName": "clipgrab", - "description": "Download and Convert Online Videos...", - "icon": "https://portable-linux-apps.github.io/icons/clipgrab.png", - "arch": ["x86_64"] - }, - { - "packageName": "clippy", - "description": "Clipboard History...", - "icon": "https://portable-linux-apps.github.io/icons/clippy.png", - "arch": ["x86_64"] - }, - { - "packageName": "clipr", - "description": "The clipboard that syncs...", - "icon": "https://portable-linux-apps.github.io/icons/clipr.png", - "arch": ["x86_64"] - }, - { - "packageName": "clipse", - "description": "Configurable TUI clipboard manager for Unix...", - "icon": "https://portable-linux-apps.github.io/icons/clipse.png", - "arch": ["x86_64"] - }, - { - "packageName": "clk", - "description": "Unofficial, a latency hating emulator for 8 and 16 bit platforms...", - "icon": "https://portable-linux-apps.github.io/icons/clk.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "cloud-browser", - "description": "Access to files located in various cloud services...", - "icon": "https://portable-linux-apps.github.io/icons/cloud-browser.png", - "arch": ["x86_64"] - }, - { - "packageName": "clownmaped", - "description": "Sonic the Hedgehog sprite editor, clone of Xenowhirl's SonMapEd...", - "icon": "https://portable-linux-apps.github.io/icons/clownmaped.png", - "arch": ["x86_64"] - }, - { - "packageName": "clownmdemu", - "description": "Reference standalone frontend for clownmdemu...", - "icon": "https://portable-linux-apps.github.io/icons/clownmdemu.png", - "arch": ["x86_64"] - }, - { - "packageName": "clownmdemu-enhanced", - "description": "Unofficial, reference standalone frontend for clownmdemu...", - "icon": "https://portable-linux-apps.github.io/icons/clownmdemu-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "cmux", - "description": "Cmux/ManaflowX is an X feed for coding agents that lets you run + compare Claude Code, Codex CLI, Amp, Gemini CLI, Cursor CLI, Opencode, and other coding agent CLIs in parallel across multiple tasks...", - "icon": "https://portable-linux-apps.github.io/icons/cmux.png", - "arch": ["x86_64"] - }, - { - "packageName": "cncjs", - "description": "CNC Milling Controller...", - "icon": "https://portable-linux-apps.github.io/icons/cncjs.png", - "arch": ["x86_64"] - }, - { - "packageName": "cncra2yr", - "description": "C&C Red Alert 2, a real-time strategy game by Westwood Pacific...", - "icon": "https://portable-linux-apps.github.io/icons/cncra2yr.png", - "arch": ["x86_64"] - }, - { - "packageName": "coal-launcher", - "description": "A client to view and play games from the AB Coal website...", - "icon": "https://portable-linux-apps.github.io/icons/coal-launcher.png", - "arch": ["x86_64"] - }, - { - "packageName": "code", - "description": "Visual Studio, VSCode, Original Editor to build/debug web/cloud apps...", - "icon": "https://portable-linux-apps.github.io/icons/code.png", - "arch": ["x86_64"] - }, - { - "packageName": "code-expert-sync", - "description": "Allows syncing of Code Expert projects to a local file system...", - "icon": "https://portable-linux-apps.github.io/icons/code-expert-sync.png", - "arch": ["x86_64"] - }, - { - "packageName": "code-notes", - "description": "A simple code snippet amp built with Electron...", - "icon": "https://portable-linux-apps.github.io/icons/code-notes.png", - "arch": ["x86_64"] - }, - { - "packageName": "code-radio", - "description": "A command line music radio client for coderadio.freecodecamp.org, written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/code-radio.png", - "arch": ["x86_64"] - }, - { - "packageName": "codebook-lsp", - "description": "Codebook, code-aware spell checker with language server implementation...", - "icon": "https://portable-linux-apps.github.io/icons/codebook-lsp.png", - "arch": ["x86_64"] - }, - { - "packageName": "coinstac", - "description": "Collaborative Informatics and Neuroimaging Suite Toolkit...", - "icon": "https://portable-linux-apps.github.io/icons/coinstac.png", - "arch": ["x86_64"] - }, - { - "packageName": "col", - "description": "Line feeds from input. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/col.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "colcrt", - "description": "Output for CRT previewing. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/colcrt.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "collaboraoffice", - "description": "Unofficial, a collaborative online office suite based on LibreOffice technology...", - "icon": "https://portable-linux-apps.github.io/icons/collaboraoffice.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "collision", - "description": "Unofficial. Verify the checksum/hash validity of files...", - "icon": "https://portable-linux-apps.github.io/icons/collision.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "colon", - "description": "A flexible text editor...", - "icon": "https://portable-linux-apps.github.io/icons/colon.png", - "arch": ["x86_64"] - }, - { - "packageName": "colorgenerator", - "description": "Generates color palettes similar to ColorBrewer...", - "icon": "https://portable-linux-apps.github.io/icons/colorgenerator.png", - "arch": ["x86_64"] - }, - { - "packageName": "colorpicker", - "description": "Electron app that can show colors with hex/rgb...", - "icon": "https://portable-linux-apps.github.io/icons/colorpicker.png", - "arch": ["x86_64"] - }, - { - "packageName": "colorstatic-bash", - "description": "CLI to generate a random colorful \"Static\"/\"Matrix\"...", - "icon": "https://portable-linux-apps.github.io/icons/colorstatic-bash.png", - "arch": ["x86_64"] - }, - { - "packageName": "colrm", - "description": "From a file. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/colrm.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "column", - "description": "Columnate lists. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/column.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "comic-book-reader", - "description": "Reader and converter for cbz, cbr, epub and pdf files...", - "icon": "https://portable-linux-apps.github.io/icons/comic-book-reader.png", - "arch": ["x86_64"] - }, - { - "packageName": "comic-reader", - "description": "Electron based comic reader...", - "icon": "https://portable-linux-apps.github.io/icons/comic-reader.png", - "arch": ["x86_64"] - }, - { - "packageName": "comics-downloader", - "description": "Tool to download comics and manga in pdf/epub/cbr/cbz from a website...", - "icon": "https://portable-linux-apps.github.io/icons/comics-downloader.png", - "arch": ["x86_64"] - }, - { - "packageName": "comictagger", - "description": "A multi-platform app for writing metadata to digital comics...", - "icon": "https://portable-linux-apps.github.io/icons/comictagger.png", - "arch": ["x86_64"] - }, - { - "packageName": "comm", - "description": "Compare two sorted files line by line. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/comm.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "commander-genius", - "description": "Unofficial, an open-source interpreter for the Commander Keen (1-6, Dreams) and Cosmos Cosmic series...", - "icon": "https://portable-linux-apps.github.io/icons/commander-genius.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "compass", - "description": "Air Traffic Surveillance DataBase...", - "icon": "https://portable-linux-apps.github.io/icons/compass.png", - "arch": ["x86_64"] - }, - { - "packageName": "compresso", - "description": "Convert any video into a tiny size...", - "icon": "https://portable-linux-apps.github.io/icons/compresso.png", - "arch": ["x86_64"] - }, - { - "packageName": "concordium-desktop-wallet", - "description": "The official Concordium Dektop Wallet...", - "icon": "https://portable-linux-apps.github.io/icons/concordium-desktop-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "conduction", - "description": "Tasks? Done. That was quick...", - "icon": "https://portable-linux-apps.github.io/icons/conduction.png", - "arch": ["x86_64"] - }, - { - "packageName": "conky", - "description": "Light-weight system monitor for X...", - "icon": "https://portable-linux-apps.github.io/icons/conky.png", - "arch": ["x86_64"] - }, - { - "packageName": "consoleworkbench", - "description": "Console workbench...", - "icon": "https://portable-linux-apps.github.io/icons/consoleworkbench.png", - "arch": ["x86_64"] - }, - { - "packageName": "constrict", - "description": "Unofficial AppImage of Constrict...", - "icon": "https://portable-linux-apps.github.io/icons/constrict.png", - "arch": ["x86_64"] - }, - { - "packageName": "contour", - "description": "Modern C++ Terminal Emulator...", - "icon": "https://portable-linux-apps.github.io/icons/contour.png", - "arch": ["x86_64"] - }, - { - "packageName": "conty", - "description": "Easy to use unprivileged and portable Arch Linux container...", - "icon": "https://portable-linux-apps.github.io/icons/conty.png", - "arch": ["x86_64"] - }, - { - "packageName": "converse-desktop", - "description": "Electron-based Desktop client for Converse.js...", - "icon": "https://portable-linux-apps.github.io/icons/converse-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "converseen", - "description": "A batch image converter and resizer...", - "icon": "https://portable-linux-apps.github.io/icons/converseen.png", - "arch": ["x86_64"] - }, - { - "packageName": "converter432hz", - "description": "Converts and re-encodes music to 432hz...", - "icon": "https://portable-linux-apps.github.io/icons/converter432hz.png", - "arch": ["x86_64"] - }, - { - "packageName": "converternow", - "description": "The Unit Converter app. Easy, immediate and multi-platform...", - "icon": "https://portable-linux-apps.github.io/icons/converternow.png", - "arch": ["x86_64"] - }, - { - "packageName": "cool-retro-term", - "description": "Use the command line the old way...", - "icon": "https://portable-linux-apps.github.io/icons/cool-retro-term.png", - "arch": ["x86_64"] - }, - { - "packageName": "coolercontrol", - "description": "A program to monitor and control your cooling devices...", - "icon": "https://portable-linux-apps.github.io/icons/coolercontrol.png", - "arch": ["x86_64"] - }, - { - "packageName": "coolercontrold", - "description": "Daemon for coolercontrol, to monitor your cooling devices...", - "icon": "https://portable-linux-apps.github.io/icons/coolercontrold.png", - "arch": ["x86_64"] - }, - { - "packageName": "copyq", - "description": "Unofficial, an advanced clipboard manager with powerful editing and scripting features...", - "icon": "https://portable-linux-apps.github.io/icons/copyq.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "copytranslator", - "description": "Foreign language reading and translation assistant...", - "icon": "https://portable-linux-apps.github.io/icons/copytranslator.png", - "arch": ["x86_64"] - }, - { - "packageName": "cordlauncher", - "description": "Cord launcher based on Electron and Wep Application...", - "icon": "https://portable-linux-apps.github.io/icons/cordlauncher.png", - "arch": ["x86_64"] - }, - { - "packageName": "coreaction", - "description": "A side bar for showing widgets for CuboCore Application Suite...", - "icon": "https://portable-linux-apps.github.io/icons/coreaction.png", - "arch": ["x86_64"] - }, - { - "packageName": "corearchiver", - "description": "Archive manager for CuboCore Application Suite...", - "icon": "https://portable-linux-apps.github.io/icons/corearchiver.png", - "arch": ["x86_64"] - }, - { - "packageName": "corefm", - "description": "A lightweight file-manager for C Suite...", - "icon": "https://portable-linux-apps.github.io/icons/corefm.png", - "arch": ["x86_64"] - }, - { - "packageName": "coregarage", - "description": "A setting manager for CuboCore Application Suite...", - "icon": "https://portable-linux-apps.github.io/icons/coregarage.png", - "arch": ["x86_64"] - }, - { - "packageName": "corehunt", - "description": "A file search utility for CuboCore Application Suite...", - "icon": "https://portable-linux-apps.github.io/icons/corehunt.png", - "arch": ["x86_64"] - }, - { - "packageName": "coreimage", - "description": "An image viewer for CuboCore Application Suite...", - "icon": "https://portable-linux-apps.github.io/icons/coreimage.png", - "arch": ["x86_64"] - }, - { - "packageName": "coreinfo", - "description": "A file information viewer for CuboCore Application Suite...", - "icon": "https://portable-linux-apps.github.io/icons/coreinfo.png", - "arch": ["x86_64"] - }, - { - "packageName": "corekeyboard", - "description": "A x11 based virtual keyboard for C Suite...", - "icon": "https://portable-linux-apps.github.io/icons/corekeyboard.png", - "arch": ["x86_64"] - }, - { - "packageName": "corepad", - "description": "A document editor for CuboCore Application Suite...", - "icon": "https://portable-linux-apps.github.io/icons/corepad.png", - "arch": ["x86_64"] - }, - { - "packageName": "corepaint", - "description": "A paint app for CuboCore Application Suite...", - "icon": "https://portable-linux-apps.github.io/icons/corepaint.png", - "arch": ["x86_64"] - }, - { - "packageName": "corepins", - "description": "A bookmarking app for CuboCore Application Suite...", - "icon": "https://portable-linux-apps.github.io/icons/corepins.png", - "arch": ["x86_64"] - }, - { - "packageName": "corerenamer", - "description": "A batch file renamer for CuboCore Application Suite...", - "icon": "https://portable-linux-apps.github.io/icons/corerenamer.png", - "arch": ["x86_64"] - }, - { - "packageName": "coreshot", - "description": "A screen capture utility for CuboCore Application Suite...", - "icon": "https://portable-linux-apps.github.io/icons/coreshot.png", - "arch": ["x86_64"] - }, - { - "packageName": "corestats", - "description": "A system resource viewer from the CoreApps family...", - "icon": "https://portable-linux-apps.github.io/icons/corestats.png", - "arch": ["x86_64"] - }, - { - "packageName": "corestuff", - "description": "An activity viewer for CuboCore Application Suite...", - "icon": "https://portable-linux-apps.github.io/icons/corestuff.png", - "arch": ["x86_64"] - }, - { - "packageName": "coreterminal", - "description": "A terminal emulator for C Suite...", - "icon": "https://portable-linux-apps.github.io/icons/coreterminal.png", - "arch": ["x86_64"] - }, - { - "packageName": "coretime", - "description": "A time related task manager for CuboCore Application Suite...", - "icon": "https://portable-linux-apps.github.io/icons/coretime.png", - "arch": ["x86_64"] - }, - { - "packageName": "coreuniverse", - "description": "Shows releated information of apps from CuboCore App Suite...", - "icon": "https://portable-linux-apps.github.io/icons/coreuniverse.png", - "arch": ["x86_64"] - }, - { - "packageName": "corsixth", - "description": "Open source clone of Theme Hospital...", - "icon": "https://portable-linux-apps.github.io/icons/corsixth.png", - "arch": ["x86_64"] - }, - { - "packageName": "corsixth-enhanced", - "description": "Unofficial, open source clone of Theme Hospital...", - "icon": "https://portable-linux-apps.github.io/icons/corsixth-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "cosmic-comics", - "description": "Web Server based Comics / Manga Collectionner & viewer...", - "icon": "https://portable-linux-apps.github.io/icons/cosmic-comics.png", - "arch": ["x86_64"] - }, - { - "packageName": "cosmonium", - "description": "3D astronomy and space exploration program...", - "icon": "https://portable-linux-apps.github.io/icons/cosmonium.png", - "arch": ["x86_64"] - }, - { - "packageName": "cowitness", - "description": "A powerful web app testing tool that enhances the accuracy and efficiency of your testing efforts...", - "icon": "https://portable-linux-apps.github.io/icons/cowitness.png", - "arch": ["x86_64"] - }, - { - "packageName": "cozydrive", - "description": "File Synchronisation for Cozy, cloud...", - "icon": "https://portable-linux-apps.github.io/icons/cozydrive.png", - "arch": ["x86_64"] - }, - { - "packageName": "cp", - "description": "Copy files and directories. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/cp.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "cpeditor", - "description": "Code editor specially designed for competitive programming...", - "icon": "https://portable-linux-apps.github.io/icons/cpeditor.png", - "arch": ["x86_64"] - }, - { - "packageName": "cpod", - "description": "A simple, beautiful podcast app...", - "icon": "https://portable-linux-apps.github.io/icons/cpod.png", - "arch": ["x86_64"] - }, - { - "packageName": "cpu-x", - "description": "Software that gathers information on CPU, motherboard and more...", - "icon": "https://portable-linux-apps.github.io/icons/cpu-x.png", - "arch": ["x86_64"] - }, - { - "packageName": "cpufetch", - "description": "Simple yet fancy CPU architecture fetching tool...", - "icon": "https://portable-linux-apps.github.io/icons/cpufetch.png", - "arch": ["x86_64"] - }, - { - "packageName": "crabfetch", - "description": "Extremely fast, featureful and customizable command-line fetcher...", - "icon": "https://portable-linux-apps.github.io/icons/crabfetch.png", - "arch": ["x86_64"] - }, - { - "packageName": "craftos-pc", - "description": "Advanced ComputerCraft emulator written in C++...", - "icon": "https://portable-linux-apps.github.io/icons/craftos-pc.png", - "arch": ["x86_64"] - }, - { - "packageName": "crankshaft", - "description": "A sensible krunker client written in typescript...", - "icon": "https://portable-linux-apps.github.io/icons/crankshaft.png", - "arch": ["x86_64"] - }, - { - "packageName": "crawl-ncurses", - "description": "open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - ncurses version (terminal)..", - "icon": "https://portable-linux-apps.github.io/icons/crawl-ncurses.png", - "arch": ["x86_64"] - }, - { - "packageName": "crawl-tiles", - "description": "open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - graphical version (SDL)..", - "icon": "https://portable-linux-apps.github.io/icons/crawl-tiles.png", - "arch": ["x86_64"] - }, - { - "packageName": "creality-print", - "description": "Creality Print is a slicer dedicated to FDM printers...", - "icon": "https://portable-linux-apps.github.io/icons/creality-print.png", - "arch": ["x86_64"] - }, - { - "packageName": "crg-data-tool", - "description": "A tool for working with Games Data files from CRG...", - "icon": "https://portable-linux-apps.github.io/icons/crg-data-tool.png", - "arch": ["x86_64"] - }, - { - "packageName": "cric", - "description": "Custom Runtime Image Creator...", - "icon": "https://portable-linux-apps.github.io/icons/cric.png", - "arch": ["x86_64"] - }, - { - "packageName": "crispy-doom", - "description": "Unofficial, a limit-removing enhanced-resolution Doom source port based on Chocolate Doom...", - "icon": "https://portable-linux-apps.github.io/icons/crispy-doom.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "criteria-geo", - "description": "A one-dimensional agro-hydrological model, GIS interface...", - "icon": "https://portable-linux-apps.github.io/icons/criteria-geo.png", - "arch": ["x86_64"] - }, - { - "packageName": "criteria1d", - "description": "A one-dimensional agro-hydrological model...", - "icon": "https://portable-linux-apps.github.io/icons/criteria1d.png", - "arch": ["x86_64"] - }, - { - "packageName": "criteria1d-pro", - "description": "A one-dimensional agro-hydrological model, PRO...", - "icon": "https://portable-linux-apps.github.io/icons/criteria1d-pro.png", - "arch": ["x86_64"] - }, - { - "packageName": "cro-chain-desktop-bin", - "description": "Crypto.com DeFi Desktop Wallet, AppImage version...", - "icon": "https://portable-linux-apps.github.io/icons/cro-chain-desktop-bin.png", - "arch": ["x86_64"] - }, - { - "packageName": "croc", - "description": "Easily and securely send things from one computer to another...", - "icon": "https://portable-linux-apps.github.io/icons/croc.png", - "arch": ["x86_64"] - }, - { - "packageName": "crock", - "description": "Crock is rock clock...", - "icon": "https://portable-linux-apps.github.io/icons/crock.png", - "arch": ["x86_64"] - }, - { - "packageName": "cromagrally", - "description": "The wildest racing game since man invented the wheel!..", - "icon": "https://portable-linux-apps.github.io/icons/cromagrally.png", - "arch": ["x86_64"] - }, - { - "packageName": "cromagrally-enhanced", - "description": "Unofficial, the wildest racing game since man invented the wheel!..", - "icon": "https://portable-linux-apps.github.io/icons/cromagrally-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "cromberg", - "description": "Personal accounting system...", - "icon": "https://portable-linux-apps.github.io/icons/cromberg.png", - "arch": ["x86_64"] - }, - { - "packageName": "cromite", - "description": "Unofficial AppImage of the Cromite web browser...", - "icon": "https://portable-linux-apps.github.io/icons/cromite.png", - "arch": ["x86_64"] - }, - { - "packageName": "crosscode-map-editor", - "description": "Map Editor for CrossCode...", - "icon": "https://portable-linux-apps.github.io/icons/crosscode-map-editor.png", - "arch": ["x86_64"] - }, - { - "packageName": "crossmacro", - "description": "A modern mouse and keyboard macro recording and playback application...", - "icon": "https://portable-linux-apps.github.io/icons/crossmacro.png", - "arch": ["x86_64"] - }, - { - "packageName": "crossmobile", - "description": "Create native iOS/Android/Windows apps in Java...", - "icon": "https://portable-linux-apps.github.io/icons/crossmobile.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "crow-translate", - "description": "Translate and speak text using Google, Yandex, Bing and more...", - "icon": "https://portable-linux-apps.github.io/icons/crow-translate.png", - "arch": ["x86_64"] - }, - { - "packageName": "cryplicity", - "description": "Electron application boilerplate...", - "icon": "https://portable-linux-apps.github.io/icons/cryplicity.png", - "arch": ["x86_64"] - }, - { - "packageName": "crypter", - "description": "An innovative, convenient and secure crypto app...", - "icon": "https://portable-linux-apps.github.io/icons/crypter.png", - "arch": ["x86_64"] - }, - { - "packageName": "cryptocam-companion", - "description": "GUI to decrypt videos taken by Cryptocam...", - "icon": "https://portable-linux-apps.github.io/icons/cryptocam-companion.png", - "arch": ["x86_64"] - }, - { - "packageName": "cryptomator", - "description": "Cloud Storage Encryption Utility...", - "icon": "https://portable-linux-apps.github.io/icons/cryptomator.png", - "arch": ["x86_64"] - }, - { - "packageName": "cryptr", - "description": "A GUI for Vault...", - "icon": "https://portable-linux-apps.github.io/icons/cryptr.png", - "arch": ["x86_64"] - }, - { - "packageName": "cs-demo-manager", - "description": "Companion application for your Counter-Strike demos...", - "icon": "https://portable-linux-apps.github.io/icons/cs-demo-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "cscrypto", - "description": "A crypto app...", - "icon": "https://portable-linux-apps.github.io/icons/cscrypto.png", - "arch": ["x86_64"] - }, - { - "packageName": "csplit", - "description": "File into sections determined by context. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/csplit.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ctool", - "description": "Common Tools for Program Development...", - "icon": "https://portable-linux-apps.github.io/icons/ctool.png", - "arch": ["x86_64"] - }, - { - "packageName": "ctop", - "description": "Top-like interface for container metrics...", - "icon": "https://portable-linux-apps.github.io/icons/ctop.png", - "arch": ["x86_64"] - }, - { - "packageName": "cuberite", - "description": "Unofficial, a lightweight, fast and extensible game server for Minecraft...", - "icon": "https://portable-linux-apps.github.io/icons/cuberite.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "cubyz", - "description": "Unofficial AppImage of Cubyz...", - "icon": "https://portable-linux-apps.github.io/icons/cubyz.png", - "arch": ["x86_64"] - }, - { - "packageName": "cudatext", - "description": "A cross-platform text editor, written in Object Pascal...", - "icon": "https://portable-linux-apps.github.io/icons/cudatext.png", - "arch": ["x86_64"] - }, - { - "packageName": "cura", - "description": "An open source slicing application for 3D printers...", - "icon": "https://portable-linux-apps.github.io/icons/cura.png", - "arch": ["x86_64"] - }, - { - "packageName": "cura-beta", - "description": "An open source slicing application for 3D printers, beta...", - "icon": "https://portable-linux-apps.github.io/icons/cura-beta.png", - "arch": ["x86_64"] - }, - { - "packageName": "curl", - "description": "Command line tool and library for transferring data with URLs. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/curl.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "curlie", - "description": "The power of curl, the ease of use of httpie...", - "icon": "https://portable-linux-apps.github.io/icons/curlie.png", - "arch": ["x86_64"] - }, - { - "packageName": "curseforge", - "description": "Discover endless mods for your favorite games, or forge your own and share them with millions...", - "icon": "https://portable-linux-apps.github.io/icons/curseforge.png", - "arch": ["x86_64"] - }, - { - "packageName": "cursor", - "description": "Built to make you extraordinarily productive, Cursor is the best way to code with AI...", - "icon": "https://portable-linux-apps.github.io/icons/cursor.png", - "arch": ["x86_64"] - }, - { - "packageName": "cursor-cli", - "description": "Unofficial, AI-assisted development CLI tool...", - "icon": "https://portable-linux-apps.github.io/icons/cursor-cli.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "customrpc", - "description": "An electron-vue project...", - "icon": "https://portable-linux-apps.github.io/icons/customrpc.png", - "arch": ["x86_64"] - }, - { - "packageName": "cut", - "description": "From each line of files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/cut.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "cutechess", - "description": "Cute Chess is a GUI, a CLI and a library for playing chess...", - "icon": "https://portable-linux-apps.github.io/icons/cutechess.png", - "arch": ["x86_64"] - }, - { - "packageName": "cutepeaks", - "description": "A simple sanger trace file viewer...", - "icon": "https://portable-linux-apps.github.io/icons/cutepeaks.png", - "arch": ["x86_64"] - }, - { - "packageName": "cutevariant", - "description": "A genetics variant filtering tools..", - "icon": "https://portable-linux-apps.github.io/icons/cutevariant.png", - "arch": ["x86_64"] - }, - { - "packageName": "cutter", - "description": "Free and Open Source Reverse Engineering Platform...", - "icon": "https://portable-linux-apps.github.io/icons/cutter.png", - "arch": ["x86_64"] - }, - { - "packageName": "cvrx", - "description": "A standalone companion app for ChilloutVR that expands the user experience! A standalone companion app for ChilloutVR that expands the user experience! A standalone companion app for ChilloutVR that expands the user experience!...", - "icon": "https://portable-linux-apps.github.io/icons/cvrx.png", - "arch": ["x86_64"] - }, - { - "packageName": "czkawka", - "description": "App to find duplicates, empty folders, similar images etc...", - "icon": "https://portable-linux-apps.github.io/icons/czkawka.png", - "arch": ["x86_64"] - }, - { - "packageName": "d1x-rebirth", - "description": "Unofficial, a source port of the Descent engine...", - "icon": "https://portable-linux-apps.github.io/icons/d1x-rebirth.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "d2x-rebirth", - "description": "Unofficial, a source port of the Descent 2 engine...", - "icon": "https://portable-linux-apps.github.io/icons/d2x-rebirth.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "daggerfall-unity", - "description": "Unofficial, open source recreation of Daggerfall in the Unity engine...", - "icon": "https://portable-linux-apps.github.io/icons/daggerfall-unity.png", - "arch": ["x86_64"] - }, - { - "packageName": "daisy", - "description": "A beautiful, easy-to-use, ad-free manga and light novel client that supports both. (Anime Home)...", - "icon": "https://portable-linux-apps.github.io/icons/daisy.png", - "arch": ["x86_64"] - }, - { - "packageName": "dana", - "description": "A desktop client for the Dana learning box...", - "icon": "https://portable-linux-apps.github.io/icons/dana.png", - "arch": ["x86_64"] - }, - { - "packageName": "darkplaces", - "description": "Unofficial, the DarkPlaces Quake engine, created by LadyHavoc...", - "icon": "https://portable-linux-apps.github.io/icons/darkplaces.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "darktable", - "description": "Photography workflow app and raw developer...", - "icon": "https://portable-linux-apps.github.io/icons/darktable.png", - "arch": ["x86_64"] - }, - { - "packageName": "darktable-nightly", - "description": "Photography workflow application and raw developer (nightly)...", - "icon": "https://portable-linux-apps.github.io/icons/darktable-nightly.png", - "arch": ["x86_64"] - }, - { - "packageName": "dashy-app", - "description": "Dashboard creation application...", - "icon": "https://portable-linux-apps.github.io/icons/dashy-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "database-dossier", - "description": "A User Interface for your databases...", - "icon": "https://portable-linux-apps.github.io/icons/database-dossier.png", - "arch": ["x86_64"] - }, - { - "packageName": "dataset-annotator", - "description": "An annotation tool for a dataset...", - "icon": "https://portable-linux-apps.github.io/icons/dataset-annotator.png", - "arch": ["x86_64"] - }, - { - "packageName": "datcord", - "description": "Discord client...", - "icon": "https://portable-linux-apps.github.io/icons/datcord.png", - "arch": ["x86_64"] - }, - { - "packageName": "date", - "description": "A header-only library which builds upon . This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/date.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "dawnlightsearch", - "description": "A Linux version of Everything Search Engine...", - "icon": "https://portable-linux-apps.github.io/icons/dawnlightsearch.png", - "arch": ["x86_64"] - }, - { - "packageName": "dayon", - "description": "Dayon! - A cross-platform remote desktop assistance solution for your family and friends...", - "icon": "https://portable-linux-apps.github.io/icons/dayon.png", - "arch": ["x86_64"] - }, - { - "packageName": "dbeaver-ce", - "description": "Unofficial, DBeaver Community is a free cross-platform database tool for developers, database administrators, analysts, and everyone working with data...", - "icon": "https://portable-linux-apps.github.io/icons/dbeaver-ce.png", - "arch": ["x86_64"] - }, - { - "packageName": "dbee", - "description": "Fast & Minimalistic Database Browser...", - "icon": "https://portable-linux-apps.github.io/icons/dbee.png", - "arch": ["x86_64"] - }, - { - "packageName": "dbet-wallet", - "description": "DBET Wallet...", - "icon": "https://portable-linux-apps.github.io/icons/dbet-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "dbgate", - "description": "Opensource database administration tool..", - "icon": "https://portable-linux-apps.github.io/icons/dbgate.png", - "arch": ["x86_64"] - }, - { - "packageName": "dbgate-premium", - "description": "Opensource database administration tool (premium version)..", - "icon": "https://portable-linux-apps.github.io/icons/dbgate-premium.png", - "arch": ["x86_64"] - }, - { - "packageName": "dbin", - "description": "Poor man's package manager. About 3000 statically linked binaries in the repos!..", - "icon": "https://portable-linux-apps.github.io/icons/dbin.png", - "arch": ["x86_64"] - }, - { - "packageName": "dd", - "description": "Convert and copy a file. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/dd.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "deadbeef", - "description": "Unofficial AppImage of the DeaDBeeF music player (Stable version)...", - "icon": "https://portable-linux-apps.github.io/icons/deadbeef.png", - "arch": ["x86_64"] - }, - { - "packageName": "deadbeef-nightly", - "description": "Unofficial AppImage of the DeaDBeeF music player (Nightly version)...", - "icon": "https://portable-linux-apps.github.io/icons/deadbeef-nightly.png", - "arch": ["x86_64"] - }, - { - "packageName": "deadgame-2048", - "description": "GUI tool available for ALL platforms...", - "icon": "https://portable-linux-apps.github.io/icons/deadgame-2048.png", - "arch": ["x86_64"] - }, - { - "packageName": "dealers-choice", - "description": "A cross-platform, networked multiplayer poker game supporting draw, stud, and community-card variants, including Texas...", - "icon": "https://portable-linux-apps.github.io/icons/dealers-choice.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "deb2appimage", - "description": "Build AppImages from deb packages on any distro...", - "icon": "https://portable-linux-apps.github.io/icons/deb2appimage.png", - "arch": ["x86_64"] - }, - { - "packageName": "deckboard", - "description": "Control your PC with your phone in easy way possible...", - "icon": "https://portable-linux-apps.github.io/icons/deckboard.png", - "arch": ["x86_64"] - }, - { - "packageName": "dedop-studio", - "description": "DeDop Studio..", - "icon": "https://portable-linux-apps.github.io/icons/dedop-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "deepl-linux-electron", - "description": "DeepL Integration. Select & translate text in any app...", - "icon": "https://portable-linux-apps.github.io/icons/deepl-linux-electron.png", - "arch": ["x86_64"] - }, - { - "packageName": "deeplx", - "description": "DeepL Free API, No TOKEN required...", - "icon": "https://portable-linux-apps.github.io/icons/deeplx.png", - "arch": ["x86_64"] - }, - { - "packageName": "deepnotes", - "description": "End-to-end encrypted visual note-taking tool...", - "icon": "https://portable-linux-apps.github.io/icons/deepnotes.png", - "arch": ["x86_64"] - }, - { - "packageName": "deeptags", - "description": "Markdown notes manager with support for nested tags...", - "icon": "https://portable-linux-apps.github.io/icons/deeptags.png", - "arch": ["x86_64"] - }, - { - "packageName": "deerportal", - "description": "Full of the diamonds board game...", - "icon": "https://portable-linux-apps.github.io/icons/deerportal.png", - "arch": ["x86_64"] - }, - { - "packageName": "deezer", - "description": "A linux port of Deezer, allows downloading your songs, music...", - "icon": "https://portable-linux-apps.github.io/icons/deezer.png", - "arch": ["x86_64"] - }, - { - "packageName": "deezer-enhanced", - "description": "An unofficial application for Deezer with enhanced features...", - "icon": "https://portable-linux-apps.github.io/icons/deezer-enhanced.png", - "arch": ["x86_64"] - }, - { - "packageName": "defichain-app", - "description": "DefiChain Wallet AppImage...", - "icon": "https://portable-linux-apps.github.io/icons/defichain-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "defold", - "description": "Unofficial, Defold is a completely free to use game engine for development of games...", - "icon": "https://portable-linux-apps.github.io/icons/defold.png", - "arch": ["x86_64"] - }, - { - "packageName": "delta", - "description": "A syntax-highlighting pager for git, diff, grep, and blame output...", - "icon": "https://portable-linux-apps.github.io/icons/delta.png", - "arch": ["x86_64"] - }, - { - "packageName": "deltachat-desktop", - "description": "Desktop Application for delta.chat...", - "icon": "https://portable-linux-apps.github.io/icons/deltachat-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "demonizer", - "description": "Demonic corruption fantasy shmup...", - "icon": "https://portable-linux-apps.github.io/icons/demonizer.png", - "arch": ["x86_64"] - }, - { - "packageName": "denise", - "description": "Unofficial AppImage of Denise...", - "icon": "https://portable-linux-apps.github.io/icons/denise.png", - "arch": ["x86_64"] - }, - { - "packageName": "densify", - "description": "A GTK+ GUI Application written in Python that simplifies compressing PDF files with Ghostscript...", - "icon": "https://portable-linux-apps.github.io/icons/densify.png", - "arch": ["x86_64"] - }, - { - "packageName": "deployer", - "description": "Deploy your applications through Jenkins...", - "icon": "https://portable-linux-apps.github.io/icons/deployer.png", - "arch": ["x86_64"] - }, - { - "packageName": "deskreen", - "description": "Turns any device with a web browser into a secondary screen...", - "icon": "https://portable-linux-apps.github.io/icons/deskreen.png", - "arch": ["x86_64"] - }, - { - "packageName": "deskthing", - "description": "The Discord Thing, Trello Thing, The Weather Thing, The Macro Thing, just not The Car Thing anymore...", - "icon": "https://portable-linux-apps.github.io/icons/deskthing.png", - "arch": ["x86_64"] - }, - { - "packageName": "desmume", - "description": "Unofficial AppImage of the DeSmuME emulator...", - "icon": "https://portable-linux-apps.github.io/icons/desmume.png", - "arch": ["x86_64"] - }, - { - "packageName": "destiny", - "description": "Cross-platform Magic Wormhole graphical client...", - "icon": "https://portable-linux-apps.github.io/icons/destiny.png", - "arch": ["x86_64"] - }, - { - "packageName": "dethrace", - "description": "Unofficial, reverse engineering the 1997 game \"Carmageddon\"...", - "icon": "https://portable-linux-apps.github.io/icons/dethrace.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "devclean", - "description": "A CLI and Desktop GUI app to clean dev dependencies (node_modules, cache) and more...", - "icon": "https://portable-linux-apps.github.io/icons/devclean.png", - "arch": ["x86_64"] - }, - { - "packageName": "devdocs-desktop", - "description": "Desktop client for devdocs.io...", - "icon": "https://portable-linux-apps.github.io/icons/devdocs-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "devhub", - "description": "TweetDeck for GitHub..", - "icon": "https://portable-linux-apps.github.io/icons/devhub.png", - "arch": ["x86_64"] - }, - { - "packageName": "devilutionx", - "description": "Diablo build for modern operating systems...", - "icon": "https://portable-linux-apps.github.io/icons/devilutionx.png", - "arch": ["x86_64"] - }, - { - "packageName": "devilutionx-enhanced", - "description": "Unofficial, Diablo build for modern operating systems...", - "icon": "https://portable-linux-apps.github.io/icons/devilutionx-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "devpod", - "description": "Codespaces but open-source, client-only and unopinionated. Works with any IDE and lets you use any cloud, kubernetes or just localhost docker...", - "icon": "https://portable-linux-apps.github.io/icons/devpod.png", - "arch": ["x86_64"] - }, - { - "packageName": "devsidecar", - "description": "Dev sidecar/github/git/stackoverflow acceleration, in chinese...", - "icon": "https://portable-linux-apps.github.io/icons/devsidecar.png", - "arch": ["x86_64"] - }, - { - "packageName": "devtools-x", - "description": "Collection of offline first developer utilities available as desktop application...", - "icon": "https://portable-linux-apps.github.io/icons/devtools-x.png", - "arch": ["x86_64"] - }, - { - "packageName": "devtoys", - "description": "A Swiss Army knife for developers...", - "icon": "https://portable-linux-apps.github.io/icons/devtoys.png", - "arch": ["x86_64"] - }, - { - "packageName": "dexter-dev-env", - "description": "Dexter Development Environment...", - "icon": "https://portable-linux-apps.github.io/icons/dexter-dev-env.png", - "arch": ["x86_64"] - }, - { - "packageName": "dezor", - "description": "The web browser including VPN and Adblocker...", - "icon": "https://portable-linux-apps.github.io/icons/dezor.png", - "arch": ["x86_64"] - }, - { - "packageName": "df", - "description": "Report file system space usage. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/df.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "dfdemo", - "description": "A thin Tcl/Tk GUI around the df POSIX command...", - "icon": "https://portable-linux-apps.github.io/icons/dfdemo.png", - "arch": ["x86_64"] - }, - { - "packageName": "dfilemanager", - "description": "File manager written in Qt and C++...", - "icon": "https://portable-linux-apps.github.io/icons/dfilemanager.png", - "arch": ["x86_64"] - }, - { - "packageName": "dhammapada", - "description": "A simple Dhammapada verse viewer for the Linux desktop...", - "icon": "https://portable-linux-apps.github.io/icons/dhammapada.png", - "arch": ["x86_64"] - }, - { - "packageName": "dhewm3", - "description": "Unofficial, doom 3 GPL source port...", - "icon": "https://portable-linux-apps.github.io/icons/dhewm3.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "dicomautomaton", - "description": "Tools for working with medical physics data...", - "icon": "https://portable-linux-apps.github.io/icons/dicomautomaton.png", - "arch": ["x86_64"] - }, - { - "packageName": "didder", - "description": "An extensive, fast, and accurate command-line image dithering tool...", - "icon": "https://portable-linux-apps.github.io/icons/didder.png", - "arch": ["x86_64"] - }, - { - "packageName": "die-engine", - "description": "Detect It Easy, a program for determining types of files...", - "icon": "https://portable-linux-apps.github.io/icons/die-engine.png", - "arch": ["x86_64"] - }, - { - "packageName": "diff", - "description": "Compare files line by line. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/diff.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "diffpdf", - "description": "Unofficial AppImage of DiffPDF...", - "icon": "https://portable-linux-apps.github.io/icons/diffpdf.png", - "arch": ["x86_64"] - }, - { - "packageName": "diffre", - "description": "A fast, local file and folder diff tool like Beyond Compare, built for the desktop...", - "icon": "https://portable-linux-apps.github.io/icons/diffre.png", - "arch": ["x86_64"] - }, - { - "packageName": "diffuse", - "description": "Music player, connects to your cloud/distributed storage...", - "icon": "https://portable-linux-apps.github.io/icons/diffuse.png", - "arch": ["x86_64"] - }, - { - "packageName": "digikam", - "description": "Professional and advanced digital photo management application...", - "icon": "https://portable-linux-apps.github.io/icons/digikam.png", - "arch": ["x86_64"] - }, - { - "packageName": "digikam-dev", - "description": "Professional and advanced digital photo management application...", - "icon": "https://portable-linux-apps.github.io/icons/digikam-dev.png", - "arch": ["x86_64"] - }, - { - "packageName": "dillo", - "description": "Unofficial AppImage of Dillo...", - "icon": "https://portable-linux-apps.github.io/icons/dillo.png", - "arch": ["x86_64"] - }, - { - "packageName": "dingtalk", - "description": "DingTalk desktop version based on electron...", - "icon": "https://portable-linux-apps.github.io/icons/dingtalk.png", - "arch": ["x86_64"] - }, - { - "packageName": "dinosaurplanetrecompiled", - "description": "A static recompilation/native port of the game Dinosaur Planet...", - "icon": "https://portable-linux-apps.github.io/icons/dinosaurplanetrecompiled.png", - "arch": ["x86_64"] - }, - { - "packageName": "dinox", - "description": "DinoX - Modern XMPP Chat Client with Video Calls, Voice Messages & OMEMO Encryption...", - "icon": "https://portable-linux-apps.github.io/icons/dinox.png", - "arch": ["x86_64"] - }, - { - "packageName": "dione", - "description": "Explore, Install, Innovate — in 1 Click...", - "icon": "https://portable-linux-apps.github.io/icons/dione.png", - "arch": ["x86_64"] - }, - { - "packageName": "dir", - "description": "List directory contents. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/dir.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "dircolors", - "description": "For ls. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/dircolors.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "dirname", - "description": "Strip last component from file name. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/dirname.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "disass", - "description": "A simple disassembly tool...", - "icon": "https://portable-linux-apps.github.io/icons/disass.png", - "arch": ["x86_64"] - }, - { - "packageName": "discord", - "description": "Unofficial. All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone...", - "icon": "https://portable-linux-apps.github.io/icons/discord.png", - "arch": ["x86_64"] - }, - { - "packageName": "discord-bot-client", - "description": "A patched version of discord, with bot login & Vencord support...", - "icon": "https://portable-linux-apps.github.io/icons/discord-bot-client.png", - "arch": ["x86_64"] - }, - { - "packageName": "discord-qt", - "description": "Unofficial. Discord client powered by Node.JS and Qt Widgets...", - "icon": "https://portable-linux-apps.github.io/icons/discord-qt.png", - "arch": ["x86_64"] - }, - { - "packageName": "diskfmt", - "description": "A disk formatting utility for linux that is similar to the windows format utility...", - "icon": "https://portable-linux-apps.github.io/icons/diskfmt.png", - "arch": ["x86_64"] - }, - { - "packageName": "diskonaut", - "description": "Terminal disk space navigator...", - "icon": "https://portable-linux-apps.github.io/icons/diskonaut.png", - "arch": ["x86_64"] - }, - { - "packageName": "dissent", - "description": "Tiny native Discord app...", - "icon": "https://portable-linux-apps.github.io/icons/dissent.png", - "arch": ["x86_64"] - }, - { - "packageName": "dl-desktop", - "description": "Desktop client for the Duolingo language learning application...", - "icon": "https://portable-linux-apps.github.io/icons/dl-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "dlman", - "description": "Free & fast modern download manager built with Rust for speed and reliability...", - "icon": "https://portable-linux-apps.github.io/icons/dlman.png", - "arch": ["x86_64"] - }, - { - "packageName": "dns-changer", - "description": "An open-source DNS Changer app...", - "icon": "https://portable-linux-apps.github.io/icons/dns-changer.png", - "arch": ["x86_64"] - }, - { - "packageName": "dnzhrecomp", - "description": "Unofficial, a native port of Duke Nukem Zero Hour, statically recompiled...", - "icon": "https://portable-linux-apps.github.io/icons/dnzhrecomp.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "dockstation", - "description": "Developing with Docker has never been so easy and convenient...", - "icon": "https://portable-linux-apps.github.io/icons/dockstation.png", - "arch": ["x86_64"] - }, - { - "packageName": "doggo", - "description": "Command-line DNS Client for Humans. Written in Golang..", - "icon": "https://portable-linux-apps.github.io/icons/doggo.png", - "arch": ["x86_64"] - }, - { - "packageName": "dolphin-emu", - "description": "Unofficial, GameCube/Nintento Wii emulator with improvements...", - "icon": "https://portable-linux-apps.github.io/icons/dolphin-emu.png", - "arch": ["x86_64"] - }, - { - "packageName": "dolphin-emu-nightly", - "description": "Unofficial nightly AppImage of the Dolphin emulator...", - "icon": "https://portable-linux-apps.github.io/icons/dolphin-emu-nightly.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "dolt-workbench", - "description": "A modern, browser-based, open source SQL workbench for your MySQL and PostgreSQL compatible database with version control features when connected to Dolt...", - "icon": "https://portable-linux-apps.github.io/icons/dolt-workbench.png", - "arch": ["x86_64"] - }, - { - "packageName": "domterm", - "description": "DOM/JavaScript-based terminal-emulator/console...", - "icon": "https://portable-linux-apps.github.io/icons/domterm.png", - "arch": ["x86_64"] - }, - { - "packageName": "dooit", - "description": "An awesome TUI todo manager...", - "icon": "https://portable-linux-apps.github.io/icons/dooit.png", - "arch": ["x86_64"] - }, - { - "packageName": "doom64exultra", - "description": "Unofficial, A fork of DOOM64EX+ with new stuff and fixes...", - "icon": "https://portable-linux-apps.github.io/icons/doom64exultra.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "dopamine-preview", - "description": "The audio player that keeps it simple...", - "icon": "https://portable-linux-apps.github.io/icons/dopamine-preview.png", - "arch": ["x86_64"] - }, - { - "packageName": "dorion", - "description": "Tiny alternative Discord client with a smaller footprint, snappier startup, themes, plugins and more!..", - "icon": "https://portable-linux-apps.github.io/icons/dorion.png", - "arch": ["x86_64"] - }, - { - "packageName": "dosbox-pure-unleashed", - "description": "Unofficial AppImage of DOSBox Pure Unleashed...", - "icon": "https://portable-linux-apps.github.io/icons/dosbox-pure-unleashed.png", - "arch": ["x86_64"] - }, - { - "packageName": "dosbox-x", - "description": "Unofficial, DOSBox-X is a cross-platform DOS emulator for running many MS-DOS games...", - "icon": "https://portable-linux-apps.github.io/icons/dosbox-x.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "dosemu", - "description": "Run DOS programs under linux...", - "icon": "https://portable-linux-apps.github.io/icons/dosemu.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "dotline", - "description": "A modern crosshair overlay app...", - "icon": "https://portable-linux-apps.github.io/icons/dotline.png", - "arch": ["x86_64"] - }, - { - "packageName": "dotto", - "description": "A portable and modern pixelart editor, written from scratch...", - "icon": "https://portable-linux-apps.github.io/icons/dotto.png", - "arch": ["x86_64"] - }, - { - "packageName": "doublecmd-gtk", - "description": "Two-panel file manager, also known as Double Commander...", - "icon": "https://portable-linux-apps.github.io/icons/doublecmd-gtk.png", - "arch": ["x86_64"] - }, - { - "packageName": "doublecmd-qt", - "description": "Two-panel file manager, also known as Double Commander...", - "icon": "https://portable-linux-apps.github.io/icons/doublecmd-qt.png", - "arch": ["x86_64"] - }, - { - "packageName": "downline", - "description": "A cross-platform video and audio downloader...", - "icon": "https://portable-linux-apps.github.io/icons/downline.png", - "arch": ["x86_64"] - }, - { - "packageName": "dr-robotniks-ring-racers", - "description": "Unofficial, kart racing video game originally based on SRB2Kart...", - "icon": "https://portable-linux-apps.github.io/icons/dr-robotniks-ring-racers.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "dra", - "description": "A command line tool to download release assets from GitHub...", - "icon": "https://portable-linux-apps.github.io/icons/dra.png", - "arch": ["x86_64"] - }, - { - "packageName": "dragdrop", - "description": "Small drag-and-drop file source for the command line...", - "icon": "https://portable-linux-apps.github.io/icons/dragdrop.png", - "arch": ["x86_64"] - }, - { - "packageName": "dragula", - "description": "Free Stock Images on Steroids...", - "icon": "https://portable-linux-apps.github.io/icons/dragula.png", - "arch": ["x86_64"] - }, - { - "packageName": "drally", - "description": "Unofficial, a port of Death Rally (1996)...", - "icon": "https://portable-linux-apps.github.io/icons/drally.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "draw", - "description": "Draw in your terminal...", - "icon": "https://portable-linux-apps.github.io/icons/draw.png", - "arch": ["x86_64"] - }, - { - "packageName": "draw.io", - "description": "draw.io desktop...", - "icon": "https://portable-linux-apps.github.io/icons/draw.io.png", - "arch": ["x86_64"] - }, - { - "packageName": "drawish", - "description": "Simple, yet complete drawing program...", - "icon": "https://portable-linux-apps.github.io/icons/drawish.png", - "arch": ["x86_64"] - }, - { - "packageName": "drawpile", - "description": "Drawing program to sketch on the same canvas simultaneously...", - "icon": "https://portable-linux-apps.github.io/icons/drawpile.png", - "arch": ["x86_64"] - }, - { - "packageName": "drawy", - "description": "Your handy, infinite, brainstorming tool...", - "icon": "https://portable-linux-apps.github.io/icons/drawy.png", - "arch": ["x86_64"] - }, - { - "packageName": "dreamm", - "description": "Unofficial AppImage of DREAMM...", - "icon": "https://portable-linux-apps.github.io/icons/dreamm.png", - "arch": ["x86_64"] - }, - { - "packageName": "drill", - "description": "Search files without indexing, but clever crawling...", - "icon": "https://portable-linux-apps.github.io/icons/drill.png", - "arch": ["x86_64"] - }, - { - "packageName": "droidcam", - "description": "A DroidCam AppImage for the Steam Deck/SteamOS 3.0...", - "icon": "https://portable-linux-apps.github.io/icons/droidcam.png", - "arch": ["x86_64"] - }, - { - "packageName": "dropbox", - "description": "A free cloud service, Unofficial AppImage...", - "icon": "https://portable-linux-apps.github.io/icons/dropbox.png", - "arch": ["x86_64"] - }, - { - "packageName": "droppoint", - "description": "Drag content without having to open side-by-side windows...", - "icon": "https://portable-linux-apps.github.io/icons/droppoint.png", - "arch": ["x86_64"] - }, - { - "packageName": "drovp", - "description": "Desktop app for encoding, converting, upscaling, and much more...", - "icon": "https://portable-linux-apps.github.io/icons/drovp.png", - "arch": ["x86_64"] - }, - { - "packageName": "drum-machine", - "description": "Unofficial, Application for managing and playing with drum patterns...", - "icon": "https://portable-linux-apps.github.io/icons/drum-machine.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "dsda-doom", - "description": "This is a successor of prboom+ with extra tooling for demo recording and playback, with a focus on speedrunning and quality of life...", - "icon": "https://portable-linux-apps.github.io/icons/dsda-doom.png", - "arch": ["x86_64"] - }, - { - "packageName": "dstask", - "description": "Git powered terminal-based todo/note manager, markdown note page per task...", - "icon": "https://portable-linux-apps.github.io/icons/dstask.png", - "arch": ["x86_64"] - }, - { - "packageName": "dtmate", - "description": "CLI to compute difference between date, time or duration...", - "icon": "https://portable-linux-apps.github.io/icons/dtmate.png", - "arch": ["x86_64"] - }, - { - "packageName": "du", - "description": "Estimate file space usage. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/du.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "dua", - "description": "View disk space usage and delete unwanted data, fast...", - "icon": "https://portable-linux-apps.github.io/icons/dua.png", - "arch": ["x86_64"] - }, - { - "packageName": "duckling", - "description": "A fast viewer for CSV/Parquet files and databases such as DuckDB, SQLite, PostgreSQL, MySQL, Clickhouse, etc...", - "icon": "https://portable-linux-apps.github.io/icons/duckling.png", - "arch": ["x86_64"] - }, - { - "packageName": "duckstation", - "description": "PlayStation 1, aka PSX games Emulator...", - "icon": "https://portable-linux-apps.github.io/icons/duckstation.png", - "arch": ["x86_64"] - }, - { - "packageName": "duckstation-gpl-enhanced", - "description": "Unofficial, fast PlayStation 1 emulator when it was still using GPLv3...", - "icon": "https://portable-linux-apps.github.io/icons/duckstation-gpl-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "duf", - "description": "Disk Usage/Free Utility, a better 'df' alternative...", - "icon": "https://portable-linux-apps.github.io/icons/duf.png", - "arch": ["x86_64"] - }, - { - "packageName": "dukto", - "description": "Easy and multi-platform file transfer tool...", - "icon": "https://portable-linux-apps.github.io/icons/dukto.png", - "arch": ["x86_64"] - }, - { - "packageName": "dune", - "description": "A shell by the beach...", - "icon": "https://portable-linux-apps.github.io/icons/dune.png", - "arch": ["x86_64"] - }, - { - "packageName": "dunst", - "description": "Lightweight and customizable notification daemon...", - "icon": "https://portable-linux-apps.github.io/icons/dunst.png", - "arch": ["x86_64"] - }, - { - "packageName": "duplicate-image-finder", - "description": "It is an application that can find duplicated images (jpg, png, bitmap, etc) in a collection...", - "icon": "https://portable-linux-apps.github.io/icons/duplicate-image-finder.png", - "arch": ["x86_64"] - }, - { - "packageName": "dusklight", - "description": "Dusklight brings a classic adventure to PC and mobile platforms with a variety of fixes and improvements...", - "icon": "https://portable-linux-apps.github.io/icons/dusklight.png", - "arch": ["x86_64"] - }, - { - "packageName": "duskplayer", - "description": "A minimal music player built on electron...", - "icon": "https://portable-linux-apps.github.io/icons/duskplayer.png", - "arch": ["x86_64"] - }, - { - "packageName": "dust", - "description": "A more intuitive version of du in rust...", - "icon": "https://portable-linux-apps.github.io/icons/dust.png", - "arch": ["x86_64"] - }, - { - "packageName": "dust3d", - "description": "3D modeling software for games, 3D printing, and so on...", - "icon": "https://portable-linux-apps.github.io/icons/dust3d.png", - "arch": ["x86_64"] - }, - { - "packageName": "dvdisaster", - "description": "Additional error protection for CD/DVD media...", - "icon": "https://portable-linux-apps.github.io/icons/dvdisaster.png", - "arch": ["x86_64"] - }, - { - "packageName": "dwarf-fortress", - "description": "The AppImage of lnp-forge built LinuxDwarfPack...", - "icon": "https://portable-linux-apps.github.io/icons/dwarf-fortress.png", - "arch": ["x86_64"] - }, - { - "packageName": "dwarf-fortress-legacy", - "description": "Unofficial AppImage of Dwarf Fortress Legacy...", - "icon": "https://portable-linux-apps.github.io/icons/dwarf-fortress-legacy.png", - "arch": ["x86_64"] - }, - { - "packageName": "dwarffortress", - "description": "A Dwarf Fortress game. Build a fortress and try to help your dwarves survive against a deeply generated world...", - "icon": "https://portable-linux-apps.github.io/icons/dwarffortress.png", - "arch": ["x86_64"] - }, - { - "packageName": "dwyco-phoo", - "description": "Dwyco Phoo Chat and Video Calling...", - "icon": "https://portable-linux-apps.github.io/icons/dwyco-phoo.png", - "arch": ["x86_64"] - }, - { - "packageName": "dysk", - "description": "A linux utility to get information on filesystems, like df but better...", - "icon": "https://portable-linux-apps.github.io/icons/dysk.png", - "arch": ["x86_64"] - }, - { - "packageName": "e2-sat-editor", - "description": "Satellite channel lists editor with tabbed nav...", - "icon": "https://portable-linux-apps.github.io/icons/e2-sat-editor.png", - "arch": ["x86_64"] - }, - { - "packageName": "eaglemode", - "description": "Zoomable user interface with plugin applications...", - "icon": "https://portable-linux-apps.github.io/icons/eaglemode.png", - "arch": ["x86_64"] - }, - { - "packageName": "easytag", - "description": "Unofficial AppImage of EasyTAG tag editor...", - "icon": "https://portable-linux-apps.github.io/icons/easytag.png", - "arch": ["x86_64"] - }, - { - "packageName": "ecency-surfer", - "description": "Rewarding communities built, owned and operated by its users...", - "icon": "https://portable-linux-apps.github.io/icons/ecency-surfer.png", - "arch": ["x86_64"] - }, - { - "packageName": "echo", - "description": "Display a line of text. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/echo.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ecode", - "description": "Lightweight code editor designed for modern hardware...", - "icon": "https://portable-linux-apps.github.io/icons/ecode.png", - "arch": ["x86_64"] - }, - { - "packageName": "ecwolf", - "description": "Unofficial, advanced port of Wolfenstein 3D based off of Wolf4SDL...", - "icon": "https://portable-linux-apps.github.io/icons/ecwolf.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "edconv", - "description": "A user-friendly FFmpeg GUI...", - "icon": "https://portable-linux-apps.github.io/icons/edconv.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "eden", - "description": "An experimental open-source emulator for Nintendo Switch (yuzu fork)...", - "icon": "https://portable-linux-apps.github.io/icons/eden.png", - "arch": ["x86_64"] - }, - { - "packageName": "eden-nightly", - "description": "An experimental open-source emulator for Nintendo Switch (yuzu fork, nightly builds)...", - "icon": "https://portable-linux-apps.github.io/icons/eden-nightly.png", - "arch": ["x86_64"] - }, - { - "packageName": "edex-ui", - "description": "A cross-platform, customizable science fiction terminal emulator...", - "icon": "https://portable-linux-apps.github.io/icons/edex-ui.png", - "arch": ["x86_64"] - }, - { - "packageName": "eduke32", - "description": "Unofficial, an advanced Duke Nukem 3D source port...", - "icon": "https://portable-linux-apps.github.io/icons/eduke32.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "eez-studio", - "description": "Cross-platform low-code GUI and automation...", - "icon": "https://portable-linux-apps.github.io/icons/eez-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "eget", - "description": "Easily install prebuilt binaries from GitHub...", - "icon": "https://portable-linux-apps.github.io/icons/eget.png", - "arch": ["x86_64"] - }, - { - "packageName": "ehdev-shell", - "description": "An electron based developing tool for feds...", - "icon": "https://portable-linux-apps.github.io/icons/ehdev-shell.png", - "arch": ["x86_64"] - }, - { - "packageName": "eiskaltdcpp", - "description": "Client for EiskaltDC++ core...", - "icon": "https://portable-linux-apps.github.io/icons/eiskaltdcpp.png", - "arch": ["x86_64"] - }, - { - "packageName": "eka2l1", - "description": "A Symbian OS/N-Gage emulator..", - "icon": "https://portable-linux-apps.github.io/icons/eka2l1.png", - "arch": ["x86_64"] - }, - { - "packageName": "eksplode.re", - "description": "Bomberman game made with Godot under BSD3...", - "icon": "https://portable-linux-apps.github.io/icons/eksplode.re.png", - "arch": ["x86_64"] - }, - { - "packageName": "elastic", - "description": "Unofficial. Visualize and design physics-based animation of objects...", - "icon": "https://portable-linux-apps.github.io/icons/elastic.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "elcalc", - "description": "Cross-Platform calculator built with Electron...", - "icon": "https://portable-linux-apps.github.io/icons/elcalc.png", - "arch": ["x86_64"] - }, - { - "packageName": "eldumper", - "description": "A GB Cartridge Dumper...", - "icon": "https://portable-linux-apps.github.io/icons/eldumper.png", - "arch": ["x86_64"] - }, - { - "packageName": "electorrent", - "description": "A remote control Torrent client...", - "icon": "https://portable-linux-apps.github.io/icons/electorrent.png", - "arch": ["x86_64"] - }, - { - "packageName": "electrocrud", - "description": "No coding is required...", - "icon": "https://portable-linux-apps.github.io/icons/electrocrud.png", - "arch": ["x86_64"] - }, - { - "packageName": "electron-app-store", - "description": "Simple App Store for Apps Built with Electron...", - "icon": "https://portable-linux-apps.github.io/icons/electron-app-store.png", - "arch": ["x86_64"] - }, - { - "packageName": "electron-cash", - "description": "Lightweight Bitcoin Cash Client...", - "icon": "https://portable-linux-apps.github.io/icons/electron-cash.png", - "arch": ["x86_64"] - }, - { - "packageName": "electron-mail", - "description": "Unofficial ProtonMail Desktop App...", - "icon": "https://portable-linux-apps.github.io/icons/electron-mail.png", - "arch": ["x86_64"] - }, - { - "packageName": "electron-react-boilerplate", - "description": "A Foundation for Scalable Cross-Platform Apps...", - "icon": "https://portable-linux-apps.github.io/icons/electron-react-boilerplate.png", - "arch": ["x86_64"] - }, - { - "packageName": "electron-ssr", - "description": "Install electron-ssr from appimage...", - "icon": "https://portable-linux-apps.github.io/icons/electron-ssr.png", - "arch": ["x86_64"] - }, - { - "packageName": "electron-utils", - "description": "Electron Utils for every day usage as a dev...", - "icon": "https://portable-linux-apps.github.io/icons/electron-utils.png", - "arch": ["x86_64"] - }, - { - "packageName": "electron-wechat", - "description": "Wechat desktop application...", - "icon": "https://portable-linux-apps.github.io/icons/electron-wechat.png", - "arch": ["x86_64"] - }, - { - "packageName": "electron-xiami", - "description": "Xiami Electron desktop application...", - "icon": "https://portable-linux-apps.github.io/icons/electron-xiami.png", - "arch": ["x86_64"] - }, - { - "packageName": "electronreact", - "description": "Desktop application using Electron and React...", - "icon": "https://portable-linux-apps.github.io/icons/electronreact.png", - "arch": ["x86_64"] - }, - { - "packageName": "electronwmd", - "description": "Upload music to NetMD MiniDisc devices...", - "icon": "https://portable-linux-apps.github.io/icons/electronwmd.png", - "arch": ["x86_64"] - }, - { - "packageName": "electrum", - "description": "Lightweight Bitcoin Client...", - "icon": "https://portable-linux-apps.github.io/icons/electrum.png", - "arch": ["x86_64"] - }, - { - "packageName": "electrum-neurai", - "description": "Neurai is a decentralized open source protocol optimized to transfer cryptoassets from one party to another on Layer1. The project aims to integrate NFT and Tokens with IoT and artificial intelligence applications...", - "icon": "https://portable-linux-apps.github.io/icons/electrum-neurai.png", - "arch": ["x86_64"] - }, - { - "packageName": "electrum-ravencoin", - "description": "Forked from the Electrum Bitcoin base client...", - "icon": "https://portable-linux-apps.github.io/icons/electrum-ravencoin.png", - "arch": ["x86_64"] - }, - { - "packageName": "electrumfair", - "description": "Lightweight FairCoin Client...", - "icon": "https://portable-linux-apps.github.io/icons/electrumfair.png", - "arch": ["x86_64"] - }, - { - "packageName": "electrumsvp", - "description": "Bitcoin BSV wallet, fork of ElectrumSV...", - "icon": "https://portable-linux-apps.github.io/icons/electrumsvp.png", - "arch": ["x86_64"] - }, - { - "packageName": "element", - "description": "A feature-rich client for Matrix.org...", - "icon": "https://portable-linux-apps.github.io/icons/element.png", - "arch": ["x86_64"] - }, - { - "packageName": "element-desktop", - "description": "Unofficial, glossy Matrix collaboration client for desktop...", - "icon": "https://portable-linux-apps.github.io/icons/element-desktop.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "elementary-code", - "description": "AppImage version of Elementary OS \"Code\" by Maksym Titenko...", - "icon": "https://portable-linux-apps.github.io/icons/elementary-code.png", - "arch": ["x86_64"] - }, - { - "packageName": "elements", - "description": "App which displays the periodic table, Education, Science...", - "icon": "https://portable-linux-apps.github.io/icons/elements.png", - "arch": ["x86_64"] - }, - { - "packageName": "elfedit", - "description": "Header and program property of ELF files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/elfedit.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "elk", - "description": "Native version of Elk, a nimble Mastodon web...", - "icon": "https://portable-linux-apps.github.io/icons/elk.png", - "arch": ["x86_64"] - }, - { - "packageName": "ellas-war", - "description": "Explore Ancient Greece on Ellas-War...", - "icon": "https://portable-linux-apps.github.io/icons/ellas-war.png", - "arch": ["x86_64"] - }, - { - "packageName": "elphyre-walletshell", - "description": "Elphyrecoin GUI Wallet...", - "icon": "https://portable-linux-apps.github.io/icons/elphyre-walletshell.png", - "arch": ["x86_64"] - }, - { - "packageName": "elvish", - "description": "Powerful modern shell scripting...", - "icon": "https://portable-linux-apps.github.io/icons/elvish.png", - "arch": ["x86_64"] - }, - { - "packageName": "elyprismlauncher", - "description": "This fork of Prism Launcher adds integrated support for Ely.by accounts...", - "icon": "https://portable-linux-apps.github.io/icons/elyprismlauncher.png", - "arch": ["x86_64"] - }, - { - "packageName": "elzabrowser", - "description": "Elza incognito web browser...", - "icon": "https://portable-linux-apps.github.io/icons/elzabrowser.png", - "arch": ["x86_64"] - }, - { - "packageName": "emacs", - "description": "Unofficial. FOSS text editor for complete programming language...", - "icon": "https://portable-linux-apps.github.io/icons/emacs.png", - "arch": ["x86_64"] - }, - { - "packageName": "emacs-nox", - "description": "Unofficial. FOSS text editor for complete programming language...", - "icon": "https://portable-linux-apps.github.io/icons/emacs-nox.png", - "arch": ["x86_64"] - }, - { - "packageName": "embedded-ide", - "description": "Makefile based IDE for embedded systems...", - "icon": "https://portable-linux-apps.github.io/icons/embedded-ide.png", - "arch": ["x86_64"] - }, - { - "packageName": "emoji-keyboard", - "description": "Virtual keyboard-like emoji palette for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/emoji-keyboard.png", - "arch": ["x86_64"] - }, - { - "packageName": "emudeck", - "description": "EmuDeck Desktop Electron Wrapper...", - "icon": "https://portable-linux-apps.github.io/icons/emudeck.png", - "arch": ["x86_64"] - }, - { - "packageName": "emulsion", - "description": "Better gaming through chemistry...", - "icon": "https://portable-linux-apps.github.io/icons/emulsion.png", - "arch": ["x86_64"] - }, - { - "packageName": "en-croissant", - "description": "The Ultimate Chess Toolkit...", - "icon": "https://portable-linux-apps.github.io/icons/en-croissant.png", - "arch": ["x86_64"] - }, - { - "packageName": "encryptpad", - "description": "Secure text editor and binary encryptor with passwords...", - "icon": "https://portable-linux-apps.github.io/icons/encryptpad.png", - "arch": ["x86_64"] - }, - { - "packageName": "endless-sky", - "description": "Space exploration and combat game...", - "icon": "https://portable-linux-apps.github.io/icons/endless-sky.png", - "arch": ["x86_64"] - }, - { - "packageName": "enoseannotator", - "description": "View, annotate and store measurements of the eNose sensor...", - "icon": "https://portable-linux-apps.github.io/icons/enoseannotator.png", - "arch": ["x86_64"] - }, - { - "packageName": "ente-auth", - "description": "Fully open source, End to End Encrypted alternative to Google Photos and Apple Photos...", - "icon": "https://portable-linux-apps.github.io/icons/ente-auth.png", - "arch": ["x86_64"] - }, - { - "packageName": "ente-photos", - "description": "Binary releases of the Ente Photos desktop app...", - "icon": "https://portable-linux-apps.github.io/icons/ente-photos.png", - "arch": ["x86_64"] - }, - { - "packageName": "env", - "description": "Run a program in a modified environment. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/env.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "enve", - "description": "Create 2D Animations...", - "icon": "https://portable-linux-apps.github.io/icons/enve.png", - "arch": ["x86_64"] - }, - { - "packageName": "envkey", - "description": "EnvKey’s cross-platform native app...", - "icon": "https://portable-linux-apps.github.io/icons/envkey.png", - "arch": ["x86_64"] - }, - { - "packageName": "eog", - "description": "Eye of Gnome is an image viewing and cataloging program...", - "icon": "https://portable-linux-apps.github.io/icons/eog.png", - "arch": ["x86_64"] - }, - { - "packageName": "eosvc", - "description": "Application for management of self-employeed people...", - "icon": "https://portable-linux-apps.github.io/icons/eosvc.png", - "arch": ["x86_64"] - }, - { - "packageName": "eplee", - "description": "Sweet, simple epub reader...", - "icon": "https://portable-linux-apps.github.io/icons/eplee.png", - "arch": ["x86_64"] - }, - { - "packageName": "epsxe", - "description": "Unofficial, enhanced PSX emulator...", - "icon": "https://portable-linux-apps.github.io/icons/epsxe.png", - "arch": ["x86_64"] - }, - { - "packageName": "eqonomize", - "description": "Manage your personal finances...", - "icon": "https://portable-linux-apps.github.io/icons/eqonomize.png", - "arch": ["x86_64"] - }, - { - "packageName": "equibop", - "description": "Equibop is a custom Discord App aiming to give you better performance and improve linux support...", - "icon": "https://portable-linux-apps.github.io/icons/equibop.png", - "arch": ["x86_64"] - }, - { - "packageName": "era", - "description": "ERA is your note-taking tool...", - "icon": "https://portable-linux-apps.github.io/icons/era.png", - "arch": ["x86_64"] - }, - { - "packageName": "erscaffold", - "description": "A code generator for websites...", - "icon": "https://portable-linux-apps.github.io/icons/erscaffold.png", - "arch": ["x86_64"] - }, - { - "packageName": "es-de", - "description": "EmulationStation Desktop Edition...", - "icon": "https://portable-linux-apps.github.io/icons/es-de.png", - "arch": ["x86_64"] - }, - { - "packageName": "escrcpy", - "description": "Graphical Scrcpy to display and control Android, devices powered by Electron...", - "icon": "https://portable-linux-apps.github.io/icons/escrcpy.png", - "arch": ["x86_64"] - }, - { - "packageName": "esearch", - "description": "Screenshot OCR search translate search for picture paste.....", - "icon": "https://portable-linux-apps.github.io/icons/esearch.png", - "arch": ["x86_64"] - }, - { - "packageName": "espanso", - "description": "Cross-platform Text Expander written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/espanso.png", - "arch": ["x86_64"] - }, - { - "packageName": "espi", - "description": "Software recreation of the SP-1200 drum machine...", - "icon": "https://portable-linux-apps.github.io/icons/espi.png", - "arch": ["x86_64"] - }, - { - "packageName": "etc1tool", - "description": "Utility for compressing and decompressing ETC1 texture files. This is part of \"platform-tools\"...", - "icon": "https://portable-linux-apps.github.io/icons/etc1tool.png", - "arch": ["x86_64"] - }, - { - "packageName": "etcher", - "description": "Flash OS images to SD cards and USB drives, Balena Etcher...", - "icon": "https://portable-linux-apps.github.io/icons/etcher.png", - "arch": ["x86_64"] - }, - { - "packageName": "eternal-lands", - "description": "3D fantasy multiplayer online role playing game...", - "icon": "https://portable-linux-apps.github.io/icons/eternal-lands.png", - "arch": ["x86_64"] - }, - { - "packageName": "eternalmodmanager", - "description": "A cross platform mod manager for DOOM Eternal...", - "icon": "https://portable-linux-apps.github.io/icons/eternalmodmanager.png", - "arch": ["x86_64"] - }, - { - "packageName": "etherealengine-cc", - "description": "App for managing Ethereal Engine cluster...", - "icon": "https://portable-linux-apps.github.io/icons/etherealengine-cc.png", - "arch": ["x86_64"] - }, - { - "packageName": "etichetta", - "description": "A YOLO annotator, for human beings...", - "icon": "https://portable-linux-apps.github.io/icons/etichetta.png", - "arch": ["x86_64"] - }, - { - "packageName": "etlegacy", - "description": "Enemy Territory...", - "icon": "https://portable-linux-apps.github.io/icons/etlegacy.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "evalit", - "description": "A notepad calculator application with JavaScript configuration...", - "icon": "https://portable-linux-apps.github.io/icons/evalit.png", - "arch": ["x86_64"] - }, - { - "packageName": "everdo", - "description": "A powerful cross-platform GTD app with focus on privacy...", - "icon": "https://portable-linux-apps.github.io/icons/everdo.png", - "arch": ["x86_64"] - }, - { - "packageName": "everinst", - "description": "An installer for the Everest mod loader...", - "icon": "https://portable-linux-apps.github.io/icons/everinst.png", - "arch": ["x86_64"] - }, - { - "packageName": "evernote", - "description": "Unofficial. Note taking app. Remember everything and tackle any project with your notes, tasks, and schedule all in one place...", - "icon": "https://portable-linux-apps.github.io/icons/evernote.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "evince", - "description": "Unofficial. Document viewer for popular document formats...", - "icon": "https://portable-linux-apps.github.io/icons/evince.png", - "arch": ["x86_64"] - }, - { - "packageName": "evoplex", - "description": "Agent-based modeling...", - "icon": "https://portable-linux-apps.github.io/icons/evoplex.png", - "arch": ["x86_64"] - }, - { - "packageName": "excel-parser-processor", - "description": "Generates an array of items from the rows...", - "icon": "https://portable-linux-apps.github.io/icons/excel-parser-processor.png", - "arch": ["x86_64"] - }, - { - "packageName": "exe", - "description": "A Elearning XHTML/HTML5 editor...", - "icon": "https://portable-linux-apps.github.io/icons/exe.png", - "arch": ["x86_64"] - }, - { - "packageName": "exeqt", - "description": "Cross platform tray manager...", - "icon": "https://portable-linux-apps.github.io/icons/exeqt.png", - "arch": ["x86_64"] - }, - { - "packageName": "exifcleaner", - "description": "Clean exif metadata from images, videos, and PDFs...", - "icon": "https://portable-linux-apps.github.io/icons/exifcleaner.png", - "arch": ["x86_64"] - }, - { - "packageName": "eximchain-wallet", - "description": "Eximchain Wallet web and electron app...", - "icon": "https://portable-linux-apps.github.io/icons/eximchain-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "exodus", - "description": "Send, receive & exchange cryptocurrency. Bitcoin wallet...", - "icon": "https://portable-linux-apps.github.io/icons/exodus.png", - "arch": ["x86_64"] - }, - { - "packageName": "expand", - "description": "Convert tabs to spaces. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/expand.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "explorook", - "description": "Rookout’s site addon to support local files and folders...", - "icon": "https://portable-linux-apps.github.io/icons/explorook.png", - "arch": ["x86_64"] - }, - { - "packageName": "exportoo", - "description": "Read and search your exports...", - "icon": "https://portable-linux-apps.github.io/icons/exportoo.png", - "arch": ["x86_64"] - }, - { - "packageName": "expr", - "description": "Evaluate expressions. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/expr.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "exsplode.re", - "description": "A Bomberman game made with Godot under BSD3...", - "icon": "https://portable-linux-apps.github.io/icons/exsplode.re.png", - "arch": ["x86_64"] - }, - { - "packageName": "extension-manager", - "description": "A native tool for browsing, installing, and managing GNOME Shell Extensions...", - "icon": "https://portable-linux-apps.github.io/icons/extension-manager.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "extraterm", - "description": "The swiss army chainsaw of terminal emulators...", - "icon": "https://portable-linux-apps.github.io/icons/extraterm.png", - "arch": ["x86_64"] - }, - { - "packageName": "extrema", - "description": "Data visualisation and analysis...", - "icon": "https://portable-linux-apps.github.io/icons/extrema.png", - "arch": ["x86_64"] - }, - { - "packageName": "extremetuxracer", - "description": "Unofficial. 3D racing game with Tux, the Linux penguin...", - "icon": "https://portable-linux-apps.github.io/icons/extremetuxracer.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "exult", - "description": "Unofficial, a project to recreate Ultima 7 for modern operating systems...", - "icon": "https://portable-linux-apps.github.io/icons/exult.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "eyedropper", - "description": "Unofficial. Simple color picker, with support for various color palettes...", - "icon": "https://portable-linux-apps.github.io/icons/eyedropper.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "eyestalker", - "description": "Video-based eye tracking using recursive estimation of pupil...", - "icon": "https://portable-linux-apps.github.io/icons/eyestalker.png", - "arch": ["x86_64"] - }, - { - "packageName": "ez-tree", - "description": "EZ Tree – Procedural tree generator...", - "icon": "https://portable-linux-apps.github.io/icons/ez-tree.png", - "arch": ["x86_64"] - }, - { - "packageName": "eza", - "description": "A modern, maintained replacement for ls...", - "icon": "https://portable-linux-apps.github.io/icons/eza.png", - "arch": ["x86_64"] - }, - { - "packageName": "ezup", - "description": "Easy File Upload to Cloud Storage...", - "icon": "https://portable-linux-apps.github.io/icons/ezup.png", - "arch": ["x86_64"] - }, - { - "packageName": "f-crm", - "description": "Customer Relations Management for Freelancers...", - "icon": "https://portable-linux-apps.github.io/icons/f-crm.png", - "arch": ["x86_64"] - }, - { - "packageName": "f1mv-lights-integration", - "description": "Connect your smart home lights to MultiViewer...", - "icon": "https://portable-linux-apps.github.io/icons/f1mv-lights-integration.png", - "arch": ["x86_64"] - }, - { - "packageName": "fabother-world", - "description": "Unofficial, an interpreter for Another World (Out of this world)...", - "icon": "https://portable-linux-apps.github.io/icons/fabother-world.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "factor", - "description": "A general purpose, dynamically typed, stack-based programming language.. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/factor.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "fafarunner", - "description": "A game developed using flutter and flame...", - "icon": "https://portable-linux-apps.github.io/icons/fafarunner.png", - "arch": ["x86_64"] - }, - { - "packageName": "fairshare", - "description": "Simplifying the curation and sharing of biomedical research...", - "icon": "https://portable-linux-apps.github.io/icons/fairshare.png", - "arch": ["x86_64"] - }, - { - "packageName": "fakedata", - "description": "CLI utility for fake data generation...", - "icon": "https://portable-linux-apps.github.io/icons/fakedata.png", - "arch": ["x86_64"] - }, - { - "packageName": "falkon", - "description": "Unofficial. A fast Qt web browser from KDE...", - "icon": "https://portable-linux-apps.github.io/icons/falkon.png", - "arch": ["x86_64"] - }, - { - "packageName": "false", - "description": "Do nothing, unsuccessfully. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/false.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "fantascene-dynamic-wallpaper", - "description": "Dynamic wallpaper software for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/fantascene-dynamic-wallpaper.png", - "arch": ["x86_64"] - }, - { - "packageName": "fantasia-archive", - "description": "A database manager for world building...", - "icon": "https://portable-linux-apps.github.io/icons/fantasia-archive.png", - "arch": ["x86_64"] - }, - { - "packageName": "farmhand", - "description": "A resource management game that puts a farm in your hand...", - "icon": "https://portable-linux-apps.github.io/icons/farmhand.png", - "arch": ["x86_64"] - }, - { - "packageName": "fastboot", - "description": "Android bootloader tool for flashing, unlocking, and managing firmware. This is part of \"platform-tools\"...", - "icon": "https://portable-linux-apps.github.io/icons/fastboot.png", - "arch": ["x86_64"] - }, - { - "packageName": "fastcompmgr", - "description": "A fast compositor for X11...", - "icon": "https://portable-linux-apps.github.io/icons/fastcompmgr.png", - "arch": ["x86_64"] - }, - { - "packageName": "fastfetch", - "description": "Like neofetch, but much faster because written mostly in C...", - "icon": "https://portable-linux-apps.github.io/icons/fastfetch.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "fasttrack", - "description": "Fast tracking of multiple objects...", - "icon": "https://portable-linux-apps.github.io/icons/fasttrack.png", - "arch": ["x86_64"] - }, - { - "packageName": "fat-wallet", - "description": "Wallet for FAT tokens...", - "icon": "https://portable-linux-apps.github.io/icons/fat-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "fauxx", - "description": "Cross-device companion to Fauxx Android app that generates realistic decoy web activity through synthetic personas to pollute the profiles that data brokers and ad-tech build about you...", - "icon": "https://portable-linux-apps.github.io/icons/fauxx.png", - "arch": ["x86_64"] - }, - { - "packageName": "fbreader", - "description": "Your Favourite eBook Reader..", - "icon": "https://portable-linux-apps.github.io/icons/fbreader.png", - "arch": ["x86_64"] - }, - { - "packageName": "fchat-horizon", - "description": "The Best F-Chat 3.0 Client, No exceptions!...", - "icon": "https://portable-linux-apps.github.io/icons/fchat-horizon.png", - "arch": ["x86_64"] - }, - { - "packageName": "fcp", - "description": "CLI, a significantly faster alternative to the classic Unix cp(1) command, copying large files and directories in a fraction of the time...", - "icon": "https://portable-linux-apps.github.io/icons/fcp.png", - "arch": ["x86_64"] - }, - { - "packageName": "fd", - "description": "A simple, fast and user-friendly alternative to 'find'...", - "icon": "https://portable-linux-apps.github.io/icons/fd.png", - "arch": ["x86_64"] - }, - { - "packageName": "fdm", - "description": "Free Download Manager, multiplatform powerful modern download accelerator and organizer...", - "icon": "https://portable-linux-apps.github.io/icons/fdm.png", - "arch": ["x86_64"] - }, - { - "packageName": "fdroidcl", - "description": "A command-line F-Droid desktop client...", - "icon": "https://portable-linux-apps.github.io/icons/fdroidcl.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "featherpad", - "description": "Unofficial. A lightweight Qt plain-text editor...", - "icon": "https://portable-linux-apps.github.io/icons/featherpad.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "feebas", - "description": "Screenshot comparison tool for identifying visual regressions...", - "icon": "https://portable-linux-apps.github.io/icons/feebas.png", - "arch": ["x86_64"] - }, - { - "packageName": "feedseries", - "description": "Follow your series enthusiast news, in french...", - "icon": "https://portable-linux-apps.github.io/icons/feedseries.png", - "arch": ["x86_64"] - }, - { - "packageName": "feishin", - "description": "Sonixd Rewrite, a desktop music player...", - "icon": "https://portable-linux-apps.github.io/icons/feishin.png", - "arch": ["x86_64"] - }, - { - "packageName": "ferdium", - "description": "All your services in one place, built by the community...", - "icon": "https://portable-linux-apps.github.io/icons/ferdium.png", - "arch": ["x86_64"] - }, - { - "packageName": "ferrix", - "description": "Fast, modern, cross-platform download manager built with Rust and Tauri, supports resumable downloads, clean UI, and blazing performance...", - "icon": "https://portable-linux-apps.github.io/icons/ferrix.png", - "arch": ["x86_64"] - }, - { - "packageName": "fetchit", - "description": "A system fetch tool for Linux, written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/fetchit.png", - "arch": ["x86_64"] - }, - { - "packageName": "ff-password-exporter", - "description": "Export your saved passwords from Firefox...", - "icon": "https://portable-linux-apps.github.io/icons/ff-password-exporter.png", - "arch": ["x86_64"] - }, - { - "packageName": "ffdec", - "description": "JPEXS Free Flash Decompiler...", - "icon": "https://portable-linux-apps.github.io/icons/ffdec.png", - "arch": ["x86_64"] - }, - { - "packageName": "ffdec-nightly", - "description": "JPEXS Free Flash Decompiler...", - "icon": "https://portable-linux-apps.github.io/icons/ffdec-nightly.png", - "arch": ["x86_64"] - }, - { - "packageName": "fflogs-uploader", - "description": "FFLogs Uploader appimage...", - "icon": "https://portable-linux-apps.github.io/icons/fflogs-uploader.png", - "arch": ["x86_64"] - }, - { - "packageName": "ffmpeg", - "description": "Unofficial, A complete, cross-platform solution to record, convert and stream audio and video...", - "icon": "https://portable-linux-apps.github.io/icons/ffmpeg.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ffsend", - "description": "Easily and securely share files from the command line. A fully featured Firefox Send client...", - "icon": "https://portable-linux-apps.github.io/icons/ffsend.png", - "arch": ["x86_64"] - }, - { - "packageName": "ficus", - "description": "A software for editing and managing markdown documents...", - "icon": "https://portable-linux-apps.github.io/icons/ficus.png", - "arch": ["x86_64"] - }, - { - "packageName": "fiddler-everywhere", - "description": "Debug your network traffic to deliver high-quality products...", - "icon": "https://portable-linux-apps.github.io/icons/fiddler-everywhere.png", - "arch": ["x86_64"] - }, - { - "packageName": "fidias-database-migration-app", - "description": "Migrate SQL-based databases...", - "icon": "https://portable-linux-apps.github.io/icons/fidias-database-migration-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "fifo", - "description": "A modern web browser, built on top of modern web technologies...", - "icon": "https://portable-linux-apps.github.io/icons/fifo.png", - "arch": ["x86_64"] - }, - { - "packageName": "figma-linux", - "description": "First interface design tool based in the browser, graphics...", - "icon": "https://portable-linux-apps.github.io/icons/figma-linux.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "file", - "description": "Determine the type of a file from its contents. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/file.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "file-commander", - "description": "CLI, cross-platform Total Commander-like orthodox file manager...", - "icon": "https://portable-linux-apps.github.io/icons/file-commander.png", - "arch": ["x86_64"] - }, - { - "packageName": "file-converter", - "description": "Convert between various file formats...", - "icon": "https://portable-linux-apps.github.io/icons/file-converter.png", - "arch": ["x86_64"] - }, - { - "packageName": "file-roller", - "description": "File Roller is an archive manager for the GNOME desktop environment. Create and modify archives...", - "icon": "https://portable-linux-apps.github.io/icons/file-roller.png", - "arch": ["x86_64"] - }, - { - "packageName": "file-to-c", - "description": "Tool for generating a C header from a spir-v binary file...", - "icon": "https://portable-linux-apps.github.io/icons/file-to-c.png", - "arch": ["x86_64"] - }, - { - "packageName": "filebrowser", - "description": "Web File Browser...", - "icon": "https://portable-linux-apps.github.io/icons/filebrowser.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "filebrowser-quantum", - "description": "Web File Browser...", - "icon": "https://portable-linux-apps.github.io/icons/filebrowser-quantum.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "filelight", - "description": "Unofficial. View disk usage information, by KDE...", - "icon": "https://portable-linux-apps.github.io/icons/filelight.png", - "arch": ["x86_64"] - }, - { - "packageName": "filen", - "description": "Desktop client for Filen.io, end-to-end encrypted cloud storage...", - "icon": "https://portable-linux-apps.github.io/icons/filen.png", - "arch": ["x86_64"] - }, - { - "packageName": "filen-cli", - "description": "Filen CLI for Windows, macOS and Linux..", - "icon": "https://portable-linux-apps.github.io/icons/filen-cli.png", - "arch": ["x86_64"] - }, - { - "packageName": "filezilla", - "description": "Unofficial. The free FTP solution with support for FTP over TLS and SFTP...", - "icon": "https://portable-linux-apps.github.io/icons/filezilla.png", - "arch": ["x86_64"] - }, - { - "packageName": "filmulator-gui", - "description": "Simplified raw editing with the power of film, graphics...", - "icon": "https://portable-linux-apps.github.io/icons/filmulator-gui.png", - "arch": ["x86_64"] - }, - { - "packageName": "find", - "description": "Files in a directory hierarchy. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/find.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "fingrom", - "description": "Financial accounting application..", - "icon": "https://portable-linux-apps.github.io/icons/fingrom.png", - "arch": ["x86_64"] - }, - { - "packageName": "firealpaca", - "description": "A Free and Multiplatform Digital Painting Software...", - "icon": "https://portable-linux-apps.github.io/icons/firealpaca.png", - "arch": ["x86_64"] - }, - { - "packageName": "firecamp", - "description": "Developer-first OpenSource API DevTool, Postman/Insomnia alternative...", - "icon": "https://portable-linux-apps.github.io/icons/firecamp.png", - "arch": ["x86_64"] - }, - { - "packageName": "firedragon", - "description": "A web browser based on Floorp (the Vivaldi of Firefox's) with many opiniated settings by default...", - "icon": "https://portable-linux-apps.github.io/icons/firedragon.png", - "arch": ["x86_64"] - }, - { - "packageName": "firefly-desktop", - "description": "The official IOTA and Shimmer wallet...", - "icon": "https://portable-linux-apps.github.io/icons/firefly-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "firefox", - "description": "Fast, powerful and extensible Web Browser, Stable...", - "icon": "https://portable-linux-apps.github.io/icons/firefox.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "firefox-beta", - "description": "Fast, powerful and extensible Web Browser, Beta Edition...", - "icon": "https://portable-linux-apps.github.io/icons/firefox-beta.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "firefox-devedition", - "description": "Fast, powerful and extensible Web Browser, Developer Edition...", - "icon": "https://portable-linux-apps.github.io/icons/firefox-devedition.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "firefox-esr", - "description": "Fast, powerful and extensible Web Browser, ESR Edition...", - "icon": "https://portable-linux-apps.github.io/icons/firefox-esr.png", - "arch": ["x86_64","aarch64","i686"] - }, - { - "packageName": "firefox-nightly", - "description": "Fast, powerful and extensible Web Browser, Nightly Edition...", - "icon": "https://portable-linux-apps.github.io/icons/firefox-nightly.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "fireminipro", - "description": "GUI for minipro CLI...", - "icon": "https://portable-linux-apps.github.io/icons/fireminipro.png", - "arch": ["x86_64"] - }, - { - "packageName": "firetail", - "description": "An open source music player...", - "icon": "https://portable-linux-apps.github.io/icons/firetail.png", - "arch": ["x86_64"] - }, - { - "packageName": "firetv-toolkit", - "description": "Android-Toolkit, a GUI for adb, modify android devices...", - "icon": "https://portable-linux-apps.github.io/icons/firetv-toolkit.png", - "arch": ["x86_64"] - }, - { - "packageName": "fish", - "description": "The user-friendly command line shell...", - "icon": "https://portable-linux-apps.github.io/icons/fish.png", - "arch": ["x86_64"] - }, - { - "packageName": "fishing-funds", - "description": "Fund, big market, stock, virtual currency status, in chinese...", - "icon": "https://portable-linux-apps.github.io/icons/fishing-funds.png", - "arch": ["x86_64"] - }, - { - "packageName": "fishterm", - "description": "A open-soruce Terminal remote access...", - "icon": "https://portable-linux-apps.github.io/icons/fishterm.png", - "arch": ["x86_64"] - }, - { - "packageName": "fixit", - "description": "A utility to fix mistakes in your commands...", - "icon": "https://portable-linux-apps.github.io/icons/fixit.png", - "arch": ["x86_64"] - }, - { - "packageName": "fjordlauncher", - "description": "Prism Launcher fork with support for alternative auth servers...", - "icon": "https://portable-linux-apps.github.io/icons/fjordlauncher.png", - "arch": ["x86_64"] - }, - { - "packageName": "flacon", - "description": "Audio File Encoder. Extracts audio tracks from audio CDs...", - "icon": "https://portable-linux-apps.github.io/icons/flacon.png", - "arch": ["x86_64"] - }, - { - "packageName": "fladder", - "description": "A Simple Jellyfin frontend built on top of Flutter...", - "icon": "https://portable-linux-apps.github.io/icons/fladder.png", - "arch": ["x86_64"] - }, - { - "packageName": "flameshot", - "description": "Tool to take screenshots with many built-in features, graphics...", - "icon": "https://portable-linux-apps.github.io/icons/flameshot.png", - "arch": ["x86_64"] - }, - { - "packageName": "flare", - "description": "Fantasy action RPG game using the FLARE engine...", - "icon": "https://portable-linux-apps.github.io/icons/flare.png", - "arch": ["x86_64"] - }, - { - "packageName": "flashpoint", - "description": "Flashpoint Archive is a community effort to preserve games and animations from the web...", - "icon": "https://portable-linux-apps.github.io/icons/flashpoint.png", - "arch": ["x86_64"] - }, - { - "packageName": "flashrom", - "description": "Unofficial AppImage of ffmpeg...", - "icon": "https://portable-linux-apps.github.io/icons/flashrom.png", - "arch": ["x86_64"] - }, - { - "packageName": "flawesome", - "description": "Flawesome is a modern productivity tool...", - "icon": "https://portable-linux-apps.github.io/icons/flawesome.png", - "arch": ["x86_64"] - }, - { - "packageName": "flb", - "description": "A beautiful Feature Rich Music Player and Downloader,cross platform...", - "icon": "https://portable-linux-apps.github.io/icons/flb.png", - "arch": ["x86_64"] - }, - { - "packageName": "flclash", - "description": "A multi-platform proxy client based on ClashMeta,simple and easy to use, open-source and ad-free...", - "icon": "https://portable-linux-apps.github.io/icons/flclash.png", - "arch": ["x86_64"] - }, - { - "packageName": "flightcore", - "description": "A Northstar installer, updater, and mod-manager...", - "icon": "https://portable-linux-apps.github.io/icons/flightcore.png", - "arch": ["x86_64"] - }, - { - "packageName": "flightgear", - "description": "Free, open source flight simulator developed since 1997...", - "icon": "https://portable-linux-apps.github.io/icons/flightgear.png", - "arch": ["x86_64"] - }, - { - "packageName": "flightgear-airports", - "description": "A software to design Flightgear groundnets...", - "icon": "https://portable-linux-apps.github.io/icons/flightgear-airports.png", - "arch": ["x86_64"] - }, - { - "packageName": "flippy-qualitative-testbench", - "description": "Music sheet reader...", - "icon": "https://portable-linux-apps.github.io/icons/flippy-qualitative-testbench.png", - "arch": ["x86_64"] - }, - { - "packageName": "floorp", - "description": "Floorp Web Browser, the most Advanced and Fastest Firefox derivative...", - "icon": "https://portable-linux-apps.github.io/icons/floorp.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "flow", - "description": "a programmer's text editor...", - "icon": "https://portable-linux-apps.github.io/icons/flow.png", - "arch": ["x86_64","aarch64","i686"] - }, - { - "packageName": "flow-browser", - "description": "A modern, privacy-focused browser with a minimalistic design...", - "icon": "https://portable-linux-apps.github.io/icons/flow-browser.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "flowinity", - "description": "The versatile all-in-one online platform, for everyone...", - "icon": "https://portable-linux-apps.github.io/icons/flowinity.png", - "arch": ["x86_64"] - }, - { - "packageName": "fluent-reader", - "description": "Modern desktop RSS reader...", - "icon": "https://portable-linux-apps.github.io/icons/fluent-reader.png", - "arch": ["x86_64"] - }, - { - "packageName": "fluffychat", - "description": "The cutest instant messenger in the matrix...", - "icon": "https://portable-linux-apps.github.io/icons/fluffychat.png", - "arch": ["x86_64"] - }, - { - "packageName": "fluxer", - "description": "A free and open source instant messaging and VoIP platform built for friends, groups, and communities...", - "icon": "https://portable-linux-apps.github.io/icons/fluxer.png", - "arch": ["x86_64"] - }, - { - "packageName": "flycast", - "description": "A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator...", - "icon": "https://portable-linux-apps.github.io/icons/flycast.png", - "arch": ["x86_64"] - }, - { - "packageName": "flycast-dojo", - "description": "Flycast fork, multiplatform Sega Dreamcast, Naomi and Atomiswave emulator for netplay, training & online tournament gameplay...", - "icon": "https://portable-linux-apps.github.io/icons/flycast-dojo.png", - "arch": ["x86_64"] - }, - { - "packageName": "flycast-enhanced", - "description": "Unofficial, A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator...", - "icon": "https://portable-linux-apps.github.io/icons/flycast-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "flyctl", - "description": "Command line tools for fly.io services...", - "icon": "https://portable-linux-apps.github.io/icons/flyctl.png", - "arch": ["x86_64"] - }, - { - "packageName": "flyingcarpet", - "description": "Cross-platform AirDrop. File transfer between Android, iOS, Linux, macOS, and Windows over ad hoc WiFi. No network infrastructure required, just two devices with WiFi chips in close range...", - "icon": "https://portable-linux-apps.github.io/icons/flyingcarpet.png", - "arch": ["x86_64"] - }, - { - "packageName": "fman", - "description": "TUI CLI File Manager...", - "icon": "https://portable-linux-apps.github.io/icons/fman.png", - "arch": ["x86_64"] - }, - { - "packageName": "fmradio", - "description": "Cross platform FM Radio App for RTL2832U dongles...", - "icon": "https://portable-linux-apps.github.io/icons/fmradio.png", - "arch": ["x86_64"] - }, - { - "packageName": "fms-file-explorer", - "description": "Access and exploration of data produced...", - "icon": "https://portable-linux-apps.github.io/icons/fms-file-explorer.png", - "arch": ["x86_64"] - }, - { - "packageName": "fmt", - "description": "Text formatter. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/fmt.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "focalizzare", - "description": "A Timer for Pomodoro Technique...", - "icon": "https://portable-linux-apps.github.io/icons/focalizzare.png", - "arch": ["x86_64"] - }, - { - "packageName": "focus", - "description": "A fully featured productivity timer for the command line, based on the Pomodoro Technique...", - "icon": "https://portable-linux-apps.github.io/icons/focus.png", - "arch": ["x86_64"] - }, - { - "packageName": "focusatwill", - "description": "Combines neuroscience and music to boost productivity...", - "icon": "https://portable-linux-apps.github.io/icons/focusatwill.png", - "arch": ["x86_64"] - }, - { - "packageName": "focuswriter", - "description": "Simple fullscreen word processor...", - "icon": "https://portable-linux-apps.github.io/icons/focuswriter.png", - "arch": ["x86_64"] - }, - { - "packageName": "fold", - "description": "Wrap each input line to fit in specified width. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/fold.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "folo", - "description": "Folo is the AI Reader...", - "icon": "https://portable-linux-apps.github.io/icons/folo.png", - "arch": ["x86_64"] - }, - { - "packageName": "fontbase", - "description": "A lightning fast, beautiful and free font manager for designers...", - "icon": "https://portable-linux-apps.github.io/icons/fontbase.png", - "arch": ["x86_64"] - }, - { - "packageName": "fontforge", - "description": "Free, libre font editor...", - "icon": "https://portable-linux-apps.github.io/icons/fontforge.png", - "arch": ["x86_64"] - }, - { - "packageName": "fontlet", - "description": "A package manager for fonts...", - "icon": "https://portable-linux-apps.github.io/icons/fontlet.png", - "arch": ["x86_64"] - }, - { - "packageName": "foobar2000", - "description": "Unofficial, an advanced freeware audio player for Windows, includes WINE...", - "icon": "https://portable-linux-apps.github.io/icons/foobar2000.png", - "arch": ["x86_64"] - }, - { - "packageName": "foobillardpp", - "description": "Unofficial, an OpenGL Billard Game based on foobillard 3.0a with patches and new features...", - "icon": "https://portable-linux-apps.github.io/icons/foobillardpp.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "foot", - "description": "Unofficial, A fast, lightweight and minimalistic Wayland terminal emulator (This AppImage can work on x11 as well)...", - "icon": "https://portable-linux-apps.github.io/icons/foot.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "fooyin", - "description": "Unofficial, a customisable music player...", - "icon": "https://portable-linux-apps.github.io/icons/fooyin.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "forkgram", - "description": "Fork of Telegram Desktop messaging app...", - "icon": "https://portable-linux-apps.github.io/icons/forkgram.png", - "arch": ["x86_64"] - }, - { - "packageName": "four", - "description": "Electron App to access All4/Channel4, UK...", - "icon": "https://portable-linux-apps.github.io/icons/four.png", - "arch": ["x86_64"] - }, - { - "packageName": "foxfolio", - "description": "Cryptocurrency portfolio management application...", - "icon": "https://portable-linux-apps.github.io/icons/foxfolio.png", - "arch": ["x86_64"] - }, - { - "packageName": "fpm", - "description": "Faster Project Plus on Linux...", - "icon": "https://portable-linux-apps.github.io/icons/fpm.png", - "arch": ["x86_64"] - }, - { - "packageName": "fractale", - "description": "2D modeling of the Von Koch fractal...", - "icon": "https://portable-linux-apps.github.io/icons/fractale.png", - "arch": ["x86_64"] - }, - { - "packageName": "fraidycat", - "description": "Follow blogs, wikis, YouTube, Twitter, Reddit, Instagram and more...", - "icon": "https://portable-linux-apps.github.io/icons/fraidycat.png", - "arch": ["x86_64"] - }, - { - "packageName": "fraktal", - "description": "Podcast Manager in Electron...", - "icon": "https://portable-linux-apps.github.io/icons/fraktal.png", - "arch": ["x86_64"] - }, - { - "packageName": "frame", - "description": "Fast FFmpeg GUI...", - "icon": "https://portable-linux-apps.github.io/icons/frame.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "frame-eth-dev", - "description": "A privacy focused Ethereum wallet...", - "icon": "https://portable-linux-apps.github.io/icons/frame-eth-dev.png", - "arch": ["x86_64"] - }, - { - "packageName": "francetv", - "description": "The france.tv site in an application...", - "icon": "https://portable-linux-apps.github.io/icons/francetv.png", - "arch": ["x86_64"] - }, - { - "packageName": "francis", - "description": "Pomodoro technique, get more productive. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/francis.png", - "arch": ["x86_64"] - }, - { - "packageName": "franz", - "description": "Messaging app for WhatsApp, Slack, Telegram, HipChat and much more...", - "icon": "https://portable-linux-apps.github.io/icons/franz.png", - "arch": ["x86_64"] - }, - { - "packageName": "frappebooks", - "description": "Book-keeping software for small-businesses and freelancers...", - "icon": "https://portable-linux-apps.github.io/icons/frappebooks.png", - "arch": ["x86_64"] - }, - { - "packageName": "freac", - "description": "fre:ac, free audio converter and CD ripper for various encoders...", - "icon": "https://portable-linux-apps.github.io/icons/freac.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "freecad", - "description": "Free and open source AutoCAD alternative...", - "icon": "https://portable-linux-apps.github.io/icons/freecad.png", - "arch": ["x86_64"] - }, - { - "packageName": "freecad-assembly3", - "description": "Assembly3 workbench for FreeCAD...", - "icon": "https://portable-linux-apps.github.io/icons/freecad-assembly3.png", - "arch": ["x86_64"] - }, - { - "packageName": "freecad-weekly", - "description": "Official developmet build of FreeCAD, a free and opensource multiplatform 3D parametric modeler...", - "icon": "https://portable-linux-apps.github.io/icons/freecad-weekly.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "freefilesync", - "description": "folder comparison and synchronization software...", - "icon": "https://portable-linux-apps.github.io/icons/freefilesync.png", - "arch": ["x86_64"] - }, - { - "packageName": "freeman", - "description": "A free, extensible, cross-platform file manager for power users...", - "icon": "https://portable-linux-apps.github.io/icons/freeman.png", - "arch": ["x86_64"] - }, - { - "packageName": "freeshow", - "description": "User-friendly presenter software...", - "icon": "https://portable-linux-apps.github.io/icons/freeshow.png", - "arch": ["x86_64"] - }, - { - "packageName": "freetexturepacker", - "description": "Creates sprite sheets for you game or site, graphics...", - "icon": "https://portable-linux-apps.github.io/icons/freetexturepacker.png", - "arch": ["x86_64"] - }, - { - "packageName": "freetube", - "description": "An Open Source YouTube app for privacy...", - "icon": "https://portable-linux-apps.github.io/icons/freetube.png", - "arch": ["x86_64"] - }, - { - "packageName": "freetube-enhanced", - "description": "Unofficial, An Open Source YouTube app for privacy...", - "icon": "https://portable-linux-apps.github.io/icons/freetube-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "freeze", - "description": "Generate images of code and terminal output...", - "icon": "https://portable-linux-apps.github.io/icons/freeze.png", - "arch": ["x86_64"] - }, - { - "packageName": "freezer", - "description": "An unofficial client for Deezer...", - "icon": "https://portable-linux-apps.github.io/icons/freezer.png", - "arch": ["x86_64"] - }, - { - "packageName": "fresh", - "description": "easy, powerful and fast...", - "icon": "https://portable-linux-apps.github.io/icons/fresh.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "freshfetch", - "description": "An alternative to Neofetch in Rust with a focus on customization...", - "icon": "https://portable-linux-apps.github.io/icons/freshfetch.png", - "arch": ["x86_64"] - }, - { - "packageName": "fretboard", - "description": "Unofficial. Application which helps you find your favorite guitar chord...", - "icon": "https://portable-linux-apps.github.io/icons/fretboard.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "friction", - "description": "Flexible, user expandable 2D animation software...", - "icon": "https://portable-linux-apps.github.io/icons/friction.png", - "arch": ["x86_64"] - }, - { - "packageName": "friture", - "description": "Real-time audio visualizations, spectrum, spectrogram, etc....", - "icon": "https://portable-linux-apps.github.io/icons/friture.png", - "arch": ["x86_64"] - }, - { - "packageName": "fromscratch", - "description": "Simple autosaving scratchpad...", - "icon": "https://portable-linux-apps.github.io/icons/fromscratch.png", - "arch": ["x86_64"] - }, - { - "packageName": "frontimer", - "description": "Desktop timer application always displayed in the forefront of the screen...", - "icon": "https://portable-linux-apps.github.io/icons/frontimer.png", - "arch": ["x86_64"] - }, - { - "packageName": "fspy", - "description": "An open source, cross platform app for still image camera matching...", - "icon": "https://portable-linux-apps.github.io/icons/fspy.png", - "arch": ["x86_64"] - }, - { - "packageName": "fukayo", - "description": "Manga reader...", - "icon": "https://portable-linux-apps.github.io/icons/fukayo.png", - "arch": ["x86_64"] - }, - { - "packageName": "funkin", - "description": "A rhythm game made with HaxeFlixel..", - "icon": "https://portable-linux-apps.github.io/icons/funkin.png", - "arch": ["x86_64"] - }, - { - "packageName": "funkin-legacy", - "description": "Legacy GLibC Linux support for Friday Night Funkin. A rhythm game made with HaxeFlixel...", - "icon": "https://portable-linux-apps.github.io/icons/funkin-legacy.png", - "arch": ["x86_64"] - }, - { - "packageName": "furnace", - "description": "A multi-system chiptune tracker compatible with DefleMask modules...", - "icon": "https://portable-linux-apps.github.io/icons/furnace.png", - "arch": ["x86_64"] - }, - { - "packageName": "fx", - "description": "Terminal JSON viewer & processor...", - "icon": "https://portable-linux-apps.github.io/icons/fx.png", - "arch": ["x86_64"] - }, - { - "packageName": "fynodoro", - "description": "Fynodoro, the Pomodoro Widget...", - "icon": "https://portable-linux-apps.github.io/icons/fynodoro.png", - "arch": ["x86_64"] - }, - { - "packageName": "fzf", - "description": "A command-line fuzzy finder...", - "icon": "https://portable-linux-apps.github.io/icons/fzf.png", - "arch": ["x86_64"] - }, - { - "packageName": "g-v2ray", - "description": "Advanced V2Ray/Xray GUI Client for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/g-v2ray.png", - "arch": ["x86_64"] - }, - { - "packageName": "gaiasky", - "description": "Gaia Sky, a real-time 3D space simulator & astronomy visualisation...", - "icon": "https://portable-linux-apps.github.io/icons/gaiasky.png", - "arch": ["x86_64"] - }, - { - "packageName": "galculator", - "description": "A GTK 2 / GTK 3 based scientific calculator...", - "icon": "https://portable-linux-apps.github.io/icons/galculator.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gale", - "description": "A modern mod manager for Thunderstore...", - "icon": "https://portable-linux-apps.github.io/icons/gale.png", - "arch": ["x86_64"] - }, - { - "packageName": "gallery-dl", - "description": "Command-line program to download image galleries and collections from several image hosting sites...", - "icon": "https://portable-linux-apps.github.io/icons/gallery-dl.png", - "arch": ["x86_64"] - }, - { - "packageName": "gallery-dl-nightly", - "description": "Command-line program to download image galleries and collections from several image hosting sites, nightly build...", - "icon": "https://portable-linux-apps.github.io/icons/gallery-dl-nightly.png", - "arch": ["x86_64"] - }, - { - "packageName": "gameconqueror", - "description": "Unofficial. Memory scanner designed to isolate the adress of an arbitrary variable in an executing process (gtk GUI)...", - "icon": "https://portable-linux-apps.github.io/icons/gameconqueror.png", - "arch": ["x86_64"] - }, - { - "packageName": "gamehub", - "description": "Unified library for all your games from different platforms...", - "icon": "https://portable-linux-apps.github.io/icons/gamehub.png", - "arch": ["x86_64"] - }, - { - "packageName": "gameimage", - "description": "Pack a runner/emulator/game and it's configs in a single AppImage...", - "icon": "https://portable-linux-apps.github.io/icons/gameimage.png", - "arch": ["x86_64"] - }, - { - "packageName": "gamescope", - "description": "Unofficial AppImage of gamescope...", - "icon": "https://portable-linux-apps.github.io/icons/gamescope.png", - "arch": ["x86_64"] - }, - { - "packageName": "gams-studio", - "description": "Development environment of General Algebraic Modeling System...", - "icon": "https://portable-linux-apps.github.io/icons/gams-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "ganache", - "description": "Personal Blockchain for Ethereum, latest AppImage for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/ganache.png", - "arch": ["x86_64"] - }, - { - "packageName": "gaphor", - "description": "A UML and SysML modeling application written in Python...", - "icon": "https://portable-linux-apps.github.io/icons/gaphor.png", - "arch": ["x86_64"] - }, - { - "packageName": "gapless", - "description": "Unofficial. Simple music player with blur and gapless playback...", - "icon": "https://portable-linux-apps.github.io/icons/gapless.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gargoyle-bin", - "description": "Interactive Fiction multi-int. for all major IF formats...", - "icon": "https://portable-linux-apps.github.io/icons/gargoyle-bin.png", - "arch": ["x86_64"] - }, - { - "packageName": "gaucho", - "description": "Minimalist task launcher..", - "icon": "https://portable-linux-apps.github.io/icons/gaucho.png", - "arch": ["x86_64"] - }, - { - "packageName": "gawk", - "description": "GNU version of awk. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/gawk.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gcap2025", - "description": "Appimage não oficial do GCAP2025, declare seus ganhos de capital (Ano-calendário 2025)...", - "icon": "https://portable-linux-apps.github.io/icons/gcap2025.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gcap2026", - "description": "Appimage não oficial do GCAP2026, declare seus ganhos de capital (Ano-calendário 2026)...", - "icon": "https://portable-linux-apps.github.io/icons/gcap2026.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gcstar", - "description": "Unofficial, collection manager written in Perl and based on Gtk...", - "icon": "https://portable-linux-apps.github.io/icons/gcstar.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gdesktopsuite", - "description": "Google Suite as a desktop app, made possible with Electron...", - "icon": "https://portable-linux-apps.github.io/icons/gdesktopsuite.png", - "arch": ["x86_64"] - }, - { - "packageName": "gdevelop", - "description": "Cross-platform game engine designed to be used by everyone...", - "icon": "https://portable-linux-apps.github.io/icons/gdevelop.png", - "arch": ["x86_64"] - }, - { - "packageName": "gdlauncher", - "description": "Simple, yet powerful Minecraft custom launcher...", - "icon": "https://portable-linux-apps.github.io/icons/gdlauncher.png", - "arch": ["x86_64"] - }, - { - "packageName": "gdm-settings", - "description": "A settings app for GNOME's Login Manager, GDM...", - "icon": "https://portable-linux-apps.github.io/icons/gdm-settings.png", - "arch": ["x86_64"] - }, - { - "packageName": "geany", - "description": "Unofficial, a fast and lightweight IDE...", - "icon": "https://portable-linux-apps.github.io/icons/geany.png", - "arch": ["x86_64"] - }, - { - "packageName": "gearboy", - "description": "Unofficial, Game Boy / Gameboy Color emulator...", - "icon": "https://portable-linux-apps.github.io/icons/gearboy.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gearcoleco", - "description": "Unofficial, ColecoVision emulator...", - "icon": "https://portable-linux-apps.github.io/icons/gearcoleco.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "geargrafx", - "description": "Unofficial, PC Engine / TurboGrafx-16 / SuperGrafx / PCE CD-ROM² emulator...", - "icon": "https://portable-linux-apps.github.io/icons/geargrafx.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gearlever", - "description": "Unofficial. An utility to organize and manage AppImage files for you, generate desktop entries and app metadata, update apps in-place or keep multiple versions side-by-side...", - "icon": "https://portable-linux-apps.github.io/icons/gearlever.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gearlynx", - "description": "Unofficial, Atari Lynx emulator...", - "icon": "https://portable-linux-apps.github.io/icons/gearlynx.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gearsystem", - "description": "Unofficial, Sega Master System / Game Gear / SG-1000 emulator...", - "icon": "https://portable-linux-apps.github.io/icons/gearsystem.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gedit", - "description": "An easy-to-use general-purpose text editor for the GNOME desktop environment...", - "icon": "https://portable-linux-apps.github.io/icons/gedit.png", - "arch": ["x86_64"] - }, - { - "packageName": "geeqie", - "description": "Claiming to be the best image viewer and photo collection browser...", - "icon": "https://portable-linux-apps.github.io/icons/geeqie.png", - "arch": ["x86_64"] - }, - { - "packageName": "geforce-infinity", - "description": "Enhance the Nvidia GeForce NOW experience...", - "icon": "https://portable-linux-apps.github.io/icons/geforce-infinity.png", - "arch": ["x86_64"] - }, - { - "packageName": "geforcenow-electron", - "description": "Desktop client for Nvidia GeForce NOW game streaming...", - "icon": "https://portable-linux-apps.github.io/icons/geforcenow-electron.png", - "arch": ["x86_64"] - }, - { - "packageName": "gemalaya", - "description": "A keyboard-driven Gemini browser written in QML...", - "icon": "https://portable-linux-apps.github.io/icons/gemalaya.png", - "arch": ["x86_64"] - }, - { - "packageName": "gemget", - "description": "Command line downloader for the Gemini protocol...", - "icon": "https://portable-linux-apps.github.io/icons/gemget.png", - "arch": ["x86_64"] - }, - { - "packageName": "gemrb", - "description": "GemRB is a portable open-source implementation of Bioware's Infinity Engine...", - "icon": "https://portable-linux-apps.github.io/icons/gemrb.png", - "arch": ["x86_64"] - }, - { - "packageName": "genact", - "description": "A nonsense activity generator...", - "icon": "https://portable-linux-apps.github.io/icons/genact.png", - "arch": ["x86_64"] - }, - { - "packageName": "genesis", - "description": "Open source blockchain platform...", - "icon": "https://portable-linux-apps.github.io/icons/genesis.png", - "arch": ["x86_64"] - }, - { - "packageName": "geofs", - "description": "GeoFS flight sim as a desktop application...", - "icon": "https://portable-linux-apps.github.io/icons/geofs.png", - "arch": ["x86_64"] - }, - { - "packageName": "geometrize", - "description": "Images to shapes converter, graphics...", - "icon": "https://portable-linux-apps.github.io/icons/geometrize.png", - "arch": ["x86_64"] - }, - { - "packageName": "gerbil", - "description": "A desktop app for running Large Language Models locally...", - "icon": "https://portable-linux-apps.github.io/icons/gerbil.png", - "arch": ["x86_64"] - }, - { - "packageName": "gerbv", - "description": "Gerber file viewer for PCB design...", - "icon": "https://portable-linux-apps.github.io/icons/gerbv.png", - "arch": ["x86_64"] - }, - { - "packageName": "gert", - "description": "A command line tool to download media from Reddit...", - "icon": "https://portable-linux-apps.github.io/icons/gert.png", - "arch": ["x86_64"] - }, - { - "packageName": "getthermal", - "description": "Cross-platform Thermal Camera Viewer...", - "icon": "https://portable-linux-apps.github.io/icons/getthermal.png", - "arch": ["x86_64"] - }, - { - "packageName": "gextractwinicons", - "description": "Extract cursors, icons and images from MS Windows files...", - "icon": "https://portable-linux-apps.github.io/icons/gextractwinicons.png", - "arch": ["x86_64"] - }, - { - "packageName": "gh", - "description": "GitHub’s official command line tool...", - "icon": "https://portable-linux-apps.github.io/icons/gh.png", - "arch": ["x86_64"] - }, - { - "packageName": "gh-eco", - "description": "gh cli extension to explore the ecosystem...", - "icon": "https://portable-linux-apps.github.io/icons/gh-eco.png", - "arch": ["x86_64"] - }, - { - "packageName": "gharmonize", - "description": "A cross-platform media conversion app with a built-in YouTube downloader and Spotify downloader, powered by yt-dlp and ffmpeg — now featuring FPS adaptation support for AC3, EAC3, and AAC codecs...", - "icon": "https://portable-linux-apps.github.io/icons/gharmonize.png", - "arch": ["x86_64"] - }, - { - "packageName": "ghdl", - "description": "A much more convenient way to download GitHub release binaries on the command line...", - "icon": "https://portable-linux-apps.github.io/icons/ghdl.png", - "arch": ["x86_64"] - }, - { - "packageName": "ghidra", - "description": "Ghidra is a software reverse engineering (SRE) framework...", - "icon": "https://portable-linux-apps.github.io/icons/ghidra.png", - "arch": ["x86_64"] - }, - { - "packageName": "ghostship", - "description": "Unofficial, Another definitive port of Super Mario 64...", - "icon": "https://portable-linux-apps.github.io/icons/ghostship.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ghostty", - "description": "Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Stable)..", - "icon": "https://portable-linux-apps.github.io/icons/ghostty.png", - "arch": ["x86_64"] - }, - { - "packageName": "ghostty-glfw", - "description": "Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (glfw version)..", - "icon": "https://portable-linux-apps.github.io/icons/ghostty-glfw.png", - "arch": ["x86_64"] - }, - { - "packageName": "ghostty-glfw-nightly", - "description": "Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Tip, Nightly) (glfw version)..", - "icon": "https://portable-linux-apps.github.io/icons/ghostty-glfw-nightly.png", - "arch": ["x86_64"] - }, - { - "packageName": "ghostty-nightly", - "description": "Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Tip, Nightly)..", - "icon": "https://portable-linux-apps.github.io/icons/ghostty-nightly.png", - "arch": ["x86_64"] - }, - { - "packageName": "ghrel", - "description": "Download and verify GitHub release...", - "icon": "https://portable-linux-apps.github.io/icons/ghrel.png", - "arch": ["x86_64"] - }, - { - "packageName": "giada", - "description": "Hardcore audio music production tool and drum machine for DJs...", - "icon": "https://portable-linux-apps.github.io/icons/giada.png", - "arch": ["x86_64"] - }, - { - "packageName": "gibs", - "description": "Generally In-source Build System, build C++ projects without a project...", - "icon": "https://portable-linux-apps.github.io/icons/gibs.png", - "arch": ["x86_64"] - }, - { - "packageName": "gickup", - "description": "Backup your Git repositories with ease...", - "icon": "https://portable-linux-apps.github.io/icons/gickup.png", - "arch": ["x86_64"] - }, - { - "packageName": "gifcurry", - "description": "The open-source, Haskell-built video editor for GIF makers...", - "icon": "https://portable-linux-apps.github.io/icons/gifcurry.png", - "arch": ["x86_64"] - }, - { - "packageName": "gimagereader", - "description": "Unofficial AppImage of gImageReader...", - "icon": "https://portable-linux-apps.github.io/icons/gimagereader.png", - "arch": ["x86_64"] - }, - { - "packageName": "gimp", - "description": "GNU Image Manipulation Program, cross-platform image and photo editor. Multiple-choices...", - "icon": "https://portable-linux-apps.github.io/icons/gimp.png", - "arch": ["x86_64","i686"] - }, - { - "packageName": "gimp-git", - "description": "Unofficial, Cross-platform image and photo editor, built from GIT...", - "icon": "https://portable-linux-apps.github.io/icons/gimp-git.png", - "arch": ["x86_64"] - }, - { - "packageName": "gimp-hybrid", - "description": "Unofficial, GIMP including third-party plugins and python2 support...", - "icon": "https://portable-linux-apps.github.io/icons/gimp-hybrid.png", - "arch": ["x86_64"] - }, - { - "packageName": "gingko", - "description": "Gingko client rewritten in Elm...", - "icon": "https://portable-linux-apps.github.io/icons/gingko.png", - "arch": ["x86_64"] - }, - { - "packageName": "git-cliff", - "description": "A highly customizable Changelog Generator that follows Conventional Commit specifications...", - "icon": "https://portable-linux-apps.github.io/icons/git-cliff.png", - "arch": ["x86_64"] - }, - { - "packageName": "git-credential-oauth", - "description": "A Git credential helper that securely authenticates to GitHub, GitLab and BitBucket using OAuth...", - "icon": "https://portable-linux-apps.github.io/icons/git-credential-oauth.png", - "arch": ["x86_64"] - }, - { - "packageName": "git-good", - "description": "Just a simple git client using electron and nodegit...", - "icon": "https://portable-linux-apps.github.io/icons/git-good.png", - "arch": ["x86_64"] - }, - { - "packageName": "git-side", - "description": "A Git subcommand that versions files and directories that should not live in the main repository, using a per-project bare repository invisible to Git...", - "icon": "https://portable-linux-apps.github.io/icons/git-side.png", - "arch": ["x86_64"] - }, - { - "packageName": "gitbutler", - "description": "The GitButler version control client, backed by Git, powered by Tauri/Rust/Svelte...", - "icon": "https://portable-linux-apps.github.io/icons/gitbutler.png", - "arch": ["x86_64"] - }, - { - "packageName": "githoard", - "description": "Hoard git repositories with ease...", - "icon": "https://portable-linux-apps.github.io/icons/githoard.png", - "arch": ["x86_64"] - }, - { - "packageName": "github-desktop-plus", - "description": "Electron-based GitHub Desktop fork with advanced functionality and Bitbucket, GitLab integration...", - "icon": "https://portable-linux-apps.github.io/icons/github-desktop-plus.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "github-store", - "description": "A free, open-source app store for GitHub releases. Browse, discover, and install apps with one click. Powered by Kotlin and Compose Multiplatform for Android & Desktop...", - "icon": "https://portable-linux-apps.github.io/icons/github-store.png", - "arch": ["x86_64"] - }, - { - "packageName": "gitify", - "description": "GitHub notifications on your menu bar...", - "icon": "https://portable-linux-apps.github.io/icons/gitify.png", - "arch": ["x86_64"] - }, - { - "packageName": "gitjournal", - "description": "Mobile first Note Taking integrated with Git...", - "icon": "https://portable-linux-apps.github.io/icons/gitjournal.png", - "arch": ["x86_64"] - }, - { - "packageName": "gitkraken", - "description": "GitKraken Client including an intuitive GUI & powerful CLI...", - "icon": "https://portable-linux-apps.github.io/icons/gitkraken.png", - "arch": ["x86_64"] - }, - { - "packageName": "gitleaks", - "description": "Protect and discover secrets using Gitleaks...", - "icon": "https://portable-linux-apps.github.io/icons/gitleaks.png", - "arch": ["x86_64"] - }, - { - "packageName": "gitlight", - "description": "GitHub & GitLab notifications on your desktop...", - "icon": "https://portable-linux-apps.github.io/icons/gitlight.png", - "arch": ["x86_64"] - }, - { - "packageName": "gitnote", - "description": "A modern note taking app based on GIT...", - "icon": "https://portable-linux-apps.github.io/icons/gitnote.png", - "arch": ["x86_64"] - }, - { - "packageName": "gitql", - "description": "A git query language...", - "icon": "https://portable-linux-apps.github.io/icons/gitql.png", - "arch": ["x86_64"] - }, - { - "packageName": "gitqlient", - "description": "Multi-platform Git client written with Qt...", - "icon": "https://portable-linux-apps.github.io/icons/gitqlient.png", - "arch": ["x86_64"] - }, - { - "packageName": "gittyup", - "description": "GUI Git client designed to help you understand and manage your source code history...", - "icon": "https://portable-linux-apps.github.io/icons/gittyup.png", - "arch": ["x86_64"] - }, - { - "packageName": "gitui", - "description": "Blazing fast terminal-ui for git written in rust...", - "icon": "https://portable-linux-apps.github.io/icons/gitui.png", - "arch": ["x86_64"] - }, - { - "packageName": "gl-warp2mp4", - "description": "Utility to pre-warp a movie similar to TGAWarp...", - "icon": "https://portable-linux-apps.github.io/icons/gl-warp2mp4.png", - "arch": ["x86_64"] - }, - { - "packageName": "glab", - "description": "A GitLab CLI tool bringing GitLab to your command line...", - "icon": "https://portable-linux-apps.github.io/icons/glab.png", - "arch": ["x86_64"] - }, - { - "packageName": "glaxnimate", - "description": "A simple and fast vector graphics animation program...", - "icon": "https://portable-linux-apps.github.io/icons/glaxnimate.png", - "arch": ["x86_64"] - }, - { - "packageName": "glow", - "description": "Render markdown on the CLI, with pizzazz!..", - "icon": "https://portable-linux-apps.github.io/icons/glow.png", - "arch": ["x86_64"] - }, - { - "packageName": "gltf-insight", - "description": "C++11 based glTF 2.0 data insight tool...", - "icon": "https://portable-linux-apps.github.io/icons/gltf-insight.png", - "arch": ["x86_64"] - }, - { - "packageName": "glulxe", - "description": "AppImage of the glulxe interactive fiction interpreter...", - "icon": "https://portable-linux-apps.github.io/icons/glulxe.png", - "arch": ["x86_64"] - }, - { - "packageName": "glyphr-studio-desktop", - "description": "Professional font design programs...", - "icon": "https://portable-linux-apps.github.io/icons/glyphr-studio-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "gm-companion", - "description": "A tool for rpg gamemasters...", - "icon": "https://portable-linux-apps.github.io/icons/gm-companion.png", - "arch": ["x86_64"] - }, - { - "packageName": "gmail-desktop", - "description": "Unofficial. Nifty Gmail desktop app...", - "icon": "https://portable-linux-apps.github.io/icons/gmail-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "gnatstudio", - "description": "GNAT Studio is a powerful and lightweight IDE for Ada and SPARK...", - "icon": "https://portable-linux-apps.github.io/icons/gnatstudio.png", - "arch": ["x86_64"] - }, - { - "packageName": "gncdu", - "description": "Implements NCurses Disk Usage(ncdu) with golang...", - "icon": "https://portable-linux-apps.github.io/icons/gncdu.png", - "arch": ["x86_64"] - }, - { - "packageName": "gnome-boxes", - "description": "Unofficial, A simple GNOME application to access virtual machines...", - "icon": "https://portable-linux-apps.github.io/icons/gnome-boxes.png", - "arch": ["x86_64"] - }, - { - "packageName": "gnome-calculator", - "description": "Unofficial, Perform arithmetic, scientific or financial calculations...", - "icon": "https://portable-linux-apps.github.io/icons/gnome-calculator.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gnome-pomodoro", - "description": "A productivity tool designed to help you manage your time effectively using the Pomodoro Technique...", - "icon": "https://portable-linux-apps.github.io/icons/gnome-pomodoro.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gnome-system-monitor", - "description": "System Monitor is a process viewer and system monitor with an attractive, easy-to-use interface for the GNOME desktop environment...", - "icon": "https://portable-linux-apps.github.io/icons/gnome-system-monitor.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gnome-text-editor", - "description": "Unofficial AppImage of the Gnome's Text Editor application...", - "icon": "https://portable-linux-apps.github.io/icons/gnome-text-editor.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gnome-tweaks", - "description": "Unofficial, Experimental AppImage port of advanced GNOME 3 settings GUI...", - "icon": "https://portable-linux-apps.github.io/icons/gnome-tweaks.png", - "arch": ["x86_64"] - }, - { - "packageName": "gnome-web", - "description": "Unofficial AppImage of Gnome Web aka Epiphany....", - "icon": "https://portable-linux-apps.github.io/icons/gnome-web.png", - "arch": ["x86_64"] - }, - { - "packageName": "gnu-freedink", - "description": "Unofficial, a portable and enhanced version of the Dink Smallwood game engine...", - "icon": "https://portable-linux-apps.github.io/icons/gnu-freedink.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gnumeric", - "description": "Unofficial. An open-source spreadsheet program...", - "icon": "https://portable-linux-apps.github.io/icons/gnumeric.png", - "arch": ["x86_64"] - }, - { - "packageName": "go-pd", - "description": "A free easy to use pixeldrain.com go client pkg and CLI upload tool...", - "icon": "https://portable-linux-apps.github.io/icons/go-pd.png", - "arch": ["x86_64"] - }, - { - "packageName": "go-pd-gui", - "description": "DRAINY is a free easy to use cross plattform upload tool for pixeldrain.com...", - "icon": "https://portable-linux-apps.github.io/icons/go-pd-gui.png", - "arch": ["x86_64"] - }, - { - "packageName": "go-spotify-cli", - "description": "Control Spotify with CLI commands...", - "icon": "https://portable-linux-apps.github.io/icons/go-spotify-cli.png", - "arch": ["x86_64"] - }, - { - "packageName": "goanime", - "description": "A TUI tool to browse, stream, and download anime in English and Portuguese...", - "icon": "https://portable-linux-apps.github.io/icons/goanime.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gobuster", - "description": "A high-performance directory/file, DNS and virtual host brute-forcing tool written in Go. It's designed to be fast, reliable, and easy to use for security professionals and penetration testers...", - "icon": "https://portable-linux-apps.github.io/icons/gobuster.png", - "arch": ["x86_64"] - }, - { - "packageName": "godmode", - "description": "AI Chat Browser fast, full webapp access to ChatGPT/Claude/Bard/Bing/Llama2...", - "icon": "https://portable-linux-apps.github.io/icons/godmode.png", - "arch": ["x86_64"] - }, - { - "packageName": "godot", - "description": "Multi-platform 2D and 3D game engine with a feature-rich editor...", - "icon": "https://portable-linux-apps.github.io/icons/godot.png", - "arch": ["x86_64"] - }, - { - "packageName": "gojq", - "description": "Pure Go implementation of jq...", - "icon": "https://portable-linux-apps.github.io/icons/gojq.png", - "arch": ["x86_64"] - }, - { - "packageName": "gokey", - "description": "A simple vaultless password manager in Go...", - "icon": "https://portable-linux-apps.github.io/icons/gokey.png", - "arch": ["x86_64"] - }, - { - "packageName": "goland", - "description": "Capable and Ergonomic Go IDE...", - "icon": "https://portable-linux-apps.github.io/icons/goland.png", - "arch": ["x86_64"] - }, - { - "packageName": "goldencheetah", - "description": "Cycling Power Analysis Software...", - "icon": "https://portable-linux-apps.github.io/icons/goldencheetah.png", - "arch": ["x86_64"] - }, - { - "packageName": "goldendict", - "description": "A feature-rich dictionary lookup program...", - "icon": "https://portable-linux-apps.github.io/icons/goldendict.png", - "arch": ["x86_64"] - }, - { - "packageName": "goldendict-ng", - "description": "Unofficial, an advanced dictionary lookup program, supporting many formats...", - "icon": "https://portable-linux-apps.github.io/icons/goldendict-ng.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gooboxfileshare", - "description": "Goobox File Share App...", - "icon": "https://portable-linux-apps.github.io/icons/gooboxfileshare.png", - "arch": ["x86_64"] - }, - { - "packageName": "goodls", - "description": "This is a CLI tool to download shared files and folders from Google Drive...", - "icon": "https://portable-linux-apps.github.io/icons/goodls.png", - "arch": ["x86_64"] - }, - { - "packageName": "goofcord", - "description": "Take control of your Discord experience with GoofCord...", - "icon": "https://portable-linux-apps.github.io/icons/goofcord.png", - "arch": ["x86_64"] - }, - { - "packageName": "google-chrome", - "description": "Unofficial, Web Browser, Stable version...", - "icon": "https://portable-linux-apps.github.io/icons/google-chrome.png", - "arch": ["x86_64"] - }, - { - "packageName": "google-chrome-beta", - "description": "Unofficial, Web Browser, Beta version...", - "icon": "https://portable-linux-apps.github.io/icons/google-chrome-beta.png", - "arch": ["x86_64"] - }, - { - "packageName": "google-chrome-dev", - "description": "Unofficial, Web Browser, Unstable version...", - "icon": "https://portable-linux-apps.github.io/icons/google-chrome-dev.png", - "arch": ["x86_64"] - }, - { - "packageName": "google-docs", - "description": "Unofficial, Google Docs Desktop App made with electron...", - "icon": "https://portable-linux-apps.github.io/icons/google-docs.png", - "arch": ["x86_64"] - }, - { - "packageName": "google-task-tauri", - "description": "An Unofficial Desktop Client for Google Tasks...", - "icon": "https://portable-linux-apps.github.io/icons/google-task-tauri.png", - "arch": ["x86_64"] - }, - { - "packageName": "google-tasks-desktop", - "description": "Unofficial Google Tasks Desktop Client...", - "icon": "https://portable-linux-apps.github.io/icons/google-tasks-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "gooseberry", - "description": "A command line utility to generate a knowledge base from Hypothesis annotations...", - "icon": "https://portable-linux-apps.github.io/icons/gooseberry.png", - "arch": ["x86_64"] - }, - { - "packageName": "gopass", - "description": "The slightly more awesome standard unix password manager for teams...", - "icon": "https://portable-linux-apps.github.io/icons/gopass.png", - "arch": ["x86_64"] - }, - { - "packageName": "gopeed", - "description": "A modern download manager that supports all platforms...", - "icon": "https://portable-linux-apps.github.io/icons/gopeed.png", - "arch": ["x86_64"] - }, - { - "packageName": "gopher64", - "description": "Unofficial AppImage of gopher64...", - "icon": "https://portable-linux-apps.github.io/icons/gopher64.png", - "arch": ["x86_64"] - }, - { - "packageName": "gospel", - "description": "Poppler based fast pdf viewer written in PyQt5...", - "icon": "https://portable-linux-apps.github.io/icons/gospel.png", - "arch": ["x86_64"] - }, - { - "packageName": "gost-shred", - "description": "GOST R 50739-95 Data Sanitization Method (2 passes)...", - "icon": "https://portable-linux-apps.github.io/icons/gost-shred.png", - "arch": ["x86_64"] - }, - { - "packageName": "got", - "description": "Simple golang package and CLI tool to download large files faster than cURL and Wget!..", - "icon": "https://portable-linux-apps.github.io/icons/got.png", - "arch": ["x86_64"] - }, - { - "packageName": "gotimer", - "description": "A simple terminal based digital timer for Pomodoro...", - "icon": "https://portable-linux-apps.github.io/icons/gotimer.png", - "arch": ["x86_64"] - }, - { - "packageName": "goto", - "description": "A simple terminal SSH manager that lists favorite SSH servers...", - "icon": "https://portable-linux-apps.github.io/icons/goto.png", - "arch": ["x86_64"] - }, - { - "packageName": "goverlay", - "description": "An opensource project that aims to create a Graphical UI to help manage Linux overlays...", - "icon": "https://portable-linux-apps.github.io/icons/goverlay.png", - "arch": ["x86_64"] - }, - { - "packageName": "gp-archive", - "description": "Archive profiling experiment data. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/gp-archive.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gp-collect-app", - "description": "Collect application performance profiling data. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/gp-collect-app.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gp-display-html", - "description": "Generate HTML reports from profiling data. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/gp-display-html.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gp-display-src", - "description": "Display source code annotated with profiling data. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/gp-display-src.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gp-display-text", - "description": "Display profiling data in plain text format. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/gp-display-text.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gpg-tui", - "description": "CLI, manage your GnuPG keys with ease!..", - "icon": "https://portable-linux-apps.github.io/icons/gpg-tui.png", - "arch": ["x86_64"] - }, - { - "packageName": "gpgfrontend", - "description": "A Cross-Platform OpenPGP Frontend Software...", - "icon": "https://portable-linux-apps.github.io/icons/gpgfrontend.png", - "arch": ["x86_64"] - }, - { - "packageName": "gping", - "description": "Ping, but with a graph...", - "icon": "https://portable-linux-apps.github.io/icons/gping.png", - "arch": ["x86_64"] - }, - { - "packageName": "gpodder", - "description": "Unofficial AppImage of gPodder...", - "icon": "https://portable-linux-apps.github.io/icons/gpodder.png", - "arch": ["x86_64"] - }, - { - "packageName": "gpredict", - "description": "A satellite tracking application...", - "icon": "https://portable-linux-apps.github.io/icons/gpredict.png", - "arch": ["x86_64"] - }, - { - "packageName": "gprof", - "description": "Graph profile data. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/gprof.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gprofng", - "description": "Generation GNU application profiling tool. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/gprofng.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gprofng-archive", - "description": "Experiment data. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/gprofng-archive.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gprofng-collect-app", - "description": "Data for the target. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/gprofng-collect-app.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gprofng-display-html", - "description": "HTML based directory structure. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/gprofng-display-html.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gprofng-display-src", - "description": "Code and optionally. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/gprofng-display-src.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gprofng-display-text", - "description": "Performance data in plain text. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/gprofng-display-text.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gprofng-gmon", - "description": "Display or convert GNU gmon profiling data. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/gprofng-gmon.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gpt-anywhere", - "description": "Use GPT anywhere with just one shortcut...", - "icon": "https://portable-linux-apps.github.io/icons/gpt-anywhere.png", - "arch": ["x86_64"] - }, - { - "packageName": "gpu-screen-recorder", - "description": "Unofficial, AppImage of GPU Screen Recorder..", - "icon": "https://portable-linux-apps.github.io/icons/gpu-screen-recorder.png", - "arch": ["x86_64"] - }, - { - "packageName": "gpu-t", - "description": "A comprehensive graphics card information utility for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/gpu-t.png", - "arch": ["x86_64"] - }, - { - "packageName": "gpupad", - "description": "A flexible GLSL shader editor and IDE...", - "icon": "https://portable-linux-apps.github.io/icons/gpupad.png", - "arch": ["x86_64"] - }, - { - "packageName": "gqrx", - "description": "Software defined radio receiver, SDR...", - "icon": "https://portable-linux-apps.github.io/icons/gqrx.png", - "arch": ["x86_64"] - }, - { - "packageName": "grabscr", - "description": "Yet another screenshot maker...", - "icon": "https://portable-linux-apps.github.io/icons/grabscr.png", - "arch": ["x86_64"] - }, - { - "packageName": "gradia", - "description": "Unofficial, screenshot/picture editor and uploader...", - "icon": "https://portable-linux-apps.github.io/icons/gradia.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gram-enhanced", - "description": "Unofficial, a powerful and modern source code editor...", - "icon": "https://portable-linux-apps.github.io/icons/gram-enhanced.png", - "arch": ["x86_64"] - }, - { - "packageName": "granatier", - "description": "Bomberman clone. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/granatier.png", - "arch": ["x86_64"] - }, - { - "packageName": "graphest", - "description": " A faithful graphing calculator...", - "icon": "https://portable-linux-apps.github.io/icons/graphest.png", - "arch": ["x86_64"] - }, - { - "packageName": "graphql-playground", - "description": "GraphQL IDE for better development workflows...", - "icon": "https://portable-linux-apps.github.io/icons/graphql-playground.png", - "arch": ["x86_64"] - }, - { - "packageName": "graphs", - "description": "Unofficial. A simple, yet powerful tool that allows you to plot and manipulate your data with ease...", - "icon": "https://portable-linux-apps.github.io/icons/graphs.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "graviton", - "description": "A simple code editor...", - "icon": "https://portable-linux-apps.github.io/icons/graviton.png", - "arch": ["x86_64"] - }, - { - "packageName": "greenlight", - "description": "Client for xCloud and Xbox home streaming made in Typescript...", - "icon": "https://portable-linux-apps.github.io/icons/greenlight.png", - "arch": ["x86_64"] - }, - { - "packageName": "grep", - "description": "A string search utility. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/grep.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gridcoin-research", - "description": "POS-based cryptocurrency...", - "icon": "https://portable-linux-apps.github.io/icons/gridcoin-research.png", - "arch": ["x86_64"] - }, - { - "packageName": "gridea", - "description": "A static blog writing client, 一个静态博客写作客户端...", - "icon": "https://portable-linux-apps.github.io/icons/gridea.png", - "arch": ["x86_64"] - }, - { - "packageName": "gridix", - "description": "A simple, fast, and secure cross-platform database management tool with Helix or Vim-style keybindings...", - "icon": "https://portable-linux-apps.github.io/icons/gridix.png", - "arch": ["x86_64"] - }, - { - "packageName": "gridplayer", - "description": "Play videos side-by-side...", - "icon": "https://portable-linux-apps.github.io/icons/gridplayer.png", - "arch": ["x86_64"] - }, - { - "packageName": "gridsync", - "description": "Synchronize local directories with Tahoe-LAFS storage grids...", - "icon": "https://portable-linux-apps.github.io/icons/gridsync.png", - "arch": ["x86_64"] - }, - { - "packageName": "grinplusplus", - "description": "A C++ Grin Node & Wallet...", - "icon": "https://portable-linux-apps.github.io/icons/grinplusplus.png", - "arch": ["x86_64"] - }, - { - "packageName": "grist-desktop", - "description": "Desktop Grist, packaged with Electron...", - "icon": "https://portable-linux-apps.github.io/icons/grist-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "gron", - "description": "Make JSON greppable! Transform JSON into discrete assignments to grep...", - "icon": "https://portable-linux-apps.github.io/icons/gron.png", - "arch": ["x86_64"] - }, - { - "packageName": "gron.awk", - "description": "True JSON parser in pure Awk. fast with Gawk/Mawk/GoAWK...", - "icon": "https://portable-linux-apps.github.io/icons/gron.awk.png", - "arch": ["x86_64"] - }, - { - "packageName": "groot", - "description": "Graphical Editor to create BehaviorTrees...", - "icon": "https://portable-linux-apps.github.io/icons/groot.png", - "arch": ["x86_64"] - }, - { - "packageName": "groups", - "description": "Print the groups a user is in. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/groups.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gsequencer", - "description": "Tree based audio processing engine...", - "icon": "https://portable-linux-apps.github.io/icons/gsequencer.png", - "arch": ["x86_64"] - }, - { - "packageName": "gsubs", - "description": "Finds you the perfect subtitle match...", - "icon": "https://portable-linux-apps.github.io/icons/gsubs.png", - "arch": ["x86_64"] - }, - { - "packageName": "gthumb", - "description": "Unofficial, image viewer and browser...", - "icon": "https://portable-linux-apps.github.io/icons/gthumb.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "guarda", - "description": "A secure, easy-to-use open source multi-platform cryptocurrency wallet...", - "icon": "https://portable-linux-apps.github.io/icons/guarda.png", - "arch": ["x86_64"] - }, - { - "packageName": "guglielmo", - "description": "A FM, DAB/DAB+ decoder using Qt and C++...", - "icon": "https://portable-linux-apps.github.io/icons/guglielmo.png", - "arch": ["x86_64"] - }, - { - "packageName": "guiscrcpy", - "description": "GUI integration for android screen mirroring system...", - "icon": "https://portable-linux-apps.github.io/icons/guiscrcpy.png", - "arch": ["x86_64"] - }, - { - "packageName": "guitar", - "description": "Graphical git client...", - "icon": "https://portable-linux-apps.github.io/icons/guitar.png", - "arch": ["x86_64"] - }, - { - "packageName": "gum", - "description": "A tool for glamorous shell scripts...", - "icon": "https://portable-linux-apps.github.io/icons/gum.png", - "arch": ["x86_64"] - }, - { - "packageName": "gvim", - "description": "Edit text files...", - "icon": "https://portable-linux-apps.github.io/icons/gvim.png", - "arch": ["x86_64"] - }, - { - "packageName": "gwenview", - "description": "Unofficial. Fast and easy to use image viewer by KDE. ideal for displaying a collection of images...", - "icon": "https://portable-linux-apps.github.io/icons/gwenview.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "gxc-smart-contract-ide", - "description": "Gxchain smart contract IDE alpha...", - "icon": "https://portable-linux-apps.github.io/icons/gxc-smart-contract-ide.png", - "arch": ["x86_64"] - }, - { - "packageName": "gyroflow", - "description": "Video stabilization using gyroscope data...", - "icon": "https://portable-linux-apps.github.io/icons/gyroflow.png", - "arch": ["x86_64"] - }, - { - "packageName": "hades-emu", - "description": "A Nintendo Game Boy Advance Emulator...", - "icon": "https://portable-linux-apps.github.io/icons/hades-emu.png", - "arch": ["x86_64"] - }, - { - "packageName": "hammer", - "description": "A simple tool for building stories...", - "icon": "https://portable-linux-apps.github.io/icons/hammer.png", - "arch": ["x86_64"] - }, - { - "packageName": "hamsket", - "description": "Free and Open Source messaging and emailing app...", - "icon": "https://portable-linux-apps.github.io/icons/hamsket.png", - "arch": ["x86_64"] - }, - { - "packageName": "handbrake", - "description": "Unofficial, An open-source multiplatform video transcoder...", - "icon": "https://portable-linux-apps.github.io/icons/handbrake.png", - "arch": ["x86_64"] - }, - { - "packageName": "handlr", - "description": "fork of the original handlr, with support for regular expressions...", - "icon": "https://portable-linux-apps.github.io/icons/handlr.png", - "arch": ["x86_64"] - }, - { - "packageName": "handy", - "description": "A free, open source, and extensible speech-to-text application that works completely offline...", - "icon": "https://portable-linux-apps.github.io/icons/handy.png", - "arch": ["x86_64"] - }, - { - "packageName": "hangar", - "description": "A native Bluesky client for Linux, built with Rust, GTK4, and Libadwaita...", - "icon": "https://portable-linux-apps.github.io/icons/hangar.png", - "arch": ["x86_64"] - }, - { - "packageName": "hapee", - "description": "Best cross-platform downloader ever...", - "icon": "https://portable-linux-apps.github.io/icons/hapee.png", - "arch": ["x86_64"] - }, - { - "packageName": "harmonoid", - "description": "Plays & manages your music library. Looks beautiful & juicy. Playlists, visuals, synced lyrics, pitch shift, volume boost & more...", - "icon": "https://portable-linux-apps.github.io/icons/harmonoid.png", - "arch": ["x86_64"] - }, - { - "packageName": "haruna", - "description": "Unofficial, an open source media player built with Qt/QML and libmpv...", - "icon": "https://portable-linux-apps.github.io/icons/haruna.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "hascard", - "description": "Flashcard TUI CLI with markdown cards...", - "icon": "https://portable-linux-apps.github.io/icons/hascard.png", - "arch": ["x86_64"] - }, - { - "packageName": "hashsum", - "description": "A universal tool for finding file duplicates and modified files...", - "icon": "https://portable-linux-apps.github.io/icons/hashsum.png", - "arch": ["x86_64"] - }, - { - "packageName": "hastyheroes", - "description": "An endless 2D jumping game...", - "icon": "https://portable-linux-apps.github.io/icons/hastyheroes.png", - "arch": ["x86_64"] - }, - { - "packageName": "hatari", - "description": "Unofficial, an Atari ST and STE emulator...", - "icon": "https://portable-linux-apps.github.io/icons/hatari.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "haveno-reto", - "description": "Decentralized P2P exchange built on Monero and Tor...", - "icon": "https://portable-linux-apps.github.io/icons/haveno-reto.png", - "arch": ["x86_64"] - }, - { - "packageName": "hctl", - "description": "A tool to control your Home Assistant devices from the command-line...", - "icon": "https://portable-linux-apps.github.io/icons/hctl.png", - "arch": ["x86_64"] - }, - { - "packageName": "hd", - "description": "Small hex dumper utility (with optional HexII output). This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/hd.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "hdict", - "description": "Offline dictionary reader for StarDict, Slob, Mdict and Dictd dictionaries...", - "icon": "https://portable-linux-apps.github.io/icons/hdict.png", - "arch": ["x86_64"] - }, - { - "packageName": "hdrmerge", - "description": "Merge several raw images into a single DNG raw image...", - "icon": "https://portable-linux-apps.github.io/icons/hdrmerge.png", - "arch": ["x86_64"] - }, - { - "packageName": "head", - "description": "Output the first part of files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/head.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "heat1d", - "description": "UI for testing the soilFluxex3D library, CRITERIA1D...", - "icon": "https://portable-linux-apps.github.io/icons/heat1d.png", - "arch": ["x86_64"] - }, - { - "packageName": "heimer", - "description": "Simple cross-platform mind map, diagram, and note-taking tool...", - "icon": "https://portable-linux-apps.github.io/icons/heimer.png", - "arch": ["x86_64"] - }, - { - "packageName": "helio", - "description": "One music sequencer for all major platforms, desktop and mobile...", - "icon": "https://portable-linux-apps.github.io/icons/helio.png", - "arch": ["x86_64"] - }, - { - "packageName": "helion", - "description": "A modern fast paced Doom FPS engine...", - "icon": "https://portable-linux-apps.github.io/icons/helion.png", - "arch": ["x86_64"] - }, - { - "packageName": "helioslauncher", - "description": "Custom launcher for modded minecraft written in Electron...", - "icon": "https://portable-linux-apps.github.io/icons/helioslauncher.png", - "arch": ["x86_64"] - }, - { - "packageName": "helium", - "description": "The Chromium-based web browser made for people, with love. Best privacy by default, unbiased ad-blocking, no bloat and no noise...", - "icon": "https://portable-linux-apps.github.io/icons/helium.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "helium-browser-enhanced", - "description": "About Unofficial AppImage of Helium...", - "icon": "https://portable-linux-apps.github.io/icons/helium-browser-enhanced.png", - "arch": ["x86_64"] - }, - { - "packageName": "helix", - "description": "A post-modern modal text editor...", - "icon": "https://portable-linux-apps.github.io/icons/helix.png", - "arch": ["x86_64"] - }, - { - "packageName": "helixnotes", - "description": "A local markdown note-taking app built with Tauri, SvelteKit, and Rust...", - "icon": "https://portable-linux-apps.github.io/icons/helixnotes.png", - "arch": ["x86_64"] - }, - { - "packageName": "henson", - "description": "A puppet manager for NationStates...", - "icon": "https://portable-linux-apps.github.io/icons/henson.png", - "arch": ["x86_64"] - }, - { - "packageName": "hermesmessenger", - "description": "Desktop client version for Hermes Messenger...", - "icon": "https://portable-linux-apps.github.io/icons/hermesmessenger.png", - "arch": ["x86_64"] - }, - { - "packageName": "hero-display", - "description": "App for display on HERO robot...", - "icon": "https://portable-linux-apps.github.io/icons/hero-display.png", - "arch": ["x86_64"] - }, - { - "packageName": "heroic-games-launcher", - "description": "A Native GOG and Epic Games Launcher for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/heroic-games-launcher.png", - "arch": ["x86_64"] - }, - { - "packageName": "hexdump", - "description": "Display file contents in hexadecimal format. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/hexdump.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "hexinator", - "description": "Hex editor for reverse engineering & binary file analysis...", - "icon": "https://portable-linux-apps.github.io/icons/hexinator.png", - "arch": ["x86_64"] - }, - { - "packageName": "hexoclient", - "description": "A cross-platform hexo client, build on electron...", - "icon": "https://portable-linux-apps.github.io/icons/hexoclient.png", - "arch": ["x86_64"] - }, - { - "packageName": "hexoeditor", - "description": "Markdown editor for Hexo built with Electron...", - "icon": "https://portable-linux-apps.github.io/icons/hexoeditor.png", - "arch": ["x86_64"] - }, - { - "packageName": "heynote", - "description": "A dedicated scratchpad for developers...", - "icon": "https://portable-linux-apps.github.io/icons/heynote.png", - "arch": ["x86_64"] - }, - { - "packageName": "hiddify-next", - "description": "Auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria...", - "icon": "https://portable-linux-apps.github.io/icons/hiddify-next.png", - "arch": ["x86_64"] - }, - { - "packageName": "hide.me", - "description": "Hide.me CLI VPN client for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/hide.me.png", - "arch": ["x86_64"] - }, - { - "packageName": "hidpi-fixer", - "description": "Fractional scaling configuration on X11 desktops...", - "icon": "https://portable-linux-apps.github.io/icons/hidpi-fixer.png", - "arch": ["x86_64"] - }, - { - "packageName": "highlite", - "description": "A RuneLite-esque Client for the game High Spell...", - "icon": "https://portable-linux-apps.github.io/icons/highlite.png", - "arch": ["x86_64"] - }, - { - "packageName": "hilbish", - "description": "The Moon-powered shell! A comfy and extensible shell for Lua fans!..", - "icon": "https://portable-linux-apps.github.io/icons/hilbish.png", - "arch": ["x86_64"] - }, - { - "packageName": "himalaya", - "description": "CLI to manage emails...", - "icon": "https://portable-linux-apps.github.io/icons/himalaya.png", - "arch": ["x86_64"] - }, - { - "packageName": "hmcl", - "description": "A Minecraft Launcher which is multi-functional, cross-platform and popular...", - "icon": "https://portable-linux-apps.github.io/icons/hmcl.png", - "arch": ["x86_64"] - }, - { - "packageName": "hostid", - "description": "Print the numeric identifier for the current host. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/hostid.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "hotspot", - "description": "The Linux perf GUI for performance analysis...", - "icon": "https://portable-linux-apps.github.io/icons/hotspot.png", - "arch": ["x86_64"] - }, - { - "packageName": "houdoku", - "description": "Manga reader and library manager for the desktop...", - "icon": "https://portable-linux-apps.github.io/icons/houdoku.png", - "arch": ["x86_64"] - }, - { - "packageName": "hp-15c-simulator", - "description": "Unofficial, a simulator for the HP-15C programmable scientific RPN calculator...", - "icon": "https://portable-linux-apps.github.io/icons/hp-15c-simulator.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "hpack", - "description": "A fine tool to convert any data into C header...", - "icon": "https://portable-linux-apps.github.io/icons/hpack.png", - "arch": ["x86_64"] - }, - { - "packageName": "hprof-conv", - "description": "Converts Android HPROF heap dumps to standard Java HPROF format. This is part of \"platform-tools\"...", - "icon": "https://portable-linux-apps.github.io/icons/hprof-conv.png", - "arch": ["x86_64"] - }, - { - "packageName": "hsinstall", - "description": "Pack a haskell project into a deployable directory structure...", - "icon": "https://portable-linux-apps.github.io/icons/hsinstall.png", - "arch": ["x86_64"] - }, - { - "packageName": "htmldoc", - "description": "HTML & Markdown Conversion Software to output PostScript and PDF...", - "icon": "https://portable-linux-apps.github.io/icons/htmldoc.png", - "arch": ["x86_64"] - }, - { - "packageName": "htop", - "description": "Unofficial, CLI utility to monitor system resources...", - "icon": "https://portable-linux-apps.github.io/icons/htop.png", - "arch": ["x86_64"] - }, - { - "packageName": "httpie-desktop", - "description": "HTTPie for Desktop...", - "icon": "https://portable-linux-apps.github.io/icons/httpie-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "httptoolkit", - "description": "HTTP Toolkit is an open-source tool for debugging, testing and building with HTTP...", - "icon": "https://portable-linux-apps.github.io/icons/httptoolkit.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "hugin", - "description": "Stitch photographs together...", - "icon": "https://portable-linux-apps.github.io/icons/hugin.png", - "arch": ["x86_64"] - }, - { - "packageName": "hugor", - "description": "A cross-platform, multimedia interpreter for Hugo adventure games...", - "icon": "https://portable-linux-apps.github.io/icons/hugor.png", - "arch": ["x86_64"] - }, - { - "packageName": "humanlog", - "description": "Logs for humans to read...", - "icon": "https://portable-linux-apps.github.io/icons/humanlog.png", - "arch": ["x86_64"] - }, - { - "packageName": "huwinterpreter", - "description": "HuwCode interpreter...", - "icon": "https://portable-linux-apps.github.io/icons/huwinterpreter.png", - "arch": ["x86_64"] - }, - { - "packageName": "hw-probe", - "description": "Probe for hardware and upload result to the Linux hdw database...", - "icon": "https://portable-linux-apps.github.io/icons/hw-probe.png", - "arch": ["x86_64"] - }, - { - "packageName": "hydra", - "description": "Game launcher with its own embedded bittorrent client...", - "icon": "https://portable-linux-apps.github.io/icons/hydra.png", - "arch": ["x86_64"] - }, - { - "packageName": "hydrogen-music", - "description": "The advanced drum machine...", - "icon": "https://portable-linux-apps.github.io/icons/hydrogen-music.png", - "arch": ["x86_64"] - }, - { - "packageName": "hyper", - "description": "A terminal built on web technologies...", - "icon": "https://portable-linux-apps.github.io/icons/hyper.png", - "arch": ["x86_64"] - }, - { - "packageName": "hyperdex", - "description": "BarterDEX desktop app...", - "icon": "https://portable-linux-apps.github.io/icons/hyperdex.png", - "arch": ["x86_64"] - }, - { - "packageName": "hyperfine", - "description": "A command-line benchmarking tool...", - "icon": "https://portable-linux-apps.github.io/icons/hyperfine.png", - "arch": ["x86_64"] - }, - { - "packageName": "hyperionide", - "description": "Hyperion IDE for JIRA...", - "icon": "https://portable-linux-apps.github.io/icons/hyperionide.png", - "arch": ["x86_64"] - }, - { - "packageName": "hyperkeys", - "description": "Unleash you keyboard shorcuts...", - "icon": "https://portable-linux-apps.github.io/icons/hyperkeys.png", - "arch": ["x86_64"] - }, - { - "packageName": "hyperspace", - "description": "A fluffy client for Mastodon in React...", - "icon": "https://portable-linux-apps.github.io/icons/hyperspace.png", - "arch": ["x86_64"] - }, - { - "packageName": "hypnotix", - "description": "Unofficial. An IPTV streaming application with support for live TV...", - "icon": "https://portable-linux-apps.github.io/icons/hypnotix.png", - "arch": ["x86_64"] - }, - { - "packageName": "i3", - "description": "Unofficial, A tiling window manager for X11...", - "icon": "https://portable-linux-apps.github.io/icons/i3.png", - "arch": ["x86_64"] - }, - { - "packageName": "i3-auto-layout", - "description": "Automatic, optimal tiling for i3wm. Fork of dead version...", - "icon": "https://portable-linux-apps.github.io/icons/i3-auto-layout.png", - "arch": ["x86_64"] - }, - { - "packageName": "i3lock-color", - "description": "The world's most popular non-default computer lockscreen...", - "icon": "https://portable-linux-apps.github.io/icons/i3lock-color.png", - "arch": ["x86_64"] - }, - { - "packageName": "iagoncloudapp", - "description": "Iagon Cloud Application...", - "icon": "https://portable-linux-apps.github.io/icons/iagoncloudapp.png", - "arch": ["x86_64"] - }, - { - "packageName": "ibus-rime", - "description": "Zhongzhou Yun input method, ibus-rime in AppImage format...", - "icon": "https://portable-linux-apps.github.io/icons/ibus-rime.png", - "arch": ["x86_64"] - }, - { - "packageName": "icalingua++", - "description": "A client for QQ and more...", - "icon": "https://portable-linux-apps.github.io/icons/icalingua++.png", - "arch": ["x86_64"] - }, - { - "packageName": "icecat", - "description": "GNU IceCat is the GNU version of the Firefox web browser...", - "icon": "https://portable-linux-apps.github.io/icons/icecat.png", - "arch": ["x86_64"] - }, - { - "packageName": "icestudio", - "description": "A real gamechanger in the world of Open Source FPGAs...", - "icon": "https://portable-linux-apps.github.io/icons/icestudio.png", - "arch": ["x86_64"] - }, - { - "packageName": "id", - "description": "Print real and effective user and group IDs. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/id.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "identity", - "description": "Unofficial. Compare images and videos with one another to check for differences...", - "icon": "https://portable-linux-apps.github.io/icons/identity.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "idescriptor", - "description": "A free, open-source, and cross-platform iDevice management tool...", - "icon": "https://portable-linux-apps.github.io/icons/idescriptor.png", - "arch": ["x86_64"] - }, - { - "packageName": "igdm", - "description": "Desktop application for Instagram DMs...", - "icon": "https://portable-linux-apps.github.io/icons/igdm.png", - "arch": ["x86_64"] - }, - { - "packageName": "iheartradio-webapp", - "description": "Election WebApp for iHeartRadio...", - "icon": "https://portable-linux-apps.github.io/icons/iheartradio-webapp.png", - "arch": ["x86_64"] - }, - { - "packageName": "iloader", - "description": "User friendly sideloader...", - "icon": "https://portable-linux-apps.github.io/icons/iloader.png", - "arch": ["x86_64"] - }, - { - "packageName": "imagemagick-clang", - "description": "CLI to create, edit, compose, or convert digital images...", - "icon": "https://portable-linux-apps.github.io/icons/imagemagick-clang.png", - "arch": ["x86_64"] - }, - { - "packageName": "imagemagick-gcc", - "description": "CLI to create, edit, compose, or convert digital images...", - "icon": "https://portable-linux-apps.github.io/icons/imagemagick-gcc.png", - "arch": ["x86_64"] - }, - { - "packageName": "imagemosaicwall", - "description": "Create an image based on a bunch of other images...", - "icon": "https://portable-linux-apps.github.io/icons/imagemosaicwall.png", - "arch": ["x86_64"] - }, - { - "packageName": "imagine", - "description": "PNG/JPEG optimization...", - "icon": "https://portable-linux-apps.github.io/icons/imagine.png", - "arch": ["x86_64"] - }, - { - "packageName": "imapsyncclient", - "description": "An electron-vue project...", - "icon": "https://portable-linux-apps.github.io/icons/imapsyncclient.png", - "arch": ["x86_64"] - }, - { - "packageName": "imfile", - "description": "A full-featured download manager...", - "icon": "https://portable-linux-apps.github.io/icons/imfile.png", - "arch": ["x86_64"] - }, - { - "packageName": "imgbrd-grabber", - "description": "Very customizable imageboard/booru downloader...", - "icon": "https://portable-linux-apps.github.io/icons/imgbrd-grabber.png", - "arch": ["x86_64"] - }, - { - "packageName": "imgcat", - "description": "Display images and gifs in your terminal...", - "icon": "https://portable-linux-apps.github.io/icons/imgcat.png", - "arch": ["x86_64"] - }, - { - "packageName": "imhex", - "description": "A Hex Editor for Reverse Engineers and Programmers...", - "icon": "https://portable-linux-apps.github.io/icons/imhex.png", - "arch": ["x86_64"] - }, - { - "packageName": "impact", - "description": "Music Management and Playback...", - "icon": "https://portable-linux-apps.github.io/icons/impact.png", - "arch": ["x86_64"] - }, - { - "packageName": "impactor", - "description": "Feature rich iOS/tvOS sideloading application written in Rust. Formerly known as PlumeImpactor...", - "icon": "https://portable-linux-apps.github.io/icons/impactor.png", - "arch": ["x86_64"] - }, - { - "packageName": "implay", - "description": "A Cross-Platform Desktop Media Player, built on top of mpv and ImGui...", - "icon": "https://portable-linux-apps.github.io/icons/implay.png", - "arch": ["x86_64"] - }, - { - "packageName": "impposter", - "description": "Post to my own development blog...", - "icon": "https://portable-linux-apps.github.io/icons/impposter.png", - "arch": ["x86_64"] - }, - { - "packageName": "impression", - "description": "Unofficial. Simple USB image writer application...", - "icon": "https://portable-linux-apps.github.io/icons/impression.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "inboxer", - "description": "Simple client for Google Inbox...", - "icon": "https://portable-linux-apps.github.io/icons/inboxer.png", - "arch": ["x86_64"] - }, - { - "packageName": "infection-monkey", - "description": "An automated penetration test tool, security...", - "icon": "https://portable-linux-apps.github.io/icons/infection-monkey.png", - "arch": ["x86_64"] - }, - { - "packageName": "infinitex", - "description": "Editor for academics with cryptography...", - "icon": "https://portable-linux-apps.github.io/icons/infinitex.png", - "arch": ["x86_64"] - }, - { - "packageName": "infra-app", - "description": "Infra App for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/infra-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "inkdown", - "description": "A WYSIWYG Markdown editor, improve reading and editing experience and generate your Markdown files...", - "icon": "https://portable-linux-apps.github.io/icons/inkdown.png", - "arch": ["x86_64"] - }, - { - "packageName": "inkscape", - "description": "Unofficial. Vector-based drawing program and graphics editor for both artistic and technical illustrations. It can import and export various file formats, including SVG, AI, EPS, PDF, AutoCAD, PS and PNG...", - "icon": "https://portable-linux-apps.github.io/icons/inkscape.png", - "arch": ["x86_64"] - }, - { - "packageName": "innerbreeze", - "description": "Guided breathing meditation app based on the Wim Hof breathing method...", - "icon": "https://portable-linux-apps.github.io/icons/innerbreeze.png", - "arch": ["x86_64"] - }, - { - "packageName": "innoextract", - "description": "Unofficial, a tool to extract installers created by Inno Setup...", - "icon": "https://portable-linux-apps.github.io/icons/innoextract.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "insight", - "description": "The GUI front-end of GDB with Tcl/Tk...", - "icon": "https://portable-linux-apps.github.io/icons/insight.png", - "arch": ["x86_64"] - }, - { - "packageName": "insomnia", - "description": "API client for GraphQL, REST, WebSockets and gRPC...", - "icon": "https://portable-linux-apps.github.io/icons/insomnia.png", - "arch": ["x86_64"] - }, - { - "packageName": "insomnium", - "description": "A local API testing tool privacy-focused, fork of Kong/insomnia...", - "icon": "https://portable-linux-apps.github.io/icons/insomnium.png", - "arch": ["x86_64"] - }, - { - "packageName": "install", - "description": "Copy files and set attributes. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/install.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "instead", - "description": "Simple Text Adventures Interpreter...", - "icon": "https://portable-linux-apps.github.io/icons/instead.png", - "arch": ["x86_64"] - }, - { - "packageName": "international-doom", - "description": "Small, functional and simple source ports, created with help, efforts and bits of code from people around the world...", - "icon": "https://portable-linux-apps.github.io/icons/international-doom.png", - "arch": ["x86_64"] - }, - { - "packageName": "internxt-drive", - "description": "Electron React Boilerplate uses Electron and React...", - "icon": "https://portable-linux-apps.github.io/icons/internxt-drive.png", - "arch": ["x86_64"] - }, - { - "packageName": "interstellar", - "description": "An app for Mbin/Lemmy/PieFed, connecting you to the fediverse...", - "icon": "https://portable-linux-apps.github.io/icons/interstellar.png", - "arch": ["x86_64"] - }, - { - "packageName": "intiface", - "description": "Desktop Intiface Application...", - "icon": "https://portable-linux-apps.github.io/icons/intiface.png", - "arch": ["x86_64"] - }, - { - "packageName": "invoice-generator", - "description": "Invoice Generator in Electron...", - "icon": "https://portable-linux-apps.github.io/icons/invoice-generator.png", - "arch": ["x86_64"] - }, - { - "packageName": "inxi", - "description": "A full featured CLI system information tool...", - "icon": "https://portable-linux-apps.github.io/icons/inxi.png", - "arch": ["x86_64"] - }, - { - "packageName": "ioquake3", - "description": "Unofficial, the de-facto OSS Quake 3 distribution...", - "icon": "https://portable-linux-apps.github.io/icons/ioquake3.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "iota1k", - "description": "IOTA based messenging app...", - "icon": "https://portable-linux-apps.github.io/icons/iota1k.png", - "arch": ["x86_64"] - }, - { - "packageName": "ipfs-desktop", - "description": "An unobtrusive and user-friendly app for IPFS on Linux...", - "icon": "https://portable-linux-apps.github.io/icons/ipfs-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "iptracker", - "description": "Desktop tool to keep track of your IP address and update you when it changes...", - "icon": "https://portable-linux-apps.github.io/icons/iptracker.png", - "arch": ["x86_64"] - }, - { - "packageName": "iptvnator", - "description": "IPTV player application...", - "icon": "https://portable-linux-apps.github.io/icons/iptvnator.png", - "arch": ["x86_64"] - }, - { - "packageName": "iqpuzzle", - "description": "A challenging pentomino puzzle...", - "icon": "https://portable-linux-apps.github.io/icons/iqpuzzle.png", - "arch": ["x86_64"] - }, - { - "packageName": "irccloud-desktop", - "description": "IRCCloud Desktop Client...", - "icon": "https://portable-linux-apps.github.io/icons/irccloud-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "ireader", - "description": "Privacy-focused, open source novel reader app...", - "icon": "https://portable-linux-apps.github.io/icons/ireader.png", - "arch": ["x86_64"] - }, - { - "packageName": "iris", - "description": "Sony PlayStation 2 games emulator for Windows, Linux and macOS...", - "icon": "https://portable-linux-apps.github.io/icons/iris.png", - "arch": ["x86_64"] - }, - { - "packageName": "iris-enhanced", - "description": "Unofficial, Sony PlayStation 2 emulator...", - "icon": "https://portable-linux-apps.github.io/icons/iris-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ironwail", - "description": "High-performance QuakeSpasm fork QuakeSpasm. A modern, cross-platform Quake game engine based on FitzQuake...", - "icon": "https://portable-linux-apps.github.io/icons/ironwail.png", - "arch": ["x86_64"] - }, - { - "packageName": "irpf2025", - "description": "Appimage não oficial do IRPF2025, declare seu imposto de renda (Ano-calendário 2024)...", - "icon": "https://portable-linux-apps.github.io/icons/irpf2025.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "irpf2026", - "description": "Appimage não oficial do IRPF2026, declare seu imposto de renda (Ano-calendário 2025)...", - "icon": "https://portable-linux-apps.github.io/icons/irpf2026.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "irscrutinizer", - "description": "Capture/generate/analyze/import/export infrared signals...", - "icon": "https://portable-linux-apps.github.io/icons/irscrutinizer.png", - "arch": ["x86_64"] - }, - { - "packageName": "isd", - "description": "Isd (interactive systemd) – a better way to work with systemd units...", - "icon": "https://portable-linux-apps.github.io/icons/isd.png", - "arch": ["x86_64"] - }, - { - "packageName": "isle-editor", - "description": "Editor for Integrated Statistics Learning Environment lessons...", - "icon": "https://portable-linux-apps.github.io/icons/isle-editor.png", - "arch": ["x86_64"] - }, - { - "packageName": "isle-portable", - "description": "Unofficial, a portable version of LEGO Island (1997)...", - "icon": "https://portable-linux-apps.github.io/icons/isle-portable.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "isle-portable-enhanced", - "description": "Unofficial, a portable version of LEGO Island (1997)...", - "icon": "https://portable-linux-apps.github.io/icons/isle-portable-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "isoimagewriter", - "description": "Write an ISO Image to a USB Disk. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/isoimagewriter.png", - "arch": ["x86_64"] - }, - { - "packageName": "isolate", - "description": "Lightweight image browser...", - "icon": "https://portable-linux-apps.github.io/icons/isolate.png", - "arch": ["x86_64"] - }, - { - "packageName": "itch.io", - "description": "A simple way to find and share indie games online for free...", - "icon": "https://portable-linux-apps.github.io/icons/itch.io.png", - "arch": ["x86_64"] - }, - { - "packageName": "itgmania", - "description": "Unofficial, a fork of StepMania 5.1, an advanced cross-platform rhythm game for home and arcade use...", - "icon": "https://portable-linux-apps.github.io/icons/itgmania.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "itr2025", - "description": "Appimage não oficial do ITR2025, declare seu imposto dos seus imóveis rurais (Ano-calendário 2025)...", - "icon": "https://portable-linux-apps.github.io/icons/itr2025.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "itusb1-manager", - "description": "Control the ITUSB1 USB Test Switch...", - "icon": "https://portable-linux-apps.github.io/icons/itusb1-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "jabref", - "description": "Graphical Java application for managing BibTeX and biblatex (.bib) databases...", - "icon": "https://portable-linux-apps.github.io/icons/jabref.png", - "arch": ["x86_64"] - }, - { - "packageName": "jag", - "description": "Program for telemetry veiwing...", - "icon": "https://portable-linux-apps.github.io/icons/jag.png", - "arch": ["x86_64"] - }, - { - "packageName": "james", - "description": "HTTP/HTTPS proxy built in Electron and React...", - "icon": "https://portable-linux-apps.github.io/icons/james.png", - "arch": ["x86_64"] - }, - { - "packageName": "jan", - "description": "FOSS Alternative to ChatGPT that runs 100% offline on your computer...", - "icon": "https://portable-linux-apps.github.io/icons/jan.png", - "arch": ["x86_64"] - }, - { - "packageName": "janice", - "description": "A desktop app for viewing large JSON files...", - "icon": "https://portable-linux-apps.github.io/icons/janice.png", - "arch": ["x86_64"] - }, - { - "packageName": "janus", - "description": "Simple text editor...", - "icon": "https://portable-linux-apps.github.io/icons/janus.png", - "arch": ["x86_64"] - }, - { - "packageName": "jazz2", - "description": "Open-source reimplementation of Jazz Jackrabbit 2...", - "icon": "https://portable-linux-apps.github.io/icons/jazz2.png", - "arch": ["x86_64"] - }, - { - "packageName": "jdappstreamedit", - "description": "A graphical Program to create and edit AppStream files...", - "icon": "https://portable-linux-apps.github.io/icons/jdappstreamedit.png", - "arch": ["x86_64"] - }, - { - "packageName": "jddesktopentryedit", - "description": "A graphical Program to create and edit Desktop Entries...", - "icon": "https://portable-linux-apps.github.io/icons/jddesktopentryedit.png", - "arch": ["x86_64"] - }, - { - "packageName": "jdminecraftlauncher", - "description": "Unofficial classic styled Minecraft Launcher...", - "icon": "https://portable-linux-apps.github.io/icons/jdminecraftlauncher.png", - "arch": ["x86_64"] - }, - { - "packageName": "jdmrpackinstaller", - "description": "Install Modrinth modpacks...", - "icon": "https://portable-linux-apps.github.io/icons/jdmrpackinstaller.png", - "arch": ["x86_64"] - }, - { - "packageName": "jdnbtexplorer", - "description": "A Editor for Minecraft NBT files...", - "icon": "https://portable-linux-apps.github.io/icons/jdnbtexplorer.png", - "arch": ["x86_64"] - }, - { - "packageName": "jdownloader2", - "description": "JDownloader is a free download management tool with a huge community that makes downloading as easy and fast as it should be...", - "icon": "https://portable-linux-apps.github.io/icons/jdownloader2.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "jdreplace", - "description": "With jdReplace you can replace a text in all files of a directory...", - "icon": "https://portable-linux-apps.github.io/icons/jdreplace.png", - "arch": ["x86_64"] - }, - { - "packageName": "jdtextedit", - "description": "jdTextEdit is a powerful texteditor with a lot of features...", - "icon": "https://portable-linux-apps.github.io/icons/jdtextedit.png", - "arch": ["x86_64"] - }, - { - "packageName": "jellyamp", - "description": "A client for listening to music from a Jellyfin server...", - "icon": "https://portable-linux-apps.github.io/icons/jellyamp.png", - "arch": ["x86_64"] - }, - { - "packageName": "jellyfin", - "description": "Media player. Stream to any device from your own server...", - "icon": "https://portable-linux-apps.github.io/icons/jellyfin.png", - "arch": ["x86_64"] - }, - { - "packageName": "jexiftoolgui", - "description": "Java/Swing graphical frontend for ExifTool...", - "icon": "https://portable-linux-apps.github.io/icons/jexiftoolgui.png", - "arch": ["x86_64"] - }, - { - "packageName": "jfcord", - "description": "An Jellyfin rich presence client for Discord...", - "icon": "https://portable-linux-apps.github.io/icons/jfcord.png", - "arch": ["x86_64"] - }, - { - "packageName": "jgenesis", - "description": "Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (GUI)...", - "icon": "https://portable-linux-apps.github.io/icons/jgenesis.png", - "arch": ["x86_64"] - }, - { - "packageName": "jgenesis-cli", - "description": "Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (CLI)...", - "icon": "https://portable-linux-apps.github.io/icons/jgenesis-cli.png", - "arch": ["x86_64"] - }, - { - "packageName": "jgrasp", - "description": "An IDE with Visualizations for Improving Software Comprehensibility...", - "icon": "https://portable-linux-apps.github.io/icons/jgrasp.png", - "arch": ["x86_64"] - }, - { - "packageName": "jimud", - "description": "MUD client for ShadowMUD.com, based on webclient...", - "icon": "https://portable-linux-apps.github.io/icons/jimud.png", - "arch": ["x86_64"] - }, - { - "packageName": "jira-timer", - "description": "Menubar app for JIRA time logging...", - "icon": "https://portable-linux-apps.github.io/icons/jira-timer.png", - "arch": ["x86_64"] - }, - { - "packageName": "jitsi-meet", - "description": "Jitsi Meet Desktop App...", - "icon": "https://portable-linux-apps.github.io/icons/jitsi-meet.png", - "arch": ["x86_64"] - }, - { - "packageName": "jklubtv", - "description": "Chess Round Robin Tournament Manager...", - "icon": "https://portable-linux-apps.github.io/icons/jklubtv.png", - "arch": ["x86_64"] - }, - { - "packageName": "jless", - "description": "CLI JSON viewer designed for reading, exploring, and searching...", - "icon": "https://portable-linux-apps.github.io/icons/jless.png", - "arch": ["x86_64"] - }, - { - "packageName": "jnv", - "description": "Interactive JSON filter using jq...", - "icon": "https://portable-linux-apps.github.io/icons/jnv.png", - "arch": ["x86_64"] - }, - { - "packageName": "joaldesktop", - "description": "Electron application boilerplate...", - "icon": "https://portable-linux-apps.github.io/icons/joaldesktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "join", - "description": "Of two files on a common field. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/join.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "join-desktop", - "description": "A companion app for the Join website...", - "icon": "https://portable-linux-apps.github.io/icons/join-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "joplin", - "description": "Note and to-do application with synchronization capabilities...", - "icon": "https://portable-linux-apps.github.io/icons/joplin.png", - "arch": ["x86_64"] - }, - { - "packageName": "joplin-beta", - "description": "A cross-platform note taking and to-do app...", - "icon": "https://portable-linux-apps.github.io/icons/joplin-beta.png", - "arch": ["x86_64"] - }, - { - "packageName": "jottem", - "description": "A lean, low friction terminal app for managing markdown notes...", - "icon": "https://portable-linux-apps.github.io/icons/jottem.png", - "arch": ["x86_64"] - }, - { - "packageName": "journalv", - "description": "Journaling app for your days and dreams...", - "icon": "https://portable-linux-apps.github.io/icons/journalv.png", - "arch": ["x86_64"] - }, - { - "packageName": "joy2droidx", - "description": "Turn Android phones into virtual Xbox 360 controller...", - "icon": "https://portable-linux-apps.github.io/icons/joy2droidx.png", - "arch": ["x86_64"] - }, - { - "packageName": "jpg-glitch-electron", - "description": "Desktop app for glitching images...", - "icon": "https://portable-linux-apps.github.io/icons/jpg-glitch-electron.png", - "arch": ["x86_64"] - }, - { - "packageName": "jq", - "description": "Command-line JSON processor...", - "icon": "https://portable-linux-apps.github.io/icons/jq.png", - "arch": ["x86_64"] - }, - { - "packageName": "jqp", - "description": "A TUI playground to experiment with jq...", - "icon": "https://portable-linux-apps.github.io/icons/jqp.png", - "arch": ["x86_64"] - }, - { - "packageName": "jreleaser", - "description": "The quick way to release your project...", - "icon": "https://portable-linux-apps.github.io/icons/jreleaser.png", - "arch": ["x86_64"] - }, - { - "packageName": "jscad-desktop", - "description": "Jscad desktop application...", - "icon": "https://portable-linux-apps.github.io/icons/jscad-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "juggernaut", - "description": "Decentralized messaging and payments...", - "icon": "https://portable-linux-apps.github.io/icons/juggernaut.png", - "arch": ["x86_64"] - }, - { - "packageName": "julius", - "description": "An open source re-implementation of the Caesar III game...", - "icon": "https://portable-linux-apps.github.io/icons/julius.png", - "arch": ["x86_64"] - }, - { - "packageName": "jumble", - "description": "A user-friendly Nostr client for exploring relay feeds...", - "icon": "https://portable-linux-apps.github.io/icons/jumble.png", - "arch": ["x86_64"] - }, - { - "packageName": "junest", - "description": "Arch Linux based distro that runs rootless on any other Linux distro...", - "icon": "https://portable-linux-apps.github.io/icons/junest.png", - "arch": ["x86_64"] - }, - { - "packageName": "kade", - "description": "A desktop application for Q Methodology...", - "icon": "https://portable-linux-apps.github.io/icons/kade.png", - "arch": ["x86_64"] - }, - { - "packageName": "kadium", - "description": "App for staying ontop of YouTube channels' uploads...", - "icon": "https://portable-linux-apps.github.io/icons/kadium.png", - "arch": ["x86_64"] - }, - { - "packageName": "kaffeine", - "description": "Unofficial, Media player with support for digital television (DVB-C/S/S2/T, ATSC, CI/CAM)...", - "icon": "https://portable-linux-apps.github.io/icons/kaffeine.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "kage", - "description": "GUI for Metasploit Meterpreter and Session Handler...", - "icon": "https://portable-linux-apps.github.io/icons/kage.png", - "arch": ["x86_64"] - }, - { - "packageName": "kaidan", - "description": "A QtQuick Jabber client...", - "icon": "https://portable-linux-apps.github.io/icons/kaidan.png", - "arch": ["x86_64"] - }, - { - "packageName": "kajongg", - "description": "An ancient Chinese board game for 4 players. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kajongg.png", - "arch": ["x86_64"] - }, - { - "packageName": "kalba", - "description": "Sentence mining tool...", - "icon": "https://portable-linux-apps.github.io/icons/kalba.png", - "arch": ["x86_64"] - }, - { - "packageName": "kalc", - "description": "Complex numbers, 2d/3d graphing, arbitrary precision cli calculator...", - "icon": "https://portable-linux-apps.github.io/icons/kalc.png", - "arch": ["x86_64"] - }, - { - "packageName": "kalker", - "description": "Scientific calculator with math syntax for user-defined variables...", - "icon": "https://portable-linux-apps.github.io/icons/kalker.png", - "arch": ["x86_64"] - }, - { - "packageName": "kalm", - "description": "Teach you different breathing techniques. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/kalm.png", - "arch": ["x86_64"] - }, - { - "packageName": "kando", - "description": "The Cross-Platform Pie Menu...", - "icon": "https://portable-linux-apps.github.io/icons/kando.png", - "arch": ["x86_64"] - }, - { - "packageName": "kanji-dojo", - "description": "A multi-platform application for memorizing Japanese language...", - "icon": "https://portable-linux-apps.github.io/icons/kanji-dojo.png", - "arch": ["x86_64"] - }, - { - "packageName": "kanon", - "description": "Maturita GPJP designed for use with kanon web app...", - "icon": "https://portable-linux-apps.github.io/icons/kanon.png", - "arch": ["x86_64"] - }, - { - "packageName": "kanri", - "description": "Modern offline Kanban board app. Built with simplicity and user experience in mind...", - "icon": "https://portable-linux-apps.github.io/icons/kanri.png", - "arch": ["x86_64"] - }, - { - "packageName": "kapman", - "description": "Pac-Man clone. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kapman.png", - "arch": ["x86_64"] - }, - { - "packageName": "karbonized", - "description": "💫 Awesome Image Generator for Code Snippets & Mockups..", - "icon": "https://portable-linux-apps.github.io/icons/karbonized.png", - "arch": ["x86_64"] - }, - { - "packageName": "kardi", - "description": "Application for taking notes with capabilities to view all content from any device while keeping all data accessible by you only...", - "icon": "https://portable-linux-apps.github.io/icons/kardi.png", - "arch": ["x86_64"] - }, - { - "packageName": "kate", - "description": "A multi-document editor part of KDE. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/kate.png", - "arch": ["x86_64"] - }, - { - "packageName": "katomic", - "description": "Edu. game based around molecular geometry. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/katomic.png", - "arch": ["x86_64"] - }, - { - "packageName": "katvan", - "description": "A bare-bones editor for Typst files, with a bias for Right-to-Left editing...", - "icon": "https://portable-linux-apps.github.io/icons/katvan.png", - "arch": ["x86_64"] - }, - { - "packageName": "kbackup", - "description": "Back up your data. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/kbackup.png", - "arch": ["x86_64"] - }, - { - "packageName": "kblackbox", - "description": "A game of hide and seek. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kblackbox.png", - "arch": ["x86_64"] - }, - { - "packageName": "kblocks", - "description": "Classic Tetris / falling blocks game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kblocks.png", - "arch": ["x86_64"] - }, - { - "packageName": "kboard", - "description": "Terminal game to practice keyboard typing...", - "icon": "https://portable-linux-apps.github.io/icons/kboard.png", - "arch": ["x86_64"] - }, - { - "packageName": "kbounce", - "description": "Fill the field game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kbounce.png", - "arch": ["x86_64"] - }, - { - "packageName": "kbreakout", - "description": "Destroy bricks without losing the ball. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kbreakout.png", - "arch": ["x86_64"] - }, - { - "packageName": "kcalc", - "description": "Scientific Calculator. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/kcalc.png", - "arch": ["x86_64"] - }, - { - "packageName": "kcc", - "description": "KCC (Kindle Comic Converter) is a comic and manga converter for ebook readers...", - "icon": "https://portable-linux-apps.github.io/icons/kcc.png", - "arch": ["x86_64"] - }, - { - "packageName": "kcharselect", - "description": "Character Selector. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/kcharselect.png", - "arch": ["x86_64"] - }, - { - "packageName": "kclock", - "description": "A universal clock application. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/kclock.png", - "arch": ["x86_64"] - }, - { - "packageName": "kcov", - "description": "Unofficial, An AppImage of Kcov code coverage tool...", - "icon": "https://portable-linux-apps.github.io/icons/kcov.png", - "arch": ["x86_64"] - }, - { - "packageName": "kdebugsettings", - "description": "Edits displayed QLoggingCategory. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/kdebugsettings.png", - "arch": ["x86_64"] - }, - { - "packageName": "kdeconnect", - "description": "Unofficial, A project that enables all your Android devices to communicate with each other...", - "icon": "https://portable-linux-apps.github.io/icons/kdeconnect.png", - "arch": ["x86_64"] - }, - { - "packageName": "kdenlive", - "description": "A powerful Video Editor provided by KDE...", - "icon": "https://portable-linux-apps.github.io/icons/kdenlive.png", - "arch": ["x86_64"] - }, - { - "packageName": "kdenlive-daily", - "description": "A powerful Video Editor provided by KDE (daily builds)...", - "icon": "https://portable-linux-apps.github.io/icons/kdenlive-daily.png", - "arch": ["x86_64"] - }, - { - "packageName": "kdenlive-enhanced", - "description": "Unofficial AppImage of Kdenlive Video Editor which is able to work on any linux distro...", - "icon": "https://portable-linux-apps.github.io/icons/kdenlive-enhanced.png", - "arch": ["x86_64"] - }, - { - "packageName": "kdf", - "description": "view Disk Usage. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/kdf.png", - "arch": ["x86_64"] - }, - { - "packageName": "kdialog", - "description": "a dialog utility. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/kdialog.png", - "arch": ["x86_64"] - }, - { - "packageName": "kdiamond", - "description": "Diamond game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kdiamond.png", - "arch": ["x86_64"] - }, - { - "packageName": "kdiskmark", - "description": "A simple open-source disk benchmark tool for Linux distros...", - "icon": "https://portable-linux-apps.github.io/icons/kdiskmark.png", - "arch": ["x86_64"] - }, - { - "packageName": "keditbookmarks", - "description": "Bookmarks editor. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/keditbookmarks.png", - "arch": ["x86_64"] - }, - { - "packageName": "keepassxc", - "description": "Port of the Windows application “Keepass Password Safe”...", - "icon": "https://portable-linux-apps.github.io/icons/keepassxc.png", - "arch": ["x86_64"] - }, - { - "packageName": "keepassxc-devel", - "description": "Port of the Windows application “Keepass Password Safe”, dev-edition...", - "icon": "https://portable-linux-apps.github.io/icons/keepassxc-devel.png", - "arch": ["x86_64"] - }, - { - "packageName": "keepkey-desktop", - "description": "An all-in-one suite for using your KeepKey hardware wallet...", - "icon": "https://portable-linux-apps.github.io/icons/keepkey-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "keeweb", - "description": "Free cross-platform password manager compatible with KeePass...", - "icon": "https://portable-linux-apps.github.io/icons/keeweb.png", - "arch": ["x86_64"] - }, - { - "packageName": "kega-fusion", - "description": "Unofficial, an emulator of classic Sega consoles, including SMS/GG, Genesis/Megadrive and add-ons...", - "icon": "https://portable-linux-apps.github.io/icons/kega-fusion.png", - "arch": ["x86_64"] - }, - { - "packageName": "keibo-moneytracker-x86-64", - "description": "Track your income and expenses easily...", - "icon": "https://portable-linux-apps.github.io/icons/keibo-moneytracker-x86-64.png", - "arch": ["x86_64"] - }, - { - "packageName": "kettleclient", - "description": "Client for Kettle REST service...", - "icon": "https://portable-linux-apps.github.io/icons/kettleclient.png", - "arch": ["x86_64"] - }, - { - "packageName": "kevedit", - "description": "ZZT Editor...", - "icon": "https://portable-linux-apps.github.io/icons/kevedit.png", - "arch": ["x86_64"] - }, - { - "packageName": "keyboardclient", - "description": "Keyboard Settings Client...", - "icon": "https://portable-linux-apps.github.io/icons/keyboardclient.png", - "arch": ["x86_64"] - }, - { - "packageName": "keycombiner", - "description": "Learn exactly the keyboard shortcuts you need...", - "icon": "https://portable-linux-apps.github.io/icons/keycombiner.png", - "arch": ["x86_64"] - }, - { - "packageName": "keymanager", - "description": "One-stop certificate app and certificate key management...", - "icon": "https://portable-linux-apps.github.io/icons/keymanager.png", - "arch": ["x86_64"] - }, - { - "packageName": "keypunch", - "description": "Unofficial, keyboard writing speed test application. ..", - "icon": "https://portable-linux-apps.github.io/icons/keypunch.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "keyrier-json", - "description": "A CLI/library/webapp to perfom SQL queries on JSON & CSV...", - "icon": "https://portable-linux-apps.github.io/icons/keyrier-json.png", - "arch": ["x86_64"] - }, - { - "packageName": "keys", - "description": "Key management, signing and encryption...", - "icon": "https://portable-linux-apps.github.io/icons/keys.png", - "arch": ["x86_64"] - }, - { - "packageName": "keysmith", - "description": "Generates tokens for your two-factor logins. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/keysmith.png", - "arch": ["x86_64"] - }, - { - "packageName": "kfind", - "description": "A search tool. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/kfind.png", - "arch": ["x86_64"] - }, - { - "packageName": "kfourinline", - "description": "4 in row game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kfourinline.png", - "arch": ["x86_64"] - }, - { - "packageName": "kftray", - "description": "Kubectl port-forward manager and reverse tunnel (ngrok-like) for exposing local services publicly, with TLS termination, HTTP traffic inspection, UDP forwarding, multi-hop proxy routing through k8s clusters, stateful config via filesystem or git...", - "icon": "https://portable-linux-apps.github.io/icons/kftray.png", - "arch": ["x86_64"] - }, - { - "packageName": "kgoldrunner", - "description": "A game with a runner and gold. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kgoldrunner.png", - "arch": ["x86_64"] - }, - { - "packageName": "kgpg", - "description": "A GnuPG frontend. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/kgpg.png", - "arch": ["x86_64"] - }, - { - "packageName": "kibi", - "description": "A text editor in ≤1024 lines of code, written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/kibi.png", - "arch": ["x86_64"] - }, - { - "packageName": "kicad", - "description": "A free software suite for electronic design automation (EDA) to facilitates the design and simulation of electronic hardware for PCB manufacturing. It features an integrated environment for schematic capture, PCB layout, manufacturing file viewing, ngspice-provided SPICE simulation, and engineering calculation. Create bill of materials, artwork, Gerber files, and 3D models of the PCB and its components...", - "icon": "https://portable-linux-apps.github.io/icons/kicad.png", - "arch": ["x86_64"] - }, - { - "packageName": "kid3", - "description": "Unofficial, efficient audio tagger that supports a large variety of file formats...", - "icon": "https://portable-linux-apps.github.io/icons/kid3.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "kigo", - "description": "Go strategic board game for two players. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kigo.png", - "arch": ["x86_64"] - }, - { - "packageName": "kiibohd-configurator", - "description": "Configuration utility for Input Club keyboards...", - "icon": "https://portable-linux-apps.github.io/icons/kiibohd-configurator.png", - "arch": ["x86_64"] - }, - { - "packageName": "kiku", - "description": "Play music from youtube on desktop. Supports local api, invidious and piped as source...", - "icon": "https://portable-linux-apps.github.io/icons/kiku.png", - "arch": ["x86_64"] - }, - { - "packageName": "kill", - "description": "Terminate a process. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/kill.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "killall", - "description": "Kill processes by name. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/killall.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "killbots", - "description": "Port of the classic console game Robots. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/killbots.png", - "arch": ["x86_64"] - }, - { - "packageName": "kimitzu-client", - "description": "Kimitzu Client...", - "icon": "https://portable-linux-apps.github.io/icons/kimitzu-client.png", - "arch": ["x86_64"] - }, - { - "packageName": "kindling-cli", - "description": "Kindle toolkit for dictionaries, books, comics...", - "icon": "https://portable-linux-apps.github.io/icons/kindling-cli.png", - "arch": ["x86_64"] - }, - { - "packageName": "kinopio", - "description": "Thinking canvas for new ideas and hard problems...", - "icon": "https://portable-linux-apps.github.io/icons/kinopio.png", - "arch": ["x86_64"] - }, - { - "packageName": "kiri-moto", - "description": "Browser-based Slicer for 3D Printing, CAM, Laser and mesh editor...", - "icon": "https://portable-linux-apps.github.io/icons/kiri-moto.png", - "arch": ["x86_64"] - }, - { - "packageName": "kiriki", - "description": "A dice game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kiriki.png", - "arch": ["x86_64"] - }, - { - "packageName": "kitsas", - "description": "Finnish bookkeeping software for small organizations...", - "icon": "https://portable-linux-apps.github.io/icons/kitsas.png", - "arch": ["x86_64"] - }, - { - "packageName": "kitshn", - "description": "An unofficial client for the self-hosted Tandoor recipe management software...", - "icon": "https://portable-linux-apps.github.io/icons/kitshn.png", - "arch": ["x86_64"] - }, - { - "packageName": "kitty", - "description": "Cross-platform, fast, feature-rich, GPU based terminal (also provides \"kitten\" CLI utility)...", - "icon": "https://portable-linux-apps.github.io/icons/kitty.png", - "arch": ["x86_64"] - }, - { - "packageName": "kitupiikki", - "description": "Bookkeeping software for small organizations...", - "icon": "https://portable-linux-apps.github.io/icons/kitupiikki.png", - "arch": ["x86_64"] - }, - { - "packageName": "kiwix", - "description": "An offline reader for Web content, primarily designed to make Wikipedia available offline. It reads archives in the ZIM file format, a highly compressed open format with additional metadata...", - "icon": "https://portable-linux-apps.github.io/icons/kiwix.png", - "arch": ["x86_64"] - }, - { - "packageName": "kjumpingcube", - "description": "A game of dices on a board. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kjumpingcube.png", - "arch": ["x86_64"] - }, - { - "packageName": "klickety", - "description": "Color matching like SameGame. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/klickety.png", - "arch": ["x86_64"] - }, - { - "packageName": "klines", - "description": "Inspired by well known game of Color Lines. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/klines.png", - "arch": ["x86_64"] - }, - { - "packageName": "klogg", - "description": "A smart interactive log explorer...", - "icon": "https://portable-linux-apps.github.io/icons/klogg.png", - "arch": ["x86_64"] - }, - { - "packageName": "km-recplayer", - "description": "Recorder and player of keyboard and mouse input (HID)..", - "icon": "https://portable-linux-apps.github.io/icons/km-recplayer.png", - "arch": ["x86_64"] - }, - { - "packageName": "kmahjongg", - "description": "Mahjongg game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kmahjongg.png", - "arch": ["x86_64"] - }, - { - "packageName": "kmines", - "description": "Classic mine game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kmines.png", - "arch": ["x86_64"] - }, - { - "packageName": "kmon", - "description": "Linux Kernel Manager and Activity Monitor...", - "icon": "https://portable-linux-apps.github.io/icons/kmon.png", - "arch": ["x86_64"] - }, - { - "packageName": "kmonad", - "description": "An advanced keyboard manager...", - "icon": "https://portable-linux-apps.github.io/icons/kmonad.png", - "arch": ["x86_64"] - }, - { - "packageName": "kmymoney", - "description": "KMyMoney is a cross-platform personal finance manager build on KDE frameworks technologies for your desktop and notebook environment...", - "icon": "https://portable-linux-apps.github.io/icons/kmymoney.png", - "arch": ["x86_64"] - }, - { - "packageName": "knavalbattle", - "description": "Battle Ship game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/knavalbattle.png", - "arch": ["x86_64"] - }, - { - "packageName": "knetwalk", - "description": "Net constructing game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/knetwalk.png", - "arch": ["x86_64"] - }, - { - "packageName": "knights", - "description": "Unofficial, KDE's chess game frontend...", - "icon": "https://portable-linux-apps.github.io/icons/knights.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "knowte", - "description": "Note taking...", - "icon": "https://portable-linux-apps.github.io/icons/knowte.png", - "arch": ["x86_64"] - }, - { - "packageName": "koboldcpp", - "description": "Simple 1-file way to run GGML and GGUF models with KoboldAI's UI...", - "icon": "https://portable-linux-apps.github.io/icons/koboldcpp.png", - "arch": ["x86_64"] - }, - { - "packageName": "koishi-desktop", - "description": "Launch Koishi from your desktop...", - "icon": "https://portable-linux-apps.github.io/icons/koishi-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "kolf", - "description": "Mini Golf game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kolf.png", - "arch": ["x86_64"] - }, - { - "packageName": "kollision", - "description": "Dodge red balls in the field. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kollision.png", - "arch": ["x86_64"] - }, - { - "packageName": "kolourpaint", - "description": "Unofficial AppImage of KolourPaint...", - "icon": "https://portable-linux-apps.github.io/icons/kolourpaint.png", - "arch": ["x86_64"] - }, - { - "packageName": "kondo", - "description": "Cleans dependencies and build artifacts from your projects...", - "icon": "https://portable-linux-apps.github.io/icons/kondo.png", - "arch": ["x86_64"] - }, - { - "packageName": "kongress", - "description": "A companion application for conferences. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/kongress.png", - "arch": ["x86_64"] - }, - { - "packageName": "konquest", - "description": "Game of planets. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/konquest.png", - "arch": ["x86_64"] - }, - { - "packageName": "koodo-reader", - "description": "Modern ebook manager and reader with sync & backup capacities...", - "icon": "https://portable-linux-apps.github.io/icons/koodo-reader.png", - "arch": ["x86_64"] - }, - { - "packageName": "kopia", - "description": "Cross-platform backup tool...", - "icon": "https://portable-linux-apps.github.io/icons/kopia.png", - "arch": ["x86_64"] - }, - { - "packageName": "koreader", - "description": "A document viewer for E Ink devices. Supported fileformats include EPUB, PDF, DjVu, XPS, CBT, CBZ, FB2, PDB, TXT, HTML, RTF, CHM, DOC, MOBI and ZIP files. It’s available for Kindle, Kobo, PocketBook, Android and desktop Linux...", - "icon": "https://portable-linux-apps.github.io/icons/koreader.png", - "arch": ["x86_64"] - }, - { - "packageName": "koreader-nightly", - "description": "A document viewer for E Ink devices. Supported fileformats include EPUB, PDF, DjVu, XPS, CBT, CBZ, FB2, PDB, TXT, HTML, RTF, CHM, DOC, MOBI and ZIP files. It’s available for Kindle, Kobo, PocketBook, Android and desktop Linux. Nightly build...", - "icon": "https://portable-linux-apps.github.io/icons/koreader-nightly.png", - "arch": ["x86_64"] - }, - { - "packageName": "kpat", - "description": "Klondike, Spider, Free Cell and other Solitaire. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kpat.png", - "arch": ["x86_64"] - }, - { - "packageName": "krecorder", - "description": "An audio recording application. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/krecorder.png", - "arch": ["x86_64"] - }, - { - "packageName": "kreversi", - "description": "Reversi game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kreversi.png", - "arch": ["x86_64"] - }, - { - "packageName": "krita", - "description": "A professional FREE and open source painting program, graphics...", - "icon": "https://portable-linux-apps.github.io/icons/krita.png", - "arch": ["x86_64"] - }, - { - "packageName": "krita-devel", - "description": "A professional FREE open source painting program, dev-edition...", - "icon": "https://portable-linux-apps.github.io/icons/krita-devel.png", - "arch": ["x86_64"] - }, - { - "packageName": "krokiet", - "description": "App to find duplicates, empty folders, similar images etc. The successor of czkawka...", - "icon": "https://portable-linux-apps.github.io/icons/krokiet.png", - "arch": ["x86_64"] - }, - { - "packageName": "kronos", - "description": "Unofficial, Sega Saturn emulator...", - "icon": "https://portable-linux-apps.github.io/icons/kronos.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "krunker", - "description": "Krunker (.io) is a fast-paced first-person shooter game with pixel graphics...", - "icon": "https://portable-linux-apps.github.io/icons/krunker.png", - "arch": ["x86_64"] - }, - { - "packageName": "kshisen", - "description": "A game similar to Mahjongg. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kshisen.png", - "arch": ["x86_64"] - }, - { - "packageName": "ksirk", - "description": "A strategy board game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/ksirk.png", - "arch": ["x86_64"] - }, - { - "packageName": "ksnakeduel", - "description": "A snake race game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/ksnakeduel.png", - "arch": ["x86_64"] - }, - { - "packageName": "ksnip", - "description": "Screenshot tool inspired by Windows Snipping Tool and made with Qt...", - "icon": "https://portable-linux-apps.github.io/icons/ksnip.png", - "arch": ["x86_64"] - }, - { - "packageName": "kspaceduel", - "description": "Battleship with satellites in the space. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kspaceduel.png", - "arch": ["x86_64"] - }, - { - "packageName": "ksquares", - "description": "Win with most number of completed squares. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/ksquares.png", - "arch": ["x86_64"] - }, - { - "packageName": "kstars", - "description": "Unofficial AppImage of KStars...", - "icon": "https://portable-linux-apps.github.io/icons/kstars.png", - "arch": ["x86_64"] - }, - { - "packageName": "ksudoku", - "description": "Sudoku game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/ksudoku.png", - "arch": ["x86_64"] - }, - { - "packageName": "kteatime", - "description": "A handy timer for steeping tea. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/kteatime.png", - "arch": ["x86_64"] - }, - { - "packageName": "ktimer", - "description": "Countdown Launcher. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/ktimer.png", - "arch": ["x86_64"] - }, - { - "packageName": "ktorrent", - "description": "Unofficial AppImage of KTorrent...", - "icon": "https://portable-linux-apps.github.io/icons/ktorrent.png", - "arch": ["x86_64"] - }, - { - "packageName": "ktrip", - "description": "KTrip helps you navigate in public transport. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/ktrip.png", - "arch": ["x86_64"] - }, - { - "packageName": "ktuberling", - "description": "Simple Mr. Potato game for children. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/ktuberling.png", - "arch": ["x86_64"] - }, - { - "packageName": "kubeman", - "description": "The Hero that Kubernetes deserves...", - "icon": "https://portable-linux-apps.github.io/icons/kubeman.png", - "arch": ["x86_64"] - }, - { - "packageName": "kubenav", - "description": "The navigator for your Kubernetes clusters right in your pocket...", - "icon": "https://portable-linux-apps.github.io/icons/kubenav.png", - "arch": ["x86_64"] - }, - { - "packageName": "kubrick", - "description": "A logic game based on Rubik's Cube. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/kubrick.png", - "arch": ["x86_64"] - }, - { - "packageName": "kunkun", - "description": "An open source, cross-platform, extensible app launcher...", - "icon": "https://portable-linux-apps.github.io/icons/kunkun.png", - "arch": ["x86_64"] - }, - { - "packageName": "kure", - "description": "CLI password manager with sessions...", - "icon": "https://portable-linux-apps.github.io/icons/kure.png", - "arch": ["x86_64"] - }, - { - "packageName": "kuro", - "description": "An elegant Microsoft ToDo desktop client for Linux, a fork of Ao...", - "icon": "https://portable-linux-apps.github.io/icons/kuro.png", - "arch": ["x86_64"] - }, - { - "packageName": "kwave", - "description": "A sound & audio editor designed for the KDE Desktop Environment...", - "icon": "https://portable-linux-apps.github.io/icons/kwave.png", - "arch": ["x86_64"] - }, - { - "packageName": "kweather", - "description": "A convergent weather application. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/kweather.png", - "arch": ["x86_64"] - }, - { - "packageName": "kwrite", - "description": "KWrite is a text editor by KDE. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/kwrite.png", - "arch": ["x86_64"] - }, - { - "packageName": "labplot", - "description": "Data Visualization and Analysis software accessible to everyone and trusted by professionals...", - "icon": "https://portable-linux-apps.github.io/icons/labplot.png", - "arch": ["x86_64"] - }, - { - "packageName": "ladybird", - "description": "A truly independent web browser, using a novel engine based on web standards...", - "icon": "https://portable-linux-apps.github.io/icons/ladybird.png", - "arch": ["x86_64"] - }, - { - "packageName": "lagrange", - "description": "Lagrange is a cross-platform client for browsing Geminispace (GUI Version)...", - "icon": "https://portable-linux-apps.github.io/icons/lagrange.png", - "arch": ["x86_64"] - }, - { - "packageName": "laidout", - "description": "Laidout, desktop publishing software..", - "icon": "https://portable-linux-apps.github.io/icons/laidout.png", - "arch": ["x86_64"] - }, - { - "packageName": "laigter", - "description": "Tool to generate normal/specular/occlussion/parallax 2D maps...", - "icon": "https://portable-linux-apps.github.io/icons/laigter.png", - "arch": ["x86_64"] - }, - { - "packageName": "lambda-lantern", - "description": "A 3D game about functional programming patterns...", - "icon": "https://portable-linux-apps.github.io/icons/lambda-lantern.png", - "arch": ["x86_64"] - }, - { - "packageName": "lan-mouse", - "description": "Mouse & keyboard sharing via LAN...", - "icon": "https://portable-linux-apps.github.io/icons/lan-mouse.png", - "arch": ["x86_64"] - }, - { - "packageName": "landrop", - "description": "Drop any files to any devices on your LAN...", - "icon": "https://portable-linux-apps.github.io/icons/landrop.png", - "arch": ["x86_64"] - }, - { - "packageName": "lanshare", - "description": "LAN file transfer app for any kind and size of files and folders...", - "icon": "https://portable-linux-apps.github.io/icons/lanshare.png", - "arch": ["x86_64"] - }, - { - "packageName": "lapce", - "description": "Lightning-fast and Powerful Code Editor written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/lapce.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "laravel-kit", - "description": "Easy Laravel application management...", - "icon": "https://portable-linux-apps.github.io/icons/laravel-kit.png", - "arch": ["x86_64"] - }, - { - "packageName": "launcher", - "description": "Generic application's launcher...", - "icon": "https://portable-linux-apps.github.io/icons/launcher.png", - "arch": ["x86_64"] - }, - { - "packageName": "lazpaint", - "description": "Cross-platform image editor with raster and vector layers similar to Paint.Net written in Lazarus (Free Pascal)...", - "icon": "https://portable-linux-apps.github.io/icons/lazpaint.png", - "arch": ["x86_64"] - }, - { - "packageName": "lazygit", - "description": "Simple terminal UI for git commands...", - "icon": "https://portable-linux-apps.github.io/icons/lazygit.png", - "arch": ["x86_64"] - }, - { - "packageName": "lazytyper", - "description": "LazyTyper desktop client (repackaged from the official AppImage, including built-in dependencies)...", - "icon": "https://portable-linux-apps.github.io/icons/lazytyper.png", - "arch": ["x86_64"] - }, - { - "packageName": "lba2-classic-community", - "description": "Unofficial, a community fork for evolving and modernizing LBA2 source port...", - "icon": "https://portable-linux-apps.github.io/icons/lba2-classic-community.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "lbry-desktop", - "description": "A browser and wallet for LBRY...", - "icon": "https://portable-linux-apps.github.io/icons/lbry-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "lcedit", - "description": "Editor, unknown...", - "icon": "https://portable-linux-apps.github.io/icons/lcedit.png", - "arch": ["x86_64"] - }, - { - "packageName": "ld", - "description": "Standalone Linker Compiler. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/ld.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ld.bfd", - "description": "The GNU linker with BFD libraries. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/ld.bfd.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ldtk", - "description": "Modern and efficient 2D level editor...", - "icon": "https://portable-linux-apps.github.io/icons/ldtk.png", - "arch": ["x86_64"] - }, - { - "packageName": "leaflet", - "description": "POSP official notes application, written in flutter, beautiful, fast and secure...", - "icon": "https://portable-linux-apps.github.io/icons/leaflet.png", - "arch": ["x86_64"] - }, - { - "packageName": "leapp", - "description": "The DevTool to access your cloud...", - "icon": "https://portable-linux-apps.github.io/icons/leapp.png", - "arch": ["x86_64"] - }, - { - "packageName": "led.custom.palette", - "description": "Design the lights on your Model01 with an ease...", - "icon": "https://portable-linux-apps.github.io/icons/led.custom.palette.png", - "arch": ["x86_64"] - }, - { - "packageName": "ledger-live-desktop", - "description": "Ledger Wallet crypto app. Secure your crypto assets such as Bitcoin, Ethereum, XRP, Monero, and more. Give yourself peace of mind by knowing that your cryptocurrencies are safe...", - "icon": "https://portable-linux-apps.github.io/icons/ledger-live-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "legcord", - "description": "Legcord is a custom client designed to enhance your Discord experience while keeping everything lightweight...", - "icon": "https://portable-linux-apps.github.io/icons/legcord.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "legendary-kingdoms", - "description": "Implementation of Legendary Kingdoms Gamebooks in C++...", - "icon": "https://portable-linux-apps.github.io/icons/legendary-kingdoms.png", - "arch": ["x86_64"] - }, - { - "packageName": "lemon", - "description": "A tiny judging environment for OI contest based on Project_LemonPlus...", - "icon": "https://portable-linux-apps.github.io/icons/lemon.png", - "arch": ["x86_64"] - }, - { - "packageName": "lens", - "description": "App you need to take control of your Kubernetes clusters...", - "icon": "https://portable-linux-apps.github.io/icons/lens.png", - "arch": ["x86_64"] - }, - { - "packageName": "leocad", - "description": "Create virtual LEGO models...", - "icon": "https://portable-linux-apps.github.io/icons/leocad.png", - "arch": ["x86_64"] - }, - { - "packageName": "leonflix", - "description": "Multi-platform desktop application for watching movies & TV shows...", - "icon": "https://portable-linux-apps.github.io/icons/leonflix.png", - "arch": ["x86_64"] - }, - { - "packageName": "lepton", - "description": "Democratizing Code Snippets Management...", - "icon": "https://portable-linux-apps.github.io/icons/lepton.png", - "arch": ["x86_64"] - }, - { - "packageName": "lescovex", - "description": "Lescovex decentralized exchange, wallet and contract issuer...", - "icon": "https://portable-linux-apps.github.io/icons/lescovex.png", - "arch": ["x86_64"] - }, - { - "packageName": "leshade", - "description": "An unofficial Reshade Installer for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/leshade.png", - "arch": ["x86_64"] - }, - { - "packageName": "less", - "description": "A terminal based program for viewing text files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/less.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "lets-bend", - "description": "Harmonica tuner for learning bending techniques with real-time visual feedback...", - "icon": "https://portable-linux-apps.github.io/icons/lets-bend.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "levior", - "description": "Converts web pages on-the-fly to the gemtext format...", - "icon": "https://portable-linux-apps.github.io/icons/levior.png", - "arch": ["x86_64"] - }, - { - "packageName": "lexido", - "description": "A terminal assistant, powered by Generative AI...", - "icon": "https://portable-linux-apps.github.io/icons/lexido.png", - "arch": ["x86_64"] - }, - { - "packageName": "lf", - "description": "lf, as in \"list files\" is a terminal file manager written in Go...", - "icon": "https://portable-linux-apps.github.io/icons/lf.png", - "arch": ["x86_64"] - }, - { - "packageName": "libassist", - "description": "Library Assistant...", - "icon": "https://portable-linux-apps.github.io/icons/libassist.png", - "arch": ["x86_64"] - }, - { - "packageName": "libation", - "description": "Unofficial, application for downloading and managing your Audible audiobooks...", - "icon": "https://portable-linux-apps.github.io/icons/libation.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "libertem", - "description": "Pixelated scanning transmission electron microscopy...", - "icon": "https://portable-linux-apps.github.io/icons/libertem.png", - "arch": ["x86_64"] - }, - { - "packageName": "librecad", - "description": "2D CAD program written in C++11 using the Qt framework...", - "icon": "https://portable-linux-apps.github.io/icons/librecad.png", - "arch": ["x86_64"] - }, - { - "packageName": "libreoffice", - "description": "Unofficial, LibreOffice is a private and powerful, free and open source office suite – the successor project to OpenOffice. It's compatible with Microsoft Office/365 files...", - "icon": "https://portable-linux-apps.github.io/icons/libreoffice.png", - "arch": ["x86_64"] - }, - { - "packageName": "librepcb", - "description": "Design Schematics and PCBs...", - "icon": "https://portable-linux-apps.github.io/icons/librepcb.png", - "arch": ["x86_64"] - }, - { - "packageName": "librescore", - "description": "The open source (GPLv3), serverless (IPFS-based), offline-first, and totally free alternative to musescore.com..", - "icon": "https://portable-linux-apps.github.io/icons/librescore.png", - "arch": ["x86_64"] - }, - { - "packageName": "libresprite", - "description": "Animated sprite editor & pixel art tool. Fork of the last GPLv2 commit of Aseprite...", - "icon": "https://portable-linux-apps.github.io/icons/libresprite.png", - "arch": ["x86_64"] - }, - { - "packageName": "librewolf", - "description": "Firefox-based Web Browser focused on privacy, security, freedom...", - "icon": "https://portable-linux-apps.github.io/icons/librewolf.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "lichtblick", - "description": "Lichtblick is an integrated visualization and diagnosis tool for robotics, available in your browser or as a desktop app on Linux, Windows, and macOS...", - "icon": "https://portable-linux-apps.github.io/icons/lichtblick.png", - "arch": ["x86_64"] - }, - { - "packageName": "lightning", - "description": "Lightning Wallet Application...", - "icon": "https://portable-linux-apps.github.io/icons/lightning.png", - "arch": ["x86_64"] - }, - { - "packageName": "lightning-peach-wallet", - "description": "Wallet for lightning network..", - "icon": "https://portable-linux-apps.github.io/icons/lightning-peach-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "lightzone", - "description": "Unofficial AppImage of LighZone...", - "icon": "https://portable-linux-apps.github.io/icons/lightzone.png", - "arch": ["x86_64"] - }, - { - "packageName": "liground", - "description": "A mordern Chess Variant Analysis GUI, game...", - "icon": "https://portable-linux-apps.github.io/icons/liground.png", - "arch": ["x86_64"] - }, - { - "packageName": "liketaskmanager", - "description": "Process/performances monitor, CPU, RAM, Disks and Network...", - "icon": "https://portable-linux-apps.github.io/icons/liketaskmanager.png", - "arch": ["x86_64"] - }, - { - "packageName": "linedancer", - "description": "Arcade game and entry for Ludum Dare 35...", - "icon": "https://portable-linux-apps.github.io/icons/linedancer.png", - "arch": ["x86_64"] - }, - { - "packageName": "lingueez", - "description": "Vocabulary trainer...", - "icon": "https://portable-linux-apps.github.io/icons/lingueez.png", - "arch": ["x86_64"] - }, - { - "packageName": "link", - "description": "Call the link function to create a link to a file. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/link.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "linked", - "description": "Daily journaling without distraction...", - "icon": "https://portable-linux-apps.github.io/icons/linked.png", - "arch": ["x86_64"] - }, - { - "packageName": "linkora", - "description": "Link organizer for Android and desktop with self-hosted sync...", - "icon": "https://portable-linux-apps.github.io/icons/linkora.png", - "arch": ["x86_64"] - }, - { - "packageName": "linphone", - "description": "A libre SIP client...", - "icon": "https://portable-linux-apps.github.io/icons/linphone.png", - "arch": ["x86_64"] - }, - { - "packageName": "linux-intel-undervolt-gui", - "description": "Undervolting GUI for Intel Linux Systems...", - "icon": "https://portable-linux-apps.github.io/icons/linux-intel-undervolt-gui.png", - "arch": ["x86_64"] - }, - { - "packageName": "linuxaircombat", - "description": "Free open source combat flight simulator...", - "icon": "https://portable-linux-apps.github.io/icons/linuxaircombat.png", - "arch": ["x86_64"] - }, - { - "packageName": "linuxdeploy", - "description": "AppDir creation and maintenance tool. Featuring flexible plugin system...", - "icon": "https://portable-linux-apps.github.io/icons/linuxdeploy.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "linuxdeployqt", - "description": "Convert a linux program to an AppDir or an AppImage...", - "icon": "https://portable-linux-apps.github.io/icons/linuxdeployqt.png", - "arch": ["x86_64"] - }, - { - "packageName": "linuxqq", - "description": "New Linux QQ based on Electron...", - "icon": "https://portable-linux-apps.github.io/icons/linuxqq.png", - "arch": ["x86_64"] - }, - { - "packageName": "linuxtoys", - "description": "Unofficial, a user-friendly collection of tools to make your life on Linux easier than ever. Useful scripts for gamers, developers and enthusiasts...", - "icon": "https://portable-linux-apps.github.io/icons/linuxtoys.png", - "arch": ["x86_64"] - }, - { - "packageName": "linuxwallpaper", - "description": "Bing wallpaper of the day...", - "icon": "https://portable-linux-apps.github.io/icons/linuxwallpaper.png", - "arch": ["x86_64"] - }, - { - "packageName": "linwood-butterfly", - "description": "Powerful, minimalistic, cross-platform, note-taking app...", - "icon": "https://portable-linux-apps.github.io/icons/linwood-butterfly.png", - "arch": ["x86_64"] - }, - { - "packageName": "liquidlauncher", - "description": "The official Minecraft launcher for LiquidBounce...", - "icon": "https://portable-linux-apps.github.io/icons/liquidlauncher.png", - "arch": ["x86_64"] - }, - { - "packageName": "lisk-desktop", - "description": "Lisk graphical user interface for desktop...", - "icon": "https://portable-linux-apps.github.io/icons/lisk-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "listen.moe", - "description": "Official LISTEN.moe Desktop Client...", - "icon": "https://portable-linux-apps.github.io/icons/listen.moe.png", - "arch": ["x86_64"] - }, - { - "packageName": "listen1-desktop", - "description": "One for all free music in China...", - "icon": "https://portable-linux-apps.github.io/icons/listen1-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "lite-xl", - "description": "A lightweight text editor written in Lua...", - "icon": "https://portable-linux-apps.github.io/icons/lite-xl.png", - "arch": ["x86_64"] - }, - { - "packageName": "liteide", - "description": "LiteIDE is a simple, open source, cross-platform Go IDE...", - "icon": "https://portable-linux-apps.github.io/icons/liteide.png", - "arch": ["x86_64"] - }, - { - "packageName": "litime", - "description": "A terminal literature clock telling time with quotes from literature...", - "icon": "https://portable-linux-apps.github.io/icons/litime.png", - "arch": ["x86_64"] - }, - { - "packageName": "liveme-pro-tools", - "description": "Browse, search and manage accounts, replays and more...", - "icon": "https://portable-linux-apps.github.io/icons/liveme-pro-tools.png", - "arch": ["x86_64"] - }, - { - "packageName": "lmms", - "description": "FL Studio® alternative that allows you to produce music with the PC...", - "icon": "https://portable-linux-apps.github.io/icons/lmms.png", - "arch": ["x86_64"] - }, - { - "packageName": "lmstudio", - "description": "Experimenting with local and open-source Large Language Models...", - "icon": "https://portable-linux-apps.github.io/icons/lmstudio.png", - "arch": ["x86_64"] - }, - { - "packageName": "ln", - "description": "Make links between files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/ln.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "lobe-chat", - "description": "LobeHub - an open-source, modern design AI Agent Workspace. Supports multiple AI providers, Knowledge Base (file upload / RAG ), one click install MCP Marketplace and Artifacts / Thinking. One-click FREE deployment of your private AI Agent application...", - "icon": "https://portable-linux-apps.github.io/icons/lobe-chat.png", - "arch": ["x86_64"] - }, - { - "packageName": "local-browser", - "description": "Share your localhost in a unique way...", - "icon": "https://portable-linux-apps.github.io/icons/local-browser.png", - "arch": ["x86_64"] - }, - { - "packageName": "localsend", - "description": "An open source cross-platform alternative to AirDrop..", - "icon": "https://portable-linux-apps.github.io/icons/localsend.png", - "arch": ["x86_64"] - }, - { - "packageName": "lockbook-cli", - "description": "The private, polished note-taking platform, CLI...", - "icon": "https://portable-linux-apps.github.io/icons/lockbook-cli.png", - "arch": ["x86_64"] - }, - { - "packageName": "lockbook-desktop", - "description": "The private, polished note-taking platform...", - "icon": "https://portable-linux-apps.github.io/icons/lockbook-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "lofi", - "description": "A mini Spotify player with WebGL visualizations...", - "icon": "https://portable-linux-apps.github.io/icons/lofi.png", - "arch": ["x86_64"] - }, - { - "packageName": "loginized", - "description": "Loginized Gnome GDM Login Theme Manager...", - "icon": "https://portable-linux-apps.github.io/icons/loginized.png", - "arch": ["x86_64"] - }, - { - "packageName": "logname", - "description": "Print user's login name. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/logname.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "logseq", - "description": "A privacy-first platform for knowledge management and collaboration...", - "icon": "https://portable-linux-apps.github.io/icons/logseq.png", - "arch": ["x86_64"] - }, - { - "packageName": "look", - "description": "Beginning with a given string. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/look.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "looofix", - "description": "Minimalist Desktop Lofi Player To Relax and Enjoy...", - "icon": "https://portable-linux-apps.github.io/icons/looofix.png", - "arch": ["x86_64"] - }, - { - "packageName": "loopauditioneer", - "description": "Software for loop and cue handling in .wav files...", - "icon": "https://portable-linux-apps.github.io/icons/loopauditioneer.png", - "arch": ["x86_64"] - }, - { - "packageName": "lore-forge", - "description": "The app for writers & worldbuilders...", - "icon": "https://portable-linux-apps.github.io/icons/lore-forge.png", - "arch": ["x86_64"] - }, - { - "packageName": "lorien", - "description": "Infinite canvas drawing/whiteboarding app...", - "icon": "https://portable-linux-apps.github.io/icons/lorien.png", - "arch": ["x86_64"] - }, - { - "packageName": "losslesscut", - "description": "The swiss army knife of lossless video/audio editing...", - "icon": "https://portable-linux-apps.github.io/icons/losslesscut.png", - "arch": ["x86_64"] - }, - { - "packageName": "love", - "description": "The unquestionably awesome 2D game engine...", - "icon": "https://portable-linux-apps.github.io/icons/love.png", - "arch": ["x86_64"] - }, - { - "packageName": "lovelive", - "description": "A LoveLiver Music Player...", - "icon": "https://portable-linux-apps.github.io/icons/lovelive.png", - "arch": ["x86_64"] - }, - { - "packageName": "lovesay", - "description": "Cowsay, but full of love and now a little rusty...", - "icon": "https://portable-linux-apps.github.io/icons/lovesay.png", - "arch": ["x86_64"] - }, - { - "packageName": "lovr", - "description": "Lua Virtual Reality Framework...", - "icon": "https://portable-linux-apps.github.io/icons/lovr.png", - "arch": ["x86_64"] - }, - { - "packageName": "lowfi", - "description": "An extremely simple lofi player. CLI...", - "icon": "https://portable-linux-apps.github.io/icons/lowfi.png", - "arch": ["x86_64"] - }, - { - "packageName": "lpub3d", - "description": "An LDraw Building Instruction Editor...", - "icon": "https://portable-linux-apps.github.io/icons/lpub3d.png", - "arch": ["x86_64"] - }, - { - "packageName": "ls", - "description": "List directory contents. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/ls.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "lsd", - "description": "The next gen ls command...", - "icon": "https://portable-linux-apps.github.io/icons/lsd.png", - "arch": ["x86_64"] - }, - { - "packageName": "lskat", - "description": "Fun and engaging card game for two players. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/lskat.png", - "arch": ["x86_64"] - }, - { - "packageName": "ltx-desktop", - "description": "An open-source desktop app for generating videos with LTX models...", - "icon": "https://portable-linux-apps.github.io/icons/ltx-desktop.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "luanti", - "description": "Multiplayer infinite-world block sandbox...", - "icon": "https://portable-linux-apps.github.io/icons/luanti.png", - "arch": ["x86_64"] - }, - { - "packageName": "ludo", - "description": "Ludo is a work in progress libretro frontend written in go...", - "icon": "https://portable-linux-apps.github.io/icons/ludo.png", - "arch": ["x86_64"] - }, - { - "packageName": "lumi", - "description": "A tool to create and display interactive content with H5P...", - "icon": "https://portable-linux-apps.github.io/icons/lumi.png", - "arch": ["x86_64"] - }, - { - "packageName": "luna", - "description": "Manage npm dependencies through a modern UI...", - "icon": "https://portable-linux-apps.github.io/icons/luna.png", - "arch": ["x86_64"] - }, - { - "packageName": "lunar-client", - "description": "Free Minecraft Client, a modpack for all versions of Minecraft...", - "icon": "https://portable-linux-apps.github.io/icons/lunar-client.png", - "arch": ["x86_64"] - }, - { - "packageName": "lunatask", - "description": "All-in-one encrypted to-do list, notebook, habit and mood tracker...", - "icon": "https://portable-linux-apps.github.io/icons/lunatask.png", - "arch": ["x86_64"] - }, - { - "packageName": "lutris", - "description": "Unofficial. Install and play video games from all eras and from most gaming systems, by leveraging and combining existing emulators, WINE included...", - "icon": "https://portable-linux-apps.github.io/icons/lutris.png", - "arch": ["x86_64"] - }, - { - "packageName": "lutris-gamepad-ui", - "description": "A simple, TV-friendly, gamepad-navigable frontend for the Lutris game launcher on Linux...", - "icon": "https://portable-linux-apps.github.io/icons/lutris-gamepad-ui.png", - "arch": ["x86_64"] - }, - { - "packageName": "lvgl-editor", - "description": "LVGL Pro is a complete toolkit to build, test, share and ship embedded UIs efficiently...", - "icon": "https://portable-linux-apps.github.io/icons/lvgl-editor.png", - "arch": ["x86_64"] - }, - { - "packageName": "lx-music-desktop", - "description": "一个基于electron的音乐软件...", - "icon": "https://portable-linux-apps.github.io/icons/lx-music-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "lxtask", - "description": "Unofficial. A lightweight and desktop-independent task manager...", - "icon": "https://portable-linux-apps.github.io/icons/lxtask.png", - "arch": ["x86_64"] - }, - { - "packageName": "lyricistant", - "description": "A helpful writing assistant for lyricists...", - "icon": "https://portable-linux-apps.github.io/icons/lyricistant.png", - "arch": ["x86_64"] - }, - { - "packageName": "m", - "description": "Data oriented programming language for game developers...", - "icon": "https://portable-linux-apps.github.io/icons/m.png", - "arch": ["x86_64"] - }, - { - "packageName": "macchina", - "description": "A system information frontend with an emphasis on performance...", - "icon": "https://portable-linux-apps.github.io/icons/macchina.png", - "arch": ["x86_64"] - }, - { - "packageName": "magento2-upgrade-gui", - "description": "Magento 2 Upgrade GUI...", - "icon": "https://portable-linux-apps.github.io/icons/magento2-upgrade-gui.png", - "arch": ["x86_64"] - }, - { - "packageName": "mages", - "description": "Multiplatform Matrix chat client (experimental CMP+rust app)...", - "icon": "https://portable-linux-apps.github.io/icons/mages.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "magicfountain", - "description": "A novel and screenwriting program...", - "icon": "https://portable-linux-apps.github.io/icons/magicfountain.png", - "arch": ["x86_64"] - }, - { - "packageName": "makagiga", - "description": "To-do manager, notepad, RSS reader and much more...", - "icon": "https://portable-linux-apps.github.io/icons/makagiga.png", - "arch": ["x86_64"] - }, - { - "packageName": "make_f2fs", - "description": "Creates F2FS filesystems optimized for flash storage. This is part of \"platform-tools\"...", - "icon": "https://portable-linux-apps.github.io/icons/make_f2fs.png", - "arch": ["x86_64"] - }, - { - "packageName": "make_f2fs_casefold", - "description": "Creates F2FS filesystems with case-insensitive filename support. This is part of \"platform-tools\"...", - "icon": "https://portable-linux-apps.github.io/icons/make_f2fs_casefold.png", - "arch": ["x86_64"] - }, - { - "packageName": "makhber", - "description": "Makhber is a free application for Visualization and Analysis of Scientific Data...", - "icon": "https://portable-linux-apps.github.io/icons/makhber.png", - "arch": ["x86_64"] - }, - { - "packageName": "makoureactor", - "description": "Can edit field from Final Fantasy VII, PS & PC...", - "icon": "https://portable-linux-apps.github.io/icons/makoureactor.png", - "arch": ["x86_64"] - }, - { - "packageName": "malice", - "description": "GUI Programming Tool for iCE40...", - "icon": "https://portable-linux-apps.github.io/icons/malice.png", - "arch": ["x86_64"] - }, - { - "packageName": "mame", - "description": "Unofficial AppImage of MAME emulator...", - "icon": "https://portable-linux-apps.github.io/icons/mame.png", - "arch": ["x86_64"] - }, - { - "packageName": "manager-io", - "description": "Free Accounting Software for Linux, Server...", - "icon": "https://portable-linux-apps.github.io/icons/manager-io.png", - "arch": ["x86_64"] - }, - { - "packageName": "mandelbulber2", - "description": "Explore trigonometric, hyper-complex and other 3D fractals...", - "icon": "https://portable-linux-apps.github.io/icons/mandelbulber2.png", - "arch": ["x86_64"] - }, - { - "packageName": "manga-tui", - "description": "Terminal-based manga reader and downloader with image support...", - "icon": "https://portable-linux-apps.github.io/icons/manga-tui.png", - "arch": ["x86_64"] - }, - { - "packageName": "mangadesk", - "description": "Terminal client for MangaDex...", - "icon": "https://portable-linux-apps.github.io/icons/mangadesk.png", - "arch": ["x86_64"] - }, - { - "packageName": "mangal", - "description": "Most advanced, yet simple CLI manga downloader in the universe!..", - "icon": "https://portable-linux-apps.github.io/icons/mangal.png", - "arch": ["x86_64"] - }, - { - "packageName": "mangayomi", - "description": "Free and open source application for reading manga, novels, and watching animes available...", - "icon": "https://portable-linux-apps.github.io/icons/mangayomi.png", - "arch": ["x86_64"] - }, - { - "packageName": "mangbandclient", - "description": "A free online multi-player realtime roguelike game...", - "icon": "https://portable-linux-apps.github.io/icons/mangbandclient.png", - "arch": ["x86_64"] - }, - { - "packageName": "mangojuice", - "description": "It's a great alternative to GOverlay...", - "icon": "https://portable-linux-apps.github.io/icons/mangojuice.png", - "arch": ["x86_64"] - }, - { - "packageName": "mangoverlay", - "description": "Mangohud configuration tool...", - "icon": "https://portable-linux-apps.github.io/icons/mangoverlay.png", - "arch": ["x86_64"] - }, - { - "packageName": "maniadrive", - "description": "Unofficial, an open-source clone of the popular racing game TrackMania...", - "icon": "https://portable-linux-apps.github.io/icons/maniadrive.png", - "arch": ["x86_64"] - }, - { - "packageName": "manta", - "description": "Flexible invoicing app with beautiful & customizable templates...", - "icon": "https://portable-linux-apps.github.io/icons/manta.png", - "arch": ["x86_64"] - }, - { - "packageName": "mapeo", - "description": "Local-first mapping and monitoring in remote environments...", - "icon": "https://portable-linux-apps.github.io/icons/mapeo.png", - "arch": ["x86_64"] - }, - { - "packageName": "mapic", - "description": "MaPic is a Image Viewer with AI Metadata Reader...", - "icon": "https://portable-linux-apps.github.io/icons/mapic.png", - "arch": ["x86_64"] - }, - { - "packageName": "mapollage", - "description": "Photo kml generator for Google Earth...", - "icon": "https://portable-linux-apps.github.io/icons/mapollage.png", - "arch": ["x86_64"] - }, - { - "packageName": "mapton", - "description": "Some kind of map application...", - "icon": "https://portable-linux-apps.github.io/icons/mapton.png", - "arch": ["x86_64"] - }, - { - "packageName": "mariokart64recomp", - "description": "Unofficial, a native port of MarioKart 64, statically recompiled...", - "icon": "https://portable-linux-apps.github.io/icons/mariokart64recomp.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "mark-mind", - "description": "Multiplatform mind map and outliner editor with markdown support...", - "icon": "https://portable-linux-apps.github.io/icons/mark-mind.png", - "arch": ["x86_64"] - }, - { - "packageName": "markflowy", - "description": "Modern markdown editor application, Build fast and efficient workflows...", - "icon": "https://portable-linux-apps.github.io/icons/markflowy.png", - "arch": ["x86_64"] - }, - { - "packageName": "markman", - "description": "A markdown editor...", - "icon": "https://portable-linux-apps.github.io/icons/markman.png", - "arch": ["x86_64"] - }, - { - "packageName": "marktext", - "description": "A simple and elegant markdown editor multiplatform...", - "icon": "https://portable-linux-apps.github.io/icons/marktext.png", - "arch": ["x86_64"] - }, - { - "packageName": "marlin-conf", - "description": "Configuration tool for Marlin project...", - "icon": "https://portable-linux-apps.github.io/icons/marlin-conf.png", - "arch": ["x86_64"] - }, - { - "packageName": "martian", - "description": "Websocket testing tool...", - "icon": "https://portable-linux-apps.github.io/icons/martian.png", - "arch": ["x86_64"] - }, - { - "packageName": "marvin", - "description": "Open Source record and playback test automation for the web...", - "icon": "https://portable-linux-apps.github.io/icons/marvin.png", - "arch": ["x86_64"] - }, - { - "packageName": "master-pdf-editor", - "description": "Master PDF Editor allows you to create, edit, preview, encrypt, sign and print PDF documents...", - "icon": "https://portable-linux-apps.github.io/icons/master-pdf-editor.png", - "arch": ["x86_64"] - }, - { - "packageName": "masterkey", - "description": "Unofficial AppImage of Master Key...", - "icon": "https://portable-linux-apps.github.io/icons/masterkey.png", - "arch": ["x86_64"] - }, - { - "packageName": "mastervyrn", - "description": "MasterVyrn is a clean dedicated GBF loader...", - "icon": "https://portable-linux-apps.github.io/icons/mastervyrn.png", - "arch": ["x86_64"] - }, - { - "packageName": "mate-system-monitor", - "description": "Unofficial, Process viewer and system resource monitor, from MATE...", - "icon": "https://portable-linux-apps.github.io/icons/mate-system-monitor.png", - "arch": ["x86_64"] - }, - { - "packageName": "materialious", - "description": "Modern material design for Invidious...", - "icon": "https://portable-linux-apps.github.io/icons/materialious.png", - "arch": ["x86_64"] - }, - { - "packageName": "mathcha-notebook", - "description": "Desktop version of Mathcha, built for your privacy...", - "icon": "https://portable-linux-apps.github.io/icons/mathcha-notebook.png", - "arch": ["x86_64"] - }, - { - "packageName": "matm", - "description": "Watch anime, movies, tv shows and read manga from comfort of the cli...", - "icon": "https://portable-linux-apps.github.io/icons/matm.png", - "arch": ["x86_64"] - }, - { - "packageName": "mattermost-desktop", - "description": "Secure collaboration across entire software development...", - "icon": "https://portable-linux-apps.github.io/icons/mattermost-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "mawk", - "description": "And text processing language. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/mawk.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "mayo", - "description": "3D CAD viewer and converter based on Qt + OpenCascade...", - "icon": "https://portable-linux-apps.github.io/icons/mayo.png", - "arch": ["x86_64"] - }, - { - "packageName": "mazesolver", - "description": "A tool which shows how different algorithms solves mazes...", - "icon": "https://portable-linux-apps.github.io/icons/mazesolver.png", - "arch": ["x86_64"] - }, - { - "packageName": "mbcord", - "description": "An Emby/Jellyfin rich presence client for Discord...", - "icon": "https://portable-linux-apps.github.io/icons/mbcord.png", - "arch": ["x86_64"] - }, - { - "packageName": "mcfly", - "description": "Fly through your shell history. Great Scott!..", - "icon": "https://portable-linux-apps.github.io/icons/mcfly.png", - "arch": ["x86_64"] - }, - { - "packageName": "mcpelauncher", - "description": "The main repo for the Linux Bedrock edition Minecraft launcher...", - "icon": "https://portable-linux-apps.github.io/icons/mcpelauncher.png", - "arch": ["x86_64"] - }, - { - "packageName": "mcpodcast", - "description": "Electron app for tasks around Podcast mp3 files...", - "icon": "https://portable-linux-apps.github.io/icons/mcpodcast.png", - "arch": ["x86_64"] - }, - { - "packageName": "md5sum", - "description": "Compute and check MD5 message digest. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/md5sum.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "mdcat", - "description": "Command line, \"cat\" for markdown...", - "icon": "https://portable-linux-apps.github.io/icons/mdcat.png", - "arch": ["x86_64"] - }, - { - "packageName": "mdl", - "description": "MDL wallet...", - "icon": "https://portable-linux-apps.github.io/icons/mdl.png", - "arch": ["x86_64"] - }, - { - "packageName": "mdsilo-app", - "description": "Lightweight Knowledge Base and Feed Reader...", - "icon": "https://portable-linux-apps.github.io/icons/mdsilo-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "mdview", - "description": "Application that renders and displays Markdown files...", - "icon": "https://portable-linux-apps.github.io/icons/mdview.png", - "arch": ["x86_64"] - }, - { - "packageName": "measur", - "description": "Energy efficiency calculation app for use with industrial equipment...", - "icon": "https://portable-linux-apps.github.io/icons/measur.png", - "arch": ["x86_64"] - }, - { - "packageName": "mechtype", - "description": "A lightweight app designed to elevate your typing experience by allowing you to enjoy custom soundtracks with every keystroke...", - "icon": "https://portable-linux-apps.github.io/icons/mechtype.png", - "arch": ["x86_64"] - }, - { - "packageName": "mechvibes", - "description": "Play mechanical keyboard sounds as you type...", - "icon": "https://portable-linux-apps.github.io/icons/mechvibes.png", - "arch": ["x86_64"] - }, - { - "packageName": "media-downloader", - "description": "Cross-platform audio/video downloader...", - "icon": "https://portable-linux-apps.github.io/icons/media-downloader.png", - "arch": ["x86_64"] - }, - { - "packageName": "media-dupes", - "description": "Content duplicator for common media services like YouTube...", - "icon": "https://portable-linux-apps.github.io/icons/media-dupes.png", - "arch": ["x86_64"] - }, - { - "packageName": "media-hoarder", - "description": "Media Hoarder - THE media frontend for data hoarders and movie lovers..", - "icon": "https://portable-linux-apps.github.io/icons/media-hoarder.png", - "arch": ["x86_64"] - }, - { - "packageName": "mediachips", - "description": "Manage your videos, add any metadata to them and play them...", - "icon": "https://portable-linux-apps.github.io/icons/mediachips.png", - "arch": ["x86_64"] - }, - { - "packageName": "mediaelch", - "description": "Media Manager for Kodi...", - "icon": "https://portable-linux-apps.github.io/icons/mediaelch.png", - "arch": ["x86_64"] - }, - { - "packageName": "mediaharbor", - "description": "Cross-platform MediaHarbor..", - "icon": "https://portable-linux-apps.github.io/icons/mediaharbor.png", - "arch": ["x86_64"] - }, - { - "packageName": "mediathekview", - "description": "Searches the online media libraries of various broadcasters...", - "icon": "https://portable-linux-apps.github.io/icons/mediathekview.png", - "arch": ["x86_64"] - }, - { - "packageName": "mednafen", - "description": "Unofficial AppImage. Mednafen is a portable, utilizing OpenGL and SDL, argument(command-line)-driven multi-system emulator...", - "icon": "https://portable-linux-apps.github.io/icons/mednafen.png", - "arch": ["x86_64"] - }, - { - "packageName": "megaglest", - "description": "MegaGlest real-time strategy game engine (cross-platform, 3-d)...", - "icon": "https://portable-linux-apps.github.io/icons/megaglest.png", - "arch": ["x86_64"] - }, - { - "packageName": "megaman64recomp", - "description": "Unofficial AppImage of Mega Man 64 Recompiled...", - "icon": "https://portable-linux-apps.github.io/icons/megaman64recomp.png", - "arch": ["x86_64"] - }, - { - "packageName": "meganimus", - "description": "A launcher for native and emulator games...", - "icon": "https://portable-linux-apps.github.io/icons/meganimus.png", - "arch": ["x86_64"] - }, - { - "packageName": "mellowplayer", - "description": "Cloud music integration for your desktop...", - "icon": "https://portable-linux-apps.github.io/icons/mellowplayer.png", - "arch": ["x86_64"] - }, - { - "packageName": "melodie", - "description": "Simple-as-pie music player...", - "icon": "https://portable-linux-apps.github.io/icons/melodie.png", - "arch": ["x86_64"] - }, - { - "packageName": "melonds", - "description": "DS emulator, sorta...", - "icon": "https://portable-linux-apps.github.io/icons/melonds.png", - "arch": ["x86_64"] - }, - { - "packageName": "melonds-enhanced", - "description": "Unofficial, AppImage of melonDS which is able to work on any linux distro...", - "icon": "https://portable-linux-apps.github.io/icons/melonds-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "melonmix", - "description": "KH Melon Mix (DS Emulator) DS emulator, sorta DS emulator, sorta...", - "icon": "https://portable-linux-apps.github.io/icons/melonmix.png", - "arch": ["x86_64"] - }, - { - "packageName": "memento", - "description": "A video player for studying Japanese...", - "icon": "https://portable-linux-apps.github.io/icons/memento.png", - "arch": ["x86_64"] - }, - { - "packageName": "memocast", - "description": "Yet another elegant Wiz Note Client...", - "icon": "https://portable-linux-apps.github.io/icons/memocast.png", - "arch": ["x86_64"] - }, - { - "packageName": "memospot", - "description": "Memospot is a self-contained desktop version of Memos -a privacy-first, lightweight note-taking service...", - "icon": "https://portable-linux-apps.github.io/icons/memospot.png", - "arch": ["x86_64"] - }, - { - "packageName": "memoto", - "description": "DevOps oriented modeling tool...", - "icon": "https://portable-linux-apps.github.io/icons/memoto.png", - "arch": ["x86_64"] - }, - { - "packageName": "mendeley", - "description": "Search over 100 million cross-publisher articles and counting...", - "icon": "https://portable-linux-apps.github.io/icons/mendeley.png", - "arch": ["x86_64"] - }, - { - "packageName": "menyoki", - "description": "Screen{shot,cast} and perform ImageOps on the command line...", - "icon": "https://portable-linux-apps.github.io/icons/menyoki.png", - "arch": ["x86_64"] - }, - { - "packageName": "meow-sql", - "description": "An attempt to port HeidiSQL to C++/Qt...", - "icon": "https://portable-linux-apps.github.io/icons/meow-sql.png", - "arch": ["x86_64"] - }, - { - "packageName": "mercury", - "description": "Firefox fork with compiler optimizations and patches from Librewolf...", - "icon": "https://portable-linux-apps.github.io/icons/mercury.png", - "arch": ["x86_64"] - }, - { - "packageName": "mesa", - "description": "Experimental AppImage that lets you use the latest MESA with any binary on your system...", - "icon": "https://portable-linux-apps.github.io/icons/mesa.png", - "arch": ["x86_64"] - }, - { - "packageName": "meshlab", - "description": "Processor and editor of large 3D triangular meshes...", - "icon": "https://portable-linux-apps.github.io/icons/meshlab.png", - "arch": ["x86_64"] - }, - { - "packageName": "meshmill", - "description": "The world's greatest open source 3D CAM software, maybe one day...", - "icon": "https://portable-linux-apps.github.io/icons/meshmill.png", - "arch": ["x86_64"] - }, - { - "packageName": "meta-grabber", - "description": "A tool to grab metadata for tv shows and rename files on PC...", - "icon": "https://portable-linux-apps.github.io/icons/meta-grabber.png", - "arch": ["x86_64"] - }, - { - "packageName": "mgba", - "description": "Game Boy Advance Emulator...", - "icon": "https://portable-linux-apps.github.io/icons/mgba.png", - "arch": ["x86_64"] - }, - { - "packageName": "mgba-enhanced", - "description": "Unofficial, Game Boy Advance Emulator...", - "icon": "https://portable-linux-apps.github.io/icons/mgba-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "micropad", - "description": "µPad is an open digital note taking app...", - "icon": "https://portable-linux-apps.github.io/icons/micropad.png", - "arch": ["x86_64"] - }, - { - "packageName": "microsoft-edge", - "description": "Web Browser provided by Microsoft, Stable Edition...", - "icon": "https://portable-linux-apps.github.io/icons/microsoft-edge.png", - "arch": ["x86_64"] - }, - { - "packageName": "microsoft-edge-beta", - "description": "Web Browser provided by Microsoft, Beta Edition...", - "icon": "https://portable-linux-apps.github.io/icons/microsoft-edge-beta.png", - "arch": ["x86_64"] - }, - { - "packageName": "microsoft-edge-dev", - "description": "Web Browser provided by Microsoft, Developer Edition...", - "icon": "https://portable-linux-apps.github.io/icons/microsoft-edge-dev.png", - "arch": ["x86_64"] - }, - { - "packageName": "midori", - "description": "Surf lightly, quickly and safely with Midori Web Browser...", - "icon": "https://portable-linux-apps.github.io/icons/midori.png", - "arch": ["x86_64"] - }, - { - "packageName": "miesimulatorgui", - "description": "MieSimulatorGUI by Virtual Photonics...", - "icon": "https://portable-linux-apps.github.io/icons/miesimulatorgui.png", - "arch": ["x86_64"] - }, - { - "packageName": "mightymike", - "description": "Pangea Software's Mighty Mike, Power Pete for modern systems...", - "icon": "https://portable-linux-apps.github.io/icons/mightymike.png", - "arch": ["x86_64"] - }, - { - "packageName": "migu", - "description": "Stream anime torrents, real-time with no waiting for downloads...", - "icon": "https://portable-linux-apps.github.io/icons/migu.png", - "arch": ["x86_64"] - }, - { - "packageName": "milkytracker", - "description": "An FT2 compatible music tracker...", - "icon": "https://portable-linux-apps.github.io/icons/milkytracker.png", - "arch": ["x86_64"] - }, - { - "packageName": "mindmapp", - "description": "Electron application to draw mind maps...", - "icon": "https://portable-linux-apps.github.io/icons/mindmapp.png", - "arch": ["x86_64"] - }, - { - "packageName": "mine-craft.io", - "description": "Minecraft and even more!..", - "icon": "https://portable-linux-apps.github.io/icons/mine-craft.io.png", - "arch": ["x86_64"] - }, - { - "packageName": "minecraft-launcher", - "description": "Game downloader and launcher for Minecraft...", - "icon": "https://portable-linux-apps.github.io/icons/minecraft-launcher.png", - "arch": ["x86_64"] - }, - { - "packageName": "minetime", - "description": "Smart scheduling assistant...", - "icon": "https://portable-linux-apps.github.io/icons/minetime.png", - "arch": ["x86_64"] - }, - { - "packageName": "mini-diary", - "description": "Simple and secure journal app...", - "icon": "https://portable-linux-apps.github.io/icons/mini-diary.png", - "arch": ["x86_64"] - }, - { - "packageName": "mini-qml", - "description": "Minimal Qt deployment...", - "icon": "https://portable-linux-apps.github.io/icons/mini-qml.png", - "arch": ["x86_64"] - }, - { - "packageName": "mini-vmac", - "description": "Unofficial, a miniature Macintosh 68K emulator...", - "icon": "https://portable-linux-apps.github.io/icons/mini-vmac.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "minififa", - "description": "OpenGL-powered third-person football, soccer game...", - "icon": "https://portable-linux-apps.github.io/icons/minififa.png", - "arch": ["x86_64"] - }, - { - "packageName": "minimal-podcasts-player", - "description": "Subscribe, listen and download your podcasts...", - "icon": "https://portable-linux-apps.github.io/icons/minimal-podcasts-player.png", - "arch": ["x86_64"] - }, - { - "packageName": "minions", - "description": "A productive tool inspired by LaunchBar in macOS...", - "icon": "https://portable-linux-apps.github.io/icons/minions.png", - "arch": ["x86_64"] - }, - { - "packageName": "miniter", - "description": "Rust based non-linear video editor for basic tasks...", - "icon": "https://portable-linux-apps.github.io/icons/miniter.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "minizinc-ide", - "description": "A free and open-source constraint modeling language...", - "icon": "https://portable-linux-apps.github.io/icons/minizinc-ide.png", - "arch": ["x86_64"] - }, - { - "packageName": "mira-backup", - "description": "Mira Auto Database Backup app...", - "icon": "https://portable-linux-apps.github.io/icons/mira-backup.png", - "arch": ["x86_64"] - }, - { - "packageName": "mirage", - "description": "Matrix chat client for encrypted and decentralized communication...", - "icon": "https://portable-linux-apps.github.io/icons/mirage.png", - "arch": ["x86_64"] - }, - { - "packageName": "mission-center", - "description": "Monitor your CPU, Memory, Disk, Network and GPU usage...", - "icon": "https://portable-linux-apps.github.io/icons/mission-center.png", - "arch": ["x86_64"] - }, - { - "packageName": "miteiru", - "description": "An open source Electron video player to learn Japanese...", - "icon": "https://portable-linux-apps.github.io/icons/miteiru.png", - "arch": ["x86_64"] - }, - { - "packageName": "mixxx", - "description": "Unofficial, open source software for digital DJing...", - "icon": "https://portable-linux-apps.github.io/icons/mixxx.png", - "arch": ["x86_64"] - }, - { - "packageName": "mjml-app", - "description": "The desktop app for MJML...", - "icon": "https://portable-linux-apps.github.io/icons/mjml-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "mk", - "description": "Interactive Task Runner for Makefile...", - "icon": "https://portable-linux-apps.github.io/icons/mk.png", - "arch": ["x86_64"] - }, - { - "packageName": "mkdir", - "description": "Make directories. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/mkdir.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "mke2fs", - "description": "Creates ext2/ext3/ext4 Linux filesystems. This is part of \"platform-tools\"...", - "icon": "https://portable-linux-apps.github.io/icons/mke2fs.png", - "arch": ["x86_64"] - }, - { - "packageName": "mkfifo", - "description": "Make FIFOs (named pipes). This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/mkfifo.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "mki3dgame", - "description": "A game of searching, in 3D stages...", - "icon": "https://portable-linux-apps.github.io/icons/mki3dgame.png", - "arch": ["x86_64"] - }, - { - "packageName": "mknod", - "description": "Make block or character special files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/mknod.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "mktemp", - "description": "Create a temporary file or directory. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/mktemp.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "mkvtoolnix", - "description": "Matroska files creator and tools...", - "icon": "https://portable-linux-apps.github.io/icons/mkvtoolnix.png", - "arch": ["x86_64"] - }, - { - "packageName": "mlv-app", - "description": "All in one MLV processing app, audio/video...", - "icon": "https://portable-linux-apps.github.io/icons/mlv-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "mmapper", - "description": "Graphical MUD client for the game MUME...", - "icon": "https://portable-linux-apps.github.io/icons/mmapper.png", - "arch": ["x86_64"] - }, - { - "packageName": "mmseqs2-search", - "description": "MMseqs2 app to run on your workstation or servers...", - "icon": "https://portable-linux-apps.github.io/icons/mmseqs2-search.png", - "arch": ["x86_64"] - }, - { - "packageName": "moarperf", - "description": "Front-end for MoarVM's / Rakudo's profilers...", - "icon": "https://portable-linux-apps.github.io/icons/moarperf.png", - "arch": ["x86_64"] - }, - { - "packageName": "mob", - "description": "A handsome Himalayan desktop client...", - "icon": "https://portable-linux-apps.github.io/icons/mob.png", - "arch": ["x86_64"] - }, - { - "packageName": "mochi", - "description": "A simple markdown-powered SRS app...", - "icon": "https://portable-linux-apps.github.io/icons/mochi.png", - "arch": ["x86_64"] - }, - { - "packageName": "mockman", - "description": "Manage and start the mock servers on your local platform easily...", - "icon": "https://portable-linux-apps.github.io/icons/mockman.png", - "arch": ["x86_64"] - }, - { - "packageName": "mockoon", - "description": "Mock servers in seconds...", - "icon": "https://portable-linux-apps.github.io/icons/mockoon.png", - "arch": ["x86_64"] - }, - { - "packageName": "modemu2k", - "description": "A Hayes AT-command modem emulator that bridges a serial interface to TCP/Telnet...", - "icon": "https://portable-linux-apps.github.io/icons/modemu2k.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "moderndeck", - "description": "A beautiful, powerful Twitter client for desktop...", - "icon": "https://portable-linux-apps.github.io/icons/moderndeck.png", - "arch": ["x86_64"] - }, - { - "packageName": "modrinth", - "description": "Open source launcher that allows you to play your favorite mods...", - "icon": "https://portable-linux-apps.github.io/icons/modrinth.png", - "arch": ["x86_64"] - }, - { - "packageName": "modv", - "description": "Modular audio visualisation powered by JavaScript...", - "icon": "https://portable-linux-apps.github.io/icons/modv.png", - "arch": ["x86_64"] - }, - { - "packageName": "monit", - "description": "Desktop widgets displaying various information, in chinese...", - "icon": "https://portable-linux-apps.github.io/icons/monit.png", - "arch": ["x86_64"] - }, - { - "packageName": "moniteur-admin", - "description": "The admin panel for the lightweight info screen solution...", - "icon": "https://portable-linux-apps.github.io/icons/moniteur-admin.png", - "arch": ["x86_64"] - }, - { - "packageName": "monokle", - "description": "Lets you create, analyze, and deploy YAML manifests...", - "icon": "https://portable-linux-apps.github.io/icons/monokle.png", - "arch": ["x86_64"] - }, - { - "packageName": "monoline", - "description": "Your personal micro journal...", - "icon": "https://portable-linux-apps.github.io/icons/monoline.png", - "arch": ["x86_64"] - }, - { - "packageName": "mood-fi", - "description": "App with 30+ lo-fi live streams between 8 different lo-fi types...", - "icon": "https://portable-linux-apps.github.io/icons/mood-fi.png", - "arch": ["x86_64"] - }, - { - "packageName": "moolticute", - "description": "Mooltipass crossplatform daemon/tools...", - "icon": "https://portable-linux-apps.github.io/icons/moolticute.png", - "arch": ["x86_64"] - }, - { - "packageName": "moon-lander", - "description": "Moon Lander is a 2D game of gravity. Land your ship on the lading pad...", - "icon": "https://portable-linux-apps.github.io/icons/moon-lander.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "moondeck-buddy", - "description": "A server-side part of the MoonDeck plugin for the SteamDeck...", - "icon": "https://portable-linux-apps.github.io/icons/moondeck-buddy.png", - "arch": ["x86_64"] - }, - { - "packageName": "moonlight", - "description": "Stream games from your NVIDIA GameStream-enabled PC...", - "icon": "https://portable-linux-apps.github.io/icons/moonlight.png", - "arch": ["x86_64"] - }, - { - "packageName": "moonplayer", - "description": "AIO video player to play Youtube, Bilibili... and local videos...", - "icon": "https://portable-linux-apps.github.io/icons/moonplayer.png", - "arch": ["x86_64"] - }, - { - "packageName": "moose", - "description": "An application to stream, cast and download torrents...", - "icon": "https://portable-linux-apps.github.io/icons/moose.png", - "arch": ["x86_64"] - }, - { - "packageName": "moosync", - "description": "Music player capable of playing local audio or from Youtube/Spotify...", - "icon": "https://portable-linux-apps.github.io/icons/moosync.png", - "arch": ["x86_64"] - }, - { - "packageName": "more", - "description": "Display the contents of a file in a terminal. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/more.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "motrix", - "description": "A full-featured download manager...", - "icon": "https://portable-linux-apps.github.io/icons/motrix.png", - "arch": ["x86_64"] - }, - { - "packageName": "motrix-next", - "description": "A full-featured download manager rebuilt from the ground up...", - "icon": "https://portable-linux-apps.github.io/icons/motrix-next.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "mount", - "description": "Mount a filesystem. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/mount.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "mousai", - "description": "Unofficial. Application for identifying songs using libre utilities...", - "icon": "https://portable-linux-apps.github.io/icons/mousai.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "mouzi", - "description": "A free, privacy-first automatic file organizer that quietly sorts your Downloads folder from the system tray...", - "icon": "https://portable-linux-apps.github.io/icons/mouzi.png", - "arch": ["x86_64"] - }, - { - "packageName": "movie-monad", - "description": "Free and simple to use video player made with Haskell...", - "icon": "https://portable-linux-apps.github.io/icons/movie-monad.png", - "arch": ["x86_64"] - }, - { - "packageName": "moyu", - "description": "An online collaborative api interface management tool...", - "icon": "https://portable-linux-apps.github.io/icons/moyu.png", - "arch": ["x86_64"] - }, - { - "packageName": "mp3-tagger", - "description": "An Electron app to edit metadata of mp3 files...", - "icon": "https://portable-linux-apps.github.io/icons/mp3-tagger.png", - "arch": ["x86_64"] - }, - { - "packageName": "mp4grep", - "description": "CLI for transcribing and searching audio/video files...", - "icon": "https://portable-linux-apps.github.io/icons/mp4grep.png", - "arch": ["x86_64"] - }, - { - "packageName": "mpc-qt", - "description": "Media Player Classic Qute Theater...", - "icon": "https://portable-linux-apps.github.io/icons/mpc-qt.png", - "arch": ["x86_64"] - }, - { - "packageName": "mpv", - "description": "Unofficial, A free, open source, and cross-platform media player, Multiple-choices...", - "icon": "https://portable-linux-apps.github.io/icons/mpv.png", - "arch": ["x86_64"] - }, - { - "packageName": "mqtt-explorer", - "description": "Explore your message queues...", - "icon": "https://portable-linux-apps.github.io/icons/mqtt-explorer.png", - "arch": ["x86_64"] - }, - { - "packageName": "mqttcute", - "description": "An advanced desktop MQTT client for binary protocol development...", - "icon": "https://portable-linux-apps.github.io/icons/mqttcute.png", - "arch": ["x86_64"] - }, - { - "packageName": "mqttx", - "description": "MQTT 5.0 Desktop, CLI, and WebSocket client tools...", - "icon": "https://portable-linux-apps.github.io/icons/mqttx.png", - "arch": ["x86_64"] - }, - { - "packageName": "mr.dclutterer", - "description": "Minimal App To Aggregate And Rename Files In Bulk...", - "icon": "https://portable-linux-apps.github.io/icons/mr.dclutterer.png", - "arch": ["x86_64"] - }, - { - "packageName": "mrcode", - "description": "An opinionated editor based on VSCodium / VSCode...", - "icon": "https://portable-linux-apps.github.io/icons/mrcode.png", - "arch": ["x86_64"] - }, - { - "packageName": "mrrss", - "description": "A modern, cross-platform, and free AI RSS reader...", - "icon": "https://portable-linux-apps.github.io/icons/mrrss.png", - "arch": ["x86_64"] - }, - { - "packageName": "mrwriter", - "description": "Notetaking and blackboard replacement application. Inspired by Xournal. Written in C++/Qt...", - "icon": "https://portable-linux-apps.github.io/icons/mrwriter.png", - "arch": ["x86_64"] - }, - { - "packageName": "ms-365-electron", - "description": "Unofficial Microsoft 365 Desktop Wrapper made with Electron...", - "icon": "https://portable-linux-apps.github.io/icons/ms-365-electron.png", - "arch": ["x86_64"] - }, - { - "packageName": "mtcelledit", - "description": "Lightweight spreadsheet program...", - "icon": "https://portable-linux-apps.github.io/icons/mtcelledit.png", - "arch": ["x86_64"] - }, - { - "packageName": "mudita-center", - "description": "Mudita Center Electron App...", - "icon": "https://portable-linux-apps.github.io/icons/mudita-center.png", - "arch": ["x86_64"] - }, - { - "packageName": "mudlet", - "description": "Mudlet is a platform for gaming and enhancing game-play primarily with MUDs...", - "icon": "https://portable-linux-apps.github.io/icons/mudlet.png", - "arch": ["x86_64"] - }, - { - "packageName": "muffon", - "description": "Music streaming browser,retrieves audio, video and metadata...", - "icon": "https://portable-linux-apps.github.io/icons/muffon.png", - "arch": ["x86_64"] - }, - { - "packageName": "mullvad-browser", - "description": "A Tor-based Web Browser...", - "icon": "https://portable-linux-apps.github.io/icons/mullvad-browser.png", - "arch": ["x86_64"] - }, - { - "packageName": "multimc", - "description": "A Minecraft launcher...", - "icon": "https://portable-linux-apps.github.io/icons/multimc.png", - "arch": ["x86_64"] - }, - { - "packageName": "munt", - "description": "The payment system of the future...", - "icon": "https://portable-linux-apps.github.io/icons/munt.png", - "arch": ["x86_64"] - }, - { - "packageName": "mupdf", - "description": "Lightweight PDF, XPS, and E-book viewer...", - "icon": "https://portable-linux-apps.github.io/icons/mupdf.png", - "arch": ["x86_64"] - }, - { - "packageName": "muse", - "description": "A digital audio workstation with support for both Audio and MIDI...", - "icon": "https://portable-linux-apps.github.io/icons/muse.png", - "arch": ["x86_64"] - }, - { - "packageName": "museeks", - "description": "A simple, clean and cross-platform music player...", - "icon": "https://portable-linux-apps.github.io/icons/museeks.png", - "arch": ["x86_64"] - }, - { - "packageName": "musescore", - "description": "An open source and free music notation software...", - "icon": "https://portable-linux-apps.github.io/icons/musescore.png", - "arch": ["x86_64"] - }, - { - "packageName": "music-assistant", - "description": "The desktop companion app for Music Assistant...", - "icon": "https://portable-linux-apps.github.io/icons/music-assistant.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "music-blocks", - "description": ".Exploring Math, Music, and Programming...", - "icon": "https://portable-linux-apps.github.io/icons/music-blocks.png", - "arch": ["x86_64"] - }, - { - "packageName": "music-kitten", - "description": "Use your own soundtrack in Counter-Strike...", - "icon": "https://portable-linux-apps.github.io/icons/music-kitten.png", - "arch": ["x86_64"] - }, - { - "packageName": "music-player", - "description": "Desktop Electron app for playing and downloading music...", - "icon": "https://portable-linux-apps.github.io/icons/music-player.png", - "arch": ["x86_64"] - }, - { - "packageName": "music-quiz", - "description": "Jepardy like game, guess as many songs as possible...", - "icon": "https://portable-linux-apps.github.io/icons/music-quiz.png", - "arch": ["x86_64"] - }, - { - "packageName": "musicalypse", - "description": "Audio/Music player and server built with Web technologies...", - "icon": "https://portable-linux-apps.github.io/icons/musicalypse.png", - "arch": ["x86_64"] - }, - { - "packageName": "mutool", - "description": "All purpose tool for dealing with PDF files...", - "icon": "https://portable-linux-apps.github.io/icons/mutool.png", - "arch": ["x86_64"] - }, - { - "packageName": "muwire", - "description": "A file sharing client for I2P...", - "icon": "https://portable-linux-apps.github.io/icons/muwire.png", - "arch": ["x86_64"] - }, - { - "packageName": "mv", - "description": "Move (rename) files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/mv.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "my-budget", - "description": "Offline cross-platform budgeting solution built with Electron...", - "icon": "https://portable-linux-apps.github.io/icons/my-budget.png", - "arch": ["x86_64"] - }, - { - "packageName": "my-jira", - "description": "A lite jira desktop...", - "icon": "https://portable-linux-apps.github.io/icons/my-jira.png", - "arch": ["x86_64"] - }, - { - "packageName": "mybelka", - "description": "Accounting system written in C++ with QTCore...", - "icon": "https://portable-linux-apps.github.io/icons/mybelka.png", - "arch": ["x86_64"] - }, - { - "packageName": "mycroft-ai", - "description": "Qt5 Frontend for Mycroft Ai..", - "icon": "https://portable-linux-apps.github.io/icons/mycroft-ai.png", - "arch": ["x86_64"] - }, - { - "packageName": "mycrypto", - "description": "MyCrypto web and electron app...", - "icon": "https://portable-linux-apps.github.io/icons/mycrypto.png", - "arch": ["x86_64"] - }, - { - "packageName": "mypaint", - "description": "Simple drawing and painting program, graphics...", - "icon": "https://portable-linux-apps.github.io/icons/mypaint.png", - "arch": ["x86_64"] - }, - { - "packageName": "mystiq", - "description": "Qt5/C++ FFmpeg Media Converter...", - "icon": "https://portable-linux-apps.github.io/icons/mystiq.png", - "arch": ["x86_64"] - }, - { - "packageName": "mytonwallet", - "description": "Feature-rich web wallet and browser extension for TON Network...", - "icon": "https://portable-linux-apps.github.io/icons/mytonwallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "n3h", - "description": "Nodejs implementation of holochain networking / p2p backend process...", - "icon": "https://portable-linux-apps.github.io/icons/n3h.png", - "arch": ["x86_64"] - }, - { - "packageName": "naev", - "description": "A 2d action/rpg space game that combines elements from the action...", - "icon": "https://portable-linux-apps.github.io/icons/naev.png", - "arch": ["x86_64"] - }, - { - "packageName": "nami", - "description": "A clean and tidy decentralized package manager...", - "icon": "https://portable-linux-apps.github.io/icons/nami.png", - "arch": ["x86_64"] - }, - { - "packageName": "nanokvm-usb", - "description": "Finger-sized 4K USB KVM for Server/SBCs...", - "icon": "https://portable-linux-apps.github.io/icons/nanokvm-usb.png", - "arch": ["x86_64"] - }, - { - "packageName": "nanosaur", - "description": "Pangea Software’s game, adventure of a cybernetic dinosaur...", - "icon": "https://portable-linux-apps.github.io/icons/nanosaur.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "nanosaur2", - "description": "Pangea Software’s Nanosaur II for modern systems...", - "icon": "https://portable-linux-apps.github.io/icons/nanosaur2.png", - "arch": ["x86_64"] - }, - { - "packageName": "nanovault", - "description": "Wallet for interacting with Nano...", - "icon": "https://portable-linux-apps.github.io/icons/nanovault.png", - "arch": ["x86_64"] - }, - { - "packageName": "nap", - "description": "Code spippets in your terminal...", - "icon": "https://portable-linux-apps.github.io/icons/nap.png", - "arch": ["x86_64"] - }, - { - "packageName": "naruto-arena", - "description": "Naruto-based online multiplayer strategy game...", - "icon": "https://portable-linux-apps.github.io/icons/naruto-arena.png", - "arch": ["x86_64"] - }, - { - "packageName": "nault-bin", - "description": "Official Nault AppImage client...", - "icon": "https://portable-linux-apps.github.io/icons/nault-bin.png", - "arch": ["x86_64"] - }, - { - "packageName": "nautune", - "description": "Poseidon's Music Player for Jellyfin...", - "icon": "https://portable-linux-apps.github.io/icons/nautune.png", - "arch": ["x86_64"] - }, - { - "packageName": "nauz-file-detector", - "description": "Nauz File Detector is a portable linker/compiler/packer identifier utility...", - "icon": "https://portable-linux-apps.github.io/icons/nauz-file-detector.png", - "arch": ["x86_64"] - }, - { - "packageName": "navi", - "description": "An interactive cheatsheet tool for the command-line...", - "icon": "https://portable-linux-apps.github.io/icons/navi.png", - "arch": ["x86_64"] - }, - { - "packageName": "nazuna", - "description": "Download Twitter videos using your terminal!..", - "icon": "https://portable-linux-apps.github.io/icons/nazuna.png", - "arch": ["x86_64"] - }, - { - "packageName": "nblood", - "description": "Unofficial, blood port based on EDuke32...", - "icon": "https://portable-linux-apps.github.io/icons/nblood.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ncsa-mosaic", - "description": "One of the first graphical web browsers...", - "icon": "https://portable-linux-apps.github.io/icons/ncsa-mosaic.png", - "arch": ["x86_64"] - }, - { - "packageName": "ncspot", - "description": "Cross-platform ncurses Spotify client written in Rust, inspired by ncmpc and the likes...", - "icon": "https://portable-linux-apps.github.io/icons/ncspot.png", - "arch": ["x86_64"] - }, - { - "packageName": "neanes", - "description": "A scorewriter for notating Byzantine chant in Byzantine notation...", - "icon": "https://portable-linux-apps.github.io/icons/neanes.png", - "arch": ["x86_64"] - }, - { - "packageName": "negpy", - "description": "Tool for processing film negatives...", - "icon": "https://portable-linux-apps.github.io/icons/negpy.png", - "arch": ["x86_64"] - }, - { - "packageName": "neko", - "description": "Neko is a cross-platform cursor-chasing cat...", - "icon": "https://portable-linux-apps.github.io/icons/neko.png", - "arch": ["x86_64"] - }, - { - "packageName": "neko-project-ii-kai", - "description": "Unofficial, a PC-9801 series emulator...", - "icon": "https://portable-linux-apps.github.io/icons/neko-project-ii-kai.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "neochat", - "description": "Unofficial AppImage of NeoChat...", - "icon": "https://portable-linux-apps.github.io/icons/neochat.png", - "arch": ["x86_64"] - }, - { - "packageName": "neohtop", - "description": "htop on steroids...", - "icon": "https://portable-linux-apps.github.io/icons/neohtop.png", - "arch": ["x86_64"] - }, - { - "packageName": "neon", - "description": "Light wallet for NEO blockchain...", - "icon": "https://portable-linux-apps.github.io/icons/neon.png", - "arch": ["x86_64"] - }, - { - "packageName": "neovide", - "description": "No Nonsense Neovim Client in Rust..", - "icon": "https://portable-linux-apps.github.io/icons/neovide.png", - "arch": ["x86_64"] - }, - { - "packageName": "nepaliunicode", - "description": "An Unicode Converter app...", - "icon": "https://portable-linux-apps.github.io/icons/nepaliunicode.png", - "arch": ["x86_64"] - }, - { - "packageName": "nerdfetch", - "description": "A POSIX *nix fetch script using Nerdfonts...", - "icon": "https://portable-linux-apps.github.io/icons/nerdfetch.png", - "arch": ["x86_64"] - }, - { - "packageName": "nerimity-desktop", - "description": "Electron desktop app for Nerimity...", - "icon": "https://portable-linux-apps.github.io/icons/nerimity-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "nest-desktop", - "description": "A web-based GUI application for NEST Simulator...", - "icon": "https://portable-linux-apps.github.io/icons/nest-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "nestopia", - "description": "Unofficial, Cross-platform Nestopia NES emulator core with a GUI...", - "icon": "https://portable-linux-apps.github.io/icons/nestopia.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "netbeans", - "description": "Apache NetBeans installers...", - "icon": "https://portable-linux-apps.github.io/icons/netbeans.png", - "arch": ["x86_64"] - }, - { - "packageName": "netpad", - "description": "A cross-platform C# editor and playground...", - "icon": "https://portable-linux-apps.github.io/icons/netpad.png", - "arch": ["x86_64"] - }, - { - "packageName": "netpanzer", - "description": "Online multiplayer tactical warfare game for fast action combat...", - "icon": "https://portable-linux-apps.github.io/icons/netpanzer.png", - "arch": ["x86_64"] - }, - { - "packageName": "neverball", - "description": "Unofficial, tilt the floor to roll a ball through an obstacle course before time runs out...", - "icon": "https://portable-linux-apps.github.io/icons/neverball.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "newlogic", - "description": "A circuit builder...", - "icon": "https://portable-linux-apps.github.io/icons/newlogic.png", - "arch": ["x86_64"] - }, - { - "packageName": "newsflash", - "description": "Unofficial. RSS reader with support for local and web RSS feed...", - "icon": "https://portable-linux-apps.github.io/icons/newsflash.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "newton-adventure", - "description": "A 2D game with a twist, player can rotate gravity at 360°...", - "icon": "https://portable-linux-apps.github.io/icons/newton-adventure.png", - "arch": ["x86_64"] - }, - { - "packageName": "nexen", - "description": "Multi-system emulator (NES, SNES, GB, GBA, PCE, SMS/GG, WS)...", - "icon": "https://portable-linux-apps.github.io/icons/nexen.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "nexis", - "description": "Linux & macOS system optimizer and monitor. Qt6 fork of Stacer with GPU monitoring, dark/light themes, and active maintenance...", - "icon": "https://portable-linux-apps.github.io/icons/nexis.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "nextcloud", - "description": "Client-server software for creating & using file hosting services...", - "icon": "https://portable-linux-apps.github.io/icons/nextcloud.png", - "arch": ["x86_64"] - }, - { - "packageName": "nextplayer", - "description": "A blue-ray player, originally named TheNewPlayerFree...", - "icon": "https://portable-linux-apps.github.io/icons/nextplayer.png", - "arch": ["x86_64"] - }, - { - "packageName": "nexus-mods", - "description": "A mod installer, creator and manager for all your popular games...", - "icon": "https://portable-linux-apps.github.io/icons/nexus-mods.png", - "arch": ["x86_64"] - }, - { - "packageName": "nexus-wallet", - "description": "Official interface layers of the Nexus Software Stack...", - "icon": "https://portable-linux-apps.github.io/icons/nexus-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "nfctools", - "description": "A library which allows userspace application access to NFC devices...", - "icon": "https://portable-linux-apps.github.io/icons/nfctools.png", - "arch": ["x86_64"] - }, - { - "packageName": "nfsiise", - "description": "Unofficial, Need For Speed™ II SE, cross-platform wrapper with 3D acceleration and TCP protocol...", - "icon": "https://portable-linux-apps.github.io/icons/nfsiise.png", - "arch": ["x86_64"] - }, - { - "packageName": "ngpost", - "description": "Usenet poster for binaries developped in C++/QT...", - "icon": "https://portable-linux-apps.github.io/icons/ngpost.png", - "arch": ["x86_64"] - }, - { - "packageName": "ngrev", - "description": "Reverse Engineering for Angular...", - "icon": "https://portable-linux-apps.github.io/icons/ngrev.png", - "arch": ["x86_64"] - }, - { - "packageName": "nheko", - "description": "Desktop client for Matrix...", - "icon": "https://portable-linux-apps.github.io/icons/nheko.png", - "arch": ["x86_64"] - }, - { - "packageName": "nice", - "description": "Run a program with modified scheduling priority. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/nice.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "niffler", - "description": "A grin gui wallet...", - "icon": "https://portable-linux-apps.github.io/icons/niffler.png", - "arch": ["x86_64"] - }, - { - "packageName": "nightpdf", - "description": "Dark Mode PDF Reader built using Electron and PDF.js...", - "icon": "https://portable-linux-apps.github.io/icons/nightpdf.png", - "arch": ["x86_64"] - }, - { - "packageName": "nightwave-plaza-electron", - "description": "https://plaza.one/ radio station desktop app...", - "icon": "https://portable-linux-apps.github.io/icons/nightwave-plaza-electron.png", - "arch": ["x86_64"] - }, - { - "packageName": "nimbus-weather", - "description": "A beautiful weather app built using the Dark Sky API...", - "icon": "https://portable-linux-apps.github.io/icons/nimbus-weather.png", - "arch": ["x86_64"] - }, - { - "packageName": "nine", - "description": "Nine. is an open source desktop application for managing rental properties...", - "icon": "https://portable-linux-apps.github.io/icons/nine.png", - "arch": ["x86_64"] - }, - { - "packageName": "nitch", - "description": "Incredibly fast system fetch written in nim...", - "icon": "https://portable-linux-apps.github.io/icons/nitch.png", - "arch": ["x86_64"] - }, - { - "packageName": "nitrogen", - "description": "Unofficial AppImage of Nitrogen...", - "icon": "https://portable-linux-apps.github.io/icons/nitrogen.png", - "arch": ["x86_64"] - }, - { - "packageName": "nitrokey", - "description": "Manage your Nitrokey devices...", - "icon": "https://portable-linux-apps.github.io/icons/nitrokey.png", - "arch": ["x86_64"] - }, - { - "packageName": "nix-bucks", - "description": "A money tracker. Your income and expenses at your control. Finance...", - "icon": "https://portable-linux-apps.github.io/icons/nix-bucks.png", - "arch": ["x86_64"] - }, - { - "packageName": "nix-portable", - "description": "Use nix on any linux system, rootless and configuration free...", - "icon": "https://portable-linux-apps.github.io/icons/nix-portable.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "nixnote", - "description": "Use with Evernote to remember everything...", - "icon": "https://portable-linux-apps.github.io/icons/nixnote.png", - "arch": ["x86_64"] - }, - { - "packageName": "nl", - "description": "Number lines of files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/nl.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "nm", - "description": "From object files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/nm.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "nmeasimulator", - "description": "NMEA sentence generator utility to broadcast via TCP...", - "icon": "https://portable-linux-apps.github.io/icons/nmeasimulator.png", - "arch": ["x86_64"] - }, - { - "packageName": "nnn", - "description": "n³ The unorthodox terminal file manager..", - "icon": "https://portable-linux-apps.github.io/icons/nnn.png", - "arch": ["x86_64"] - }, - { - "packageName": "no-fwl", - "description": "NoFWL Desktop Application...", - "icon": "https://portable-linux-apps.github.io/icons/no-fwl.png", - "arch": ["x86_64"] - }, - { - "packageName": "nodeflow", - "description": "An Editor for creating simple or complex OCR workflows...", - "icon": "https://portable-linux-apps.github.io/icons/nodeflow.png", - "arch": ["x86_64"] - }, - { - "packageName": "nodes", - "description": "A new way to create with code...", - "icon": "https://portable-linux-apps.github.io/icons/nodes.png", - "arch": ["x86_64"] - }, - { - "packageName": "nohup", - "description": "Run a command immune to hangups, with output to a. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/nohup.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "noi", - "description": "🚀 an AI-enhanced, customizable browser designed to streamline your digital experience...", - "icon": "https://portable-linux-apps.github.io/icons/noi.png", - "arch": ["x86_64"] - }, - { - "packageName": "nomacs", - "description": "Unofficial, nomacs is a free, open source image viewer, which supports multiple platforms...", - "icon": "https://portable-linux-apps.github.io/icons/nomacs.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "nootka", - "description": "Application for learning musical score notation...", - "icon": "https://portable-linux-apps.github.io/icons/nootka.png", - "arch": ["x86_64"] - }, - { - "packageName": "nora", - "description": "An elegant music player built using Electron and React...", - "icon": "https://portable-linux-apps.github.io/icons/nora.png", - "arch": ["x86_64"] - }, - { - "packageName": "normcap", - "description": "OCR powered screen-capture tool to capture info instead of images...", - "icon": "https://portable-linux-apps.github.io/icons/normcap.png", - "arch": ["x86_64"] - }, - { - "packageName": "nosqlbooster", - "description": "Essential admin GUI for mongodb...", - "icon": "https://portable-linux-apps.github.io/icons/nosqlbooster.png", - "arch": ["x86_64"] - }, - { - "packageName": "notable", - "description": "The Markdown-based note-taking app that doesn't suck...", - "icon": "https://portable-linux-apps.github.io/icons/notable.png", - "arch": ["x86_64"] - }, - { - "packageName": "notedown", - "description": "Note taking with react + rust...", - "icon": "https://portable-linux-apps.github.io/icons/notedown.png", - "arch": ["x86_64"] - }, - { - "packageName": "notekit", - "description": "A GTK3 hierarchical markdown notetaking app with tablet support...", - "icon": "https://portable-linux-apps.github.io/icons/notekit.png", - "arch": ["x86_64"] - }, - { - "packageName": "notemaster", - "description": "Note-taking app to help boost productivity...", - "icon": "https://portable-linux-apps.github.io/icons/notemaster.png", - "arch": ["x86_64"] - }, - { - "packageName": "notepad++", - "description": "Unofficial Appimage of Notepad++, with WINE prefix...", - "icon": "https://portable-linux-apps.github.io/icons/notepad++.png", - "arch": ["x86_64"] - }, - { - "packageName": "notepadnext", - "description": "A cross-platform, reimplementation of Notepad++...", - "icon": "https://portable-linux-apps.github.io/icons/notepadnext.png", - "arch": ["x86_64"] - }, - { - "packageName": "noter", - "description": "Simple serial terminal application...", - "icon": "https://portable-linux-apps.github.io/icons/noter.png", - "arch": ["x86_64"] - }, - { - "packageName": "notes", - "description": "Note-taking application, write down your thoughts...", - "icon": "https://portable-linux-apps.github.io/icons/notes.png", - "arch": ["x86_64"] - }, - { - "packageName": "notes-nc", - "description": "Cross-platform Notes desktop application for markdown notes...", - "icon": "https://portable-linux-apps.github.io/icons/notes-nc.png", - "arch": ["x86_64"] - }, - { - "packageName": "noteshrink-qt", - "description": "GUI for noteshrink.py with preview and pre-processing opt...", - "icon": "https://portable-linux-apps.github.io/icons/noteshrink-qt.png", - "arch": ["x86_64"] - }, - { - "packageName": "notesnook", - "description": "Private note-taking app that encrypts everything on client side...", - "icon": "https://portable-linux-apps.github.io/icons/notesnook.png", - "arch": ["x86_64"] - }, - { - "packageName": "notify-send", - "description": "A program to send desktop notifications. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/notify-send.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "novelwriter", - "description": "Plain text editor designed for writing novels, supports a minimal markdown-like syntax for formatting text...", - "icon": "https://portable-linux-apps.github.io/icons/novelwriter.png", - "arch": ["x86_64"] - }, - { - "packageName": "npm", - "description": "Package manager for Node.js dependencies and modules. This is part of \"node\"...", - "icon": "https://portable-linux-apps.github.io/icons/npm.png", - "arch": ["x86_64"] - }, - { - "packageName": "nproc", - "description": "Print the number of processing units available. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/nproc.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "npx", - "description": "Runs commands from npm packages without manual installation. This is part of \"node\"...", - "icon": "https://portable-linux-apps.github.io/icons/npx.png", - "arch": ["x86_64"] - }, - { - "packageName": "nrf-connect", - "description": "Framework for desktop apps for development kits...", - "icon": "https://portable-linux-apps.github.io/icons/nrf-connect.png", - "arch": ["x86_64"] - }, - { - "packageName": "nsz", - "description": "Unofficial, Homebrew compatible NSP/XCI compressor/decompressor...", - "icon": "https://portable-linux-apps.github.io/icons/nsz.png", - "arch": ["x86_64"] - }, - { - "packageName": "ntfydesktop", - "description": "A desktop client for ntfy. Allows you to subscribe to topics from any ntfy server and recieve notifications natively on the desktop...", - "icon": "https://portable-linux-apps.github.io/icons/ntfydesktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "ntsc-rs", - "description": "Free, open-source VHS effect. Standalone application + plugin (After Effects, Premiere, and OpenFX)...", - "icon": "https://portable-linux-apps.github.io/icons/ntsc-rs.png", - "arch": ["x86_64"] - }, - { - "packageName": "nu", - "description": "A new type of shell...", - "icon": "https://portable-linux-apps.github.io/icons/nu.png", - "arch": ["x86_64"] - }, - { - "packageName": "nuclear", - "description": "Streaming music player that finds free music for you...", - "icon": "https://portable-linux-apps.github.io/icons/nuclear.png", - "arch": ["x86_64"] - }, - { - "packageName": "nuclia", - "description": "A low-code API to build an AI multi-language semantic search engine...", - "icon": "https://portable-linux-apps.github.io/icons/nuclia.png", - "arch": ["x86_64"] - }, - { - "packageName": "nuclino", - "description": "Bring knowledge, docs, and projects together in one place...", - "icon": "https://portable-linux-apps.github.io/icons/nuclino.png", - "arch": ["x86_64"] - }, - { - "packageName": "nudelta", - "description": "Open source NuPhy Console alternative...", - "icon": "https://portable-linux-apps.github.io/icons/nudelta.png", - "arch": ["x86_64"] - }, - { - "packageName": "nugget-doom", - "description": "Nugget Doom is a Doom game source port forked from Woof! with additional features...", - "icon": "https://portable-linux-apps.github.io/icons/nugget-doom.png", - "arch": ["x86_64"] - }, - { - "packageName": "nugget-doom-enhanced", - "description": "Unofficial, a Doom source port forked from Woof! with additional features...", - "icon": "https://portable-linux-apps.github.io/icons/nugget-doom-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "numara", - "description": "Simple notepad calculator built on Electron...", - "icon": "https://portable-linux-apps.github.io/icons/numara.png", - "arch": ["x86_64"] - }, - { - "packageName": "numfmt", - "description": "From/to human-readable strings. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/numfmt.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "nunchuk", - "description": "Desktop bitcoin wallet with multisig, hardware, nfc and air-gapped key support...", - "icon": "https://portable-linux-apps.github.io/icons/nunchuk.png", - "arch": ["x86_64"] - }, - { - "packageName": "nvim", - "description": "NeoVim, Vim fork focused on extensibility and usability...", - "icon": "https://portable-linux-apps.github.io/icons/nvim.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "nvim-nightly", - "description": "NeoVim, Vim fork, the most recent development build...", - "icon": "https://portable-linux-apps.github.io/icons/nvim-nightly.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "nvtop", - "description": "GPUs process monitoring for AMD, Intel and NVIDIA...", - "icon": "https://portable-linux-apps.github.io/icons/nvtop.png", - "arch": ["x86_64"] - }, - { - "packageName": "nx-software-center", - "description": "A GUI to install and manage AppImages, Nitrux OS...", - "icon": "https://portable-linux-apps.github.io/icons/nx-software-center.png", - "arch": ["x86_64"] - }, - { - "packageName": "nxengine-evo", - "description": "A somewhat upgraded/refactored version of NXEngine...", - "icon": "https://portable-linux-apps.github.io/icons/nxengine-evo.png", - "arch": ["x86_64"] - }, - { - "packageName": "nxengine-evo-enhanced", - "description": "Unofficial, a somewhat upgraded/refactored version of NXEngine...", - "icon": "https://portable-linux-apps.github.io/icons/nxengine-evo-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "nxshell", - "description": "An easy to use new terminal...", - "icon": "https://portable-linux-apps.github.io/icons/nxshell.png", - "arch": ["x86_64"] - }, - { - "packageName": "nyaa", - "description": "A nyaa.si tui tool for browsing and downloading torrents...", - "icon": "https://portable-linux-apps.github.io/icons/nyaa.png", - "arch": ["x86_64"] - }, - { - "packageName": "nyan", - "description": "CLI, colored \"cat\" command...", - "icon": "https://portable-linux-apps.github.io/icons/nyan.png", - "arch": ["x86_64"] - }, - { - "packageName": "nychess", - "description": "A python Chess Engine and AI...", - "icon": "https://portable-linux-apps.github.io/icons/nychess.png", - "arch": ["x86_64"] - }, - { - "packageName": "nym-vpn", - "description": "Cross-platform open source VPN client built in Rust, with mixnet anonymity and WireGuard speed. Protects metadata, not just IP addresses. Zero-knowledge payments for unlinkable online activities...", - "icon": "https://portable-linux-apps.github.io/icons/nym-vpn.png", - "arch": ["x86_64"] - }, - { - "packageName": "nym-wallet", - "description": "Use the Nym network and take advantage of it...", - "icon": "https://portable-linux-apps.github.io/icons/nym-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "nyrna", - "description": "Suspend games and applications...", - "icon": "https://portable-linux-apps.github.io/icons/nyrna.png", - "arch": ["x86_64"] - }, - { - "packageName": "objcopy", - "description": "Translate object files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/objcopy.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "objdump", - "description": "From object files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/objdump.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "obliqoro", - "description": "A cross-platform tauri gui where Oblique Strategies meets Pomodoro...", - "icon": "https://portable-linux-apps.github.io/icons/obliqoro.png", - "arch": ["x86_64"] - }, - { - "packageName": "oblivion-desktop", - "description": "Unofficial Warp Client, Oblivion provides a secure, optimised internet access...", - "icon": "https://portable-linux-apps.github.io/icons/oblivion-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "obs-studio", - "description": "Unofficial. Software for video recording and live streaming...", - "icon": "https://portable-linux-apps.github.io/icons/obs-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "obsidian", - "description": "A powerful knowledge base, plain text Markdown files...", - "icon": "https://portable-linux-apps.github.io/icons/obsidian.png", - "arch": ["x86_64"] - }, - { - "packageName": "obsidian-cli", - "description": "Interact with Obsidian in the terminal. Open, search, create, update, move and delete notes!..", - "icon": "https://portable-linux-apps.github.io/icons/obsidian-cli.png", - "arch": ["x86_64"] - }, - { - "packageName": "obsidianirc", - "description": "Modern IRC Client for the web, desktop and mobile...", - "icon": "https://portable-linux-apps.github.io/icons/obsidianirc.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ocat", - "description": "OpenCore Auxiliary Tools, editing config.plist files for Acidanthera...", - "icon": "https://portable-linux-apps.github.io/icons/ocat.png", - "arch": ["x86_64"] - }, - { - "packageName": "ocenaudio", - "description": "Unofficial. Multiplatform Audio Editor...", - "icon": "https://portable-linux-apps.github.io/icons/ocenaudio.png", - "arch": ["x86_64"] - }, - { - "packageName": "ocrmypdf", - "description": "Unofficial AppImage of OCRmyPDF...", - "icon": "https://portable-linux-apps.github.io/icons/ocrmypdf.png", - "arch": ["x86_64"] - }, - { - "packageName": "ocvvid2fulldome", - "description": "Take flat videos, distort them to fit fulldome...", - "icon": "https://portable-linux-apps.github.io/icons/ocvvid2fulldome.png", - "arch": ["x86_64"] - }, - { - "packageName": "ocvwarp", - "description": "Warping images and videos for planetarium fulldome display...", - "icon": "https://portable-linux-apps.github.io/icons/ocvwarp.png", - "arch": ["x86_64"] - }, - { - "packageName": "od", - "description": "Dump files in octal and other formats. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/od.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "odamex", - "description": "Unofficial, Online Multiplayer Doom port with a strong focus on the original gameplay while providing a breadth of enhancements...", - "icon": "https://portable-linux-apps.github.io/icons/odamex.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "odicto", - "description": "An offline English dictionary app for desktop...", - "icon": "https://portable-linux-apps.github.io/icons/odicto.png", - "arch": ["x86_64"] - }, - { - "packageName": "oh", - "description": "A new Unix shell...", - "icon": "https://portable-linux-apps.github.io/icons/oh.png", - "arch": ["x86_64"] - }, - { - "packageName": "oh-mymd", - "description": "A markdown editor,support cloud sync...", - "icon": "https://portable-linux-apps.github.io/icons/oh-mymd.png", - "arch": ["x86_64"] - }, - { - "packageName": "okteta", - "description": "Unofficial. Hex editor for viewing and editing the raw data of files...", - "icon": "https://portable-linux-apps.github.io/icons/okteta.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "olive", - "description": "Free open-source non-linear video editor, nightly build...", - "icon": "https://portable-linux-apps.github.io/icons/olive.png", - "arch": ["x86_64"] - }, - { - "packageName": "olive-legacy", - "description": "Free non-linear video editor, version 0.1...", - "icon": "https://portable-linux-apps.github.io/icons/olive-legacy.png", - "arch": ["x86_64"] - }, - { - "packageName": "ollama", - "description": "Get up and running with Llama 3, Mistral, Gemma, and other LLMs...", - "icon": "https://portable-linux-apps.github.io/icons/ollama.png", - "arch": ["x86_64"] - }, - { - "packageName": "omekasy", - "description": "Command line application that converts alphanumeric characters to various styles 𝚍𝚎𝚏𝚒𝚗𝚎𝚍 𝚒𝚗 𝚄𝚗𝚒𝚌𝚘𝚍𝚎...", - "icon": "https://portable-linux-apps.github.io/icons/omekasy.png", - "arch": ["x86_64"] - }, - { - "packageName": "omikuji", - "description": "Qt/QML based game launcher for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/omikuji.png", - "arch": ["x86_64"] - }, - { - "packageName": "ommpfritt", - "description": "Semantic, procedural, non-destructive vector modelling...", - "icon": "https://portable-linux-apps.github.io/icons/ommpfritt.png", - "arch": ["x86_64"] - }, - { - "packageName": "omniget", - "description": "Media downloader from various websites...", - "icon": "https://portable-linux-apps.github.io/icons/omniget.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "omnipull", - "description": "Pull Everything. Everywhere. OmniPull is a powerful, cross-platform download manager...", - "icon": "https://portable-linux-apps.github.io/icons/omnipull.png", - "arch": ["x86_64"] - }, - { - "packageName": "omniroute", - "description": "an OpenAI-compatible endpoint with smart routing, load balancing, retries, and fallbacks. Add policies, rate limits, caching, and observability for reliable, cost-aware inference...", - "icon": "https://portable-linux-apps.github.io/icons/omniroute.png", - "arch": ["x86_64"] - }, - { - "packageName": "omnispeak", - "description": "Re-implementation of \"Commander Keen in Goodbye Galaxy\"...", - "icon": "https://portable-linux-apps.github.io/icons/omnispeak.png", - "arch": ["x86_64"] - }, - { - "packageName": "one-gpt", - "description": "Aggregate ChatGPT official version, Wenxin Yiyan, Poe, chatchat...", - "icon": "https://portable-linux-apps.github.io/icons/one-gpt.png", - "arch": ["x86_64"] - }, - { - "packageName": "oneanime", - "description": "A clean, ad-free anime viewing app. A third-party client for Anime1 with subtitles and a Material You-compliant interface...", - "icon": "https://portable-linux-apps.github.io/icons/oneanime.png", - "arch": ["x86_64"] - }, - { - "packageName": "onedrive-gui", - "description": "Microsoft OneDrive Client GUI...", - "icon": "https://portable-linux-apps.github.io/icons/onedrive-gui.png", - "arch": ["x86_64"] - }, - { - "packageName": "onefetch", - "description": "Command-line Git information tool...", - "icon": "https://portable-linux-apps.github.io/icons/onefetch.png", - "arch": ["x86_64"] - }, - { - "packageName": "onekey-wallet", - "description": "Open source crypto wallet...", - "icon": "https://portable-linux-apps.github.io/icons/onekey-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "onenote", - "description": "P3X Onenote Linux...", - "icon": "https://portable-linux-apps.github.io/icons/onenote.png", - "arch": ["x86_64"] - }, - { - "packageName": "oneweb", - "description": "OneWeb - free, private and secure web browser! POLSKA GUROM...", - "icon": "https://portable-linux-apps.github.io/icons/oneweb.png", - "arch": ["x86_64"] - }, - { - "packageName": "onionhop", - "description": "Privacy-first Desktop app that routes your traffic through Tor - Anonymous browsing made simple...", - "icon": "https://portable-linux-apps.github.io/icons/onionhop.png", - "arch": ["x86_64"] - }, - { - "packageName": "onionmediax", - "description": "OnionMedia X. Convert and download videos and music quickly and easily...", - "icon": "https://portable-linux-apps.github.io/icons/onionmediax.png", - "arch": ["x86_64"] - }, - { - "packageName": "onlyoffice", - "description": "Office Suite with full support for MS Windows formats and cloud...", - "icon": "https://portable-linux-apps.github.io/icons/onlyoffice.png", - "arch": ["x86_64"] - }, - { - "packageName": "onlyrefs", - "description": "Organize all of your references, notes, bookmarks and more...", - "icon": "https://portable-linux-apps.github.io/icons/onlyrefs.png", - "arch": ["x86_64"] - }, - { - "packageName": "onnx2bnn", - "description": "Binary neural networks inference framework for mobile platform...", - "icon": "https://portable-linux-apps.github.io/icons/onnx2bnn.png", - "arch": ["x86_64"] - }, - { - "packageName": "onnx2daq", - "description": "Wrapper of NNAPI, \"DNNLibrary\" is for \"daquexian's NNAPI libs...", - "icon": "https://portable-linux-apps.github.io/icons/onnx2daq.png", - "arch": ["x86_64"] - }, - { - "packageName": "onshape", - "description": "Onshape desktop app, web application shell...", - "icon": "https://portable-linux-apps.github.io/icons/onshape.png", - "arch": ["x86_64"] - }, - { - "packageName": "onthespot", - "description": "A GUI music downloader for Apple Music, Bandcamp, Deezer, Qobuz, Spotify, Tidal, and More...", - "icon": "https://portable-linux-apps.github.io/icons/onthespot.png", - "arch": ["x86_64"] - }, - { - "packageName": "onyx", - "description": "Decentralized messaging application based on PSS...", - "icon": "https://portable-linux-apps.github.io/icons/onyx.png", - "arch": ["x86_64"] - }, - { - "packageName": "opal", - "description": "Plays relaxing music in the background...", - "icon": "https://portable-linux-apps.github.io/icons/opal.png", - "arch": ["x86_64"] - }, - { - "packageName": "open-ai-translator", - "description": "Browser extension for translation based on ChatGPT API...", - "icon": "https://portable-linux-apps.github.io/icons/open-ai-translator.png", - "arch": ["x86_64"] - }, - { - "packageName": "open-markup-editor", - "description": "Pluggable markup editor...", - "icon": "https://portable-linux-apps.github.io/icons/open-markup-editor.png", - "arch": ["x86_64"] - }, - { - "packageName": "open-pencil", - "description": "AI-native design editor. Open-source Figma alternative...", - "icon": "https://portable-linux-apps.github.io/icons/open-pencil.png", - "arch": ["x86_64"] - }, - { - "packageName": "open-typer", - "description": "A free and open source typing tutor program...", - "icon": "https://portable-linux-apps.github.io/icons/open-typer.png", - "arch": ["x86_64"] - }, - { - "packageName": "open-video-downloader", - "description": "A cross-platform GUI for youtube-dl made in Electron...", - "icon": "https://portable-linux-apps.github.io/icons/open-video-downloader.png", - "arch": ["x86_64"] - }, - { - "packageName": "open-webui", - "description": "Your AI, right on your desktop. Open WebUI as a native app. Run models locally or connect to any server. No Docker, no terminal, no setup. Download, launch, chat...", - "icon": "https://portable-linux-apps.github.io/icons/open-webui.png", - "arch": ["x86_64"] - }, - { - "packageName": "openapi-tui", - "description": "Terminal UI to list, browse and run APIs defined with openapi...", - "icon": "https://portable-linux-apps.github.io/icons/openapi-tui.png", - "arch": ["x86_64"] - }, - { - "packageName": "openarena", - "description": "Violent & sexy, multiplayer first person shooter game, ioquake3...", - "icon": "https://portable-linux-apps.github.io/icons/openarena.png", - "arch": ["x86_64"] - }, - { - "packageName": "openaudible", - "description": "Download and manage your Audible audiobooks...", - "icon": "https://portable-linux-apps.github.io/icons/openaudible.png", - "arch": ["x86_64"] - }, - { - "packageName": "openblok", - "description": "A customizable falling block puzzle game like tetris...", - "icon": "https://portable-linux-apps.github.io/icons/openblok.png", - "arch": ["x86_64"] - }, - { - "packageName": "openboardview", - "description": "Unofficial AppImage of Open Board Viewer...", - "icon": "https://portable-linux-apps.github.io/icons/openboardview.png", - "arch": ["x86_64"] - }, - { - "packageName": "openbor", - "description": "Ultimate 2D side scrolling engine for beat em ups, shooters.....", - "icon": "https://portable-linux-apps.github.io/icons/openbor.png", - "arch": ["x86_64"] - }, - { - "packageName": "openclaw", - "description": "Unofficial, reimplementation of Captain Claw (1997) platformer...", - "icon": "https://portable-linux-apps.github.io/icons/openclaw.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "opencloud", - "description": "Desktop application to synchronize files from OpenCloud with your computer...", - "icon": "https://portable-linux-apps.github.io/icons/opencloud.png", - "arch": ["x86_64"] - }, - { - "packageName": "opencode", - "description": "The open source coding agent...", - "icon": "https://portable-linux-apps.github.io/icons/opencode.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "opencode-cli", - "description": "Unofficial AppImage of the opencode CLI utility. The open source coding agent...", - "icon": "https://portable-linux-apps.github.io/icons/opencode-cli.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "opencode-desktop", - "description": "Desktop application for opencode, the open source coding agent...", - "icon": "https://portable-linux-apps.github.io/icons/opencode-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "opencode-enhanced", - "description": "Unofficial, improved AppImage of opencode, the open source coding agent...", - "icon": "https://portable-linux-apps.github.io/icons/opencode-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "opencomic", - "description": "Comic and Manga reader, written with Node.js and using Electron...", - "icon": "https://portable-linux-apps.github.io/icons/opencomic.png", - "arch": ["x86_64"] - }, - { - "packageName": "opengothic", - "description": "Unofficial AppImage of OpenGothic...", - "icon": "https://portable-linux-apps.github.io/icons/opengothic.png", - "arch": ["x86_64"] - }, - { - "packageName": "openhv", - "description": "A mod for OpenRA based on the Hard Vacuum, game...", - "icon": "https://portable-linux-apps.github.io/icons/openhv.png", - "arch": ["x86_64"] - }, - { - "packageName": "openjazz", - "description": "Unofficial, open-source version of the classic Jazz Jackrabbit™ games...", - "icon": "https://portable-linux-apps.github.io/icons/openjazz.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "openlara", - "description": "Unofficial, classic Tomb Raider open-source engine...", - "icon": "https://portable-linux-apps.github.io/icons/openlara.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "openlens", - "description": "OpenLens Binary Build Repository...", - "icon": "https://portable-linux-apps.github.io/icons/openlens.png", - "arch": ["x86_64"] - }, - { - "packageName": "openlibextended", - "description": "An Open source app to download and read books from shadow library (Anna’s Archive)...", - "icon": "https://portable-linux-apps.github.io/icons/openlibextended.png", - "arch": ["x86_64"] - }, - { - "packageName": "openloco", - "description": "Unofficial, an open source re-implementation of Chris Sawyer's Locomotion...", - "icon": "https://portable-linux-apps.github.io/icons/openloco.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "openmsx", - "description": "Unofficial, the MSX emulator that aims for perfection...", - "icon": "https://portable-linux-apps.github.io/icons/openmsx.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "openmw", - "description": "OpenMW is an open-source open-world RPG game engine that supports playing Morrowind...", - "icon": "https://portable-linux-apps.github.io/icons/openmw.png", - "arch": ["x86_64"] - }, - { - "packageName": "openop2", - "description": "Re-implementation of the game Outpost 2, using the OpenRA engine...", - "icon": "https://portable-linux-apps.github.io/icons/openop2.png", - "arch": ["x86_64"] - }, - { - "packageName": "openosrs-launcher", - "description": "Open-source client for Old School RuneScape...", - "icon": "https://portable-linux-apps.github.io/icons/openosrs-launcher.png", - "arch": ["x86_64"] - }, - { - "packageName": "openpilot-workbench", - "description": "Fix problems with EON/Openpilot...", - "icon": "https://portable-linux-apps.github.io/icons/openpilot-workbench.png", - "arch": ["x86_64"] - }, - { - "packageName": "openra-dune", - "description": "Real-time strategy game engine, MOD Dune 2000...", - "icon": "https://portable-linux-apps.github.io/icons/openra-dune.png", - "arch": ["x86_64"] - }, - { - "packageName": "openra-enhanced", - "description": "Unofficial AppImage of OpenRA containing all 3 game modes...", - "icon": "https://portable-linux-apps.github.io/icons/openra-enhanced.png", - "arch": ["x86_64"] - }, - { - "packageName": "openra-red-alert", - "description": "Real-time strategy game engine, MOD Red Alert...", - "icon": "https://portable-linux-apps.github.io/icons/openra-red-alert.png", - "arch": ["x86_64"] - }, - { - "packageName": "openra-tiberian-dawn", - "description": "Real-time strategy game engine penGL, MOD TD...", - "icon": "https://portable-linux-apps.github.io/icons/openra-tiberian-dawn.png", - "arch": ["x86_64"] - }, - { - "packageName": "openramodsdk", - "description": "Dev Kit for building your own games using the OpenRA engine...", - "icon": "https://portable-linux-apps.github.io/icons/openramodsdk.png", - "arch": ["x86_64"] - }, - { - "packageName": "openrct2", - "description": "Re-implementation of RollerCoaster Tycoon 2 (RCT2), expanding the game with new features...", - "icon": "https://portable-linux-apps.github.io/icons/openrct2.png", - "arch": ["x86_64"] - }, - { - "packageName": "openrct2-enhanced", - "description": "Unofficial, Re-implementation of RollerCoaster Tycoon 2 (RCT2), expanding the game with new features...", - "icon": "https://portable-linux-apps.github.io/icons/openrct2-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "openrgb", - "description": "RGB lighting control that doesn't depend on manufacturer software...", - "icon": "https://portable-linux-apps.github.io/icons/openrgb.png", - "arch": ["x86_64"] - }, - { - "packageName": "openscad", - "description": "The Programmers Solid 3D CAD Modeller...", - "icon": "https://portable-linux-apps.github.io/icons/openscad.png", - "arch": ["x86_64"] - }, - { - "packageName": "openscreen", - "description": "Create stunning screen recordings for free. Open-source, no subscriptions, no watermarks, and free for commercial use. An alternative to Screen Studio...", - "icon": "https://portable-linux-apps.github.io/icons/openscreen.png", - "arch": ["x86_64"] - }, - { - "packageName": "openshot", - "description": "A powerful Video Editor...", - "icon": "https://portable-linux-apps.github.io/icons/openshot.png", - "arch": ["x86_64"] - }, - { - "packageName": "openstickies", - "description": "Sticky notes for your desktop. Simple, fast, private. Drop files, paste screenshots, set reminders, keep things visible where you work...", - "icon": "https://portable-linux-apps.github.io/icons/openstickies.png", - "arch": ["x86_64"] - }, - { - "packageName": "openstream-music", - "description": "The OpenStream Music source...", - "icon": "https://portable-linux-apps.github.io/icons/openstream-music.png", - "arch": ["x86_64"] - }, - { - "packageName": "openswe1r", - "description": "Racer...", - "icon": "https://portable-linux-apps.github.io/icons/openswe1r.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "openterface-qt", - "description": "Openterface Mini-KVM...", - "icon": "https://portable-linux-apps.github.io/icons/openterface-qt.png", - "arch": ["x86_64"] - }, - { - "packageName": "opentodolist", - "description": "A note and task managing application...", - "icon": "https://portable-linux-apps.github.io/icons/opentodolist.png", - "arch": ["x86_64"] - }, - { - "packageName": "opentrons", - "description": "Opentrons desktop application...", - "icon": "https://portable-linux-apps.github.io/icons/opentrons.png", - "arch": ["x86_64"] - }, - { - "packageName": "openttd", - "description": "Unofficial, an open source simulation game based upon Transport Tycoon Deluxe...", - "icon": "https://portable-linux-apps.github.io/icons/openttd.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "opentubex", - "description": "A FreeTube fork with extra features for privacy...", - "icon": "https://portable-linux-apps.github.io/icons/opentubex.png", - "arch": ["x86_64"] - }, - { - "packageName": "opentyrian2000", - "description": "Unofficial, an open-source port of the DOS shoot-em-up Tyrian...", - "icon": "https://portable-linux-apps.github.io/icons/opentyrian2000.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "openxcom", - "description": "Enemy Unknown licensed under the GPL and written in C++ / SDL...", - "icon": "https://portable-linux-apps.github.io/icons/openxcom.png", - "arch": ["x86_64"] - }, - { - "packageName": "openxcom-extended", - "description": "OXCE, extended version of openXcom provide better mod support, QoL improvements, new game mechanics, improved and new GUIs...", - "icon": "https://portable-linux-apps.github.io/icons/openxcom-extended.png", - "arch": ["x86_64"] - }, - { - "packageName": "openxray", - "description": "Unofficial AppImage of OpenXRay...", - "icon": "https://portable-linux-apps.github.io/icons/openxray.png", - "arch": ["x86_64"] - }, - { - "packageName": "opera", - "description": "Unofficial. Fast and secure web browser, Stable version...", - "icon": "https://portable-linux-apps.github.io/icons/opera.png", - "arch": ["x86_64"] - }, - { - "packageName": "opera-beta", - "description": "Unofficial. Fast and secure web browser, Beta version...", - "icon": "https://portable-linux-apps.github.io/icons/opera-beta.png", - "arch": ["x86_64"] - }, - { - "packageName": "opera-dev", - "description": "Unofficial. Fast and secure web browser, Developer version...", - "icon": "https://portable-linux-apps.github.io/icons/opera-dev.png", - "arch": ["x86_64"] - }, - { - "packageName": "optiimage", - "description": "Unofficial, optimize your images with OptiImage, a useful image compressor that supports PNG, JPEG, WebP and SVG file types...", - "icon": "https://portable-linux-apps.github.io/icons/optiimage.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "orange", - "description": "Cross-platform local file search engine...", - "icon": "https://portable-linux-apps.github.io/icons/orange.png", - "arch": ["x86_64"] - }, - { - "packageName": "oras", - "description": "OCI registry client managing content like artifacts, images, packages...", - "icon": "https://portable-linux-apps.github.io/icons/oras.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "orca-note", - "description": "A note taking application that is good both for outlining and long-form writing...", - "icon": "https://portable-linux-apps.github.io/icons/orca-note.png", - "arch": ["x86_64"] - }, - { - "packageName": "orcaslicer", - "description": "G-code generator for 3D printers, Stable release...", - "icon": "https://portable-linux-apps.github.io/icons/orcaslicer.png", - "arch": ["x86_64"] - }, - { - "packageName": "orcaslicer-devel", - "description": "G-code generator for 3D printers, the most recent development build (nightly, alpha, beta, rc)...", - "icon": "https://portable-linux-apps.github.io/icons/orcaslicer-devel.png", - "arch": ["x86_64"] - }, - { - "packageName": "osrs-tools", - "description": "Several tools for OSRS...", - "icon": "https://portable-linux-apps.github.io/icons/osrs-tools.png", - "arch": ["x86_64"] - }, - { - "packageName": "ossia-score", - "description": "Sequencer for audio-visual artists for interactive shows...", - "icon": "https://portable-linux-apps.github.io/icons/ossia-score.png", - "arch": ["x86_64"] - }, - { - "packageName": "ostara", - "description": "To monitor and interact with Spring Boot Applications via Actuator...", - "icon": "https://portable-linux-apps.github.io/icons/ostara.png", - "arch": ["x86_64"] - }, - { - "packageName": "osu", - "description": "A free-to-win rhythm game. Rhythm is just a click away!..", - "icon": "https://portable-linux-apps.github.io/icons/osu.png", - "arch": ["x86_64"] - }, - { - "packageName": "ots", - "description": "Share end-to-end encrypted secrets with others via a one-time URL...", - "icon": "https://portable-linux-apps.github.io/icons/ots.png", - "arch": ["x86_64"] - }, - { - "packageName": "ottomatic", - "description": "Pangea Software’s Otto Matic, a game of robots...", - "icon": "https://portable-linux-apps.github.io/icons/ottomatic.png", - "arch": ["x86_64"] - }, - { - "packageName": "outer-wilds-mod-manager", - "description": "The mod manager for the Outer Wilds Mod Loader..", - "icon": "https://portable-linux-apps.github.io/icons/outer-wilds-mod-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "outline-client", - "description": "Lean on the Cordova and Electron frameworks...", - "icon": "https://portable-linux-apps.github.io/icons/outline-client.png", - "arch": ["x86_64"] - }, - { - "packageName": "outline-manager", - "description": "Create and manage access to Outline servers...", - "icon": "https://portable-linux-apps.github.io/icons/outline-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "overbind", - "description": "A utility that allows binding keyboard buttons to virtual Xbox360 controller joystick outputs...", - "icon": "https://portable-linux-apps.github.io/icons/overbind.png", - "arch": ["x86_64"] - }, - { - "packageName": "overlayed", - "description": "A modern, open-source, and free voice chat overlay for Discord...", - "icon": "https://portable-linux-apps.github.io/icons/overlayed.png", - "arch": ["x86_64"] - }, - { - "packageName": "oversteer", - "description": "Unofficial, Steering Wheel Manager for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/oversteer.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "overte", - "description": "Overte open source virtual worlds platform...", - "icon": "https://portable-linux-apps.github.io/icons/overte.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ovideo", - "description": "Video Editor...", - "icon": "https://portable-linux-apps.github.io/icons/ovideo.png", - "arch": ["x86_64"] - }, - { - "packageName": "ow-mod-man", - "description": "The mod manager for the Outer Wilds Mod Loader...", - "icon": "https://portable-linux-apps.github.io/icons/ow-mod-man.png", - "arch": ["x86_64"] - }, - { - "packageName": "owallet", - "description": "A comprehensive Ontology desktop wallet...", - "icon": "https://portable-linux-apps.github.io/icons/owallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "owncloud", - "description": "Desktop Syncing Client for ownCloud. ownCloud, a Kiteworks Company, offers file sharing and collaboration trusted by 200+ million users worldwide regardless of device or location...", - "icon": "https://portable-linux-apps.github.io/icons/owncloud.png", - "arch": ["x86_64"] - }, - { - "packageName": "owte", - "description": "Anime girl dancing on your screen...", - "icon": "https://portable-linux-apps.github.io/icons/owte.png", - "arch": ["x86_64"] - }, - { - "packageName": "oxen-gui-wallet", - "description": "Oxen electron GUI wallet...", - "icon": "https://portable-linux-apps.github.io/icons/oxen-gui-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "p2p-chat", - "description": "P2P LAN chatting and file sharing tool...", - "icon": "https://portable-linux-apps.github.io/icons/p2p-chat.png", - "arch": ["x86_64"] - }, - { - "packageName": "p2pderivatives", - "description": "Enables users to enter into Discreet Log Contracts...", - "icon": "https://portable-linux-apps.github.io/icons/p2pderivatives.png", - "arch": ["x86_64"] - }, - { - "packageName": "p3x-redis-ui", - "description": "A very functional handy database GUI and works in your pocket...", - "icon": "https://portable-linux-apps.github.io/icons/p3x-redis-ui.png", - "arch": ["x86_64"] - }, - { - "packageName": "packetsender", - "description": "Network utility for sending/receiving TCP/UDP/SSL/HTTP...", - "icon": "https://portable-linux-apps.github.io/icons/packetsender.png", - "arch": ["x86_64"] - }, - { - "packageName": "packsquash", - "description": "A Minecraft Java Edition resource and data pack optimizer...", - "icon": "https://portable-linux-apps.github.io/icons/packsquash.png", - "arch": ["x86_64"] - }, - { - "packageName": "paclear", - "description": "CLI, paclear is a clear command with PAC-MAN animation...", - "icon": "https://portable-linux-apps.github.io/icons/paclear.png", - "arch": ["x86_64"] - }, - { - "packageName": "padloc", - "description": "Electron Wrapper for Padloc app...", - "icon": "https://portable-linux-apps.github.io/icons/padloc.png", - "arch": ["x86_64"] - }, - { - "packageName": "pageedit", - "description": "EPub XHTML Visual Editor...", - "icon": "https://portable-linux-apps.github.io/icons/pageedit.png", - "arch": ["x86_64"] - }, - { - "packageName": "painel-web", - "description": "Novo SGA panel...", - "icon": "https://portable-linux-apps.github.io/icons/painel-web.png", - "arch": ["x86_64"] - }, - { - "packageName": "paket", - "description": "A simple and fast package manager for the Fish shell written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/paket.png", - "arch": ["x86_64"] - }, - { - "packageName": "palapeli", - "description": "Jigsaw puzzle game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/palapeli.png", - "arch": ["x86_64"] - }, - { - "packageName": "palemoon", - "description": "Unofficial. Pale Moon is a fully-independent web browser built on its own maintained platform and rendering engine (Goanna), focusing on user customization...", - "icon": "https://portable-linux-apps.github.io/icons/palemoon.png", - "arch": ["x86_64"] - }, - { - "packageName": "palemoon-legacy", - "description": "Unofficial. Pale Moon is a fully-independent web browser built on its own maintained platform and rendering engine (Goanna), focusing on user customization. This is the GTK2 implementation...", - "icon": "https://portable-linux-apps.github.io/icons/palemoon-legacy.png", - "arch": ["x86_64"] - }, - { - "packageName": "pandoralauncher", - "description": "Pandora is a modern Minecraft launcher that balances ease-of-use with powerful instance management features...", - "icon": "https://portable-linux-apps.github.io/icons/pandoralauncher.png", - "arch": ["x86_64"] - }, - { - "packageName": "pandoralaunchercrack", - "description": "Customized version of Pandora, a modern Minecraft launcher that balances ease-of-use with powerful instance management features...", - "icon": "https://portable-linux-apps.github.io/icons/pandoralaunchercrack.png", - "arch": ["x86_64"] - }, - { - "packageName": "panini", - "description": "Perspective views from panoramic images...", - "icon": "https://portable-linux-apps.github.io/icons/panini.png", - "arch": ["x86_64"] - }, - { - "packageName": "pano-scrobbler", - "description": "Feature packed cross-platform music tracker for Last.fm, ListenBrainz, Libre.fm, Pleroma and other compatible services...", - "icon": "https://portable-linux-apps.github.io/icons/pano-scrobbler.png", - "arch": ["x86_64"] - }, - { - "packageName": "panwriter", - "description": "Markdown editor with pandoc integration...", - "icon": "https://portable-linux-apps.github.io/icons/panwriter.png", - "arch": ["x86_64"] - }, - { - "packageName": "paper", - "description": "A CLI Tool to set a random wallpaper from Unsplash.com...", - "icon": "https://portable-linux-apps.github.io/icons/paper.png", - "arch": ["x86_64"] - }, - { - "packageName": "paper-design", - "description": "Paper is a modern and powerful design tool that helps you create, share, and ship your best work. Design incredible, the connected canvas for teams shipping with agents...", - "icon": "https://portable-linux-apps.github.io/icons/paper-design.png", - "arch": ["x86_64"] - }, - { - "packageName": "papercraft", - "description": "A tool to unwrap 3D models...", - "icon": "https://portable-linux-apps.github.io/icons/papercraft.png", - "arch": ["x86_64"] - }, - { - "packageName": "paperlib", - "description": "An open-source academic paper management tool...", - "icon": "https://portable-linux-apps.github.io/icons/paperlib.png", - "arch": ["x86_64"] - }, - { - "packageName": "paperweight", - "description": "Paperweight scans your inbox to map your digital footprint, then helps you take back control and delete your data...", - "icon": "https://portable-linux-apps.github.io/icons/paperweight.png", - "arch": ["x86_64"] - }, - { - "packageName": "parabolic", - "description": "Unofficial, Download web video and audio...", - "icon": "https://portable-linux-apps.github.io/icons/parabolic.png", - "arch": ["x86_64"] - }, - { - "packageName": "parallelcoin", - "description": "Parallelcoin qt wallet appimage binary...", - "icon": "https://portable-linux-apps.github.io/icons/parallelcoin.png", - "arch": ["x86_64"] - }, - { - "packageName": "parchment", - "description": "A minimal minimal text editor written using web technologies...", - "icon": "https://portable-linux-apps.github.io/icons/parchment.png", - "arch": ["x86_64"] - }, - { - "packageName": "parity-fether", - "description": "Fether Wallet...", - "icon": "https://portable-linux-apps.github.io/icons/parity-fether.png", - "arch": ["x86_64"] - }, - { - "packageName": "parsec", - "description": "Open source Dropbox-like file sharing with full client encryption...", - "icon": "https://portable-linux-apps.github.io/icons/parsec.png", - "arch": ["x86_64"] - }, - { - "packageName": "parsec-linux", - "description": "Parsec game streaming client...", - "icon": "https://portable-linux-apps.github.io/icons/parsec-linux.png", - "arch": ["x86_64"] - }, - { - "packageName": "passky", - "description": "Simple and secure password manager...", - "icon": "https://portable-linux-apps.github.io/icons/passky.png", - "arch": ["x86_64"] - }, - { - "packageName": "passphraser", - "description": "Phrase-based password generator that can use your own list of words...", - "icon": "https://portable-linux-apps.github.io/icons/passphraser.png", - "arch": ["x86_64"] - }, - { - "packageName": "paste", - "description": "Merge lines of files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/paste.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "pastel", - "description": "A command-line tool to generate, analyze, convert and manipulate colors...", - "icon": "https://portable-linux-apps.github.io/icons/pastel.png", - "arch": ["x86_64"] - }, - { - "packageName": "patchbay", - "description": "An alt. Secure Scuttlebutt client compatible with Patchwork...", - "icon": "https://portable-linux-apps.github.io/icons/patchbay.png", - "arch": ["x86_64"] - }, - { - "packageName": "patchelf", - "description": "Utility to modify the dynamic linker and RPATH of ELF executables...", - "icon": "https://portable-linux-apps.github.io/icons/patchelf.png", - "arch": ["x86_64"] - }, - { - "packageName": "patchwork", - "description": "Messaging and sharing app built on top of Secure Scuttlebutt...", - "icon": "https://portable-linux-apps.github.io/icons/patchwork.png", - "arch": ["x86_64"] - }, - { - "packageName": "pathchk", - "description": "File names are valid or portable. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/pathchk.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "pathephone", - "description": "Distributed audio player...", - "icon": "https://portable-linux-apps.github.io/icons/pathephone.png", - "arch": ["x86_64"] - }, - { - "packageName": "pattypan", - "description": "Unofficial AppImage of Pattypan...", - "icon": "https://portable-linux-apps.github.io/icons/pattypan.png", - "arch": ["x86_64"] - }, - { - "packageName": "pavo", - "description": "A mini desktop wallpaper application...", - "icon": "https://portable-linux-apps.github.io/icons/pavo.png", - "arch": ["x86_64"] - }, - { - "packageName": "pavucontrol-qt", - "description": "Qt port of pavucontrol Pulseaudio mixer, unofficial AppImage...", - "icon": "https://portable-linux-apps.github.io/icons/pavucontrol-qt.png", - "arch": ["x86_64"] - }, - { - "packageName": "pay-respects", - "description": "Terminal command correction, alternative to thefuck written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/pay-respects.png", - "arch": ["x86_64"] - }, - { - "packageName": "pb-for-desktop", - "description": "Pushbullet Desktop app...", - "icon": "https://portable-linux-apps.github.io/icons/pb-for-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "pboy", - "description": "A small .pdf management tool with a command-line UI...", - "icon": "https://portable-linux-apps.github.io/icons/pboy.png", - "arch": ["x86_64"] - }, - { - "packageName": "pcexhumed", - "description": "Unofficial, port of the PC version of Exhumed based on EDuke32...", - "icon": "https://portable-linux-apps.github.io/icons/pcexhumed.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "pcloud", - "description": "pCloud Drive Client, cloud service, built using electron and node.js...", - "icon": "https://portable-linux-apps.github.io/icons/pcloud.png", - "arch": ["x86_64"] - }, - { - "packageName": "pcsx-redux-enhanced", - "description": "Unofficial, modern fork of the pcsxr PlayStation 1 emulator focused on reverse engineering and homebrew development...", - "icon": "https://portable-linux-apps.github.io/icons/pcsx-redux-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "pcsx2", - "description": "PCSX2 is a free and open-source PlayStation 2 (PS2) emulator, using a combination of MIPS CPU Interpreters, Recompilers and a Virtual Machine which manages hardware states and PS2 system memory. This allows you to play PS2 games on your PC, with many additional features and benefits...", - "icon": "https://portable-linux-apps.github.io/icons/pcsx2.png", - "arch": ["x86_64"] - }, - { - "packageName": "pcsx2-nightly", - "description": "PCSX2 is a free and open-source PlayStation 2 (PS2) emulator, using a combination of MIPS CPU Interpreters, Recompilers and a Virtual Machine which manages hardware states and PS2 system memory. This allows you to play PS2 games on your PC, with many additional features and benefits. This is the nightly version...", - "icon": "https://portable-linux-apps.github.io/icons/pcsx2-nightly.png", - "arch": ["x86_64"] - }, - { - "packageName": "pdf-arranger", - "description": "Unofficial, a small python-gtk application, which helps the user to merge or split PDF documents and rotate, crop and rearrange their pages...", - "icon": "https://portable-linux-apps.github.io/icons/pdf-arranger.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "pdf-diff", - "description": "A CLI tool for visualizing differences between two pdf files...", - "icon": "https://portable-linux-apps.github.io/icons/pdf-diff.png", - "arch": ["x86_64"] - }, - { - "packageName": "pdf-sync", - "description": "PDF Reader in JavaScript with Sync...", - "icon": "https://portable-linux-apps.github.io/icons/pdf-sync.png", - "arch": ["x86_64"] - }, - { - "packageName": "pdf-tricks", - "description": "Unofficial, a simple, efficient application for small manipulations in PDF files...", - "icon": "https://portable-linux-apps.github.io/icons/pdf-tricks.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "pdf2htmlex", - "description": "Convert PDF to HTML without losing text or format...", - "icon": "https://portable-linux-apps.github.io/icons/pdf2htmlex.png", - "arch": ["x86_64"] - }, - { - "packageName": "pdf4qt", - "description": "Open source PDF editor...", - "icon": "https://portable-linux-apps.github.io/icons/pdf4qt.png", - "arch": ["x86_64"] - }, - { - "packageName": "pdfcompress", - "description": "A utility to compress PDF documentas based on Ghostscript and YAD...", - "icon": "https://portable-linux-apps.github.io/icons/pdfcompress.png", - "arch": ["x86_64"] - }, - { - "packageName": "pdfcrackgui", - "description": "GUI overlay for the popular and highly regarded pdfcrack...", - "icon": "https://portable-linux-apps.github.io/icons/pdfcrackgui.png", - "arch": ["x86_64"] - }, - { - "packageName": "pdfquirk", - "description": "Creating PDFs from images or scanner made easy...", - "icon": "https://portable-linux-apps.github.io/icons/pdfquirk.png", - "arch": ["x86_64"] - }, - { - "packageName": "pdmaner", - "description": "A relational database modeling tool...", - "icon": "https://portable-linux-apps.github.io/icons/pdmaner.png", - "arch": ["x86_64"] - }, - { - "packageName": "pear-desktop", - "description": "An extension for music player...", - "icon": "https://portable-linux-apps.github.io/icons/pear-desktop.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "pearpass", - "description": "An open-source, privacy-first password manager with peer-to-peer syncing and end-to-end encryption...", - "icon": "https://portable-linux-apps.github.io/icons/pearpass.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "peazip", - "description": "Unofficial. PeaZip Appimage for linux 64bits...", - "icon": "https://portable-linux-apps.github.io/icons/peazip.png", - "arch": ["x86_64"] - }, - { - "packageName": "peep", - "description": "The CLI text viewer tool that works like less command on small pane within the terminal window...", - "icon": "https://portable-linux-apps.github.io/icons/peep.png", - "arch": ["x86_64"] - }, - { - "packageName": "pelusica", - "description": "Action game, control the blue dot with your keyboard/create music...", - "icon": "https://portable-linux-apps.github.io/icons/pelusica.png", - "arch": ["x86_64"] - }, - { - "packageName": "pencil", - "description": "Pencil2D is an easy, intuitive tool to make 2D hand-drawn animations...", - "icon": "https://portable-linux-apps.github.io/icons/pencil.png", - "arch": ["x86_64"] - }, - { - "packageName": "penguins-eggs", - "description": "A professional and universal remastering tool for all major distributions...", - "icon": "https://portable-linux-apps.github.io/icons/penguins-eggs.png", - "arch": ["x86_64"] - }, - { - "packageName": "pennywise", - "description": "Open any website or media in a floating window...", - "icon": "https://portable-linux-apps.github.io/icons/pennywise.png", - "arch": ["x86_64"] - }, - { - "packageName": "perfect-dark", - "description": "Unofficial, work in progress port of n64decomp/perfect_dark to modern platforms...", - "icon": "https://portable-linux-apps.github.io/icons/perfect-dark.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "perl-executing-browser", - "description": "HTML5 user interface for Perl 5 desktop apps...", - "icon": "https://portable-linux-apps.github.io/icons/perl-executing-browser.png", - "arch": ["x86_64"] - }, - { - "packageName": "permastead", - "description": "Desktop software for managing a homestead using permaculture design...", - "icon": "https://portable-linux-apps.github.io/icons/permastead.png", - "arch": ["x86_64"] - }, - { - "packageName": "perplexity-ai-app", - "description": "Perplexity AI Desktop app eases the process to access Perplexity AI...", - "icon": "https://portable-linux-apps.github.io/icons/perplexity-ai-app.png", - "arch": ["x86_64"] - }, - { - "packageName": "pet", - "description": "Simple command-line snippet manager...", - "icon": "https://portable-linux-apps.github.io/icons/pet.png", - "arch": ["x86_64"] - }, - { - "packageName": "pext", - "description": "Python-based extendable tool...", - "icon": "https://portable-linux-apps.github.io/icons/pext.png", - "arch": ["x86_64"] - }, - { - "packageName": "pfetch-rs", - "description": "A rewrite of the pfetch system information tool in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/pfetch-rs.png", - "arch": ["x86_64"] - }, - { - "packageName": "pget", - "description": "The fastest, resumable file download CLI client...", - "icon": "https://portable-linux-apps.github.io/icons/pget.png", - "arch": ["x86_64"] - }, - { - "packageName": "phantom-satellite", - "description": "Unofficial, a fork of Pale Moon that aims to support older/niche platforms, without sacrificing support for more common/modern platforms...", - "icon": "https://portable-linux-apps.github.io/icons/phantom-satellite.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "phinch", - "description": "Phinch is a framework for visualizing biological data...", - "icon": "https://portable-linux-apps.github.io/icons/phinch.png", - "arch": ["x86_64"] - }, - { - "packageName": "pho", - "description": "The AppImage Manager that Linux always deserved...", - "icon": "https://portable-linux-apps.github.io/icons/pho.png", - "arch": ["x86_64"] - }, - { - "packageName": "phoenix-x-server", - "description": "Unofficial, a new X server, written from scratch in Zig (not a fork). Designed to be a modern alternative to the Xorg server...", - "icon": "https://portable-linux-apps.github.io/icons/phoenix-x-server.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "photocrea", - "description": "Unofficial Photopea wrapper, image editor that includes all the familiar features like layers, filters, magic wand selection, etc...", - "icon": "https://portable-linux-apps.github.io/icons/photocrea.png", - "arch": ["x86_64"] - }, - { - "packageName": "photoflare", - "description": "A simple but featureful image editor...", - "icon": "https://portable-linux-apps.github.io/icons/photoflare.png", - "arch": ["x86_64"] - }, - { - "packageName": "photoflow", - "description": "Edit images from digital cameras...", - "icon": "https://portable-linux-apps.github.io/icons/photoflow.png", - "arch": ["x86_64"] - }, - { - "packageName": "photogimp", - "description": "A patched version of GIMP for Adobe Photoshop users...", - "icon": "https://portable-linux-apps.github.io/icons/photogimp.png", - "arch": ["x86_64"] - }, - { - "packageName": "photon", - "description": "Cross-platform file-transfer application built using flutter. It uses http to transfer files between devices...", - "icon": "https://portable-linux-apps.github.io/icons/photon.png", - "arch": ["x86_64"] - }, - { - "packageName": "photoname", - "description": "Rename photo image files based on EXIF shoot date...", - "icon": "https://portable-linux-apps.github.io/icons/photoname.png", - "arch": ["x86_64"] - }, - { - "packageName": "photopealoader", - "description": "Photopea desktop app that loads local files and plugins...", - "icon": "https://portable-linux-apps.github.io/icons/photopealoader.png", - "arch": ["x86_64"] - }, - { - "packageName": "photoqt", - "description": "View and manage images...", - "icon": "https://portable-linux-apps.github.io/icons/photoqt.png", - "arch": ["x86_64"] - }, - { - "packageName": "photoquick", - "description": "Light-weight image viewer, resize, collage, filters......", - "icon": "https://portable-linux-apps.github.io/icons/photoquick.png", - "arch": ["x86_64"] - }, - { - "packageName": "phreshplayer", - "description": "Electron based media player app...", - "icon": "https://portable-linux-apps.github.io/icons/phreshplayer.png", - "arch": ["x86_64"] - }, - { - "packageName": "pia", - "description": "Version Portable Outil PIA...", - "icon": "https://portable-linux-apps.github.io/icons/pia.png", - "arch": ["x86_64"] - }, - { - "packageName": "picacg-qt", - "description": "PicACG Comic PC Client For Linux...", - "icon": "https://portable-linux-apps.github.io/icons/picacg-qt.png", - "arch": ["x86_64"] - }, - { - "packageName": "picard-daily", - "description": "Inofficial daily development builds for MusicBrainz Picard...", - "icon": "https://portable-linux-apps.github.io/icons/picard-daily.png", - "arch": ["x86_64"] - }, - { - "packageName": "picgo", - "description": "Easy to upload your pic & copy to write...", - "icon": "https://portable-linux-apps.github.io/icons/picgo.png", - "arch": ["x86_64"] - }, - { - "packageName": "piclist", - "description": "Cloud storage platform management & file upload tool based on PicGo...", - "icon": "https://portable-linux-apps.github.io/icons/piclist.png", - "arch": ["x86_64"] - }, - { - "packageName": "picmi", - "description": "Single player logic-based puzzle game. This is part of \"kdegames\"...", - "icon": "https://portable-linux-apps.github.io/icons/picmi.png", - "arch": ["x86_64"] - }, - { - "packageName": "picocrypt-ng", - "description": "A very small, very simple, yet very secure encryption tool...", - "icon": "https://portable-linux-apps.github.io/icons/picocrypt-ng.png", - "arch": ["x86_64"] - }, - { - "packageName": "picsimlab", - "description": "PICsimLab - Programmable IC Simulator Laboratory...", - "icon": "https://portable-linux-apps.github.io/icons/picsimlab.png", - "arch": ["x86_64"] - }, - { - "packageName": "picterm", - "description": "CLI, TUI image viewer...", - "icon": "https://portable-linux-apps.github.io/icons/picterm.png", - "arch": ["x86_64"] - }, - { - "packageName": "picturama", - "description": "Digital image organizer powered by the web...", - "icon": "https://portable-linux-apps.github.io/icons/picturama.png", - "arch": ["x86_64"] - }, - { - "packageName": "piglit", - "description": "Unofficial, a collection of automated tests for OpenGL, Vulkan, and OpenCL implementations...", - "icon": "https://portable-linux-apps.github.io/icons/piglit.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "pigs-n-cows", - "description": "A relaxing game for children and adults alike...", - "icon": "https://portable-linux-apps.github.io/icons/pigs-n-cows.png", - "arch": ["x86_64"] - }, - { - "packageName": "pika-backup", - "description": "Doing backups the easy way. Plugin your USB drive and let the Pika do the rest for you...", - "icon": "https://portable-linux-apps.github.io/icons/pika-backup.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "pikapika", - "description": "A comic browser...", - "icon": "https://portable-linux-apps.github.io/icons/pikapika.png", - "arch": ["x86_64"] - }, - { - "packageName": "pile", - "description": "App to organize your piled work at one place...", - "icon": "https://portable-linux-apps.github.io/icons/pile.png", - "arch": ["x86_64"] - }, - { - "packageName": "pince", - "description": "Reverse engineering tool for linux games...", - "icon": "https://portable-linux-apps.github.io/icons/pince.png", - "arch": ["x86_64"] - }, - { - "packageName": "pingendo", - "description": "???..", - "icon": "https://portable-linux-apps.github.io/icons/pingendo.png", - "arch": ["x86_64"] - }, - { - "packageName": "pingnoo", - "description": "An open source network ping analyser...", - "icon": "https://portable-linux-apps.github.io/icons/pingnoo.png", - "arch": ["x86_64"] - }, - { - "packageName": "pingu", - "description": "CLI, ping command but with pingu...", - "icon": "https://portable-linux-apps.github.io/icons/pingu.png", - "arch": ["x86_64"] - }, - { - "packageName": "pingviewer", - "description": "Ping viewer interface...", - "icon": "https://portable-linux-apps.github.io/icons/pingviewer.png", - "arch": ["x86_64"] - }, - { - "packageName": "pinky", - "description": "Lightweight finger. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/pinky.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "pinokio", - "description": "AI Browser...", - "icon": "https://portable-linux-apps.github.io/icons/pinokio.png", - "arch": ["x86_64"] - }, - { - "packageName": "pinta", - "description": "Unofficial, Simple GTK Paint Program clone of Paint.Net 3.0...", - "icon": "https://portable-linux-apps.github.io/icons/pinta.png", - "arch": ["x86_64"] - }, - { - "packageName": "pinta-dev", - "description": "Simple GTK Paint Program (developer edition)...", - "icon": "https://portable-linux-apps.github.io/icons/pinta-dev.png", - "arch": ["x86_64"] - }, - { - "packageName": "pipes-rs", - "description": "An over-engineered rewrite of pipes.sh in Rust. CLI...", - "icon": "https://portable-linux-apps.github.io/icons/pipes-rs.png", - "arch": ["x86_64"] - }, - { - "packageName": "pixelhopper", - "description": "Animated GIF player for Linux (X11)...", - "icon": "https://portable-linux-apps.github.io/icons/pixelhopper.png", - "arch": ["x86_64"] - }, - { - "packageName": "pixelorama", - "description": "A powerful and accessible open-source pixel art multitool. Whether you want to create sprites, tiles, animations, or just express yourself in the language of pixel art...", - "icon": "https://portable-linux-apps.github.io/icons/pixelorama.png", - "arch": ["x86_64"] - }, - { - "packageName": "pixelpulse2", - "description": "Pixelpulse2 is a user interface for analog systems exploration...", - "icon": "https://portable-linux-apps.github.io/icons/pixelpulse2.png", - "arch": ["x86_64"] - }, - { - "packageName": "pixfetch", - "description": "Another CLI fetch program with pixelized images written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/pixfetch.png", - "arch": ["x86_64"] - }, - { - "packageName": "pixsrt", - "description": "Pixel sorter...", - "icon": "https://portable-linux-apps.github.io/icons/pixsrt.png", - "arch": ["x86_64"] - }, - { - "packageName": "pizarra", - "description": "A digital, vectorial and infinite chalkboard...", - "icon": "https://portable-linux-apps.github.io/icons/pizarra.png", - "arch": ["x86_64"] - }, - { - "packageName": "pkg2appimage", - "description": "Utility to convert .yml recipes to AppDir, see appimagetool...", - "icon": "https://portable-linux-apps.github.io/icons/pkg2appimage.png", - "arch": ["x86_64"] - }, - { - "packageName": "plagpatrol", - "description": "Detecting documents tampered to bypass plagiarism detectors...", - "icon": "https://portable-linux-apps.github.io/icons/plagpatrol.png", - "arch": ["x86_64"] - }, - { - "packageName": "planes", - "description": "Variant of battleships game...", - "icon": "https://portable-linux-apps.github.io/icons/planes.png", - "arch": ["x86_64"] - }, - { - "packageName": "planet-blupi", - "description": "A delirious spell-binding game...", - "icon": "https://portable-linux-apps.github.io/icons/planet-blupi.png", - "arch": ["x86_64"] - }, - { - "packageName": "planify", - "description": "Unofficial AppImage of Planify...", - "icon": "https://portable-linux-apps.github.io/icons/planify.png", - "arch": ["x86_64"] - }, - { - "packageName": "platinum-md", - "description": "Graphical MiniDisc NetMD conversion and upload...", - "icon": "https://portable-linux-apps.github.io/icons/platinum-md.png", - "arch": ["x86_64"] - }, - { - "packageName": "play", - "description": "Play! is a PlayStation2 games emulator...", - "icon": "https://portable-linux-apps.github.io/icons/play.png", - "arch": ["x86_64"] - }, - { - "packageName": "play-2048", - "description": "Another implementation of the 2048 game...", - "icon": "https://portable-linux-apps.github.io/icons/play-2048.png", - "arch": ["x86_64"] - }, - { - "packageName": "play-enhanced", - "description": "Unofficial, a PlayStation2 emulator...", - "icon": "https://portable-linux-apps.github.io/icons/play-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "playback", - "description": "Play and manage your cartridges and replay your childhood games...", - "icon": "https://portable-linux-apps.github.io/icons/playback.png", - "arch": ["x86_64"] - }, - { - "packageName": "playbox", - "description": "An audio playback system for the live production industry...", - "icon": "https://portable-linux-apps.github.io/icons/playbox.png", - "arch": ["x86_64"] - }, - { - "packageName": "playerctl", - "description": "Unofficial, MPRIS media player command-line controller...", - "icon": "https://portable-linux-apps.github.io/icons/playerctl.png", - "arch": ["x86_64"] - }, - { - "packageName": "playit", - "description": "Want to run an online game server? playit.gg is a global proxy that allows anyone to host a server without port forwarding...", - "icon": "https://portable-linux-apps.github.io/icons/playit.png", - "arch": ["x86_64"] - }, - { - "packageName": "playme", - "description": "Elegant YouTube Music desktop app...", - "icon": "https://portable-linux-apps.github.io/icons/playme.png", - "arch": ["x86_64"] - }, - { - "packageName": "playyourdamnturn", - "description": "Desktop Client to assist with playing your damn turns...", - "icon": "https://portable-linux-apps.github.io/icons/playyourdamnturn.png", - "arch": ["x86_64"] - }, - { - "packageName": "plebchan", - "description": "A GUI for plebbit similar to 4chan...", - "icon": "https://portable-linux-apps.github.io/icons/plebchan.png", - "arch": ["x86_64"] - }, - { - "packageName": "plex", - "description": "The ultimate home theater experience...", - "icon": "https://portable-linux-apps.github.io/icons/plex.png", - "arch": ["x86_64"] - }, - { - "packageName": "plexamp", - "description": "The best little audio player on the planet...", - "icon": "https://portable-linux-apps.github.io/icons/plexamp.png", - "arch": ["x86_64"] - }, - { - "packageName": "plotjuggler", - "description": "The Time Series Visualization Tool that you deserve...", - "icon": "https://portable-linux-apps.github.io/icons/plotjuggler.png", - "arch": ["x86_64"] - }, - { - "packageName": "plotly-orca", - "description": "CLI generating static images of interactive charts...", - "icon": "https://portable-linux-apps.github.io/icons/plotly-orca.png", - "arch": ["x86_64"] - }, - { - "packageName": "plover", - "description": "Stenographic input and translation...", - "icon": "https://portable-linux-apps.github.io/icons/plover.png", - "arch": ["x86_64"] - }, - { - "packageName": "plume", - "description": "A note-taking app written in Qt C++ and QML...", - "icon": "https://portable-linux-apps.github.io/icons/plume.png", - "arch": ["x86_64"] - }, - { - "packageName": "plus42", - "description": "Unofficial, an enhanced HP-42S calculator simulator...", - "icon": "https://portable-linux-apps.github.io/icons/plus42.png", - "arch": ["x86_64"] - }, - { - "packageName": "png2svg", - "description": "CLI, convert small PNG images to SVG Tiny 1.2...", - "icon": "https://portable-linux-apps.github.io/icons/png2svg.png", - "arch": ["x86_64"] - }, - { - "packageName": "pnpm", - "description": "A single file, powered by AppImage...", - "icon": "https://portable-linux-apps.github.io/icons/pnpm.png", - "arch": ["x86_64"] - }, - { - "packageName": "pocket-browser", - "description": "A FOSS browser made for privacy and going towards security...", - "icon": "https://portable-linux-apps.github.io/icons/pocket-browser.png", - "arch": ["x86_64"] - }, - { - "packageName": "pocketcasts-electron", - "description": "Pocket Casts wrapper with mapped media keys...", - "icon": "https://portable-linux-apps.github.io/icons/pocketcasts-electron.png", - "arch": ["x86_64"] - }, - { - "packageName": "poddr", - "description": "Podcast client that uses iTunes RSS feeds and Search API...", - "icon": "https://portable-linux-apps.github.io/icons/poddr.png", - "arch": ["x86_64"] - }, - { - "packageName": "podium", - "description": "A Markdown-based native presentation tool...", - "icon": "https://portable-linux-apps.github.io/icons/podium.png", - "arch": ["x86_64"] - }, - { - "packageName": "podman", - "description": "Free & open source tool to manage containers, pods, and images...", - "icon": "https://portable-linux-apps.github.io/icons/podman.png", - "arch": ["x86_64"] - }, - { - "packageName": "podman-desktop-companion", - "description": "Podman command line interface...", - "icon": "https://portable-linux-apps.github.io/icons/podman-desktop-companion.png", - "arch": ["x86_64"] - }, - { - "packageName": "poe-ladder", - "description": "Path of Exile ladder viewer...", - "icon": "https://portable-linux-apps.github.io/icons/poe-ladder.png", - "arch": ["x86_64"] - }, - { - "packageName": "poedit", - "description": "Unofficial. Powerful and intuitive translation editor...", - "icon": "https://portable-linux-apps.github.io/icons/poedit.png", - "arch": ["x86_64"] - }, - { - "packageName": "pog", - "description": "A Kmk firmware flashing and configuration tool...", - "icon": "https://portable-linux-apps.github.io/icons/pog.png", - "arch": ["x86_64"] - }, - { - "packageName": "poi", - "description": "Scalable KanColle browser and tool...", - "icon": "https://portable-linux-apps.github.io/icons/poi.png", - "arch": ["x86_64"] - }, - { - "packageName": "pointless", - "description": "An endless drawing canvas desktop app made with Tauri (Rust) and React...", - "icon": "https://portable-linux-apps.github.io/icons/pointless.png", - "arch": ["x86_64"] - }, - { - "packageName": "pokeclicker", - "description": "PokéClicker with quality of life changes...", - "icon": "https://portable-linux-apps.github.io/icons/pokeclicker.png", - "arch": ["x86_64"] - }, - { - "packageName": "pokeget-rs", - "description": "A better rust version of pokeget. CLI...", - "icon": "https://portable-linux-apps.github.io/icons/pokeget-rs.png", - "arch": ["x86_64"] - }, - { - "packageName": "pokego", - "description": "Command-line tool that lets you display Pokémon sprites in color directly in your terminal...", - "icon": "https://portable-linux-apps.github.io/icons/pokego.png", - "arch": ["x86_64"] - }, - { - "packageName": "pokemmo", - "description": "Unofficial, MMO based on the Pokémon Universe...", - "icon": "https://portable-linux-apps.github.io/icons/pokemmo.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "pokete", - "description": "A terminal based Pokemon like game...", - "icon": "https://portable-linux-apps.github.io/icons/pokete.png", - "arch": ["x86_64"] - }, - { - "packageName": "polar", - "description": "One-click Bitcoin Lightning networks for local app development...", - "icon": "https://portable-linux-apps.github.io/icons/polar.png", - "arch": ["x86_64"] - }, - { - "packageName": "polkakey", - "description": "A secure way to generate Polkadot/Kusama/Edgeware address...", - "icon": "https://portable-linux-apps.github.io/icons/polkakey.png", - "arch": ["x86_64"] - }, - { - "packageName": "polybar", - "description": "Unofficial AppImage of polybar. A fast easy-to-use status bar...", - "icon": "https://portable-linux-apps.github.io/icons/polybar.png", - "arch": ["x86_64"] - }, - { - "packageName": "polypane", - "description": "Browser for web developers...", - "icon": "https://portable-linux-apps.github.io/icons/polypane.png", - "arch": ["x86_64"] - }, - { - "packageName": "pomatez", - "description": "Stay Focused. Take a Break...", - "icon": "https://portable-linux-apps.github.io/icons/pomatez.png", - "arch": ["x86_64"] - }, - { - "packageName": "pomodorolm", - "description": "A simple, good looking and multi-platform pomodoro tracker...", - "icon": "https://portable-linux-apps.github.io/icons/pomodorolm.png", - "arch": ["x86_64"] - }, - { - "packageName": "pomotroid", - "description": "Simple and visually-pleasing Pomodoro timer...", - "icon": "https://portable-linux-apps.github.io/icons/pomotroid.png", - "arch": ["x86_64"] - }, - { - "packageName": "pop", - "description": "Send emails from your terminal...", - "icon": "https://portable-linux-apps.github.io/icons/pop.png", - "arch": ["x86_64"] - }, - { - "packageName": "popsicle", - "description": "Multiple USB File Flasher...", - "icon": "https://portable-linux-apps.github.io/icons/popsicle.png", - "arch": ["x86_64"] - }, - { - "packageName": "portable2appimage", - "description": "Convert standalone, self-contained portable apps into AppImage packages...", - "icon": "https://portable-linux-apps.github.io/icons/portable2appimage.png", - "arch": ["x86_64","aarch64","i686"] - }, - { - "packageName": "positron", - "description": "Manage your movie and show watchlist...", - "icon": "https://portable-linux-apps.github.io/icons/positron.png", - "arch": ["x86_64"] - }, - { - "packageName": "postal", - "description": "Unofficial, Postal a quirky FPS shooter...", - "icon": "https://portable-linux-apps.github.io/icons/postal.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "postcat", - "description": "An extensible API tool...", - "icon": "https://portable-linux-apps.github.io/icons/postcat.png", - "arch": ["x86_64"] - }, - { - "packageName": "postman", - "description": "API platform for building and using APIs, AppImage...", - "icon": "https://portable-linux-apps.github.io/icons/postman.png", - "arch": ["x86_64"] - }, - { - "packageName": "postybirb", - "description": "Multimedia crossposter for multimedia websites...", - "icon": "https://portable-linux-apps.github.io/icons/postybirb.png", - "arch": ["x86_64"] - }, - { - "packageName": "postybirb-plus", - "description": "Helps artists post art to multiple websites more quickly...", - "icon": "https://portable-linux-apps.github.io/icons/postybirb-plus.png", - "arch": ["x86_64"] - }, - { - "packageName": "pot-desktop", - "description": "A cross-platform software for text translation and recognition...", - "icon": "https://portable-linux-apps.github.io/icons/pot-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "potatopresenter", - "description": "Create presentation slides and exported as PDF...", - "icon": "https://portable-linux-apps.github.io/icons/potatopresenter.png", - "arch": ["x86_64"] - }, - { - "packageName": "powder-toy", - "description": "AppImage build of The Powder Toy built from source...", - "icon": "https://portable-linux-apps.github.io/icons/powder-toy.png", - "arch": ["x86_64"] - }, - { - "packageName": "powerliminals-player", - "description": "Powerliminal audios in the background, Audio player...", - "icon": "https://portable-linux-apps.github.io/icons/powerliminals-player.png", - "arch": ["x86_64"] - }, - { - "packageName": "powershell", - "description": "Microsoft PowerShell...", - "icon": "https://portable-linux-apps.github.io/icons/powershell.png", - "arch": ["x86_64"] - }, - { - "packageName": "ppet3", - "description": "Put a cute girl on your desk for more fun...", - "icon": "https://portable-linux-apps.github.io/icons/ppet3.png", - "arch": ["x86_64"] - }, - { - "packageName": "ppsspp", - "description": "PSP emulator written in C++...", - "icon": "https://portable-linux-apps.github.io/icons/ppsspp.png", - "arch": ["x86_64"] - }, - { - "packageName": "pr", - "description": "Files for printing. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/pr.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "pragtical", - "description": "The practical and pragmatic code editor...", - "icon": "https://portable-linux-apps.github.io/icons/pragtical.png", - "arch": ["x86_64"] - }, - { - "packageName": "pretty-handy-privacy", - "description": "User interface for basic encryption tasks...", - "icon": "https://portable-linux-apps.github.io/icons/pretty-handy-privacy.png", - "arch": ["x86_64"] - }, - { - "packageName": "prey2006", - "description": "Unofficial, Prey 2006 SDK integrated with Doom 3 GPL release...", - "icon": "https://portable-linux-apps.github.io/icons/prey2006.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "primate", - "description": "A modern dashboard for Kong Gateway admins...", - "icon": "https://portable-linux-apps.github.io/icons/primate.png", - "arch": ["x86_64"] - }, - { - "packageName": "prime-world-editor", - "description": "Edit world assets from games by Retro Studios...", - "icon": "https://portable-linux-apps.github.io/icons/prime-world-editor.png", - "arch": ["x86_64"] - }, - { - "packageName": "primehack", - "description": "Unofficial AppImage of the PrimeHack emulator...", - "icon": "https://portable-linux-apps.github.io/icons/primehack.png", - "arch": ["x86_64"] - }, - { - "packageName": "principia", - "description": "Open source physics-based sandbox game...", - "icon": "https://portable-linux-apps.github.io/icons/principia.png", - "arch": ["x86_64"] - }, - { - "packageName": "printenv", - "description": "Print all or part of environment. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/printenv.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "printerclient", - "description": "A printer client...", - "icon": "https://portable-linux-apps.github.io/icons/printerclient.png", - "arch": ["x86_64"] - }, - { - "packageName": "printf", - "description": "Format and print data. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/printf.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "printventory", - "description": "The ultimate tool for managing your 3D printing collection with ease. Sort, tag, and track your models in one place...", - "icon": "https://portable-linux-apps.github.io/icons/printventory.png", - "arch": ["x86_64"] - }, - { - "packageName": "prisma-studio", - "description": "The easiest way to explore and manipulate your data...", - "icon": "https://portable-linux-apps.github.io/icons/prisma-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "prismlauncher", - "description": "Launcher for Minecraft, manage multiple installations...", - "icon": "https://portable-linux-apps.github.io/icons/prismlauncher.png", - "arch": ["x86_64"] - }, - { - "packageName": "prismlauncher-enhanced", - "description": "Unofficial, a custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once (Fork of MultiMC)...", - "icon": "https://portable-linux-apps.github.io/icons/prismlauncher-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "prismlauncher-qt5", - "description": "Launcher for Minecraft, manage multiple installations (Qt5 version)...", - "icon": "https://portable-linux-apps.github.io/icons/prismlauncher-qt5.png", - "arch": ["x86_64"] - }, - { - "packageName": "privacy.sexy", - "description": "Tool to enforce privacy & security best-practices...", - "icon": "https://portable-linux-apps.github.io/icons/privacy.sexy.png", - "arch": ["x86_64"] - }, - { - "packageName": "privaxy", - "description": "The next generation tracker and ads/advertisement blocker...", - "icon": "https://portable-linux-apps.github.io/icons/privaxy.png", - "arch": ["x86_64"] - }, - { - "packageName": "probe-desktop", - "description": "The next generation OONI Probe desktop app...", - "icon": "https://portable-linux-apps.github.io/icons/probe-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "procdepmonitor", - "description": "Obtaining information about loaded process dependencies...", - "icon": "https://portable-linux-apps.github.io/icons/procdepmonitor.png", - "arch": ["x86_64"] - }, - { - "packageName": "procs", - "description": "A modern replacement for ps written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/procs.png", - "arch": ["x86_64"] - }, - { - "packageName": "procspin", - "description": "CLI to create a process/progress animation with text...", - "icon": "https://portable-linux-apps.github.io/icons/procspin.png", - "arch": ["x86_64"] - }, - { - "packageName": "procyon", - "description": "Note Keeper...", - "icon": "https://portable-linux-apps.github.io/icons/procyon.png", - "arch": ["x86_64"] - }, - { - "packageName": "programmer-browser", - "description": "A fast-searching and space-saving browser specially designed for programmers...", - "icon": "https://portable-linux-apps.github.io/icons/programmer-browser.png", - "arch": ["x86_64"] - }, - { - "packageName": "promethium", - "description": "Extensible and innovative web browser with built-in AdBlock...", - "icon": "https://portable-linux-apps.github.io/icons/promethium.png", - "arch": ["x86_64"] - }, - { - "packageName": "proofkeeper", - "description": "Desktop tool to automate proof management...", - "icon": "https://portable-linux-apps.github.io/icons/proofkeeper.png", - "arch": ["x86_64"] - }, - { - "packageName": "prospect-mail", - "description": "An Outlook mail desktop client powered by Electron...", - "icon": "https://portable-linux-apps.github.io/icons/prospect-mail.png", - "arch": ["x86_64"] - }, - { - "packageName": "protocol_10", - "description": "A mod decompiler for frosty tool suite...", - "icon": "https://portable-linux-apps.github.io/icons/protocol_10.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "protoman", - "description": "A Postman-like API client for protobuf-based messages...", - "icon": "https://portable-linux-apps.github.io/icons/protoman.png", - "arch": ["x86_64"] - }, - { - "packageName": "protonmail-desktop", - "description": "Unofficial Electron wrapper for ProtonMail...", - "icon": "https://portable-linux-apps.github.io/icons/protonmail-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "protontricks", - "description": "Unofficial AppImage of Protontricks...", - "icon": "https://portable-linux-apps.github.io/icons/protontricks.png", - "arch": ["x86_64"] - }, - { - "packageName": "protonup-qt", - "description": "Manage Proton-GE/Luxtorpeda for Steam/Wine-GE for Lutris...", - "icon": "https://portable-linux-apps.github.io/icons/protonup-qt.png", - "arch": ["x86_64"] - }, - { - "packageName": "proxy-master", - "description": "Set and reset your proxy settings EVERYWHERE...", - "icon": "https://portable-linux-apps.github.io/icons/proxy-master.png", - "arch": ["x86_64"] - }, - { - "packageName": "proxyman", - "description": "Modern and Delightful HTTP Debugging Proxy...", - "icon": "https://portable-linux-apps.github.io/icons/proxyman.png", - "arch": ["x86_64"] - }, - { - "packageName": "prusa-slicer", - "description": "Prusa3d/PrusaSlicer, G-code generator for 3D printers...", - "icon": "https://portable-linux-apps.github.io/icons/prusa-slicer.png", - "arch": ["x86_64"] - }, - { - "packageName": "psi+", - "description": "Communicate over the XMPP network...", - "icon": "https://portable-linux-apps.github.io/icons/psi+.png", - "arch": ["x86_64"] - }, - { - "packageName": "pstube", - "description": "Watch and download videos without ads...", - "icon": "https://portable-linux-apps.github.io/icons/pstube.png", - "arch": ["x86_64"] - }, - { - "packageName": "psydoom", - "description": "A backport of PSX Doom to PC...", - "icon": "https://portable-linux-apps.github.io/icons/psydoom.png", - "arch": ["x86_64"] - }, - { - "packageName": "ptx", - "description": "Permuted index of file contents. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/ptx.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ptyxis", - "description": "Unofficial AppImage of Ptyxis terminal...", - "icon": "https://portable-linux-apps.github.io/icons/ptyxis.png", - "arch": ["x86_64"] - }, - { - "packageName": "publii", - "description": "A desktop-based CMS that makes creating static websites fast...", - "icon": "https://portable-linux-apps.github.io/icons/publii.png", - "arch": ["x86_64"] - }, - { - "packageName": "puddletag", - "description": "Unofficial, Powerful, simple, audio tag editor for GNU/Linux...", - "icon": "https://portable-linux-apps.github.io/icons/puddletag.png", - "arch": ["x86_64"] - }, - { - "packageName": "pullp", - "description": "Pull request monitoring app for Github...", - "icon": "https://portable-linux-apps.github.io/icons/pullp.png", - "arch": ["x86_64"] - }, - { - "packageName": "pulsar", - "description": "A Community-led Hyper-Hackable Text Editor...", - "icon": "https://portable-linux-apps.github.io/icons/pulsar.png", - "arch": ["x86_64"] - }, - { - "packageName": "pulse", - "description": "Pulse desktop client...", - "icon": "https://portable-linux-apps.github.io/icons/pulse.png", - "arch": ["x86_64"] - }, - { - "packageName": "pulseview", - "description": "PulseView (sometimes abbreviated as \"PV\") is a Qt based logic analyzer, oscilloscope and MSO GUI for sigrok...", - "icon": "https://portable-linux-apps.github.io/icons/pulseview.png", - "arch": ["x86_64"] - }, - { - "packageName": "punes", - "description": "Qt-based Nintendo Entertaiment System emulator and NSF/NSF2/NSFe Music Player...", - "icon": "https://portable-linux-apps.github.io/icons/punes.png", - "arch": ["x86_64"] - }, - { - "packageName": "puppetry", - "description": "Solution for non-developers on top of Puppeteer and Jest...", - "icon": "https://portable-linux-apps.github.io/icons/puppetry.png", - "arch": ["x86_64"] - }, - { - "packageName": "puush-qt", - "description": "A GUI frontend for puush on Linux...", - "icon": "https://portable-linux-apps.github.io/icons/puush-qt.png", - "arch": ["x86_64"] - }, - { - "packageName": "pwd", - "description": "Print name of current/working directory. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/pwd.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "pyappimage", - "description": "Simple appimage builder for Python applications...", - "icon": "https://portable-linux-apps.github.io/icons/pyappimage.png", - "arch": ["x86_64"] - }, - { - "packageName": "pycharm", - "description": "Unofficial, PyCharm-community-edition in AppImage...", - "icon": "https://portable-linux-apps.github.io/icons/pycharm.png", - "arch": ["x86_64"] - }, - { - "packageName": "pyfa", - "description": "EVE Online Fitting Assistant...", - "icon": "https://portable-linux-apps.github.io/icons/pyfa.png", - "arch": ["x86_64"] - }, - { - "packageName": "pyglossary", - "description": "Unofficial, A tool for converting dictionary files aka glossaries...", - "icon": "https://portable-linux-apps.github.io/icons/pyglossary.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "python", - "description": "AppImage distributions of Python, an interactive high-level object-oriented language...", - "icon": "https://portable-linux-apps.github.io/icons/python.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "qaddapp", - "description": "Qt5 Gui app that helps you add AppImages and binary archives into your Desktop environment...", - "icon": "https://portable-linux-apps.github.io/icons/qaddapp.png", - "arch": ["x86_64"] - }, - { - "packageName": "qarma", - "description": "Unofficial, Qarma is a tool to create dialog boxes, based on Qt. It's a clone of Zenity...", - "icon": "https://portable-linux-apps.github.io/icons/qarma.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "qaterialgallery", - "description": "Demonstrate Qaterial library...", - "icon": "https://portable-linux-apps.github.io/icons/qaterialgallery.png", - "arch": ["x86_64"] - }, - { - "packageName": "qaterialhotreload", - "description": "Qml HotReload software...", - "icon": "https://portable-linux-apps.github.io/icons/qaterialhotreload.png", - "arch": ["x86_64"] - }, - { - "packageName": "qawl", - "description": "Read the Holy Qur’ān whenever, wherever, however you like...", - "icon": "https://portable-linux-apps.github.io/icons/qawl.png", - "arch": ["x86_64"] - }, - { - "packageName": "qbittorrent", - "description": "A powerful QT-based Bittorrent Client, official AppImage...", - "icon": "https://portable-linux-apps.github.io/icons/qbittorrent.png", - "arch": ["x86_64"] - }, - { - "packageName": "qbittorrent-enhanced", - "description": "Unofficial qBittorrent Enhanced, based on qBittorrent...", - "icon": "https://portable-linux-apps.github.io/icons/qbittorrent-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "qdiskinfo", - "description": "QDiskInfo is a frontend for smartctl. It provides a user experience similar to CrystalDiskInfo...", - "icon": "https://portable-linux-apps.github.io/icons/qdiskinfo.png", - "arch": ["x86_64"] - }, - { - "packageName": "qdriverstation", - "description": "Cross-platform clone of the FRC Driver Station...", - "icon": "https://portable-linux-apps.github.io/icons/qdriverstation.png", - "arch": ["x86_64"] - }, - { - "packageName": "qelectrotech", - "description": "Edit electrical diagrams...", - "icon": "https://portable-linux-apps.github.io/icons/qelectrotech.png", - "arch": ["x86_64"] - }, - { - "packageName": "qemu", - "description": "Unofficial, a generic and open source machine & userspace emulator and virtualizer, to run a virtual machines...", - "icon": "https://portable-linux-apps.github.io/icons/qemu.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "qemu-ppc", - "description": "Run PowerPC operating systems on 64-bit Intel Linux hosts...", - "icon": "https://portable-linux-apps.github.io/icons/qemu-ppc.png", - "arch": ["x86_64"] - }, - { - "packageName": "qflipper", - "description": "Flipper Zero multitool for pentesters and geeks in a toy-like body...", - "icon": "https://portable-linux-apps.github.io/icons/qflipper.png", - "arch": ["x86_64"] - }, - { - "packageName": "qfsm", - "description": "Qt Finite State Machine Designer...", - "icon": "https://portable-linux-apps.github.io/icons/qfsm.png", - "arch": ["x86_64"] - }, - { - "packageName": "qgroundcontrol", - "description": "Ground control for unmanned vehicles...", - "icon": "https://portable-linux-apps.github.io/icons/qgroundcontrol.png", - "arch": ["x86_64"] - }, - { - "packageName": "qikqr", - "description": "Minimal desktop app to create QR codes...", - "icon": "https://portable-linux-apps.github.io/icons/qikqr.png", - "arch": ["x86_64"] - }, - { - "packageName": "qimgv", - "description": "Unofficial, Image viewer. Fast, easy to use. Optional video support...", - "icon": "https://portable-linux-apps.github.io/icons/qimgv.png", - "arch": ["x86_64"] - }, - { - "packageName": "qmasterpassword", - "description": "A password manager based on Qt...", - "icon": "https://portable-linux-apps.github.io/icons/qmasterpassword.png", - "arch": ["x86_64"] - }, - { - "packageName": "qmediathekview", - "description": "An alternative front-end to the MediathekView database...", - "icon": "https://portable-linux-apps.github.io/icons/qmediathekview.png", - "arch": ["x86_64"] - }, - { - "packageName": "qmidictl", - "description": "MIDI Remote Controller via UDP/IP Multicast...", - "icon": "https://portable-linux-apps.github.io/icons/qmidictl.png", - "arch": ["x86_64"] - }, - { - "packageName": "qmidinet", - "description": "MIDI Network Gateway via UDP/IP Multicast...", - "icon": "https://portable-linux-apps.github.io/icons/qmidinet.png", - "arch": ["x86_64"] - }, - { - "packageName": "qmmp", - "description": "Unofficial, Qt-based multimedia player...", - "icon": "https://portable-linux-apps.github.io/icons/qmmp.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "qmplay2", - "description": "Video and audio player whit support of most formats and codecs...", - "icon": "https://portable-linux-apps.github.io/icons/qmplay2.png", - "arch": ["x86_64"] - }, - { - "packageName": "qmplay2-enhanced", - "description": "Unofficial, a video and audio player which can play most formats and codecs...", - "icon": "https://portable-linux-apps.github.io/icons/qmplay2-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "qnapi", - "description": "Qt-based, multi-engine, multi-platform subtitle downloader...", - "icon": "https://portable-linux-apps.github.io/icons/qnapi.png", - "arch": ["x86_64"] - }, - { - "packageName": "qortal-ui", - "description": "Decentralize the world, data storage, communications...", - "icon": "https://portable-linux-apps.github.io/icons/qortal-ui.png", - "arch": ["x86_64"] - }, - { - "packageName": "qownnotes", - "description": "Plain text notepad and todo list manager...", - "icon": "https://portable-linux-apps.github.io/icons/qownnotes.png", - "arch": ["x86_64"] - }, - { - "packageName": "qpdf", - "description": "CLI tool to perform content-preserving transformations on PDF files...", - "icon": "https://portable-linux-apps.github.io/icons/qpdf.png", - "arch": ["x86_64"] - }, - { - "packageName": "qppcad", - "description": "Molecule and crystal editor written in c++..", - "icon": "https://portable-linux-apps.github.io/icons/qppcad.png", - "arch": ["x86_64"] - }, - { - "packageName": "qprompt", - "description": "Personal teleprompter software for all video creators...", - "icon": "https://portable-linux-apps.github.io/icons/qprompt.png", - "arch": ["x86_64"] - }, - { - "packageName": "qr-code-generator", - "description": "Create custom QR Codes, resize, save them as PNG image...", - "icon": "https://portable-linux-apps.github.io/icons/qr-code-generator.png", - "arch": ["x86_64"] - }, - { - "packageName": "qrscan", - "description": "Scan a QR code in the terminal using the system camera or an image...", - "icon": "https://portable-linux-apps.github.io/icons/qrscan.png", - "arch": ["x86_64"] - }, - { - "packageName": "qsdrswr", - "description": "Qt SWR analyser using an SDR and soapy_power...", - "icon": "https://portable-linux-apps.github.io/icons/qsdrswr.png", - "arch": ["x86_64"] - }, - { - "packageName": "qt-dab", - "description": "Listening to terrestrial Digital Audio Broadcasting...", - "icon": "https://portable-linux-apps.github.io/icons/qt-dab.png", - "arch": ["x86_64"] - }, - { - "packageName": "qt-raster-lines", - "description": "Lines between points using rasterization, DDA, Bresenham...", - "icon": "https://portable-linux-apps.github.io/icons/qt-raster-lines.png", - "arch": ["x86_64"] - }, - { - "packageName": "qtads", - "description": "A cross-platform, multimedia interpreter for TADS adventure games...", - "icon": "https://portable-linux-apps.github.io/icons/qtads.png", - "arch": ["x86_64"] - }, - { - "packageName": "qtalarm", - "description": "Alarm clock for Computers...", - "icon": "https://portable-linux-apps.github.io/icons/qtalarm.png", - "arch": ["x86_64"] - }, - { - "packageName": "qtchan", - "description": "4chan browser in qt5...", - "icon": "https://portable-linux-apps.github.io/icons/qtchan.png", - "arch": ["x86_64"] - }, - { - "packageName": "qtcreator", - "description": "Unofficial, lightweight, cross-platform integrated development environment...", - "icon": "https://portable-linux-apps.github.io/icons/qtcreator.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "qterminal", - "description": "Unofficial. A lightweight Qt terminal emulator based on QTermWidget...", - "icon": "https://portable-linux-apps.github.io/icons/qterminal.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "qtjsondiff", - "description": "Json difference checker widget and viewer...", - "icon": "https://portable-linux-apps.github.io/icons/qtjsondiff.png", - "arch": ["x86_64"] - }, - { - "packageName": "qtox", - "description": "Qt 5 based Tox instant messenger for secure communication...", - "icon": "https://portable-linux-apps.github.io/icons/qtox.png", - "arch": ["x86_64"] - }, - { - "packageName": "qtrfpowermeter", - "description": "Improve usage of chinese RF power meter RF8000...", - "icon": "https://portable-linux-apps.github.io/icons/qtrfpowermeter.png", - "arch": ["x86_64"] - }, - { - "packageName": "quamodbusclient", - "description": "Modbus to OPC UA Gateway..", - "icon": "https://portable-linux-apps.github.io/icons/quamodbusclient.png", - "arch": ["x86_64"] - }, - { - "packageName": "quantumlauncher-enhanced", - "description": "Unofficial, a simple, powerful Minecraft launcher...", - "icon": "https://portable-linux-apps.github.io/icons/quantumlauncher-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "quark", - "description": "Sketchbook for rapid prototyping and development of your projects...", - "icon": "https://portable-linux-apps.github.io/icons/quark.png", - "arch": ["x86_64"] - }, - { - "packageName": "quark-player", - "description": "An Electron based Web Video Services Player...", - "icon": "https://portable-linux-apps.github.io/icons/quark-player.png", - "arch": ["x86_64"] - }, - { - "packageName": "quarto-cli", - "description": "Scientific and technical publishing system built on Pandoc...", - "icon": "https://portable-linux-apps.github.io/icons/quarto-cli.png", - "arch": ["x86_64"] - }, - { - "packageName": "quaternion", - "description": "A Qt5-based IM client for Matrix...", - "icon": "https://portable-linux-apps.github.io/icons/quaternion.png", - "arch": ["x86_64"] - }, - { - "packageName": "quba", - "description": "A viewer for electronic invoices...", - "icon": "https://portable-linux-apps.github.io/icons/quba.png", - "arch": ["x86_64"] - }, - { - "packageName": "qucs-s", - "description": "An Universal GUI for Circuit Simulators...", - "icon": "https://portable-linux-apps.github.io/icons/qucs-s.png", - "arch": ["x86_64"] - }, - { - "packageName": "quentier", - "description": "Note taking app integrated with Evernote...", - "icon": "https://portable-linux-apps.github.io/icons/quentier.png", - "arch": ["x86_64"] - }, - { - "packageName": "quick-clone", - "description": "Search through gitlab and clone git-repositories...", - "icon": "https://portable-linux-apps.github.io/icons/quick-clone.png", - "arch": ["x86_64"] - }, - { - "packageName": "quickgui", - "description": "An elegant virtual machine manager for the desktop...", - "icon": "https://portable-linux-apps.github.io/icons/quickgui.png", - "arch": ["x86_64"] - }, - { - "packageName": "quicknote", - "description": "QuickNote helps to paste some random text or take some notes right from your taskbar!..", - "icon": "https://portable-linux-apps.github.io/icons/quicknote.png", - "arch": ["x86_64"] - }, - { - "packageName": "quickredis", - "description": "A free Redis Desktop manager...", - "icon": "https://portable-linux-apps.github.io/icons/quickredis.png", - "arch": ["x86_64"] - }, - { - "packageName": "quickshell", - "description": "Unofficial AppImage of Quickshell...", - "icon": "https://portable-linux-apps.github.io/icons/quickshell.png", - "arch": ["x86_64"] - }, - { - "packageName": "quicktwitch", - "description": "Electron React Redux Boilerplate...", - "icon": "https://portable-linux-apps.github.io/icons/quicktwitch.png", - "arch": ["x86_64"] - }, - { - "packageName": "quickviewer", - "description": "A image viewer application for folders/archives...", - "icon": "https://portable-linux-apps.github.io/icons/quickviewer.png", - "arch": ["x86_64"] - }, - { - "packageName": "quiet", - "description": "A private, p2p alternative to Slack and Discord built on Tor & IPFS..", - "icon": "https://portable-linux-apps.github.io/icons/quiet.png", - "arch": ["x86_64"] - }, - { - "packageName": "quokkagit", - "description": "A small, TortoiseGit inspired git log viewer for linux...", - "icon": "https://portable-linux-apps.github.io/icons/quokkagit.png", - "arch": ["x86_64"] - }, - { - "packageName": "quran-companion", - "description": "Free and open-source desktop Quran reader and player...", - "icon": "https://portable-linux-apps.github.io/icons/quran-companion.png", - "arch": ["x86_64"] - }, - { - "packageName": "qv2ray", - "description": "Cross-platform v2ray GUI Client in Qt...", - "icon": "https://portable-linux-apps.github.io/icons/qv2ray.png", - "arch": ["x86_64"] - }, - { - "packageName": "qview", - "description": "Practical and minimal image viewer...", - "icon": "https://portable-linux-apps.github.io/icons/qview.png", - "arch": ["x86_64"] - }, - { - "packageName": "qxgedit", - "description": "QXGEdit is a Qt GUI XG editor application...", - "icon": "https://portable-linux-apps.github.io/icons/qxgedit.png", - "arch": ["x86_64"] - }, - { - "packageName": "r2modman", - "description": "Mod manager for several Unity games using Thunderstore...", - "icon": "https://portable-linux-apps.github.io/icons/r2modman.png", - "arch": ["x86_64"] - }, - { - "packageName": "r3play", - "description": "High-value third-party Netease cloud player, chinese...", - "icon": "https://portable-linux-apps.github.io/icons/r3play.png", - "arch": ["x86_64"] - }, - { - "packageName": "rabix-composer", - "description": "A desktop IDE for working with Common Workflow Language...", - "icon": "https://portable-linux-apps.github.io/icons/rabix-composer.png", - "arch": ["x86_64"] - }, - { - "packageName": "radioit", - "description": "Automation software for Radios...", - "icon": "https://portable-linux-apps.github.io/icons/radioit.png", - "arch": ["x86_64"] - }, - { - "packageName": "radix-wallet", - "description": "Radix DLT desktop wallet...", - "icon": "https://portable-linux-apps.github.io/icons/radix-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "rainbow-board", - "description": "22nd Century Whiteboard App...", - "icon": "https://portable-linux-apps.github.io/icons/rainbow-board.png", - "arch": ["x86_64"] - }, - { - "packageName": "rambox", - "description": "Free and Open Source messaging and emailing app...", - "icon": "https://portable-linux-apps.github.io/icons/rambox.png", - "arch": ["x86_64"] - }, - { - "packageName": "ranlib", - "description": "Index to an archive. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/ranlib.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "rapidraw", - "description": "A beautiful, non-destructive, and GPU-accelerated RAW image editor built with performance in mind...", - "icon": "https://portable-linux-apps.github.io/icons/rapidraw.png", - "arch": ["x86_64"] - }, - { - "packageName": "raptor", - "description": "Unofficial, reversed-engineered source port from Raptor Call Of The Shadows...", - "icon": "https://portable-linux-apps.github.io/icons/raptor.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "rare", - "description": "GUI for legendary. An Epic Games Launcher open source alternative...", - "icon": "https://portable-linux-apps.github.io/icons/rare.png", - "arch": ["x86_64"] - }, - { - "packageName": "raspberry-pi-imager", - "description": "The home of Raspberry Pi Imager, a user-friendly tool for creating bootable media for Raspberry Pi devices. Desktop edition...", - "icon": "https://portable-linux-apps.github.io/icons/raspberry-pi-imager.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "raspberry-pi-imager-cli", - "description": "The home of Raspberry Pi Imager, a user-friendly tool for creating bootable media for Raspberry Pi devices. CLI edition...", - "icon": "https://portable-linux-apps.github.io/icons/raspberry-pi-imager-cli.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "raspirus", - "description": "A user and resources-friendly signatures-based malware scanner...", - "icon": "https://portable-linux-apps.github.io/icons/raspirus.png", - "arch": ["x86_64"] - }, - { - "packageName": "rasterdraw", - "description": "Simple shape drawn using rasterisation...", - "icon": "https://portable-linux-apps.github.io/icons/rasterdraw.png", - "arch": ["x86_64"] - }, - { - "packageName": "rasterview", - "description": "Raster Viewer for CUPS-Raster, Apple-Raster and PWG-Raster...", - "icon": "https://portable-linux-apps.github.io/icons/rasterview.png", - "arch": ["x86_64"] - }, - { - "packageName": "rats-search", - "description": "P2P BitTorrent search engine...", - "icon": "https://portable-linux-apps.github.io/icons/rats-search.png", - "arch": ["x86_64"] - }, - { - "packageName": "rawtherapee", - "description": "An advanced raw photo development program...", - "icon": "https://portable-linux-apps.github.io/icons/rawtherapee.png", - "arch": ["x86_64"] - }, - { - "packageName": "rbdl-toolkit", - "description": "Application for visualizing and working with rbdl models...", - "icon": "https://portable-linux-apps.github.io/icons/rbdl-toolkit.png", - "arch": ["x86_64"] - }, - { - "packageName": "rbdoom-3", - "description": "Doom 3 BFG Edition source port with updated DX12/Vulkan renderer...", - "icon": "https://portable-linux-apps.github.io/icons/rbdoom-3.png", - "arch": ["x86_64"] - }, - { - "packageName": "rbw", - "description": "Unofficial Bitwarden password manager cli...", - "icon": "https://portable-linux-apps.github.io/icons/rbw.png", - "arch": ["x86_64"] - }, - { - "packageName": "rclip", - "description": "AI-Powered Semantic Photo Search for the Command Line...", - "icon": "https://portable-linux-apps.github.io/icons/rclip.png", - "arch": ["x86_64"] - }, - { - "packageName": "rclone", - "description": "\"rsync for cloud storage\", CLI that supports Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Wasabi, Google Cloud Storage, Azure Blob, Azure Files, Yandex Files...", - "icon": "https://portable-linux-apps.github.io/icons/rclone.png", - "arch": ["x86_64"] - }, - { - "packageName": "rclone-browser", - "description": "Simple cross platform GUI for rclone...", - "icon": "https://portable-linux-apps.github.io/icons/rclone-browser.png", - "arch": ["x86_64"] - }, - { - "packageName": "rclone-gui-manager", - "description": "A simple, modern graphical user interface for managing rclone remotes for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/rclone-gui-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "rclone-ui", - "description": "The cross-platform desktop GUI for rclone & S3...", - "icon": "https://portable-linux-apps.github.io/icons/rclone-ui.png", - "arch": ["x86_64"] - }, - { - "packageName": "rcloneview", - "description": "The ultimate GUI for Cloud Data Sync and File Management. Effortlessly browse, organize, transfer files across your cloud storages...", - "icon": "https://portable-linux-apps.github.io/icons/rcloneview.png", - "arch": ["x86_64"] - }, - { - "packageName": "reactotron", - "description": "Reactotron desktop mode engage...", - "icon": "https://portable-linux-apps.github.io/icons/reactotron.png", - "arch": ["x86_64"] - }, - { - "packageName": "readelf", - "description": "About ELF files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/readelf.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "readest", - "description": "Readest is a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience...", - "icon": "https://portable-linux-apps.github.io/icons/readest.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "readest-enhanced", - "description": "Unofficial, an enhanced version of Readest, a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience...", - "icon": "https://portable-linux-apps.github.io/icons/readest-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "readlink", - "description": "Print resolved symbolic links or canonical file. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/readlink.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "real-video-enhancer", - "description": "Interpolate and Upscale easily...", - "icon": "https://portable-linux-apps.github.io/icons/real-video-enhancer.png", - "arch": ["x86_64"] - }, - { - "packageName": "realm-studio", - "description": "A tool for everything Realm...", - "icon": "https://portable-linux-apps.github.io/icons/realm-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "realpath", - "description": "Print the resolved path. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/realpath.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "reaper", - "description": "A complete digital audio production app, offering a full multitrack audio and MIDI recording, editing, processing, mixing and mastering toolset...", - "icon": "https://portable-linux-apps.github.io/icons/reaper.png", - "arch": ["x86_64"] - }, - { - "packageName": "rebaslight", - "description": "An easy to use special effects video editor...", - "icon": "https://portable-linux-apps.github.io/icons/rebaslight.png", - "arch": ["x86_64"] - }, - { - "packageName": "rebos", - "description": "Rebos is a tool that aims at mimicking what NixOS does (repeatability), for any Linux distribution...", - "icon": "https://portable-linux-apps.github.io/icons/rebos.png", - "arch": ["x86_64"] - }, - { - "packageName": "reco", - "description": "Unofficial, An audio recorder focused on being concise and simple to use..", - "icon": "https://portable-linux-apps.github.io/icons/reco.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "recoll", - "description": "Full-text search for your desktop...", - "icon": "https://portable-linux-apps.github.io/icons/recoll.png", - "arch": ["x86_64"] - }, - { - "packageName": "record-compare", - "description": "Record Compare...", - "icon": "https://portable-linux-apps.github.io/icons/record-compare.png", - "arch": ["x86_64"] - }, - { - "packageName": "recordscript", - "description": "Cross-platform screen recorder, transcript, subtitle...", - "icon": "https://portable-linux-apps.github.io/icons/recordscript.png", - "arch": ["x86_64"] - }, - { - "packageName": "redact", - "description": "Application to mass delete your account posts from different social media...", - "icon": "https://portable-linux-apps.github.io/icons/redact.png", - "arch": ["x86_64"] - }, - { - "packageName": "redeclipse", - "description": "A great first person 3D arena shooter with online support, game...", - "icon": "https://portable-linux-apps.github.io/icons/redeclipse.png", - "arch": ["x86_64"] - }, - { - "packageName": "redis-gui", - "description": "Modern graphical user interface to peek into redis DB...", - "icon": "https://portable-linux-apps.github.io/icons/redis-gui.png", - "arch": ["x86_64"] - }, - { - "packageName": "redis-viewer", - "description": "A Redis visualization client tool...", - "icon": "https://portable-linux-apps.github.io/icons/redis-viewer.png", - "arch": ["x86_64"] - }, - { - "packageName": "rednukem", - "description": "Unofficial, a port of serveral BUILD Engine games based on EDuke32...", - "icon": "https://portable-linux-apps.github.io/icons/rednukem.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "redriver2", - "description": "Unofficial, Driver 2 Playstation game reverse engineering effort...", - "icon": "https://portable-linux-apps.github.io/icons/redriver2.png", - "arch": ["x86_64"] - }, - { - "packageName": "rehex", - "description": "Reverse Engineers' Hex Editor...", - "icon": "https://portable-linux-apps.github.io/icons/rehex.png", - "arch": ["x86_64"] - }, - { - "packageName": "remind-me-again", - "description": "Toggleable cron reminders app...", - "icon": "https://portable-linux-apps.github.io/icons/remind-me-again.png", - "arch": ["x86_64"] - }, - { - "packageName": "remnote", - "description": "Make flashcards in your notes. Cut study time in half. Use evidence-based memory techniques to create flashcards that resurface at the best time for retention...", - "icon": "https://portable-linux-apps.github.io/icons/remnote.png", - "arch": ["x86_64"] - }, - { - "packageName": "rendertune", - "description": "Electron app that uses ffmpeg to combine audio.+image files into video files...", - "icon": "https://portable-linux-apps.github.io/icons/rendertune.png", - "arch": ["x86_64"] - }, - { - "packageName": "renpy", - "description": "Unofficial, visual novel engine Ren'Py...", - "icon": "https://portable-linux-apps.github.io/icons/renpy.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "reor", - "description": "AI note-taking app that runs models locally...", - "icon": "https://portable-linux-apps.github.io/icons/reor.png", - "arch": ["x86_64"] - }, - { - "packageName": "repath-studio", - "description": "A cross-platform vector graphics editor...", - "icon": "https://portable-linux-apps.github.io/icons/repath-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "repetier-host", - "description": "Repetier-Host is a 3D printing application developed by Hot-World GmbH & Co. KG...", - "icon": "https://portable-linux-apps.github.io/icons/repetier-host.png", - "arch": ["x86_64"] - }, - { - "packageName": "reqable", - "description": "Advanced API Debugging Proxy and REST Client...", - "icon": "https://portable-linux-apps.github.io/icons/reqable.png", - "arch": ["x86_64"] - }, - { - "packageName": "responsively", - "description": "A browser for developing responsive web apps...", - "icon": "https://portable-linux-apps.github.io/icons/responsively.png", - "arch": ["x86_64"] - }, - { - "packageName": "retroarch", - "description": "RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications...", - "icon": "https://portable-linux-apps.github.io/icons/retroarch.png", - "arch": ["x86_64","i686"] - }, - { - "packageName": "retroarch-nightly", - "description": "RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications...", - "icon": "https://portable-linux-apps.github.io/icons/retroarch-nightly.png", - "arch": ["x86_64","i686"] - }, - { - "packageName": "retroarch-qt", - "description": "RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications...", - "icon": "https://portable-linux-apps.github.io/icons/retroarch-qt.png", - "arch": ["x86_64","i686"] - }, - { - "packageName": "retroarch-qt-nightly", - "description": "RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications...", - "icon": "https://portable-linux-apps.github.io/icons/retroarch-qt-nightly.png", - "arch": ["x86_64","i686"] - }, - { - "packageName": "retrom", - "description": "A centralized game library/collection management service with a focus on emulation...", - "icon": "https://portable-linux-apps.github.io/icons/retrom.png", - "arch": ["x86_64"] - }, - { - "packageName": "retroshare", - "description": "Securely share files with your friends...", - "icon": "https://portable-linux-apps.github.io/icons/retroshare.png", - "arch": ["x86_64"] - }, - { - "packageName": "retrovibed", - "description": "Personal Digital Archive and Media Player with at cost cloud storage backend...", - "icon": "https://portable-linux-apps.github.io/icons/retrovibed.png", - "arch": ["x86_64"] - }, - { - "packageName": "rev", - "description": "Reverse lines characterwise. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/rev.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "revealgo", - "description": "Markdown driven presentation tool written in Go!..", - "icon": "https://portable-linux-apps.github.io/icons/revealgo.png", - "arch": ["x86_64"] - }, - { - "packageName": "revolt", - "description": "Revolt Desktop App...", - "icon": "https://portable-linux-apps.github.io/icons/revolt.png", - "arch": ["x86_64"] - }, - { - "packageName": "rewaita", - "description": "Unofficial, rewaita gives your Adwaita apps a fresh look by tinting them with popular color schemes...", - "icon": "https://portable-linux-apps.github.io/icons/rewaita.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "rgitui", - "description": "A GPU-accelerated desktop Git client built in Rust with GPUI...", - "icon": "https://portable-linux-apps.github.io/icons/rgitui.png", - "arch": ["x86_64"] - }, - { - "packageName": "rhb", - "description": "Rapid HTML Builder/Prototyper...", - "icon": "https://portable-linux-apps.github.io/icons/rhb.png", - "arch": ["x86_64"] - }, - { - "packageName": "rhythmbox", - "description": "The popular Audio Player Rhythmbox...", - "icon": "https://portable-linux-apps.github.io/icons/rhythmbox.png", - "arch": ["x86_64"] - }, - { - "packageName": "ricochet", - "description": "Anonymous peer-to-peer instant messaging...", - "icon": "https://portable-linux-apps.github.io/icons/ricochet.png", - "arch": ["x86_64"] - }, - { - "packageName": "ricochlime", - "description": "Satisfying slime shooter...", - "icon": "https://portable-linux-apps.github.io/icons/ricochlime.png", - "arch": ["x86_64"] - }, - { - "packageName": "ridereceipts", - "description": "Automation app to download and organize your tax invoices...", - "icon": "https://portable-linux-apps.github.io/icons/ridereceipts.png", - "arch": ["x86_64"] - }, - { - "packageName": "rift", - "description": "All your EVE Online intel in one place...", - "icon": "https://portable-linux-apps.github.io/icons/rift.png", - "arch": ["x86_64"] - }, - { - "packageName": "rigelengine", - "description": "Unofficial, modern re-implementation of DOS game Duke Nukem II...", - "icon": "https://portable-linux-apps.github.io/icons/rigelengine.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "rigs-of-rods", - "description": "Unofficial, an open source vehicle simulator based on soft-body physics...", - "icon": "https://portable-linux-apps.github.io/icons/rigs-of-rods.png", - "arch": ["x86_64"] - }, - { - "packageName": "rimage", - "description": "This is CLI tool inspired by squoosh...", - "icon": "https://portable-linux-apps.github.io/icons/rimage.png", - "arch": ["x86_64"] - }, - { - "packageName": "ripcord", - "description": "Chat client for group-centric services like Slack and Discord...", - "icon": "https://portable-linux-apps.github.io/icons/ripcord.png", - "arch": ["x86_64"] - }, - { - "packageName": "ripes", - "description": "Graphical processor simulator and assembly editor for the RISC-V ISA...", - "icon": "https://portable-linux-apps.github.io/icons/ripes.png", - "arch": ["x86_64"] - }, - { - "packageName": "ripgrep", - "description": "Search directories for regex pattern while respecting gitignore...", - "icon": "https://portable-linux-apps.github.io/icons/ripgrep.png", - "arch": ["x86_64"] - }, - { - "packageName": "ripgrep-all", - "description": "A ripgrep version to also search in documents and archives...", - "icon": "https://portable-linux-apps.github.io/icons/ripgrep-all.png", - "arch": ["x86_64"] - }, - { - "packageName": "riseup-vpn", - "description": "Unofficial, RiseupVPN is an easy, fast, and secure VPN service from riseup.net...", - "icon": "https://portable-linux-apps.github.io/icons/riseup-vpn.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ristretto", - "description": "Unofficial. Image viewer by Xfce that can be used to view and scroll through images...", - "icon": "https://portable-linux-apps.github.io/icons/ristretto.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "rm", - "description": "Remove files or directories. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/rm.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "rmdir", - "description": "Remove empty directories. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/rmdir.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "rmg", - "description": "Rosalie's Mupen GUI...", - "icon": "https://portable-linux-apps.github.io/icons/rmg.png", - "arch": ["x86_64"] - }, - { - "packageName": "rmg-enhanced", - "description": "Unofficial AppImage of RMG N64 emulator wtih x86-64-v3 optimizations and smaller size...", - "icon": "https://portable-linux-apps.github.io/icons/rmg-enhanced.png", - "arch": ["x86_64"] - }, - { - "packageName": "rmw", - "description": "A safe-remove utility for the command line...", - "icon": "https://portable-linux-apps.github.io/icons/rmw.png", - "arch": ["x86_64"] - }, - { - "packageName": "rnote", - "description": "Unofficial, Rnote is a vector-based drawing app for sketching, handwritten notes and to annotate documents and pictures...", - "icon": "https://portable-linux-apps.github.io/icons/rnote.png", - "arch": ["x86_64"] - }, - { - "packageName": "roborock-control-center", - "description": "Control Your Xiaomi Vacuum...", - "icon": "https://portable-linux-apps.github.io/icons/roborock-control-center.png", - "arch": ["x86_64"] - }, - { - "packageName": "robrix", - "description": "A multi-platform Matrix chat client written in Rust, using the Makepad UI toolkit and the Robius app dev framework...", - "icon": "https://portable-linux-apps.github.io/icons/robrix.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "rock.so", - "description": "Messaging + Tasks...", - "icon": "https://portable-linux-apps.github.io/icons/rock.so.png", - "arch": ["x86_64"] - }, - { - "packageName": "rocketfetch", - "description": "A WIP command line system information tool written with multithreading in rust for performance with toml file configuration...", - "icon": "https://portable-linux-apps.github.io/icons/rocketfetch.png", - "arch": ["x86_64"] - }, - { - "packageName": "rocksndiamonds", - "description": "Unofficial, an open source arcade style game of Boulder Dash, Emerald Mine, and Sokoban...", - "icon": "https://portable-linux-apps.github.io/icons/rocksndiamonds.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "rofi", - "description": "Unofficial, A window switcher, runs dialogs, dmenu like, etc...", - "icon": "https://portable-linux-apps.github.io/icons/rofi.png", - "arch": ["x86_64"] - }, - { - "packageName": "roller", - "description": "Unofficial, reverse engineering the 1995 game Whiplash/Fatal Racing...", - "icon": "https://portable-linux-apps.github.io/icons/roller.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "roloviewer", - "description": "Image slideshow viewer...", - "icon": "https://portable-linux-apps.github.io/icons/roloviewer.png", - "arch": ["x86_64"] - }, - { - "packageName": "root", - "description": "Voice, video, and chat plus powerful apps that help your community organize, grow, and thrive. An alternative to Discord...", - "icon": "https://portable-linux-apps.github.io/icons/root.png", - "arch": ["x86_64"] - }, - { - "packageName": "rotki", - "description": "A portfolio tracking, asset analytics and tax reporting app...", - "icon": "https://portable-linux-apps.github.io/icons/rotki.png", - "arch": ["x86_64"] - }, - { - "packageName": "rpan-studio", - "description": "OBS Studio with RPAN integration...", - "icon": "https://portable-linux-apps.github.io/icons/rpan-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "rpcs3", - "description": "An open-source PlayStation 3 emulator/debugger written in C++...", - "icon": "https://portable-linux-apps.github.io/icons/rpcs3.png", - "arch": ["x86_64"] - }, - { - "packageName": "rquickshare", - "description": "Rust implementation of NearbyShare/QuickShare from Android...", - "icon": "https://portable-linux-apps.github.io/icons/rquickshare.png", - "arch": ["x86_64"] - }, - { - "packageName": "rrip", - "description": "Bulk image downloader for reddit...", - "icon": "https://portable-linux-apps.github.io/icons/rrip.png", - "arch": ["x86_64"] - }, - { - "packageName": "rsdkv3", - "description": "Unofficial, a Full Decompilation of Sonic CD (2011) & Retro Engine v3...", - "icon": "https://portable-linux-apps.github.io/icons/rsdkv3.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "rsdkv4", - "description": "Unofficial, a complete decompilation of Sonic 1 & Sonic 2 (2013) & Retro Engine v4...", - "icon": "https://portable-linux-apps.github.io/icons/rsdkv4.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "rssguard", - "description": "Feed reader which supports RSS/ATOM/JSON, no-webengine version...", - "icon": "https://portable-linux-apps.github.io/icons/rssguard.png", - "arch": ["x86_64"] - }, - { - "packageName": "rtneuron", - "description": "Framework for geometrically detailed neuron simulations...", - "icon": "https://portable-linux-apps.github.io/icons/rtneuron.png", - "arch": ["x86_64"] - }, - { - "packageName": "rubikscube", - "description": "Rubik's cube in OpenGL...", - "icon": "https://portable-linux-apps.github.io/icons/rubikscube.png", - "arch": ["x86_64"] - }, - { - "packageName": "rucola", - "description": "Terminal-based markdown note manager...", - "icon": "https://portable-linux-apps.github.io/icons/rucola.png", - "arch": ["x86_64"] - }, - { - "packageName": "ruffle", - "description": "A Flash Player emulator written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/ruffle.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "runanode", - "description": "Lets run a node...", - "icon": "https://portable-linux-apps.github.io/icons/runanode.png", - "arch": ["x86_64"] - }, - { - "packageName": "runcon", - "description": "With specified security context. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/runcon.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "runelite", - "description": "Open source Old School RuneScape client...", - "icon": "https://portable-linux-apps.github.io/icons/runelite.png", - "arch": ["x86_64"] - }, - { - "packageName": "runjs", - "description": "JavaScript playground. Write code with Node.js & browser APIs access...", - "icon": "https://portable-linux-apps.github.io/icons/runjs.png", - "arch": ["x86_64"] - }, - { - "packageName": "running-dinner-tool", - "description": "Running Dinner Tool...", - "icon": "https://portable-linux-apps.github.io/icons/running-dinner-tool.png", - "arch": ["x86_64"] - }, - { - "packageName": "rustdesk", - "description": "Virtual/remote desktop infrastructure, like TeamViewer/Citrix...", - "icon": "https://portable-linux-apps.github.io/icons/rustdesk.png", - "arch": ["x86_64"] - }, - { - "packageName": "rustdesk-enhanced", - "description": "Unofficial, AppImage of remote desktop app which is able to work on any linux distro...", - "icon": "https://portable-linux-apps.github.io/icons/rustdesk-enhanced.png", - "arch": ["x86_64"] - }, - { - "packageName": "rustdict", - "description": "A dictionary CLI tool in Rust inspired by BetaPictoris's dict...", - "icon": "https://portable-linux-apps.github.io/icons/rustdict.png", - "arch": ["x86_64"] - }, - { - "packageName": "rusty-rain", - "description": "CLI, a cross platform matrix rain made with Rust...", - "icon": "https://portable-linux-apps.github.io/icons/rusty-rain.png", - "arch": ["x86_64"] - }, - { - "packageName": "rustypaste", - "description": "A minimal file upload/pastebin service...", - "icon": "https://portable-linux-apps.github.io/icons/rustypaste.png", - "arch": ["x86_64"] - }, - { - "packageName": "rvgl", - "description": "Unofficial, a cross-platform rewrite/port of Re-Volt...", - "icon": "https://portable-linux-apps.github.io/icons/rvgl.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "rx-bin", - "description": "A modern and extensible pixel editor implemented in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/rx-bin.png", - "arch": ["x86_64"] - }, - { - "packageName": "ryowallet", - "description": "Modern GUI interface for Ryo Currency...", - "icon": "https://portable-linux-apps.github.io/icons/ryowallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "ryujinx", - "description": "An open-source Nintendo Switch emulator, originally created by gdkchan, written in C#...", - "icon": "https://portable-linux-apps.github.io/icons/ryujinx.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ryujinx-canary", - "description": "An open-source Nintendo Switch emulator, originally created by gdkchan, written in C# (Canary builds)...", - "icon": "https://portable-linux-apps.github.io/icons/ryujinx-canary.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "s", - "description": "Open a web search in your terminal...", - "icon": "https://portable-linux-apps.github.io/icons/s.png", - "arch": ["x86_64"] - }, - { - "packageName": "s3drive", - "description": "Convert S3, SFTP, WebDAV or Rclone back-end into your encrypted storage...", - "icon": "https://portable-linux-apps.github.io/icons/s3drive.png", - "arch": ["x86_64"] - }, - { - "packageName": "sabaki", - "description": "Modern, elegant, cross-platform Go/Baduk/Weiqi game board...", - "icon": "https://portable-linux-apps.github.io/icons/sabaki.png", - "arch": ["x86_64"] - }, - { - "packageName": "saber", - "description": "A work-in-progress cross-platform libre handwritten notes app...", - "icon": "https://portable-linux-apps.github.io/icons/saber.png", - "arch": ["x86_64"] - }, - { - "packageName": "sacdextractgui", - "description": "Unofficial AppImage of SACDExtractGUI...", - "icon": "https://portable-linux-apps.github.io/icons/sacdextractgui.png", - "arch": ["x86_64"] - }, - { - "packageName": "safe-multisig", - "description": "Allowing crypto users manage funds in a safer way...", - "icon": "https://portable-linux-apps.github.io/icons/safe-multisig.png", - "arch": ["x86_64"] - }, - { - "packageName": "safelight", - "description": "SafeLight is a modular image editing software that combines professional imaging tools with the customizability and modularity of modern IDEs to create a powerful, personalized editing workflow backed by an open-source community...", - "icon": "https://portable-linux-apps.github.io/icons/safelight.png", - "arch": ["x86_64"] - }, - { - "packageName": "sameboy", - "description": "Unofficial AppImage of SameBoy...", - "icon": "https://portable-linux-apps.github.io/icons/sameboy.png", - "arch": ["x86_64"] - }, - { - "packageName": "samira", - "description": "Steam achievement manager for Linux written with Tauri and Rust...", - "icon": "https://portable-linux-apps.github.io/icons/samira.png", - "arch": ["x86_64"] - }, - { - "packageName": "samrewritten", - "description": "Steam Achievement Manager For Linux. Rewritten in C++...", - "icon": "https://portable-linux-apps.github.io/icons/samrewritten.png", - "arch": ["x86_64"] - }, - { - "packageName": "sanicball", - "description": "Unofficial, an extraordinarily fast racing game...", - "icon": "https://portable-linux-apps.github.io/icons/sanicball.png", - "arch": ["x86_64"] - }, - { - "packageName": "saphyr", - "description": "A C++ like compiler...", - "icon": "https://portable-linux-apps.github.io/icons/saphyr.png", - "arch": ["x86_64"] - }, - { - "packageName": "sas", - "description": "Tool to sandbox AppImages with bubblewrap easily...", - "icon": "https://portable-linux-apps.github.io/icons/sas.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "sat", - "description": "Simple AppImage thumbnailer in POSIX shell..", - "icon": "https://portable-linux-apps.github.io/icons/sat.png", - "arch": ["x86_64"] - }, - { - "packageName": "satisfactory", - "description": "Satisfactory Mod Manager...", - "icon": "https://portable-linux-apps.github.io/icons/satisfactory.png", - "arch": ["x86_64"] - }, - { - "packageName": "satty", - "description": "Unofficial, a screenshot annotation tool...", - "icon": "https://portable-linux-apps.github.io/icons/satty.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "saucedacity", - "description": "Audio editor based on Audacity focusing on general improvements...", - "icon": "https://portable-linux-apps.github.io/icons/saucedacity.png", - "arch": ["x86_64"] - }, - { - "packageName": "savvycan", - "description": "Facilitates reverse engineering of canbus captures...", - "icon": "https://portable-linux-apps.github.io/icons/savvycan.png", - "arch": ["x86_64"] - }, - { - "packageName": "sayonara", - "description": "Music player and music library admininstration...", - "icon": "https://portable-linux-apps.github.io/icons/sayonara.png", - "arch": ["x86_64"] - }, - { - "packageName": "sayonara-player-enhanced", - "description": "Unofficial, a small, clear and fast audio player...", - "icon": "https://portable-linux-apps.github.io/icons/sayonara-player-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "sbe", - "description": "An unofficial Scrapbox desktop app...", - "icon": "https://portable-linux-apps.github.io/icons/sbe.png", - "arch": ["x86_64"] - }, - { - "packageName": "sblauncher", - "description": "Minecraft Launcher...", - "icon": "https://portable-linux-apps.github.io/icons/sblauncher.png", - "arch": ["x86_64"] - }, - { - "packageName": "sc-controller", - "description": "User-mode driver and GTK3 based GUI for Steam Controller...", - "icon": "https://portable-linux-apps.github.io/icons/sc-controller.png", - "arch": ["x86_64"] - }, - { - "packageName": "scatter", - "description": "Scatter desktop signature server...", - "icon": "https://portable-linux-apps.github.io/icons/scatter.png", - "arch": ["x86_64"] - }, - { - "packageName": "scavengers", - "description": "Unity Roguelike tutorial, game...", - "icon": "https://portable-linux-apps.github.io/icons/scavengers.png", - "arch": ["x86_64"] - }, - { - "packageName": "schildi-revenge", - "description": "Matrix client for desktop written in Kotlin and using the Matrix Rust SDK...", - "icon": "https://portable-linux-apps.github.io/icons/schildi-revenge.png", - "arch": ["x86_64"] - }, - { - "packageName": "school-sections", - "description": "This project was generated with Angular CLI v1.7.4...", - "icon": "https://portable-linux-apps.github.io/icons/school-sections.png", - "arch": ["x86_64"] - }, - { - "packageName": "scilab", - "description": "Scientific software package for numerical computations...", - "icon": "https://portable-linux-apps.github.io/icons/scilab.png", - "arch": ["x86_64"] - }, - { - "packageName": "sciqlop", - "description": "SciQLop is an ergonomic and efficient application to browse and label in situ plasma measurements from multi-mission satellite data...", - "icon": "https://portable-linux-apps.github.io/icons/sciqlop.png", - "arch": ["x86_64"] - }, - { - "packageName": "scopy", - "description": "A software oscilloscope and signal analysis toolset...", - "icon": "https://portable-linux-apps.github.io/icons/scopy.png", - "arch": ["x86_64"] - }, - { - "packageName": "scraper", - "description": "Simple desktop scraper app...", - "icon": "https://portable-linux-apps.github.io/icons/scraper.png", - "arch": ["x86_64"] - }, - { - "packageName": "scratux", - "description": "Linux client for scratch programming...", - "icon": "https://portable-linux-apps.github.io/icons/scratux.png", - "arch": ["x86_64"] - }, - { - "packageName": "scrcpy", - "description": "Display and control your Android device...", - "icon": "https://portable-linux-apps.github.io/icons/scrcpy.png", - "arch": ["x86_64"] - }, - { - "packageName": "scrcpygui", - "description": "A user-friendly GUI for scrcpy with added functionalities...", - "icon": "https://portable-linux-apps.github.io/icons/scrcpygui.png", - "arch": ["x86_64"] - }, - { - "packageName": "screenarc", - "description": "ScreenArc – Cross-platform screen recorder & editor with automatic cinematic zooms, mouse tracking, and effortless video creation...", - "icon": "https://portable-linux-apps.github.io/icons/screenarc.png", - "arch": ["x86_64"] - }, - { - "packageName": "screencloud", - "description": "Capture and share screenshots easily...", - "icon": "https://portable-linux-apps.github.io/icons/screencloud.png", - "arch": ["x86_64"] - }, - { - "packageName": "scribus", - "description": "Powerful desktop publishing software...", - "icon": "https://portable-linux-apps.github.io/icons/scribus.png", - "arch": ["x86_64"] - }, - { - "packageName": "scrite", - "description": "Multilingual Screenplay Writing App from TERIFLIX...", - "icon": "https://portable-linux-apps.github.io/icons/scrite.png", - "arch": ["x86_64"] - }, - { - "packageName": "scrum-retroboard", - "description": "Electron application based on React...", - "icon": "https://portable-linux-apps.github.io/icons/scrum-retroboard.png", - "arch": ["x86_64"] - }, - { - "packageName": "scummvm", - "description": "Unofficial, A 'virtual machine' for several classic graphical point-and-click adventure games..", - "icon": "https://portable-linux-apps.github.io/icons/scummvm.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "scytale", - "description": "Scytale Desktop Client for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/scytale.png", - "arch": ["x86_64"] - }, - { - "packageName": "sd", - "description": "Intuitive find & replace CLI, sed alternative...", - "icon": "https://portable-linux-apps.github.io/icons/sd.png", - "arch": ["x86_64"] - }, - { - "packageName": "sdlpal", - "description": "SDL-based reimplementation of the classic Chinese-language RPG known as PAL...", - "icon": "https://portable-linux-apps.github.io/icons/sdlpal.png", - "arch": ["x86_64"] - }, - { - "packageName": "sdlpop", - "description": "Unofficial, an open-source port of Prince of Persia...", - "icon": "https://portable-linux-apps.github.io/icons/sdlpop.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "seafile", - "description": "Seafile GUI version. Beyond just syncing and sharing files, it lets you add custom file properties and organize your files in different views. With AI-powered automation for generating properties, Seafile offers a smarter, more efficient way to manage your files...", - "icon": "https://portable-linux-apps.github.io/icons/seafile.png", - "arch": ["x86_64"] - }, - { - "packageName": "seafile-cli", - "description": "Seafile CLI version. Beyond just syncing and sharing files, it lets you add custom file properties and organize your files in different views. With AI-powered automation for generating properties, Seafile offers a smarter, more efficient way to manage your files...", - "icon": "https://portable-linux-apps.github.io/icons/seafile-cli.png", - "arch": ["x86_64"] - }, - { - "packageName": "seanime", - "description": "Open-source media server with a web interface and desktop app for anime and manga...", - "icon": "https://portable-linux-apps.github.io/icons/seanime.png", - "arch": ["x86_64"] - }, - { - "packageName": "secops", - "description": "A Linux Desktop Application for managing security...", - "icon": "https://portable-linux-apps.github.io/icons/secops.png", - "arch": ["x86_64"] - }, - { - "packageName": "secrets", - "description": "Unofficial AppImage of the Secrets keepass and 2FA password manager...", - "icon": "https://portable-linux-apps.github.io/icons/secrets.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "sed", - "description": "GNU stream editor for filtering and transforming text. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/sed.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "seedit", - "description": "A GUI for plebbit similar to old.reddit...", - "icon": "https://portable-linux-apps.github.io/icons/seedit.png", - "arch": ["x86_64"] - }, - { - "packageName": "seismic", - "description": "A taskbar app for displaying USGS magnitude 2.5+ earthquakes from the past day...", - "icon": "https://portable-linux-apps.github.io/icons/seismic.png", - "arch": ["x86_64"] - }, - { - "packageName": "selenium-ide", - "description": "Open Source record and playback test automation for the web...", - "icon": "https://portable-linux-apps.github.io/icons/selenium-ide.png", - "arch": ["x86_64"] - }, - { - "packageName": "sengi", - "description": "A multi-account desktop client for Mastodon and Pleroma...", - "icon": "https://portable-linux-apps.github.io/icons/sengi.png", - "arch": ["x86_64"] - }, - { - "packageName": "senpa-io-client", - "description": "Official Client for Senpa.io..", - "icon": "https://portable-linux-apps.github.io/icons/senpa-io-client.png", - "arch": ["x86_64"] - }, - { - "packageName": "sentinel", - "description": "An open-source decentralized VPN network application...", - "icon": "https://portable-linux-apps.github.io/icons/sentinel.png", - "arch": ["x86_64"] - }, - { - "packageName": "seq", - "description": "Print a sequence of numbers. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/seq.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ser-player", - "description": "Video player for SER files used for astronomy-imaging...", - "icon": "https://portable-linux-apps.github.io/icons/ser-player.png", - "arch": ["x86_64"] - }, - { - "packageName": "serial-studio", - "description": "Multi-purpose serial data view program...", - "icon": "https://portable-linux-apps.github.io/icons/serial-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "serialplot", - "description": "Small and simple software for plotting data from serial port...", - "icon": "https://portable-linux-apps.github.io/icons/serialplot.png", - "arch": ["x86_64"] - }, - { - "packageName": "serioussamtfe", - "description": "Game engine for Serious Sam Classic, TFE...", - "icon": "https://portable-linux-apps.github.io/icons/serioussamtfe.png", - "arch": ["x86_64"] - }, - { - "packageName": "serioussamtfe-vk", - "description": "Game engine for Serious Sam Classic, Vulkan support, TFE...", - "icon": "https://portable-linux-apps.github.io/icons/serioussamtfe-vk.png", - "arch": ["x86_64"] - }, - { - "packageName": "serioussamtse", - "description": "Game engine for Serious Sam Classic, TSE...", - "icon": "https://portable-linux-apps.github.io/icons/serioussamtse.png", - "arch": ["x86_64"] - }, - { - "packageName": "serioussamtse-vk", - "description": "Game engine for Serious Sam Classic, Vulkan support, TSE...", - "icon": "https://portable-linux-apps.github.io/icons/serioussamtse-vk.png", - "arch": ["x86_64"] - }, - { - "packageName": "servo", - "description": "Unofficial AppImage builds of the Servo web browser engine...", - "icon": "https://portable-linux-apps.github.io/icons/servo.png", - "arch": ["x86_64"] - }, - { - "packageName": "session-desktop", - "description": "Onion routing based messenger...", - "icon": "https://portable-linux-apps.github.io/icons/session-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "setcolors", - "description": "Another way to set colors in Linux shells...", - "icon": "https://portable-linux-apps.github.io/icons/setcolors.png", - "arch": ["x86_64"] - }, - { - "packageName": "sevicebus-browser", - "description": "A cross platform tool to manage your Azure Service Bus instances...", - "icon": "https://portable-linux-apps.github.io/icons/sevicebus-browser.png", - "arch": ["x86_64"] - }, - { - "packageName": "sf-tube", - "description": "Watch and download videos without ads...", - "icon": "https://portable-linux-apps.github.io/icons/sf-tube.png", - "arch": ["x86_64"] - }, - { - "packageName": "sfbrename-cli", - "description": "Bulk file renamer...", - "icon": "https://portable-linux-apps.github.io/icons/sfbrename-cli.png", - "arch": ["x86_64"] - }, - { - "packageName": "sfbrename-gtk", - "description": "Bulk file renamer...", - "icon": "https://portable-linux-apps.github.io/icons/sfbrename-gtk.png", - "arch": ["x86_64"] - }, - { - "packageName": "sfp", - "description": "This utility is designed to allow you to apply skins to the modern Steam client...", - "icon": "https://portable-linux-apps.github.io/icons/sfp.png", - "arch": ["x86_64"] - }, - { - "packageName": "sfrt-attendance", - "description": "The attendance tracking program for robotics...", - "icon": "https://portable-linux-apps.github.io/icons/sfrt-attendance.png", - "arch": ["x86_64"] - }, - { - "packageName": "sh", - "description": "GNU Bourne-Again Shell, the de facto standard shell on Linux. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/sh.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "sha1sum", - "description": "Compute and check SHA1 message digest. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/sha1sum.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "sha224sum", - "description": "Check SHA224 message digest. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/sha224sum.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "sha256sum", - "description": "Compute and check SHA256 message digest. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/sha256sum.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "sha384sum", - "description": "Check SHA384 message digest. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/sha384sum.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "sha512sum", - "description": "Compute and check SHA512 message digest. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/sha512sum.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "shadow-tech", - "description": "Shadow.tech, cloud computing service...", - "icon": "https://portable-linux-apps.github.io/icons/shadow-tech.png", - "arch": ["x86_64"] - }, - { - "packageName": "shadowsocks", - "description": "Shadowsocks GUI client...", - "icon": "https://portable-linux-apps.github.io/icons/shadowsocks.png", - "arch": ["x86_64"] - }, - { - "packageName": "shadps4", - "description": "An early PlayStation 4 emulator written in C++...", - "icon": "https://portable-linux-apps.github.io/icons/shadps4.png", - "arch": ["x86_64"] - }, - { - "packageName": "shadps4-qtlauncher", - "description": "The official Qt launcher for shadps4 PlayStation 4 emulator...", - "icon": "https://portable-linux-apps.github.io/icons/shadps4-qtlauncher.png", - "arch": ["x86_64"] - }, - { - "packageName": "shannon-calculator", - "description": "Self-information content of a message text...", - "icon": "https://portable-linux-apps.github.io/icons/shannon-calculator.png", - "arch": ["x86_64"] - }, - { - "packageName": "sharemyhost", - "description": "One click to share your files in your local network...", - "icon": "https://portable-linux-apps.github.io/icons/sharemyhost.png", - "arch": ["x86_64"] - }, - { - "packageName": "sharp-tune", - "description": "Music player build upon the node using the electron...", - "icon": "https://portable-linux-apps.github.io/icons/sharp-tune.png", - "arch": ["x86_64"] - }, - { - "packageName": "sheepshaver", - "description": "Classic Macintosh emulator SheepShaver...", - "icon": "https://portable-linux-apps.github.io/icons/sheepshaver.png", - "arch": ["x86_64"] - }, - { - "packageName": "sheikah", - "description": "A Witnet compatible desktop wallet...", - "icon": "https://portable-linux-apps.github.io/icons/sheikah.png", - "arch": ["x86_64"] - }, - { - "packageName": "shellcheck", - "description": "ShellCheck, a static analysis tool for shell scripts...", - "icon": "https://portable-linux-apps.github.io/icons/shellcheck.png", - "arch": ["x86_64"] - }, - { - "packageName": "shellharden", - "description": "The corrective bash syntax highlighter...", - "icon": "https://portable-linux-apps.github.io/icons/shellharden.png", - "arch": ["x86_64"] - }, - { - "packageName": "shockolate", - "description": "Unofficial AppImage of Shockolate...", - "icon": "https://portable-linux-apps.github.io/icons/shockolate.png", - "arch": ["x86_64"] - }, - { - "packageName": "shoopdaloop", - "description": "A (live) looping application with DAW elements...", - "icon": "https://portable-linux-apps.github.io/icons/shoopdaloop.png", - "arch": ["x86_64"] - }, - { - "packageName": "shotcut", - "description": "A powerful Video Editor...", - "icon": "https://portable-linux-apps.github.io/icons/shotcut.png", - "arch": ["x86_64"] - }, - { - "packageName": "shotwell", - "description": "Unofficial, a digital photo organizer designed for the GNOME desktop environment...", - "icon": "https://portable-linux-apps.github.io/icons/shotwell.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "shradiko", - "description": "Make Portable AppImages from Distro Packages...", - "icon": "https://portable-linux-apps.github.io/icons/shradiko.png", - "arch": ["x86_64"] - }, - { - "packageName": "shred", - "description": "Overwrite a file to hide its contents, and optionally. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/shred.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "shuf", - "description": "Generate random permutations. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/shuf.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "shutter-encoder", - "description": "Professional converter & compression tool designed by video editors...", - "icon": "https://portable-linux-apps.github.io/icons/shutter-encoder.png", - "arch": ["x86_64"] - }, - { - "packageName": "shuttle", - "description": "The fastest access to your favorite applications...", - "icon": "https://portable-linux-apps.github.io/icons/shuttle.png", - "arch": ["x86_64"] - }, - { - "packageName": "shvspy", - "description": "Qt GUI tool for shvbroker administration and browsing...", - "icon": "https://portable-linux-apps.github.io/icons/shvspy.png", - "arch": ["x86_64"] - }, - { - "packageName": "sideka", - "description": "Platform Tata Kelola Desa..", - "icon": "https://portable-linux-apps.github.io/icons/sideka.png", - "arch": ["x86_64"] - }, - { - "packageName": "sidenote", - "description": "A CLI tool that helps to manage plain text notes per working directory...", - "icon": "https://portable-linux-apps.github.io/icons/sidenote.png", - "arch": ["x86_64"] - }, - { - "packageName": "sigdigger", - "description": "Signal analyzer, using Suscan core and Sigutils DSP library...", - "icon": "https://portable-linux-apps.github.io/icons/sigdigger.png", - "arch": ["x86_64"] - }, - { - "packageName": "sigil", - "description": "Sigil is a multi-platform EPUB ebook editor...", - "icon": "https://portable-linux-apps.github.io/icons/sigil.png", - "arch": ["x86_64"] - }, - { - "packageName": "sigma-file-manager", - "description": "A free, open-source, modern file manager...", - "icon": "https://portable-linux-apps.github.io/icons/sigma-file-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "sigmaspectra", - "description": "Semi-automated selection and scaling of time series...", - "icon": "https://portable-linux-apps.github.io/icons/sigmaspectra.png", - "arch": ["x86_64"] - }, - { - "packageName": "signal", - "description": "Unofficial AppImage package for Signal (communication)...", - "icon": "https://portable-linux-apps.github.io/icons/signal.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "silex-desktop", - "description": "This is the official Silex desktop version...", - "icon": "https://portable-linux-apps.github.io/icons/silex-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "siliconsneaker", - "description": "View runs from your Garmin brand watch..", - "icon": "https://portable-linux-apps.github.io/icons/siliconsneaker.png", - "arch": ["x86_64"] - }, - { - "packageName": "silverkey", - "description": "The best Qt Application Ever...", - "icon": "https://portable-linux-apps.github.io/icons/silverkey.png", - "arch": ["x86_64"] - }, - { - "packageName": "simdock", - "description": "Small dock with pseudo-transparency and good window handling...", - "icon": "https://portable-linux-apps.github.io/icons/simdock.png", - "arch": ["x86_64"] - }, - { - "packageName": "simdsp", - "description": "DSP Simulator...", - "icon": "https://portable-linux-apps.github.io/icons/simdsp.png", - "arch": ["x86_64"] - }, - { - "packageName": "simitone", - "description": "Unofficial, re-implementation of The Sims 1, based off of FreeSO...", - "icon": "https://portable-linux-apps.github.io/icons/simitone.png", - "arch": ["x86_64"] - }, - { - "packageName": "simple-s3-uploader", - "description": "Easily uploading files and sharing links via AWS S3...", - "icon": "https://portable-linux-apps.github.io/icons/simple-s3-uploader.png", - "arch": ["x86_64"] - }, - { - "packageName": "simple-scan", - "description": "Make a digital copy of your photos and documents. Simple scanning utility for the GNOME desktop environment...", - "icon": "https://portable-linux-apps.github.io/icons/simple-scan.png", - "arch": ["x86_64"] - }, - { - "packageName": "simple-timer", - "description": "A really simple timer with a customizable logo and heading...", - "icon": "https://portable-linux-apps.github.io/icons/simple-timer.png", - "arch": ["x86_64"] - }, - { - "packageName": "simplechroot", - "description": "Simple command line chroot with ease...", - "icon": "https://portable-linux-apps.github.io/icons/simplechroot.png", - "arch": ["x86_64"] - }, - { - "packageName": "simpleinstabot", - "description": "Simple Instagram bot...", - "icon": "https://portable-linux-apps.github.io/icons/simpleinstabot.png", - "arch": ["x86_64"] - }, - { - "packageName": "simplenote-electron", - "description": "Simplenote...", - "icon": "https://portable-linux-apps.github.io/icons/simplenote-electron.png", - "arch": ["x86_64"] - }, - { - "packageName": "simpleos", - "description": "EOS Blockchain Interface & Wallet...", - "icon": "https://portable-linux-apps.github.io/icons/simpleos.png", - "arch": ["x86_64"] - }, - { - "packageName": "simplescreenrecorder", - "description": "Unofficial. Feature-rich screen recorder supporting X11 & OpenGL...", - "icon": "https://portable-linux-apps.github.io/icons/simplescreenrecorder.png", - "arch": ["x86_64"] - }, - { - "packageName": "simplest-file-renamer", - "description": "Simplest file renamer, rename your files quickly and easily...", - "icon": "https://portable-linux-apps.github.io/icons/simplest-file-renamer.png", - "arch": ["x86_64"] - }, - { - "packageName": "simplex-chat", - "description": "First messaging platform operating without user identifiers...", - "icon": "https://portable-linux-apps.github.io/icons/simplex-chat.png", - "arch": ["x86_64"] - }, - { - "packageName": "simplex-solver", - "description": "Simplex for optimization problems...", - "icon": "https://portable-linux-apps.github.io/icons/simplex-solver.png", - "arch": ["x86_64"] - }, - { - "packageName": "simtoolkitpro", - "description": "The all-in-one flight simulation EFB...", - "icon": "https://portable-linux-apps.github.io/icons/simtoolkitpro.png", - "arch": ["x86_64"] - }, - { - "packageName": "simutrans", - "description": "Unofficial, a freeware and open-source transportation simulator...", - "icon": "https://portable-linux-apps.github.io/icons/simutrans.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "singlebox", - "description": "AppView template for WebCatalog...", - "icon": "https://portable-linux-apps.github.io/icons/singlebox.png", - "arch": ["x86_64"] - }, - { - "packageName": "sinon", - "description": "A handy video tool...", - "icon": "https://portable-linux-apps.github.io/icons/sinon.png", - "arch": ["x86_64"] - }, - { - "packageName": "sioyek", - "description": "PDF viewer designed for reading research papers and technical books...", - "icon": "https://portable-linux-apps.github.io/icons/sioyek.png", - "arch": ["x86_64"] - }, - { - "packageName": "sipgate-softphone", - "description": "The sipgate softphone is developed directly by sipgate...", - "icon": "https://portable-linux-apps.github.io/icons/sipgate-softphone.png", - "arch": ["x86_64"] - }, - { - "packageName": "siyuan", - "description": "A local-first personal knowledge management system...", - "icon": "https://portable-linux-apps.github.io/icons/siyuan.png", - "arch": ["x86_64"] - }, - { - "packageName": "size", - "description": "Sizes and total size of binary files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/size.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "skanpage", - "description": "A simple scanning application. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/skanpage.png", - "arch": ["x86_64"] - }, - { - "packageName": "skyemu", - "description": "Game Boy Advance, Game Boy, Game Boy Color, and DS Emulator...", - "icon": "https://portable-linux-apps.github.io/icons/skyemu.png", - "arch": ["x86_64"] - }, - { - "packageName": "skype", - "description": "Unofficial. VoIP-based videoconferencing, voice calls and instant messaging app...", - "icon": "https://portable-linux-apps.github.io/icons/skype.png", - "arch": ["x86_64"] - }, - { - "packageName": "slack", - "description": "Unofficial AppImage of Slack...", - "icon": "https://portable-linux-apps.github.io/icons/slack.png", - "arch": ["x86_64"] - }, - { - "packageName": "slackbackup", - "description": "An app to archive Slack messages...", - "icon": "https://portable-linux-apps.github.io/icons/slackbackup.png", - "arch": ["x86_64"] - }, - { - "packageName": "slacktronic", - "description": "Connect your Slack workspace to Arduino...", - "icon": "https://portable-linux-apps.github.io/icons/slacktronic.png", - "arch": ["x86_64"] - }, - { - "packageName": "slang-ed", - "description": "An Electron/Ionic app to edit i18n language translations files...", - "icon": "https://portable-linux-apps.github.io/icons/slang-ed.png", - "arch": ["x86_64"] - }, - { - "packageName": "sleek", - "description": "Multiplatform todo.txt manager...", - "icon": "https://portable-linux-apps.github.io/icons/sleek.png", - "arch": ["x86_64"] - }, - { - "packageName": "sleep", - "description": "Delay for a specified amount of time. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/sleep.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "slic3r", - "description": "Open Source toolpath generator for 3D printers...", - "icon": "https://portable-linux-apps.github.io/icons/slic3r.png", - "arch": ["x86_64"] - }, - { - "packageName": "slippi", - "description": "Slippi Launcher program for browsing and playing replays...", - "icon": "https://portable-linux-apps.github.io/icons/slippi.png", - "arch": ["x86_64"] - }, - { - "packageName": "slogidex", - "description": "Task management and automation tool...", - "icon": "https://portable-linux-apps.github.io/icons/slogidex.png", - "arch": ["x86_64"] - }, - { - "packageName": "smallbasic", - "description": "A fast and easy to learn BASIC language interpreter...", - "icon": "https://portable-linux-apps.github.io/icons/smallbasic.png", - "arch": ["x86_64"] - }, - { - "packageName": "smartservogui", - "description": "Scan for servo devices easily view...", - "icon": "https://portable-linux-apps.github.io/icons/smartservogui.png", - "arch": ["x86_64"] - }, - { - "packageName": "smassh", - "description": "Smassh your Keyboard, TUI Edition...", - "icon": "https://portable-linux-apps.github.io/icons/smassh.png", - "arch": ["x86_64"] - }, - { - "packageName": "smath-studio", - "description": "Tiny, but powerful mathematical program with WYSIWYG editor...", - "icon": "https://portable-linux-apps.github.io/icons/smath-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "smf-dsp", - "description": "Standard MIDI file player...", - "icon": "https://portable-linux-apps.github.io/icons/smf-dsp.png", - "arch": ["x86_64"] - }, - { - "packageName": "smplayer", - "description": "Media Player with built-in codecs for all audio and video formats...", - "icon": "https://portable-linux-apps.github.io/icons/smplayer.png", - "arch": ["x86_64"] - }, - { - "packageName": "smuview", - "description": "A Qt based source measure unit GUI for sigrok...", - "icon": "https://portable-linux-apps.github.io/icons/smuview.png", - "arch": ["x86_64"] - }, - { - "packageName": "snake-js", - "description": "Canvas/JavaScript based Snake Game with support for controllers...", - "icon": "https://portable-linux-apps.github.io/icons/snake-js.png", - "arch": ["x86_64"] - }, - { - "packageName": "snapclear", - "description": "Remove Image Background with AI for Free Offline...", - "icon": "https://portable-linux-apps.github.io/icons/snapclear.png", - "arch": ["x86_64"] - }, - { - "packageName": "snapmaker-orca", - "description": "G-code generator for 3D printers (Bambu, Prusa, Voron, VzBot, RatRig, Creality...)...", - "icon": "https://portable-linux-apps.github.io/icons/snapmaker-orca.png", - "arch": ["x86_64"] - }, - { - "packageName": "snapshot-slider", - "description": "Present/print/email Snapshots of modern mathematics...", - "icon": "https://portable-linux-apps.github.io/icons/snapshot-slider.png", - "arch": ["x86_64"] - }, - { - "packageName": "snes9x", - "description": "Snes9x - Portable Super Nintendo Entertainment System TM emulator...", - "icon": "https://portable-linux-apps.github.io/icons/snes9x.png", - "arch": ["x86_64"] - }, - { - "packageName": "snes9x-enhanced", - "description": "Unofficial, Snes9x - Portable Super Nintendo Entertainment System TM emulator...", - "icon": "https://portable-linux-apps.github.io/icons/snes9x-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "sniffnet", - "description": "Sniffnet is a network monitoring tool to help you easily keep track of your Internet traffic. Whether you want to gather statistics, you’re curious to see who you are exchanging data with, or you need to inspect more in depth what's going on in your network, this app will get you covered...", - "icon": "https://portable-linux-apps.github.io/icons/sniffnet.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "snippetstore", - "description": "A snippet management app for developers...", - "icon": "https://portable-linux-apps.github.io/icons/snippetstore.png", - "arch": ["x86_64"] - }, - { - "packageName": "snomcontrol", - "description": "An application to control snom D3xx phones from the desktop...", - "icon": "https://portable-linux-apps.github.io/icons/snomcontrol.png", - "arch": ["x86_64"] - }, - { - "packageName": "snowball", - "description": "Find and filter literature, fast...", - "icon": "https://portable-linux-apps.github.io/icons/snowball.png", - "arch": ["x86_64"] - }, - { - "packageName": "snowboardkids2-recomp", - "description": "Unofficial AppImage of game Snowboard Kids 2 Recompilation...", - "icon": "https://portable-linux-apps.github.io/icons/snowboardkids2-recomp.png", - "arch": ["x86_64"] - }, - { - "packageName": "soapy-sdr", - "description": "I/Q recorder and processor using SoapySDR as backend...", - "icon": "https://portable-linux-apps.github.io/icons/soapy-sdr.png", - "arch": ["x86_64"] - }, - { - "packageName": "soar", - "description": "A fast, modern package manager for Static Binaries, Portable Formats, AppImage, AppBundle, FlatImage, Runimage & More...", - "icon": "https://portable-linux-apps.github.io/icons/soar.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "socnetv", - "description": "Social Network Analysis and Visualization software...", - "icon": "https://portable-linux-apps.github.io/icons/socnetv.png", - "arch": ["x86_64"] - }, - { - "packageName": "soft-serve", - "description": "The mighty, self-hostable Git server for the command line...", - "icon": "https://portable-linux-apps.github.io/icons/soft-serve.png", - "arch": ["x86_64"] - }, - { - "packageName": "software-challenge-gui", - "description": "GUI für die Software-Challenge...", - "icon": "https://portable-linux-apps.github.io/icons/software-challenge-gui.png", - "arch": ["x86_64"] - }, - { - "packageName": "soh-enhanced", - "description": "Unofficial, Ship of Harkinian...", - "icon": "https://portable-linux-apps.github.io/icons/soh-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "soil-editor", - "description": "A tool to edit the soil properties, CRITERIA1D...", - "icon": "https://portable-linux-apps.github.io/icons/soil-editor.png", - "arch": ["x86_64"] - }, - { - "packageName": "solaar", - "description": "Unofficial AppImage of solaar...", - "icon": "https://portable-linux-apps.github.io/icons/solaar.png", - "arch": ["x86_64"] - }, - { - "packageName": "solars", - "description": "Visualize the planets of our solar system...", - "icon": "https://portable-linux-apps.github.io/icons/solars.png", - "arch": ["x86_64"] - }, - { - "packageName": "solarwallet", - "description": "Stellar wallet. Secure and user-friendly...", - "icon": "https://portable-linux-apps.github.io/icons/solarwallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "songrec", - "description": "Unofficial, an open-source Shazam client for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/songrec.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "sonic-3-air", - "description": "Unofficial, Source and data to build Sonic 3 A.I.R. (Angel Island Revisited) and the Oxygen Engine...", - "icon": "https://portable-linux-apps.github.io/icons/sonic-3-air.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "sonic-mania-decompilation", - "description": "Unofficial, a complete decompilation of Sonic Mania (2017)...", - "icon": "https://portable-linux-apps.github.io/icons/sonic-mania-decompilation.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "sonicvisualiser", - "description": "Viewing and analysing the contents of music audio files...", - "icon": "https://portable-linux-apps.github.io/icons/sonicvisualiser.png", - "arch": ["x86_64"] - }, - { - "packageName": "sonixd", - "description": "A full-featured Subsonic/Jellyfin compatible desktop music player...", - "icon": "https://portable-linux-apps.github.io/icons/sonixd.png", - "arch": ["x86_64"] - }, - { - "packageName": "sonos-controller", - "description": "An Electron based linux app for controlling your sonos system...", - "icon": "https://portable-linux-apps.github.io/icons/sonos-controller.png", - "arch": ["x86_64"] - }, - { - "packageName": "sonusmix", - "description": "Next-gen Pipewire audio routing tool...", - "icon": "https://portable-linux-apps.github.io/icons/sonusmix.png", - "arch": ["x86_64"] - }, - { - "packageName": "sort", - "description": "Sort lines of text files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/sort.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "soul-arena", - "description": "Bleach-based online multiplayer strategy game...", - "icon": "https://portable-linux-apps.github.io/icons/soul-arena.png", - "arch": ["x86_64"] - }, - { - "packageName": "sound-space-plus", - "description": "Unofficial AppImage of sound-space-plus, Rhythm-based aim game...", - "icon": "https://portable-linux-apps.github.io/icons/sound-space-plus.png", - "arch": ["x86_64"] - }, - { - "packageName": "soundcloud-rpc", - "description": "A SoundCloud client with Discord Rich Presence and AdBlock...", - "icon": "https://portable-linux-apps.github.io/icons/soundcloud-rpc.png", - "arch": ["x86_64"] - }, - { - "packageName": "sourcetrail", - "description": "Source explorer to get you productive on unfamiliar source code...", - "icon": "https://portable-linux-apps.github.io/icons/sourcetrail.png", - "arch": ["x86_64"] - }, - { - "packageName": "sozi", - "description": "A \"zooming\" presentation editor...", - "icon": "https://portable-linux-apps.github.io/icons/sozi.png", - "arch": ["x86_64"] - }, - { - "packageName": "spacebar", - "description": "Themeable and extendable discord-compatible native Spacebar client...", - "icon": "https://portable-linux-apps.github.io/icons/spacebar.png", - "arch": ["x86_64"] - }, - { - "packageName": "spacebar-debug", - "description": "Extendable discord-compatible native Spacebar client, debug...", - "icon": "https://portable-linux-apps.github.io/icons/spacebar-debug.png", - "arch": ["x86_64"] - }, - { - "packageName": "spacecadet", - "description": "Unofficial. Reverse engineered port of 3D Pinball for Windows XP Space Cadet...", - "icon": "https://portable-linux-apps.github.io/icons/spacecadet.png", - "arch": ["x86_64"] - }, - { - "packageName": "spacewars", - "description": "A re-imagining of the classic game Spacewar using Amethyst engine...", - "icon": "https://portable-linux-apps.github.io/icons/spacewars.png", - "arch": ["x86_64"] - }, - { - "packageName": "spaghettikart-enhanced", - "description": "Unofficial, Mario Kart 64 PC game Port...", - "icon": "https://portable-linux-apps.github.io/icons/spaghettikart-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "spark-wallet", - "description": "A wallet GUI for c-lightning, accessible over web/mobile/pc...", - "icon": "https://portable-linux-apps.github.io/icons/spark-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "speak-to-ai", - "description": "Speak to AI - native Linux voice-to-text app...", - "icon": "https://portable-linux-apps.github.io/icons/speak-to-ai.png", - "arch": ["x86_64"] - }, - { - "packageName": "speaky-miniplayer", - "description": "A miniplayer with a synthetic radio speaker...", - "icon": "https://portable-linux-apps.github.io/icons/speaky-miniplayer.png", - "arch": ["x86_64"] - }, - { - "packageName": "speed-dreams", - "description": "A Torcs fork, 3d motorsport simulation and race cars game...", - "icon": "https://portable-linux-apps.github.io/icons/speed-dreams.png", - "arch": ["x86_64"] - }, - { - "packageName": "speedcrunch", - "description": "Unofficial, a high-precision scientific calculator featuring a fast, keyboard-driven user interface...", - "icon": "https://portable-linux-apps.github.io/icons/speedcrunch.png", - "arch": ["x86_64"] - }, - { - "packageName": "speedyloader", - "description": "Speeduino universal firmware loader...", - "icon": "https://portable-linux-apps.github.io/icons/speedyloader.png", - "arch": ["x86_64"] - }, - { - "packageName": "speek", - "description": "Privacy focused messenger...", - "icon": "https://portable-linux-apps.github.io/icons/speek.png", - "arch": ["x86_64"] - }, - { - "packageName": "spek", - "description": "Unofficial AppImage of Spek...", - "icon": "https://portable-linux-apps.github.io/icons/spek.png", - "arch": ["x86_64"] - }, - { - "packageName": "sphia", - "description": "A Proxy Handling Intuitive Application...", - "icon": "https://portable-linux-apps.github.io/icons/sphia.png", - "arch": ["x86_64"] - }, - { - "packageName": "spicy-launcher", - "description": "Cross-platform launcher for Spicy Lobster games...", - "icon": "https://portable-linux-apps.github.io/icons/spicy-launcher.png", - "arch": ["x86_64"] - }, - { - "packageName": "spivak", - "description": "Karaoke player based on GStreamer and Qt5...", - "icon": "https://portable-linux-apps.github.io/icons/spivak.png", - "arch": ["x86_64"] - }, - { - "packageName": "splayer", - "description": "A simple music player that supports word-by-word lyrics, song downloads, comment section display, music cloud storage and playlist management, music spectrum analysis, and basic mobile adaptation. NetEase Cloud Music...", - "icon": "https://portable-linux-apps.github.io/icons/splayer.png", - "arch": ["x86_64"] - }, - { - "packageName": "split", - "description": "Divide a file into multiple smaller files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/split.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "spm", - "description": "A simple CLI package manager written in bash mainly for AppImages...", - "icon": "https://portable-linux-apps.github.io/icons/spm.png", - "arch": ["x86_64"] - }, - { - "packageName": "spmp", - "description": "A YouTube Music client with a focus on customisation of colours and song metadata...", - "icon": "https://portable-linux-apps.github.io/icons/spmp.png", - "arch": ["x86_64"] - }, - { - "packageName": "sponge-hash-aes256", - "description": "A sponge-based secure hash function that uses AES-256 as its internal PRF...", - "icon": "https://portable-linux-apps.github.io/icons/sponge-hash-aes256.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "spotifetch", - "description": "A simple and beautiful CLI fetch tool for spotify, now rusty...", - "icon": "https://portable-linux-apps.github.io/icons/spotifetch.png", - "arch": ["x86_64"] - }, - { - "packageName": "spotify", - "description": "Unofficial. A proprietary music streaming service...", - "icon": "https://portable-linux-apps.github.io/icons/spotify.png", - "arch": ["x86_64"] - }, - { - "packageName": "spotify-candidate", - "description": "Unofficial. A proprietary music streaming service...", - "icon": "https://portable-linux-apps.github.io/icons/spotify-candidate.png", - "arch": ["x86_64"] - }, - { - "packageName": "spotify-dl", - "description": "A command-line utility to download songs and playlists directly from Spotify's servers...", - "icon": "https://portable-linux-apps.github.io/icons/spotify-dl.png", - "arch": ["x86_64"] - }, - { - "packageName": "spotify-edge", - "description": "Unofficial. A proprietary music streaming service...", - "icon": "https://portable-linux-apps.github.io/icons/spotify-edge.png", - "arch": ["x86_64"] - }, - { - "packageName": "spotify-player", - "description": "A Spotify player in the terminal with full feature parity...", - "icon": "https://portable-linux-apps.github.io/icons/spotify-player.png", - "arch": ["x86_64"] - }, - { - "packageName": "spotify-qt", - "description": "Lightweight Spotify client using Qt...", - "icon": "https://portable-linux-apps.github.io/icons/spotify-qt.png", - "arch": ["x86_64"] - }, - { - "packageName": "spotify-tui", - "description": "Spotify for the terminal written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/spotify-tui.png", - "arch": ["x86_64"] - }, - { - "packageName": "spotube", - "description": "Open source Spotify client that doesn't require Premium...", - "icon": "https://portable-linux-apps.github.io/icons/spotube.png", - "arch": ["x86_64"] - }, - { - "packageName": "spritemate4electron", - "description": "A simple Electron-wrapper for Esshahn's awesome Spritemate-webapp...", - "icon": "https://portable-linux-apps.github.io/icons/spritemate4electron.png", - "arch": ["x86_64"] - }, - { - "packageName": "sptlrx", - "description": "Synchronized lyrics in your terminal...", - "icon": "https://portable-linux-apps.github.io/icons/sptlrx.png", - "arch": ["x86_64"] - }, - { - "packageName": "spyglass", - "description": "A personal search engine to create a searchable library from your personal documents, interests, and more...", - "icon": "https://portable-linux-apps.github.io/icons/spyglass.png", - "arch": ["x86_64"] - }, - { - "packageName": "sqlite3", - "description": "Command-line tool for managing SQLite databases. This is part of \"platform-tools\"...", - "icon": "https://portable-linux-apps.github.io/icons/sqlite3.png", - "arch": ["x86_64"] - }, - { - "packageName": "sqlitebrowser", - "description": "DB Browser is a light GUI editor for SQLite databases...", - "icon": "https://portable-linux-apps.github.io/icons/sqlitebrowser.png", - "arch": ["x86_64"] - }, - { - "packageName": "squirrel-disk", - "description": "Cross-Platform and Super Fast Disk Usage Analysis Tool...", - "icon": "https://portable-linux-apps.github.io/icons/squirrel-disk.png", - "arch": ["x86_64"] - }, - { - "packageName": "srb2", - "description": "Unofficial, a 3D Sonic the Hedgehog fangame based on a modified version of Doom Legacy...", - "icon": "https://portable-linux-apps.github.io/icons/srb2.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "srb2k", - "description": "AppImage Package for Sonic Robo Blast 2 Kart, game...", - "icon": "https://portable-linux-apps.github.io/icons/srb2k.png", - "arch": ["x86_64"] - }, - { - "packageName": "srb2kart", - "description": "Unofficial AppImage of SRB2kart...", - "icon": "https://portable-linux-apps.github.io/icons/srb2kart.png", - "arch": ["x86_64"] - }, - { - "packageName": "ssh-mitm", - "description": "Server for security audits supporting public key authentication...", - "icon": "https://portable-linux-apps.github.io/icons/ssh-mitm.png", - "arch": ["x86_64"] - }, - { - "packageName": "ssplot", - "description": "A simple plotting utility for dynamical systems...", - "icon": "https://portable-linux-apps.github.io/icons/ssplot.png", - "arch": ["x86_64"] - }, - { - "packageName": "st", - "description": "Unofficial AppImage of the suckless terminal st...", - "icon": "https://portable-linux-apps.github.io/icons/st.png", - "arch": ["x86_64"] - }, - { - "packageName": "st+", - "description": "A beautiful, SIXEL-capable, lightweight terminal (~100KB) with just-enough essential features for rock-solid stability in daily usage. Features integration with nerd-fonts and Gogh color schemes...", - "icon": "https://portable-linux-apps.github.io/icons/st+.png", - "arch": ["x86_64"] - }, - { - "packageName": "stabilitymatrix", - "description": "Multi-Platform Package Manager for Stable Diffusion, a deep AI learning model used for converting text to images...", - "icon": "https://portable-linux-apps.github.io/icons/stabilitymatrix.png", - "arch": ["x86_64"] - }, - { - "packageName": "stacer", - "description": "Linux System Optimizer and Monitoring...", - "icon": "https://portable-linux-apps.github.io/icons/stacer.png", - "arch": ["x86_64"] - }, - { - "packageName": "stack-wallet", - "description": "Stack Wallet, a multicoin, cryptocurrency wallet...", - "icon": "https://portable-linux-apps.github.io/icons/stack-wallet.png", - "arch": ["x86_64"] - }, - { - "packageName": "stackandconquer", - "description": "A challenging tower conquest board game \"Mixtour\" inspired...", - "icon": "https://portable-linux-apps.github.io/icons/stackandconquer.png", - "arch": ["x86_64"] - }, - { - "packageName": "standard-notes", - "description": "A simple and private place for your notes...", - "icon": "https://portable-linux-apps.github.io/icons/standard-notes.png", - "arch": ["x86_64"] - }, - { - "packageName": "starc", - "description": "Story Architect, reinventing the screenwriting software...", - "icon": "https://portable-linux-apps.github.io/icons/starc.png", - "arch": ["x86_64"] - }, - { - "packageName": "starfox64recomp", - "description": "Unofficial, a native port of Starfox 64, statically recompiled...", - "icon": "https://portable-linux-apps.github.io/icons/starfox64recomp.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "starship", - "description": "The minimal, blazing-fast, and infinitely customizable prompt for any shell...", - "icon": "https://portable-linux-apps.github.io/icons/starship.png", - "arch": ["x86_64"] - }, - { - "packageName": "stash-electron", - "description": "The friendly secret storage made for teams...", - "icon": "https://portable-linux-apps.github.io/icons/stash-electron.png", - "arch": ["x86_64"] - }, - { - "packageName": "stat", - "description": "Display file or file system status. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/stat.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "station", - "description": "A single place for all of your web applications...", - "icon": "https://portable-linux-apps.github.io/icons/station.png", - "arch": ["x86_64"] - }, - { - "packageName": "statsbook-tool", - "description": "A tool for error checking WFTDA Statsbooks...", - "icon": "https://portable-linux-apps.github.io/icons/statsbook-tool.png", - "arch": ["x86_64"] - }, - { - "packageName": "statuspilatus", - "description": "Monitor your PC like never before...", - "icon": "https://portable-linux-apps.github.io/icons/statuspilatus.png", - "arch": ["x86_64"] - }, - { - "packageName": "stdbuf", - "description": "With modified buffering operations for its. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/stdbuf.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "steam", - "description": "Unofficial. The ultimate destination for playing, discussing, and creating games...", - "icon": "https://portable-linux-apps.github.io/icons/steam.png", - "arch": ["x86_64"] - }, - { - "packageName": "steam-rom-manager", - "description": "An app for managing ROMs in Steam...", - "icon": "https://portable-linux-apps.github.io/icons/steam-rom-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "steam-tui", - "description": "Rust TUI client for steamcmd...", - "icon": "https://portable-linux-apps.github.io/icons/steam-tui.png", - "arch": ["x86_64"] - }, - { - "packageName": "steamcad", - "description": "2D CAD especially designed to draw steam locomotives...", - "icon": "https://portable-linux-apps.github.io/icons/steamcad.png", - "arch": ["x86_64"] - }, - { - "packageName": "steamdepotdownloadergui", - "description": "Easily download older versions of games from Steam...", - "icon": "https://portable-linux-apps.github.io/icons/steamdepotdownloadergui.png", - "arch": ["x86_64"] - }, - { - "packageName": "steem-messenger", - "description": "Messer for Steem...", - "icon": "https://portable-linux-apps.github.io/icons/steem-messenger.png", - "arch": ["x86_64"] - }, - { - "packageName": "stele", - "description": "Kiosk app wrapper for museum media exhibits...", - "icon": "https://portable-linux-apps.github.io/icons/stele.png", - "arch": ["x86_64"] - }, - { - "packageName": "stella", - "description": "Unofficial, A multi-platform Atari 2600 Emulator...", - "icon": "https://portable-linux-apps.github.io/icons/stella.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "stellarium", - "description": "Planetarium that shows a realistic sky in 3D...", - "icon": "https://portable-linux-apps.github.io/icons/stellarium.png", - "arch": ["x86_64"] - }, - { - "packageName": "stellarmaps", - "description": "Stylized maps from Stellaris saves...", - "icon": "https://portable-linux-apps.github.io/icons/stellarmaps.png", - "arch": ["x86_64"] - }, - { - "packageName": "stew", - "description": "An independent package manager for compiled binaries...", - "icon": "https://portable-linux-apps.github.io/icons/stew.png", - "arch": ["x86_64"] - }, - { - "packageName": "sticker-convert", - "description": "Convert animated stickers...", - "icon": "https://portable-linux-apps.github.io/icons/sticker-convert.png", - "arch": ["x86_64"] - }, - { - "packageName": "stirling-pdf", - "description": "Unofficial. Powerful, open-source PDF editing platform...", - "icon": "https://portable-linux-apps.github.io/icons/stirling-pdf.png", - "arch": ["x86_64"] - }, - { - "packageName": "stockstalk", - "description": "Your stocks on your desktop...", - "icon": "https://portable-linux-apps.github.io/icons/stockstalk.png", - "arch": ["x86_64"] - }, - { - "packageName": "stoplight", - "description": "The kickass API platform...", - "icon": "https://portable-linux-apps.github.io/icons/stoplight.png", - "arch": ["x86_64"] - }, - { - "packageName": "storadit", - "description": "Minimalistic Todo list/notes taking app...", - "icon": "https://portable-linux-apps.github.io/icons/storadit.png", - "arch": ["x86_64"] - }, - { - "packageName": "storaji", - "description": "The Light/Responsive Inventory Management System...", - "icon": "https://portable-linux-apps.github.io/icons/storaji.png", - "arch": ["x86_64"] - }, - { - "packageName": "storyboarder", - "description": "Visualize a story as fast you can draw stick figures...", - "icon": "https://portable-linux-apps.github.io/icons/storyboarder.png", - "arch": ["x86_64"] - }, - { - "packageName": "strace", - "description": "Trace system calls and signals. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/strace.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "strans", - "description": "A powerful command-line utility...", - "icon": "https://portable-linux-apps.github.io/icons/strans.png", - "arch": ["x86_64"] - }, - { - "packageName": "strata", - "description": "Semi-automated selection and scaling of time series...", - "icon": "https://portable-linux-apps.github.io/icons/strata.png", - "arch": ["x86_64"] - }, - { - "packageName": "strawberry", - "description": "Unofficial AppImage of the strawberry music player...", - "icon": "https://portable-linux-apps.github.io/icons/strawberry.png", - "arch": ["x86_64"] - }, - { - "packageName": "streamdock", - "description": "Streaming service viewer...", - "icon": "https://portable-linux-apps.github.io/icons/streamdock.png", - "arch": ["x86_64"] - }, - { - "packageName": "streamlink", - "description": "Command-line which pipes video streams from various services...", - "icon": "https://portable-linux-apps.github.io/icons/streamlink.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "streamlink-twitch-gui", - "description": "A multi platform Twitch.tv browser for Streamlink...", - "icon": "https://portable-linux-apps.github.io/icons/streamlink-twitch-gui.png", - "arch": ["x86_64"] - }, - { - "packageName": "streamon", - "description": "Create streaming links to instagram live...", - "icon": "https://portable-linux-apps.github.io/icons/streamon.png", - "arch": ["x86_64"] - }, - { - "packageName": "stremio-enhanced", - "description": "Electron-based Stremio client with support for plugins and themes. This is a community project and is not affiliated with Stremio in any way...", - "icon": "https://portable-linux-apps.github.io/icons/stremio-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "stretchly", - "description": "App that reminds you to take breaks when working on your PC...", - "icon": "https://portable-linux-apps.github.io/icons/stretchly.png", - "arch": ["x86_64"] - }, - { - "packageName": "strings", - "description": "Strings is another bad static string library, written in C. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/strings.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "strip", - "description": "And other data from object files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/strip.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "strongbox", - "description": "A World of Warcraft Addon Manager aimed at Linux players...", - "icon": "https://portable-linux-apps.github.io/icons/strongbox.png", - "arch": ["x86_64"] - }, - { - "packageName": "structure", - "description": "A knowledge management tool...", - "icon": "https://portable-linux-apps.github.io/icons/structure.png", - "arch": ["x86_64"] - }, - { - "packageName": "stty", - "description": "Change and print terminal line settings. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/stty.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "studymd", - "description": "Flashcards from Markdown...", - "icon": "https://portable-linux-apps.github.io/icons/studymd.png", - "arch": ["x86_64"] - }, - { - "packageName": "stunt-car-remake", - "description": "Remake of the old game Stunt Car Racer...", - "icon": "https://portable-linux-apps.github.io/icons/stunt-car-remake.png", - "arch": ["x86_64"] - }, - { - "packageName": "subillmanager", - "description": "A simple Flutter app to manage electricity bill...", - "icon": "https://portable-linux-apps.github.io/icons/subillmanager.png", - "arch": ["x86_64"] - }, - { - "packageName": "substrate-ide", - "description": "Graphic IDE for developing Substrate blockchains...", - "icon": "https://portable-linux-apps.github.io/icons/substrate-ide.png", - "arch": ["x86_64"] - }, - { - "packageName": "subsurface", - "description": "Official upstream of the Subsurface divelog program...", - "icon": "https://portable-linux-apps.github.io/icons/subsurface.png", - "arch": ["x86_64"] - }, - { - "packageName": "subtitld", - "description": "Transform your video content creation with Subtitld, the open source software that streamlines your video content creation process...", - "icon": "https://portable-linux-apps.github.io/icons/subtitld.png", - "arch": ["x86_64"] - }, - { - "packageName": "subtitle-composer", - "description": "KF5/Qt Video Subtitle Editor for KDE...", - "icon": "https://portable-linux-apps.github.io/icons/subtitle-composer.png", - "arch": ["x86_64"] - }, - { - "packageName": "subtitler", - "description": "Quickly download subtitles...", - "icon": "https://portable-linux-apps.github.io/icons/subtitler.png", - "arch": ["x86_64"] - }, - { - "packageName": "sultanpos", - "description": "Simple POS for minimarket...", - "icon": "https://portable-linux-apps.github.io/icons/sultanpos.png", - "arch": ["x86_64"] - }, - { - "packageName": "sum", - "description": "Checksum and count the blocks in a file. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/sum.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "summoners.war.exporter", - "description": "To parse intercepted data from Summoners War...", - "icon": "https://portable-linux-apps.github.io/icons/summoners.war.exporter.png", - "arch": ["x86_64"] - }, - { - "packageName": "sumoco", - "description": "Simple Unified Model for Orthopaedics...", - "icon": "https://portable-linux-apps.github.io/icons/sumoco.png", - "arch": ["x86_64"] - }, - { - "packageName": "sunny", - "description": "Screenshot software that supports OCR and image translation features...", - "icon": "https://portable-linux-apps.github.io/icons/sunny.png", - "arch": ["x86_64"] - }, - { - "packageName": "sunsama", - "description": "The daily planner for elite professionals...", - "icon": "https://portable-linux-apps.github.io/icons/sunsama.png", - "arch": ["x86_64"] - }, - { - "packageName": "sunshine", - "description": "Sunshine is a Gamestream host for Moonlight...", - "icon": "https://portable-linux-apps.github.io/icons/sunshine.png", - "arch": ["x86_64"] - }, - { - "packageName": "sunvox", - "description": "Unofficial. Small, fast and powerful modular synthesizer with pattern-based sequencer (tracker)...", - "icon": "https://portable-linux-apps.github.io/icons/sunvox.png", - "arch": ["x86_64"] - }, - { - "packageName": "sup", - "description": "A Slack client with WhatsApp like UI...", - "icon": "https://portable-linux-apps.github.io/icons/sup.png", - "arch": ["x86_64"] - }, - { - "packageName": "super-zsnes", - "description": "Unofficial AppImage of SUPER ZSNES...", - "icon": "https://portable-linux-apps.github.io/icons/super-zsnes.png", - "arch": ["x86_64"] - }, - { - "packageName": "superbacked", - "description": "Don’t lose your secrets. A secret management platform used to back up and pass on sensitive data from one generation to the next...", - "icon": "https://portable-linux-apps.github.io/icons/superbacked.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "supercell-wx", - "description": "Supercell Wx is a free, open source advanced weather radar viewer...", - "icon": "https://portable-linux-apps.github.io/icons/supercell-wx.png", - "arch": ["x86_64"] - }, - { - "packageName": "superfile", - "description": "Pretty fancy and modern terminal file manager...", - "icon": "https://portable-linux-apps.github.io/icons/superfile.png", - "arch": ["x86_64"] - }, - { - "packageName": "supermariowar", - "description": "Unofficial, a fan-made multiplayer Super Mario Bros. style deathmatch game...", - "icon": "https://portable-linux-apps.github.io/icons/supermariowar.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "supermodel", - "description": "Unofficial, Sega Model 3 arcade emulator...", - "icon": "https://portable-linux-apps.github.io/icons/supermodel.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "supernotes", - "description": "Enjoy efficient note-taking without the hassle...", - "icon": "https://portable-linux-apps.github.io/icons/supernotes.png", - "arch": ["x86_64"] - }, - { - "packageName": "superpaper", - "description": "A cross-platform multi monitor wallpaper manager...", - "icon": "https://portable-linux-apps.github.io/icons/superpaper.png", - "arch": ["x86_64"] - }, - { - "packageName": "superproductivity", - "description": "An advanced todo list app with integrated Timeboxing...", - "icon": "https://portable-linux-apps.github.io/icons/superproductivity.png", - "arch": ["x86_64"] - }, - { - "packageName": "superslicer-bin", - "description": "G-code generator for 3D printers...", - "icon": "https://portable-linux-apps.github.io/icons/superslicer-bin.png", - "arch": ["x86_64"] - }, - { - "packageName": "superslicer-prerelease-bin", - "description": "G-code generator for 3D printers...", - "icon": "https://portable-linux-apps.github.io/icons/superslicer-prerelease-bin.png", - "arch": ["x86_64"] - }, - { - "packageName": "supersonic", - "description": "A lightweight and full-featured cross-platform desktop client for self-hosted music servers...", - "icon": "https://portable-linux-apps.github.io/icons/supersonic.png", - "arch": ["x86_64"] - }, - { - "packageName": "supertag", - "description": "A tag-based filesystem written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/supertag.png", - "arch": ["x86_64"] - }, - { - "packageName": "supertux", - "description": "Classic 2D jump'n run sidescroller game inspired to Super Mario...", - "icon": "https://portable-linux-apps.github.io/icons/supertux.png", - "arch": ["x86_64"] - }, - { - "packageName": "supertuxkart", - "description": "Free kart racing game focused on Fun!..", - "icon": "https://portable-linux-apps.github.io/icons/supertuxkart.png", - "arch": ["x86_64","aarch64","i686"] - }, - { - "packageName": "supertuxkart-dev", - "description": "Free kart racing game focused on Fun! Pre-release...", - "icon": "https://portable-linux-apps.github.io/icons/supertuxkart-dev.png", - "arch": ["x86_64","aarch64","i686"] - }, - { - "packageName": "surrealist", - "description": "Surrealist is the ultimate way to visually manage your SurrealDB database...", - "icon": "https://portable-linux-apps.github.io/icons/surrealist.png", - "arch": ["x86_64"] - }, - { - "packageName": "suwayomi", - "description": "A rewrite of Tachiyomi for the Desktop...", - "icon": "https://portable-linux-apps.github.io/icons/suwayomi.png", - "arch": ["x86_64"] - }, - { - "packageName": "svelte-electron", - "description": "Create desktop apps with this Svelte boilerplate...", - "icon": "https://portable-linux-apps.github.io/icons/svelte-electron.png", - "arch": ["x86_64"] - }, - { - "packageName": "svgwall", - "description": "SVG Wallpaper Utility for Xorg...", - "icon": "https://portable-linux-apps.github.io/icons/svgwall.png", - "arch": ["x86_64"] - }, - { - "packageName": "sview", - "description": "3D Stereoscopic media player for videos and images...", - "icon": "https://portable-linux-apps.github.io/icons/sview.png", - "arch": ["x86_64"] - }, - { - "packageName": "swaglyrics", - "description": "SwagLyrics AppImage, unofficial...", - "icon": "https://portable-linux-apps.github.io/icons/swaglyrics.png", - "arch": ["x86_64"] - }, - { - "packageName": "swapoff", - "description": "Enable/disable devices and files for paging and. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/swapoff.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "swapon", - "description": "Enable/disable devices and files for paging and. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/swapon.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "swc-minecraft-launcher", - "description": "SWC Minecraft Launcher...", - "icon": "https://portable-linux-apps.github.io/icons/swc-minecraft-launcher.png", - "arch": ["x86_64"] - }, - { - "packageName": "sweeper", - "description": "System Cleaner. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/sweeper.png", - "arch": ["x86_64"] - }, - { - "packageName": "sweethome3d", - "description": "An interior design app to draw house plans & arrange furniture...", - "icon": "https://portable-linux-apps.github.io/icons/sweethome3d.png", - "arch": ["x86_64"] - }, - { - "packageName": "swell", - "description": "Testing for streaming APIs, right at your desktop...", - "icon": "https://portable-linux-apps.github.io/icons/swell.png", - "arch": ["x86_64"] - }, - { - "packageName": "swiftnessx", - "description": "Electron application boilerplate based on React/Webpack...", - "icon": "https://portable-linux-apps.github.io/icons/swiftnessx.png", - "arch": ["x86_64"] - }, - { - "packageName": "swifty", - "description": "Free Offline-first Password Manager...", - "icon": "https://portable-linux-apps.github.io/icons/swifty.png", - "arch": ["x86_64"] - }, - { - "packageName": "swiftynotes", - "description": "Unofficial AppImage of swiftynotes...", - "icon": "https://portable-linux-apps.github.io/icons/swiftynotes.png", - "arch": ["x86_64"] - }, - { - "packageName": "swish", - "description": "Command Line Interface for Swisstransfer Infomaniak's free service...", - "icon": "https://portable-linux-apps.github.io/icons/swish.png", - "arch": ["x86_64"] - }, - { - "packageName": "switchcraft", - "description": "Switchcraft watches GNOME's light/dark preference and runs your shell commands when the theme changes...", - "icon": "https://portable-linux-apps.github.io/icons/switchcraft.png", - "arch": ["x86_64"] - }, - { - "packageName": "switchhosts", - "description": "Switch hosts quickly!..", - "icon": "https://portable-linux-apps.github.io/icons/switchhosts.png", - "arch": ["x86_64"] - }, - { - "packageName": "switchshuttle", - "description": "Run predefined commands in various terminal applications...", - "icon": "https://portable-linux-apps.github.io/icons/switchshuttle.png", - "arch": ["x86_64"] - }, - { - "packageName": "swradio", - "description": "Shortwave receiver for use with sdrplay/hackrf/dabsticks/pmsdr...", - "icon": "https://portable-linux-apps.github.io/icons/swradio.png", - "arch": ["x86_64"] - }, - { - "packageName": "symphonium", - "description": "A tool to help when learning to play the piano...", - "icon": "https://portable-linux-apps.github.io/icons/symphonium.png", - "arch": ["x86_64"] - }, - { - "packageName": "sync", - "description": "Backup and synchronization service. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/sync.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "syncmyl2p", - "description": "L2P synchronisation tool...", - "icon": "https://portable-linux-apps.github.io/icons/syncmyl2p.png", - "arch": ["x86_64"] - }, - { - "packageName": "syncplay", - "description": "Synchronize video playback over network...", - "icon": "https://portable-linux-apps.github.io/icons/syncplay.png", - "arch": ["x86_64"] - }, - { - "packageName": "syncthing", - "description": "Open Source Continuous File Synchronization...", - "icon": "https://portable-linux-apps.github.io/icons/syncthing.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "syncthingctl", - "description": "Tray control application and Dolphin/Plasma integration for Syncthing...", - "icon": "https://portable-linux-apps.github.io/icons/syncthingctl.png", - "arch": ["x86_64"] - }, - { - "packageName": "syncthingtray", - "description": "Tray application and Dolphin/Plasma integration for Syncthing...", - "icon": "https://portable-linux-apps.github.io/icons/syncthingtray.png", - "arch": ["x86_64"] - }, - { - "packageName": "synfig", - "description": "Unofficial. Synfig Studio animation software...", - "icon": "https://portable-linux-apps.github.io/icons/synfig.png", - "arch": ["x86_64"] - }, - { - "packageName": "synthein", - "description": "A space ship building and combat game...", - "icon": "https://portable-linux-apps.github.io/icons/synthein.png", - "arch": ["x86_64"] - }, - { - "packageName": "synthv1", - "description": "An old school polyphonic synthesizer...", - "icon": "https://portable-linux-apps.github.io/icons/synthv1.png", - "arch": ["x86_64"] - }, - { - "packageName": "system-monitoring-center", - "description": "Unofficial. Multi-featured system monitor...", - "icon": "https://portable-linux-apps.github.io/icons/system-monitoring-center.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "sysz", - "description": "An fzf terminal UI for systemctl...", - "icon": "https://portable-linux-apps.github.io/icons/sysz.png", - "arch": ["x86_64"] - }, - { - "packageName": "szyszka", - "description": "Szyszka is fast and powerful file renamer...", - "icon": "https://portable-linux-apps.github.io/icons/szyszka.png", - "arch": ["x86_64"] - }, - { - "packageName": "t.viewer", - "description": "Cross Platform Tizen Log Viewer...", - "icon": "https://portable-linux-apps.github.io/icons/t.viewer.png", - "arch": ["x86_64"] - }, - { - "packageName": "t3code", - "description": "T3 Code is a minimal web GUI for coding agents (currently Codex and Claude, more coming soon)...", - "icon": "https://portable-linux-apps.github.io/icons/t3code.png", - "arch": ["x86_64"] - }, - { - "packageName": "tabby", - "description": "A terminal for a more modern age..", - "icon": "https://portable-linux-apps.github.io/icons/tabby.png", - "arch": ["x86_64"] - }, - { - "packageName": "tablo-tools", - "description": "Tools to Bulk Delete and Export from Tablo DVR...", - "icon": "https://portable-linux-apps.github.io/icons/tablo-tools.png", - "arch": ["x86_64"] - }, - { - "packageName": "tabularis", - "description": "A lightweight, developer-focused database management tool...", - "icon": "https://portable-linux-apps.github.io/icons/tabularis.png", - "arch": ["x86_64"] - }, - { - "packageName": "tac", - "description": "Concatenate and print files in reverse. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/tac.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "tachoparser", - "description": "Unofficial AppImage of tachoparser, CLI and GUI application for reading DDD tachograph cards...", - "icon": "https://portable-linux-apps.github.io/icons/tachoparser.png", - "arch": ["x86_64"] - }, - { - "packageName": "tag-editor", - "description": "Tag Editor, supports MP4, ID3, Vorbis, Opus, FLAC and Matroska...", - "icon": "https://portable-linux-apps.github.io/icons/tag-editor.png", - "arch": ["x86_64"] - }, - { - "packageName": "tagger", - "description": "Unofficial. Simple audio tagger with support for various audio formats...", - "icon": "https://portable-linux-apps.github.io/icons/tagger.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "tagspaces", - "description": "An offline, open source, document manager with tagging support...", - "icon": "https://portable-linux-apps.github.io/icons/tagspaces.png", - "arch": ["x86_64"] - }, - { - "packageName": "tagtime-desktop", - "description": "Time tracking for space cadets, desktop edition...", - "icon": "https://portable-linux-apps.github.io/icons/tagtime-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "tail", - "description": "Output the last part of files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/tail.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "taisei-project", - "description": "Unofficial, A free and open-source Touhou Project fangame...", - "icon": "https://portable-linux-apps.github.io/icons/taisei-project.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "talktype", - "description": "Linux speech to text app...", - "icon": "https://portable-linux-apps.github.io/icons/talktype.png", - "arch": ["x86_64"] - }, - { - "packageName": "tamga", - "description": "A 3D sculpting, sketching, and stylized rendering app...", - "icon": "https://portable-linux-apps.github.io/icons/tamga.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "tangent", - "description": "A clean and powerful open source notes app...", - "icon": "https://portable-linux-apps.github.io/icons/tangent.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "tar", - "description": "Utility used to store, backup, and transport files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/tar.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "taradino", - "description": "Unofficial, SDL2 port of Rise of the Triad...", - "icon": "https://portable-linux-apps.github.io/icons/taradino.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "taskell", - "description": "Command-line Kanban board/task manager with support for Trello boards and GitHub projects...", - "icon": "https://portable-linux-apps.github.io/icons/taskell.png", - "arch": ["x86_64"] - }, - { - "packageName": "taskizer", - "description": "A task management app...", - "icon": "https://portable-linux-apps.github.io/icons/taskizer.png", - "arch": ["x86_64"] - }, - { - "packageName": "tasks-org", - "description": "Private, ad-free task lists. Optional sync with Google Tasks, CalDAV or EteSync...", - "icon": "https://portable-linux-apps.github.io/icons/tasks-org.png", - "arch": ["x86_64"] - }, - { - "packageName": "tastee-ui", - "description": "Tool helping you write executable specifications in your lang...", - "icon": "https://portable-linux-apps.github.io/icons/tastee-ui.png", - "arch": ["x86_64"] - }, - { - "packageName": "tauon", - "description": "Unofficial, a music player for the desktop...", - "icon": "https://portable-linux-apps.github.io/icons/tauon.png", - "arch": ["x86_64"] - }, - { - "packageName": "tb", - "description": "Tasks, boards & notes for the command-line habitat...", - "icon": "https://portable-linux-apps.github.io/icons/tb.png", - "arch": ["x86_64"] - }, - { - "packageName": "tbc-video-export", - "description": "Tool for exporting S-Video and CVBS-type TBCs to video files...", - "icon": "https://portable-linux-apps.github.io/icons/tbc-video-export.png", - "arch": ["x86_64"] - }, - { - "packageName": "tc", - "description": "A desktop chat client for Twitch...", - "icon": "https://portable-linux-apps.github.io/icons/tc.png", - "arch": ["x86_64"] - }, - { - "packageName": "tdlib-rs", - "description": "Rust wrapper around the Telegram Database Library...", - "icon": "https://portable-linux-apps.github.io/icons/tdlib-rs.png", - "arch": ["x86_64"] - }, - { - "packageName": "teams", - "description": "Unofficial, Business communication platform developed by Microsoft...", - "icon": "https://portable-linux-apps.github.io/icons/teams.png", - "arch": ["x86_64"] - }, - { - "packageName": "teamviewer", - "description": "Deliver remote IT support to your customers and colleagues, anytime, anywhere. Communication, network...", - "icon": "https://portable-linux-apps.github.io/icons/teamviewer.png", - "arch": ["x86_64"] - }, - { - "packageName": "teamviewer-host", - "description": "Host utility for TeamViewer, if you want to set up unattended access to a device...", - "icon": "https://portable-linux-apps.github.io/icons/teamviewer-host.png", - "arch": ["x86_64"] - }, - { - "packageName": "teamviewer-qs", - "description": "QuickSupport utility for TeamViewer, if you want to receive support...", - "icon": "https://portable-linux-apps.github.io/icons/teamviewer-qs.png", - "arch": ["x86_64"] - }, - { - "packageName": "tee", - "description": "Read from standard input and write to standard output and. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/tee.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "teledrive", - "description": "Automatically backup Telegram Saved Messages...", - "icon": "https://portable-linux-apps.github.io/icons/teledrive.png", - "arch": ["x86_64"] - }, - { - "packageName": "telegram", - "description": "Official desktop version of Telegram messaging app...", - "icon": "https://portable-linux-apps.github.io/icons/telegram.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "telly-skout", - "description": "A convergent Kirigami TV guide. This is part of \"kdeutils\"...", - "icon": "https://portable-linux-apps.github.io/icons/telly-skout.png", - "arch": ["x86_64"] - }, - { - "packageName": "tenacity", - "description": "An easy-to-use, cross-platform multi-track audio editor/recorder...", - "icon": "https://portable-linux-apps.github.io/icons/tenacity.png", - "arch": ["x86_64"] - }, - { - "packageName": "terabox", - "description": "Terabox is the simplest way to send your files around the world. Back up and Share photos, videos, docs, and other files of any size to cloud storage...", - "icon": "https://portable-linux-apps.github.io/icons/terabox.png", - "arch": ["x86_64"] - }, - { - "packageName": "tere", - "description": "Terminal file explorer...", - "icon": "https://portable-linux-apps.github.io/icons/tere.png", - "arch": ["x86_64"] - }, - { - "packageName": "terminalos-sim", - "description": "A terminalOS simulator...", - "icon": "https://portable-linux-apps.github.io/icons/terminalos-sim.png", - "arch": ["x86_64"] - }, - { - "packageName": "termora", - "description": "A terminal emulator and SSH client...", - "icon": "https://portable-linux-apps.github.io/icons/termora.png", - "arch": ["x86_64"] - }, - { - "packageName": "termshot", - "description": "Creates screenshots based on terminal command output...", - "icon": "https://portable-linux-apps.github.io/icons/termshot.png", - "arch": ["x86_64"] - }, - { - "packageName": "teslacam-browser", - "description": "A minimal TeslaCam Browser...", - "icon": "https://portable-linux-apps.github.io/icons/teslacam-browser.png", - "arch": ["x86_64"] - }, - { - "packageName": "tesler", - "description": "The Tesla Sentinel Viewer...", - "icon": "https://portable-linux-apps.github.io/icons/tesler.png", - "arch": ["x86_64"] - }, - { - "packageName": "tess", - "description": "A hackable, simple, rapid and beautiful terminal...", - "icon": "https://portable-linux-apps.github.io/icons/tess.png", - "arch": ["x86_64"] - }, - { - "packageName": "tesseract", - "description": "Tesseract Open Source OCR Engine AppImage...", - "icon": "https://portable-linux-apps.github.io/icons/tesseract.png", - "arch": ["x86_64"] - }, - { - "packageName": "test", - "description": "Check file types and compare values. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/test.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "testdisk", - "description": "TestDisk & PhotoRec, tools to recover lost partitions and files...", - "icon": "https://portable-linux-apps.github.io/icons/testdisk.png", - "arch": ["x86_64"] - }, - { - "packageName": "tetanes", - "description": "A cross-platform NES emulator written in Rust using wgpu...", - "icon": "https://portable-linux-apps.github.io/icons/tetanes.png", - "arch": ["x86_64"] - }, - { - "packageName": "tev", - "description": "High dynamic range (HDR) image viewer for people who care about colors...", - "icon": "https://portable-linux-apps.github.io/icons/tev.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "texmacs", - "description": "Free scientific text editor, inspired by TeX and GNU Emacs...", - "icon": "https://portable-linux-apps.github.io/icons/texmacs.png", - "arch": ["x86_64"] - }, - { - "packageName": "texstudio", - "description": "LaTeX development environment...", - "icon": "https://portable-linux-apps.github.io/icons/texstudio.png", - "arch": ["x86_64"] - }, - { - "packageName": "textnote", - "description": "Simple tool for creating and organizing daily notes on the command line...", - "icon": "https://portable-linux-apps.github.io/icons/textnote.png", - "arch": ["x86_64"] - }, - { - "packageName": "textosaurus", - "description": "Cross-platform text editor based on Qt and Scintilla...", - "icon": "https://portable-linux-apps.github.io/icons/textosaurus.png", - "arch": ["x86_64"] - }, - { - "packageName": "tfcbm", - "description": "The * Clipboard Manager...", - "icon": "https://portable-linux-apps.github.io/icons/tfcbm.png", - "arch": ["x86_64"] - }, - { - "packageName": "tgpt", - "description": "AI Chatbots in terminal without needing API keys...", - "icon": "https://portable-linux-apps.github.io/icons/tgpt.png", - "arch": ["x86_64"] - }, - { - "packageName": "the-way", - "description": "A code snippets manager for your terminal...", - "icon": "https://portable-linux-apps.github.io/icons/the-way.png", - "arch": ["x86_64"] - }, - { - "packageName": "thedesk", - "description": "Mastodon Client for PC...", - "icon": "https://portable-linux-apps.github.io/icons/thedesk.png", - "arch": ["x86_64"] - }, - { - "packageName": "theframe", - "description": "Animation tool...", - "icon": "https://portable-linux-apps.github.io/icons/theframe.png", - "arch": ["x86_64"] - }, - { - "packageName": "theia-blueprint", - "description": "Building desktop-based products based on Eclipse Theia...", - "icon": "https://portable-linux-apps.github.io/icons/theia-blueprint.png", - "arch": ["x86_64"] - }, - { - "packageName": "thermusqt", - "description": "Calculate particle composition of hadronic state...", - "icon": "https://portable-linux-apps.github.io/icons/thermusqt.png", - "arch": ["x86_64"] - }, - { - "packageName": "theweb", - "description": "Web Browser...", - "icon": "https://portable-linux-apps.github.io/icons/theweb.png", - "arch": ["x86_64"] - }, - { - "packageName": "thief", - "description": "An innovative cross-platform fishing tool, in chinese...", - "icon": "https://portable-linux-apps.github.io/icons/thief.png", - "arch": ["x86_64"] - }, - { - "packageName": "thinreports-section-editor", - "description": "A template editor for Thinreports...", - "icon": "https://portable-linux-apps.github.io/icons/thinreports-section-editor.png", - "arch": ["x86_64"] - }, - { - "packageName": "thlink", - "description": "Touhou Project Game Netplay Tool...", - "icon": "https://portable-linux-apps.github.io/icons/thlink.png", - "arch": ["x86_64"] - }, - { - "packageName": "thoptv", - "description": "Enjoy Ultimate Movies, sports Matches, IPL and Latest Shows...", - "icon": "https://portable-linux-apps.github.io/icons/thoptv.png", - "arch": ["x86_64"] - }, - { - "packageName": "thorium", - "description": "Web Browser, a Chromium fork including Widevine and FFmpeg support...", - "icon": "https://portable-linux-apps.github.io/icons/thorium.png", - "arch": ["x86_64"] - }, - { - "packageName": "thorium-client", - "description": "A locked-down electron kiosk for Thorium...", - "icon": "https://portable-linux-apps.github.io/icons/thorium-client.png", - "arch": ["x86_64"] - }, - { - "packageName": "thorium-reader", - "description": "Desktop application to read ebooks...", - "icon": "https://portable-linux-apps.github.io/icons/thorium-reader.png", - "arch": ["x86_64"] - }, - { - "packageName": "thunderbird", - "description": "Free and open source eMail client, Stable...", - "icon": "https://portable-linux-apps.github.io/icons/thunderbird.png", - "arch": ["x86_64"] - }, - { - "packageName": "thunderbird-beta", - "description": "Free and open source eMail client, Beta Edition...", - "icon": "https://portable-linux-apps.github.io/icons/thunderbird-beta.png", - "arch": ["x86_64"] - }, - { - "packageName": "thunderbird-nightly", - "description": "Free and open source eMail client, Nightly Edition...", - "icon": "https://portable-linux-apps.github.io/icons/thunderbird-nightly.png", - "arch": ["x86_64"] - }, - { - "packageName": "ticker", - "description": "Terminal stock ticker with live updates and position tracking...", - "icon": "https://portable-linux-apps.github.io/icons/ticker.png", - "arch": ["x86_64"] - }, - { - "packageName": "ticktick", - "description": "A To-Do List and Calendar to keep you organized...", - "icon": "https://portable-linux-apps.github.io/icons/ticktick.png", - "arch": ["x86_64"] - }, - { - "packageName": "tidal-hifi", - "description": "The web version of listen.tidal.com running in electron...", - "icon": "https://portable-linux-apps.github.io/icons/tidal-hifi.png", - "arch": ["x86_64"] - }, - { - "packageName": "tidybit", - "description": "TidyBit is a simple handy tool that can organize messy collection of files and move them to a chosen folder...", - "icon": "https://portable-linux-apps.github.io/icons/tidybit.png", - "arch": ["x86_64"] - }, - { - "packageName": "tilde-podcast", - "description": "Podcast client to listen to all you favorite podcasts...", - "icon": "https://portable-linux-apps.github.io/icons/tilde-podcast.png", - "arch": ["x86_64"] - }, - { - "packageName": "tiled", - "description": "Tile map editor...", - "icon": "https://portable-linux-apps.github.io/icons/tiled.png", - "arch": ["x86_64"] - }, - { - "packageName": "tilinggenerator", - "description": "Generator of regular and irregular tilings...", - "icon": "https://portable-linux-apps.github.io/icons/tilinggenerator.png", - "arch": ["x86_64"] - }, - { - "packageName": "timenaut", - "description": "Desktop time tracking application...", - "icon": "https://portable-linux-apps.github.io/icons/timenaut.png", - "arch": ["x86_64"] - }, - { - "packageName": "timeout", - "description": "Run a command with a time limit. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/timeout.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "tipitaka-pali-reader", - "description": "A Pali Reading app made in Flutter...", - "icon": "https://portable-linux-apps.github.io/icons/tipitaka-pali-reader.png", - "arch": ["x86_64"] - }, - { - "packageName": "tixati", - "description": "A New and Powerful P2P System 100% Free, Simple and Easy to Use Bittorrent Client...", - "icon": "https://portable-linux-apps.github.io/icons/tixati.png", - "arch": ["x86_64"] - }, - { - "packageName": "tkmm", - "description": "TotK Mod Manager, a mod manager and merger for Tears of the Kingdom...", - "icon": "https://portable-linux-apps.github.io/icons/tkmm.png", - "arch": ["x86_64"] - }, - { - "packageName": "tlock", - "description": "Two-Factor Authentication Tokens Manager in Terminal...", - "icon": "https://portable-linux-apps.github.io/icons/tlock.png", - "arch": ["x86_64"] - }, - { - "packageName": "tlum", - "description": "Tlum - open-source cross-platform language learning application leverages the power of natural language processing to pinpoint pronunciation gaps and enhance articulation, machine learning to boost vocabulary proficiency...", - "icon": "https://portable-linux-apps.github.io/icons/tlum.png", - "arch": ["x86_64"] - }, - { - "packageName": "tmon", - "description": "A simple CLI tool for monitoring/reporting CPU temperatures...", - "icon": "https://portable-linux-apps.github.io/icons/tmon.png", - "arch": ["x86_64"] - }, - { - "packageName": "tmux", - "description": "Tmux AppImage build via Docker...", - "icon": "https://portable-linux-apps.github.io/icons/tmux.png", - "arch": ["x86_64"] - }, - { - "packageName": "tnt", - "description": "A computer-assisted translation tool...", - "icon": "https://portable-linux-apps.github.io/icons/tnt.png", - "arch": ["x86_64"] - }, - { - "packageName": "tockler", - "description": "An application that tracks your time by monitoring...", - "icon": "https://portable-linux-apps.github.io/icons/tockler.png", - "arch": ["x86_64"] - }, - { - "packageName": "tod", - "description": "An unofficial Todoist command line client written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/tod.png", - "arch": ["x86_64"] - }, - { - "packageName": "todesktop", - "description": "Take your web app codebase and transform it into a cross platform desktop app with native functionality...", - "icon": "https://portable-linux-apps.github.io/icons/todesktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "todo-bash", - "description": "Todo list for the Bash command line...", - "icon": "https://portable-linux-apps.github.io/icons/todo-bash.png", - "arch": ["x86_64"] - }, - { - "packageName": "todoist", - "description": "The to-do list to organize work & life...", - "icon": "https://portable-linux-apps.github.io/icons/todoist.png", - "arch": ["x86_64"] - }, - { - "packageName": "todorant", - "description": "Todorant releases...", - "icon": "https://portable-linux-apps.github.io/icons/todorant.png", - "arch": ["x86_64"] - }, - { - "packageName": "todorust", - "description": "Simple ToDoList made in rust...", - "icon": "https://portable-linux-apps.github.io/icons/todorust.png", - "arch": ["x86_64"] - }, - { - "packageName": "toerings", - "description": "A clone of Conky Seamod using Tauri...", - "icon": "https://portable-linux-apps.github.io/icons/toerings.png", - "arch": ["x86_64"] - }, - { - "packageName": "toipe", - "description": "yet another typing test, but crab flavoured...", - "icon": "https://portable-linux-apps.github.io/icons/toipe.png", - "arch": ["x86_64"] - }, - { - "packageName": "tokodon", - "description": "Unofficial, a modern client for Mastodon and other decentralized servers that implement its API (such as Pixelfed)...", - "icon": "https://portable-linux-apps.github.io/icons/tokodon.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "tomatox", - "description": "An online free VIP video analysis player, in chinese...", - "icon": "https://portable-linux-apps.github.io/icons/tomatox.png", - "arch": ["x86_64"] - }, - { - "packageName": "tonuino-toolbox", - "description": "SD card manager for your Tonuino...", - "icon": "https://portable-linux-apps.github.io/icons/tonuino-toolbox.png", - "arch": ["x86_64"] - }, - { - "packageName": "toolblex", - "description": "Bluetooth Low Energy (and Classic) device scanner and analyzer...", - "icon": "https://portable-linux-apps.github.io/icons/toolblex.png", - "arch": ["x86_64"] - }, - { - "packageName": "top", - "description": "Display Linux processes. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/top.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "topgrade", - "description": "Upgrade all the things, this is the universal upgrade manager...", - "icon": "https://portable-linux-apps.github.io/icons/topgrade.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "tor-browser", - "description": "Privacy-oriented Web Browser for sites blocked in your country...", - "icon": "https://portable-linux-apps.github.io/icons/tor-browser.png", - "arch": ["x86_64","i686"] - }, - { - "packageName": "tor-browser-alpha", - "description": "Privacy-oriented Web Browser for sites blocked in your country...", - "icon": "https://portable-linux-apps.github.io/icons/tor-browser-alpha.png", - "arch": ["x86_64"] - }, - { - "packageName": "torcs", - "description": "The 3D Open Racing Car Game and Simulator...", - "icon": "https://portable-linux-apps.github.io/icons/torcs.png", - "arch": ["x86_64"] - }, - { - "packageName": "torrents_digger", - "description": "Torrents Digger searches already available torrents from internet...", - "icon": "https://portable-linux-apps.github.io/icons/torrents_digger.png", - "arch": ["x86_64"] - }, - { - "packageName": "torrenttools", - "description": "Cli tool to inspect/create/edit BitTorrent metafiles...", - "icon": "https://portable-linux-apps.github.io/icons/torrenttools.png", - "arch": ["x86_64"] - }, - { - "packageName": "toru", - "description": "Bittorrent streaming CLI tool. Stream anime torrents real-time...", - "icon": "https://portable-linux-apps.github.io/icons/toru.png", - "arch": ["x86_64"] - }, - { - "packageName": "torzu", - "description": "Unofficial AppImage of Torzu (fork of yuzu), with optimized builds for modern cpus...", - "icon": "https://portable-linux-apps.github.io/icons/torzu.png", - "arch": ["x86_64"] - }, - { - "packageName": "touch", - "description": "Change file timestamps. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/touch.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "touchhle", - "description": "Unofficial, High-level emulator for iPhone OS apps...", - "icon": "https://portable-linux-apps.github.io/icons/touchhle.png", - "arch": ["x86_64"] - }, - { - "packageName": "tput", - "description": "tput - initialize a terminal, exercise its capabilities, or query terminfo database. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/tput.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "tr", - "description": "Translate or delete characters. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/tr.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "trackaudio", - "description": "A next generation Audio-For-VATSIM ATC Client...", - "icon": "https://portable-linux-apps.github.io/icons/trackaudio.png", - "arch": ["x86_64"] - }, - { - "packageName": "trans", - "description": "CLI translator using Google/Bing/Yandex Translate, etc.....", - "icon": "https://portable-linux-apps.github.io/icons/trans.png", - "arch": ["x86_64"] - }, - { - "packageName": "transfernow", - "description": "TransferNow is a simple, quick and secure free solution to send large files and big documents up to 250 GB per transfer. No registration required...", - "icon": "https://portable-linux-apps.github.io/icons/transfernow.png", - "arch": ["x86_64"] - }, - { - "packageName": "transformer", - "description": "A command-line utility for splitting large files into chunks/pieces and merging them back together...", - "icon": "https://portable-linux-apps.github.io/icons/transformer.png", - "arch": ["x86_64"] - }, - { - "packageName": "translatium", - "description": "Translate Any Languages like a Pro...", - "icon": "https://portable-linux-apps.github.io/icons/translatium.png", - "arch": ["x86_64"] - }, - { - "packageName": "transmission-gtk", - "description": "Unofficial. Fast, easy, and free BitTorrent client, GTK+ GUI...", - "icon": "https://portable-linux-apps.github.io/icons/transmission-gtk.png", - "arch": ["x86_64"] - }, - { - "packageName": "transmission-qt", - "description": "Unofficial, Fast, easy, and free BitTorrent client, Qt GUI...", - "icon": "https://portable-linux-apps.github.io/icons/transmission-qt.png", - "arch": ["x86_64"] - }, - { - "packageName": "transmissionic", - "description": "Remote for Transmission Daemon...", - "icon": "https://portable-linux-apps.github.io/icons/transmissionic.png", - "arch": ["x86_64"] - }, - { - "packageName": "trelby", - "description": "Unofficial, Trelby is simple, fast and elegantly laid out to make screenwriting simple...", - "icon": "https://portable-linux-apps.github.io/icons/trelby.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "trenchbroom", - "description": "A modern, cross-platform level editor for Quake engine based games...", - "icon": "https://portable-linux-apps.github.io/icons/trenchbroom.png", - "arch": ["x86_64"] - }, - { - "packageName": "trezor-suite", - "description": "Trezor Suite desktop application...", - "icon": "https://portable-linux-apps.github.io/icons/trezor-suite.png", - "arch": ["x86_64"] - }, - { - "packageName": "trgui-ng", - "description": "Remote GUI for Transmission torrent daemon...", - "icon": "https://portable-linux-apps.github.io/icons/trgui-ng.png", - "arch": ["x86_64"] - }, - { - "packageName": "triagem-touch", - "description": "Novo SGA triage client...", - "icon": "https://portable-linux-apps.github.io/icons/triagem-touch.png", - "arch": ["x86_64"] - }, - { - "packageName": "trilium", - "description": "Build your personal knowledge base with Trilium Notes...", - "icon": "https://portable-linux-apps.github.io/icons/trilium.png", - "arch": ["x86_64"] - }, - { - "packageName": "trinity-desktop", - "description": "Desktop wallet for IOTA...", - "icon": "https://portable-linux-apps.github.io/icons/trinity-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "tropy", - "description": "Research photo management...", - "icon": "https://portable-linux-apps.github.io/icons/tropy.png", - "arch": ["x86_64"] - }, - { - "packageName": "true", - "description": "Do nothing, successfully. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/true.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "truncate", - "description": "Shrink or extend the size of a file to the specified. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/truncate.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "tsort", - "description": "Perform a topological sort. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/tsort.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "tssh", - "description": "trzsz-ssh is an alternative to ssh client, offers additional features...", - "icon": "https://portable-linux-apps.github.io/icons/tssh.png", - "arch": ["x86_64"] - }, - { - "packageName": "tt", - "description": "A simple Time Tracker to stay basic and intuitive...", - "icon": "https://portable-linux-apps.github.io/icons/tt.png", - "arch": ["x86_64"] - }, - { - "packageName": "tts-now", - "description": "A chinese text-to-speech assistant based on the speech synthesi...", - "icon": "https://portable-linux-apps.github.io/icons/tts-now.png", - "arch": ["x86_64"] - }, - { - "packageName": "ttth", - "description": "An electron based desktop app for online services...", - "icon": "https://portable-linux-apps.github.io/icons/ttth.png", - "arch": ["x86_64"] - }, - { - "packageName": "tty", - "description": "Print the file name of the terminal connected to standard. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/tty.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ttyper", - "description": "Terminal-based typing test...", - "icon": "https://portable-linux-apps.github.io/icons/ttyper.png", - "arch": ["x86_64"] - }, - { - "packageName": "tumblr-downloader-gui", - "description": "Download Tumblr posts that you liked...", - "icon": "https://portable-linux-apps.github.io/icons/tumblr-downloader-gui.png", - "arch": ["x86_64"] - }, - { - "packageName": "tumblr-scraper", - "description": "Scrape a Tumblr profile for user uploadede posts...", - "icon": "https://portable-linux-apps.github.io/icons/tumblr-scraper.png", - "arch": ["x86_64"] - }, - { - "packageName": "tunepack", - "description": "Finding and download HQ audio files...", - "icon": "https://portable-linux-apps.github.io/icons/tunepack.png", - "arch": ["x86_64"] - }, - { - "packageName": "tura", - "description": "Tura is an open-source, local-first AI coding agent that works with existing AI subscriptions and coding tools...", - "icon": "https://portable-linux-apps.github.io/icons/tura.png", - "arch": ["x86_64"] - }, - { - "packageName": "turbowarp", - "description": "Scratch mod with a compiler to run projects faster...", - "icon": "https://portable-linux-apps.github.io/icons/turbowarp.png", - "arch": ["x86_64"] - }, - { - "packageName": "tusk", - "description": "Evernote desktop app...", - "icon": "https://portable-linux-apps.github.io/icons/tusk.png", - "arch": ["x86_64"] - }, - { - "packageName": "tutanota", - "description": "Tuta is an email service with a strong focus on security and privacy that lets you encrypt emails, contacts and calendar entries on all your devices...", - "icon": "https://portable-linux-apps.github.io/icons/tutanota.png", - "arch": ["x86_64"] - }, - { - "packageName": "tutanota-enhanced", - "description": "Unofficial AppImage for Tutanota, an email service with a strong focus on security and privacy that lets you encrypt emails, contacts and calendar entries on all your devices...", - "icon": "https://portable-linux-apps.github.io/icons/tutanota-enhanced.png", - "arch": ["x86_64"] - }, - { - "packageName": "tux-manager", - "description": "A Linux Task Manager alternative built with Qt6, inspired by the Windows Task Manager but designed to go further - providing deep visibility into system processes, performance metrics, users, and services...", - "icon": "https://portable-linux-apps.github.io/icons/tux-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "tuxfootball", - "description": "Unofficial, is a great 2D football game for Windows and Linux...", - "icon": "https://portable-linux-apps.github.io/icons/tuxfootball.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "tuxplorer", - "description": "Tuxplorer is a terminal based file explorer...", - "icon": "https://portable-linux-apps.github.io/icons/tuxplorer.png", - "arch": ["x86_64"] - }, - { - "packageName": "tuxpuck", - "description": "Unofficial, hockey-like table game...", - "icon": "https://portable-linux-apps.github.io/icons/tuxpuck.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "twake", - "description": "Desktop App for Twake...", - "icon": "https://portable-linux-apps.github.io/icons/twake.png", - "arch": ["x86_64"] - }, - { - "packageName": "tweaksophia", - "description": "An app to automatically renew the books of the SophiA system...", - "icon": "https://portable-linux-apps.github.io/icons/tweaksophia.png", - "arch": ["x86_64"] - }, - { - "packageName": "tweet-tray", - "description": "Tweet quickly from the desktop without any distractions...", - "icon": "https://portable-linux-apps.github.io/icons/tweet-tray.png", - "arch": ["x86_64"] - }, - { - "packageName": "twetter", - "description": "Client for the pubsub app...", - "icon": "https://portable-linux-apps.github.io/icons/twetter.png", - "arch": ["x86_64"] - }, - { - "packageName": "twitch-wrapper", - "description": "An Electron wrapper for Twitch.tv...", - "icon": "https://portable-linux-apps.github.io/icons/twitch-wrapper.png", - "arch": ["x86_64"] - }, - { - "packageName": "typioca", - "description": "Cozy typing speed tester in terminal...", - "icon": "https://portable-linux-apps.github.io/icons/typioca.png", - "arch": ["x86_64"] - }, - { - "packageName": "uad-ng", - "description": "GUI Rust wrapper for ADB to debloat non-rooted Android devices...", - "icon": "https://portable-linux-apps.github.io/icons/uad-ng.png", - "arch": ["x86_64"] - }, - { - "packageName": "ubiquity", - "description": "A cross-platform markdown editor...", - "icon": "https://portable-linux-apps.github.io/icons/ubiquity.png", - "arch": ["x86_64"] - }, - { - "packageName": "ubports-installer", - "description": "A simple tool to install Ubuntu Touch on UBports devices..", - "icon": "https://portable-linux-apps.github.io/icons/ubports-installer.png", - "arch": ["x86_64"] - }, - { - "packageName": "uefitool", - "description": "Unofficial, UEFI firmware image viewer and editor...", - "icon": "https://portable-linux-apps.github.io/icons/uefitool.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ueli", - "description": "Cross-Platform Keystroke Launcher...", - "icon": "https://portable-linux-apps.github.io/icons/ueli.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "uhk.agent", - "description": "Configuration app of the Ultimate Hacking Keyboard...", - "icon": "https://portable-linux-apps.github.io/icons/uhk.agent.png", - "arch": ["x86_64"] - }, - { - "packageName": "uivonim", - "description": "Fork of the Veonim Neovim GUI...", - "icon": "https://portable-linux-apps.github.io/icons/uivonim.png", - "arch": ["x86_64"] - }, - { - "packageName": "ul", - "description": "Translate underline sequences for terminals. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/ul.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ultragrid", - "description": "UltraGrid low-latency audio/video network transmission system...", - "icon": "https://portable-linux-apps.github.io/icons/ultragrid.png", - "arch": ["x86_64"] - }, - { - "packageName": "ultrascreen", - "description": "Share your screens with friends...", - "icon": "https://portable-linux-apps.github.io/icons/ultrascreen.png", - "arch": ["x86_64"] - }, - { - "packageName": "umount", - "description": "Unmount filesystems. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/umount.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ums", - "description": "Universal Media Server. A DLNA, UPnP and HTTP(S) Media Server...", - "icon": "https://portable-linux-apps.github.io/icons/ums.png", - "arch": ["x86_64"] - }, - { - "packageName": "uname", - "description": "Print system information. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/uname.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "uncompress", - "description": "Zcat - compress and expand data. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/uncompress.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "uncov", - "description": "A tool that collects and processes code coverage reports...", - "icon": "https://portable-linux-apps.github.io/icons/uncov.png", - "arch": ["x86_64"] - }, - { - "packageName": "undertaker141", - "description": "A free and open-source game-center for linux. Pre-configured Wine and Native Games for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/undertaker141.png", - "arch": ["x86_64"] - }, - { - "packageName": "unetbootin", - "description": "Install Linux/BSD distributions to a partition or USB drive...", - "icon": "https://portable-linux-apps.github.io/icons/unetbootin.png", - "arch": ["x86_64"] - }, - { - "packageName": "unexpand", - "description": "Convert spaces to tabs. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/unexpand.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "ungoogled-chromium", - "description": "Chromium Web Browser without Google services...", - "icon": "https://portable-linux-apps.github.io/icons/ungoogled-chromium.png", - "arch": ["x86_64"] - }, - { - "packageName": "uniq", - "description": "Report or omit repeated lines. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/uniq.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "unishellect", - "description": "JSON parser file and menu customizez Hyper-inspired...", - "icon": "https://portable-linux-apps.github.io/icons/unishellect.png", - "arch": ["x86_64"] - }, - { - "packageName": "unityhub", - "description": "Unofficial AppImage for Unity Hub...", - "icon": "https://portable-linux-apps.github.io/icons/unityhub.png", - "arch": ["x86_64"] - }, - { - "packageName": "unleashedrecomp", - "description": "Unofficial AppImage of UnleashedRecomp (Sonic Unleashed port)..", - "icon": "https://portable-linux-apps.github.io/icons/unleashedrecomp.png", - "arch": ["x86_64"] - }, - { - "packageName": "unlink", - "description": "Call the unlink function to remove the specified file. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/unlink.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "unofficial-homestuck-collection", - "description": "An offline collection of Homestuck and its related works...", - "icon": "https://portable-linux-apps.github.io/icons/unofficial-homestuck-collection.png", - "arch": ["x86_64"] - }, - { - "packageName": "unofficial-zalo", - "description": "Unofficial Zalo App...", - "icon": "https://portable-linux-apps.github.io/icons/unofficial-zalo.png", - "arch": ["x86_64"] - }, - { - "packageName": "unreel", - "description": "A GUI to create Reveal presentations...", - "icon": "https://portable-linux-apps.github.io/icons/unreel.png", - "arch": ["x86_64"] - }, - { - "packageName": "unshare", - "description": "Run program in new namespaces. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/unshare.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "unveil", - "description": "Unveil Rs is a tool to create presentations from markdown inspired by reveal.js, mdbook and zola...", - "icon": "https://portable-linux-apps.github.io/icons/unveil.png", - "arch": ["x86_64"] - }, - { - "packageName": "unxz", - "description": "Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/unxz.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "unyo", - "description": "Anime streaming and Manga reader desktop app without ads...", - "icon": "https://portable-linux-apps.github.io/icons/unyo.png", - "arch": ["x86_64"] - }, - { - "packageName": "unzip", - "description": "For extracting and viewing files in .zip archives. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/unzip.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "updatedeployqt", - "description": "Tool to deploy auto update for qt applications...", - "icon": "https://portable-linux-apps.github.io/icons/updatedeployqt.png", - "arch": ["x86_64"] - }, - { - "packageName": "upgit", - "description": "CLI, another upload hub that supports clipboard. It works well with Typora, Snipaste, VSCode...", - "icon": "https://portable-linux-apps.github.io/icons/upgit.png", - "arch": ["x86_64"] - }, - { - "packageName": "upnote", - "description": "Stay focused and productive with a clean and clutter-free note space...", - "icon": "https://portable-linux-apps.github.io/icons/upnote.png", - "arch": ["x86_64"] - }, - { - "packageName": "upnotes", - "description": "A notes app for software developers...", - "icon": "https://portable-linux-apps.github.io/icons/upnotes.png", - "arch": ["x86_64"] - }, - { - "packageName": "upscayl", - "description": "Free and Open Source AI Image Upscaler...", - "icon": "https://portable-linux-apps.github.io/icons/upscayl.png", - "arch": ["x86_64"] - }, - { - "packageName": "uptime", - "description": "Tell how long the system has been running.. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/uptime.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "urbanterror", - "description": "A team-based tactical game shooter based on the Quake 3 Engine...", - "icon": "https://portable-linux-apps.github.io/icons/urbanterror.png", - "arch": ["x86_64"] - }, - { - "packageName": "users", - "description": "Print the user names of users currently logged in to the. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/users.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "utilso", - "description": "Regex Tester, JWT Verify, Image Converter, Format JSON, Decode.....", - "icon": "https://portable-linux-apps.github.io/icons/utilso.png", - "arch": ["x86_64"] - }, - { - "packageName": "uv", - "description": "An extremely fast Python package and project manager, written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/uv.png", - "arch": ["x86_64","aarch64","i686"] - }, - { - "packageName": "uwufetch", - "description": "A meme system info tool for Linux, based on nyan/uwu trend...", - "icon": "https://portable-linux-apps.github.io/icons/uwufetch.png", - "arch": ["x86_64"] - }, - { - "packageName": "uyou", - "description": "This is a todo list with electron...", - "icon": "https://portable-linux-apps.github.io/icons/uyou.png", - "arch": ["x86_64"] - }, - { - "packageName": "uzdoom", - "description": "UZDoom is a feature centric port for all Doom engine games, based on GZDoom, adding an advanced renderer and powerful scripting capabilities...", - "icon": "https://portable-linux-apps.github.io/icons/uzdoom.png", - "arch": ["x86_64"] - }, - { - "packageName": "v2ray-desktop", - "description": "V2Ray GUI client for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/v2ray-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "valeronoi", - "description": "Companion app for Valetudo for generating WiFi heat maps...", - "icon": "https://portable-linux-apps.github.io/icons/valeronoi.png", - "arch": ["x86_64"] - }, - { - "packageName": "vapour", - "description": "An alternative open source Steam client...", - "icon": "https://portable-linux-apps.github.io/icons/vapour.png", - "arch": ["x86_64"] - }, - { - "packageName": "varia", - "description": "Unofficial. Aria2-based advanced download manager with support for downloading files, torrents, video and audio + support for Chromium and Firefox extension...", - "icon": "https://portable-linux-apps.github.io/icons/varia.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "vcard-studio", - "description": "A contact management application with support for vCard file format (.vcf)...", - "icon": "https://portable-linux-apps.github.io/icons/vcard-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "vcloudcam", - "description": "Solution for the camera systems of gas and fuel stations...", - "icon": "https://portable-linux-apps.github.io/icons/vcloudcam.png", - "arch": ["x86_64"] - }, - { - "packageName": "vcmi", - "description": "Unofficial AppImage of vcmi open-source engine for Heroes of Might and Magic III..", - "icon": "https://portable-linux-apps.github.io/icons/vcmi.png", - "arch": ["x86_64"] - }, - { - "packageName": "vdir", - "description": "List directory contents. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/vdir.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "vechain", - "description": "A browser that empowers DApps on VeChain...", - "icon": "https://portable-linux-apps.github.io/icons/vechain.png", - "arch": ["x86_64"] - }, - { - "packageName": "vector", - "description": "Vector is a decentralized communication platform built on the Nostr Protocol...", - "icon": "https://portable-linux-apps.github.io/icons/vector.png", - "arch": ["x86_64"] - }, - { - "packageName": "vegeta", - "description": "HTTP load testing tool and library. It's over 9000!..", - "icon": "https://portable-linux-apps.github.io/icons/vegeta.png", - "arch": ["x86_64"] - }, - { - "packageName": "ventoy", - "description": "Tool to create bootable USB drive for ISO/WIM/IMG/VHDx/EFI files...", - "icon": "https://portable-linux-apps.github.io/icons/ventoy.png", - "arch": ["x86_64","aarch64","i686"] - }, - { - "packageName": "veracrypt", - "description": "VeraCrypt is a free open source disk encryption software...", - "icon": "https://portable-linux-apps.github.io/icons/veracrypt.png", - "arch": ["x86_64"] - }, - { - "packageName": "verto", - "description": "A multi-currency crypto wallet with support for EOS & VTX...", - "icon": "https://portable-linux-apps.github.io/icons/verto.png", - "arch": ["x86_64"] - }, - { - "packageName": "vesktop", - "description": "Vesktop gives you the performance of web Discord...", - "icon": "https://portable-linux-apps.github.io/icons/vesktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "vgmtrans", - "description": "A tool to convert proprietary, sequenced videogame music...", - "icon": "https://portable-linux-apps.github.io/icons/vgmtrans.png", - "arch": ["x86_64"] - }, - { - "packageName": "vhc-viewer-wayland", - "description": "Vulkan Hardware Capability Viewer...", - "icon": "https://portable-linux-apps.github.io/icons/vhc-viewer-wayland.png", - "arch": ["x86_64"] - }, - { - "packageName": "vhc-viewer-x11", - "description": "Vulkan Hardware Capability Viewer...", - "icon": "https://portable-linux-apps.github.io/icons/vhc-viewer-x11.png", - "arch": ["x86_64"] - }, - { - "packageName": "vhs", - "description": "Your CLI home video recorder...", - "icon": "https://portable-linux-apps.github.io/icons/vhs.png", - "arch": ["x86_64"] - }, - { - "packageName": "via", - "description": "Your keyboard's best friend...", - "icon": "https://portable-linux-apps.github.io/icons/via.png", - "arch": ["x86_64"] - }, - { - "packageName": "via-desktop", - "description": "VIA Desktop is an Electron application designed to provide an offline experience for VIA...", - "icon": "https://portable-linux-apps.github.io/icons/via-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "vial", - "description": "GUI and a QMK fork for configuring your keyboard in real time...", - "icon": "https://portable-linux-apps.github.io/icons/vial.png", - "arch": ["x86_64"] - }, - { - "packageName": "vibeprint-studio", - "description": "Unofficial AppImage of Vibeprint Studio...", - "icon": "https://portable-linux-apps.github.io/icons/vibeprint-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "viber", - "description": "Proprietary cross-platform IM and VoIP software...", - "icon": "https://portable-linux-apps.github.io/icons/viber.png", - "arch": ["x86_64"] - }, - { - "packageName": "viber-enhanced", - "description": "Unofficial. Enhanced AppImage of proprietary cross-platform IM and VoIP software...", - "icon": "https://portable-linux-apps.github.io/icons/viber-enhanced.png", - "arch": ["x86_64"] - }, - { - "packageName": "vice", - "description": "Unofficial AppImage of VICE...", - "icon": "https://portable-linux-apps.github.io/icons/vice.png", - "arch": ["x86_64"] - }, - { - "packageName": "vicinae", - "description": "A high-performance, native launcher for your desktop built with C++ and Qt. Native, fast, extensible...", - "icon": "https://portable-linux-apps.github.io/icons/vicinae.png", - "arch": ["x86_64"] - }, - { - "packageName": "vicut", - "description": "A Vim-based, scriptable, headless text editor for the command line...", - "icon": "https://portable-linux-apps.github.io/icons/vicut.png", - "arch": ["x86_64"] - }, - { - "packageName": "vidbee", - "description": "Download videos from almost any website worldwide...", - "icon": "https://portable-linux-apps.github.io/icons/vidbee.png", - "arch": ["x86_64"] - }, - { - "packageName": "vidcutter", - "description": "Simple and fast video cutter and joiner...", - "icon": "https://portable-linux-apps.github.io/icons/vidcutter.png", - "arch": ["x86_64"] - }, - { - "packageName": "viddy", - "description": "A modern watch command line utility. Time machine and pager etc...", - "icon": "https://portable-linux-apps.github.io/icons/viddy.png", - "arch": ["x86_64"] - }, - { - "packageName": "video-hub", - "description": "A fastest way to browse and search for videos on your computer...", - "icon": "https://portable-linux-apps.github.io/icons/video-hub.png", - "arch": ["x86_64"] - }, - { - "packageName": "video-trimmer", - "description": "Unofficial. Simple video trimming, with option to trim precisely or to trim without loosing video quality...", - "icon": "https://portable-linux-apps.github.io/icons/video-trimmer.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "videomass", - "description": "Free, open source and cross-platform GUI for FFmpeg...", - "icon": "https://portable-linux-apps.github.io/icons/videomass.png", - "arch": ["x86_64"] - }, - { - "packageName": "vieb", - "description": "Vim Inspired Electron Browser...", - "icon": "https://portable-linux-apps.github.io/icons/vieb.png", - "arch": ["x86_64"] - }, - { - "packageName": "vifm", - "description": "File manager with curses interface providing Vim-like environment...", - "icon": "https://portable-linux-apps.github.io/icons/vifm.png", - "arch": ["x86_64"] - }, - { - "packageName": "vigad", - "description": "Extract live-data from your screen...", - "icon": "https://portable-linux-apps.github.io/icons/vigad.png", - "arch": ["x86_64"] - }, - { - "packageName": "vikunja", - "description": "The open-source, self-hostable to-do app...", - "icon": "https://portable-linux-apps.github.io/icons/vikunja.png", - "arch": ["x86_64"] - }, - { - "packageName": "vimeo-dl", - "description": "A cli tool to download private videos on vimeo. Written in golang...", - "icon": "https://portable-linux-apps.github.io/icons/vimeo-dl.png", - "arch": ["x86_64"] - }, - { - "packageName": "viper", - "description": "Launcher and Updater for TF2 Northstar...", - "icon": "https://portable-linux-apps.github.io/icons/viper.png", - "arch": ["x86_64"] - }, - { - "packageName": "viper-browser", - "description": "Fast and lightweight Qt web browser...", - "icon": "https://portable-linux-apps.github.io/icons/viper-browser.png", - "arch": ["x86_64"] - }, - { - "packageName": "vipster", - "description": "Visual periodic structure editor...", - "icon": "https://portable-linux-apps.github.io/icons/vipster.png", - "arch": ["x86_64"] - }, - { - "packageName": "vircadia", - "description": "Open Source continuation of the High Fidelity metaverse...", - "icon": "https://portable-linux-apps.github.io/icons/vircadia.png", - "arch": ["x86_64"] - }, - { - "packageName": "virt-manager", - "description": "Unofficial AppImage of virt-manager, interface for managing virtual machines...", - "icon": "https://portable-linux-apps.github.io/icons/virt-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "virtscreen", - "description": "Make your iPad/tablet/computer into a secondary monitor on Linux...", - "icon": "https://portable-linux-apps.github.io/icons/virtscreen.png", - "arch": ["x86_64"] - }, - { - "packageName": "virtualbox", - "description": "Powerful x86 virtualization for enterprise as well as home use...", - "icon": "https://portable-linux-apps.github.io/icons/virtualbox.png", - "arch": ["x86_64"] - }, - { - "packageName": "visipics", - "description": "Windows software to find and remove duplicate pictures. Unofficial AppImage built using \"wine32-deploy\" and powered by \"wine\"...", - "icon": "https://portable-linux-apps.github.io/icons/visipics.png", - "arch": ["x86_64"] - }, - { - "packageName": "visual-define-xml-editor", - "description": "Editor for CDISC Define-XML standard...", - "icon": "https://portable-linux-apps.github.io/icons/visual-define-xml-editor.png", - "arch": ["x86_64"] - }, - { - "packageName": "visual-lvm", - "description": "Visual LVM the remote gui lvm manager for all linux platform...", - "icon": "https://portable-linux-apps.github.io/icons/visual-lvm.png", - "arch": ["x86_64"] - }, - { - "packageName": "visual-studio-code", - "description": "Unofficial AppImage of Visual Studio Code...", - "icon": "https://portable-linux-apps.github.io/icons/visual-studio-code.png", - "arch": ["x86_64"] - }, - { - "packageName": "visualboyadvance-m", - "description": "Unofficial AppImage of VisualBoyAdvance-M...", - "icon": "https://portable-linux-apps.github.io/icons/visualboyadvance-m.png", - "arch": ["x86_64"] - }, - { - "packageName": "visualfamilytree", - "description": "Create a family tree with information and pictures...", - "icon": "https://portable-linux-apps.github.io/icons/visualfamilytree.png", - "arch": ["x86_64"] - }, - { - "packageName": "vita3k", - "description": "Experimental PlayStation Vita emulator...", - "icon": "https://portable-linux-apps.github.io/icons/vita3k.png", - "arch": ["x86_64"] - }, - { - "packageName": "vitomu", - "description": "Easy to use video to audio converter...", - "icon": "https://portable-linux-apps.github.io/icons/vitomu.png", - "arch": ["x86_64"] - }, - { - "packageName": "viu", - "description": "Terminal image viewer with native support for iTerm and Kitty...", - "icon": "https://portable-linux-apps.github.io/icons/viu.png", - "arch": ["x86_64"] - }, - { - "packageName": "vivaldi-snapshot", - "description": "Unofficial. Advanced Web Browser, Testing Version...", - "icon": "https://portable-linux-apps.github.io/icons/vivaldi-snapshot.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "vivaldi-stable", - "description": "Unofficial. Advanced Web Browser, Stable Version...", - "icon": "https://portable-linux-apps.github.io/icons/vivaldi-stable.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "vivifyscrum", - "description": "Agile Tool for Professionals...", - "icon": "https://portable-linux-apps.github.io/icons/vivifyscrum.png", - "arch": ["x86_64"] - }, - { - "packageName": "vizgraph", - "description": "A simple tool for Using Graphviz...", - "icon": "https://portable-linux-apps.github.io/icons/vizgraph.png", - "arch": ["x86_64"] - }, - { - "packageName": "vk-desktop", - "description": "Cross-platform client VKontakte...", - "icon": "https://portable-linux-apps.github.io/icons/vk-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "vk-music-fs", - "description": "Listen to the music from VK...", - "icon": "https://portable-linux-apps.github.io/icons/vk-music-fs.png", - "arch": ["x86_64"] - }, - { - "packageName": "vkdt", - "description": "Raw photography workflow that sucks less, enabling real-time support for animations, timelapses, raw video, and heavy lifting algorithms like image alignment and better highlight inpainting...", - "icon": "https://portable-linux-apps.github.io/icons/vkdt.png", - "arch": ["x86_64"] - }, - { - "packageName": "vkquake", - "description": "Vulkan Quake game port based on QuakeSpasm...", - "icon": "https://portable-linux-apps.github.io/icons/vkquake.png", - "arch": ["x86_64"] - }, - { - "packageName": "vlc", - "description": "Unofficial. Free and Open Source Video & Media player for Audio, streaming and more...", - "icon": "https://portable-linux-apps.github.io/icons/vlc.png", - "arch": ["x86_64","i686"] - }, - { - "packageName": "vlc-git", - "description": "Unofficial. Free and Open Source Video & Media player, GIT version...", - "icon": "https://portable-linux-apps.github.io/icons/vlc-git.png", - "arch": ["x86_64"] - }, - { - "packageName": "vnote", - "description": "Note-taking application for pleasant Markdown...", - "icon": "https://portable-linux-apps.github.io/icons/vnote.png", - "arch": ["x86_64"] - }, - { - "packageName": "vocabsieve", - "description": "Simple sentence mining tool for language learning...", - "icon": "https://portable-linux-apps.github.io/icons/vocabsieve.png", - "arch": ["x86_64"] - }, - { - "packageName": "voicevox", - "description": "Offical Frontend for the free VOICEVOX TTS Engine...", - "icon": "https://portable-linux-apps.github.io/icons/voicevox.png", - "arch": ["x86_64"] - }, - { - "packageName": "vokoscreenng", - "description": "Unofficial, a powerful screencast creator...", - "icon": "https://portable-linux-apps.github.io/icons/vokoscreenng.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "volaris", - "description": "Volaris-Gui is the wrapper for Volaris, a secure file encryption software...", - "icon": "https://portable-linux-apps.github.io/icons/volaris.png", - "arch": ["x86_64"] - }, - { - "packageName": "vpaint", - "description": "Experimental vector graphics and 2D animation editor...", - "icon": "https://portable-linux-apps.github.io/icons/vpaint.png", - "arch": ["x86_64"] - }, - { - "packageName": "vrcft-avalonia", - "description": "Cross-platform VRCFaceTracking made with Avalonia...", - "icon": "https://portable-linux-apps.github.io/icons/vrcft-avalonia.png", - "arch": ["x86_64"] - }, - { - "packageName": "vrcx", - "description": "Friendship management tool for VRChat...", - "icon": "https://portable-linux-apps.github.io/icons/vrcx.png", - "arch": ["x86_64"] - }, - { - "packageName": "vrest-ng", - "description": "Zero code API test automation solution...", - "icon": "https://portable-linux-apps.github.io/icons/vrest-ng.png", - "arch": ["x86_64"] - }, - { - "packageName": "vrew", - "description": "Your first video editor, your easiest choice...", - "icon": "https://portable-linux-apps.github.io/icons/vrew.png", - "arch": ["x86_64"] - }, - { - "packageName": "vscodium", - "description": "Community-driven, freely-licensed binary distribution of MS VSCode...", - "icon": "https://portable-linux-apps.github.io/icons/vscodium.png", - "arch": ["x86_64"] - }, - { - "packageName": "vt", - "description": "VirusTotal Command Line Interface...", - "icon": "https://portable-linux-apps.github.io/icons/vt.png", - "arch": ["x86_64"] - }, - { - "packageName": "vtm", - "description": "Text-based desktop environment...", - "icon": "https://portable-linux-apps.github.io/icons/vtm.png", - "arch": ["x86_64"] - }, - { - "packageName": "vue-calc", - "description": "A Simple VueJS's Calculator built with ElectronJS...", - "icon": "https://portable-linux-apps.github.io/icons/vue-calc.png", - "arch": ["x86_64"] - }, - { - "packageName": "vuerd", - "description": "A desktop ERD app...", - "icon": "https://portable-linux-apps.github.io/icons/vuerd.png", - "arch": ["x86_64"] - }, - { - "packageName": "vup", - "description": "Private and decentralized cloud storage...", - "icon": "https://portable-linux-apps.github.io/icons/vup.png", - "arch": ["x86_64"] - }, - { - "packageName": "w2vgrep", - "description": "semantic-grep for words with similar meaning to the query...", - "icon": "https://portable-linux-apps.github.io/icons/w2vgrep.png", - "arch": ["x86_64"] - }, - { - "packageName": "walc", - "description": "WhatsApp Linux Client, Unofficial...", - "icon": "https://portable-linux-apps.github.io/icons/walc.png", - "arch": ["x86_64"] - }, - { - "packageName": "walk", - "description": "Terminal file manager...", - "icon": "https://portable-linux-apps.github.io/icons/walk.png", - "arch": ["x86_64"] - }, - { - "packageName": "walker", - "description": "Multi-Purpose Launcher with a lot of features. Highly Customizable and fast...", - "icon": "https://portable-linux-apps.github.io/icons/walker.png", - "arch": ["x86_64"] - }, - { - "packageName": "wallettech", - "description": "BytechCoin GUI Wallet...", - "icon": "https://portable-linux-apps.github.io/icons/wallettech.png", - "arch": ["x86_64"] - }, - { - "packageName": "warp", - "description": "Unofficial. Fast and secure file transfer through internet or local network exchanging a word-based code...", - "icon": "https://portable-linux-apps.github.io/icons/warp.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "warp-terminal", - "description": "Terminal reimagined with AI and collaborative tools...", - "icon": "https://portable-linux-apps.github.io/icons/warp-terminal.png", - "arch": ["x86_64"] - }, - { - "packageName": "warteschlangensimulator", - "description": "A free, platform independent, discrete-event, stochastic simulator which allows to model queueing systems in form of flowcharts...", - "icon": "https://portable-linux-apps.github.io/icons/warteschlangensimulator.png", - "arch": ["x86_64"] - }, - { - "packageName": "wasistlos", - "description": "Unofficial, WhatsApp Linux Client, formerly known as \"whatsapp-for-linux\"...", - "icon": "https://portable-linux-apps.github.io/icons/wasistlos.png", - "arch": ["x86_64"] - }, - { - "packageName": "watch", - "description": "Watches for changes in a directory tree and reruns a command in an acme win or just on the terminal. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/watch.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "watched", - "description": "A media player and a browser for Excellent entertainment...", - "icon": "https://portable-linux-apps.github.io/icons/watched.png", - "arch": ["x86_64"] - }, - { - "packageName": "watchflower", - "description": "Read and plot datas from your Xiaomi devices...", - "icon": "https://portable-linux-apps.github.io/icons/watchflower.png", - "arch": ["x86_64"] - }, - { - "packageName": "watchit", - "description": "Open movies everywhere...", - "icon": "https://portable-linux-apps.github.io/icons/watchit.png", - "arch": ["x86_64"] - }, - { - "packageName": "waterfox", - "description": "A privacy-focused web browser engineered to give you speed, control, and peace of mind on the internet...", - "icon": "https://portable-linux-apps.github.io/icons/waterfox.png", - "arch": ["x86_64"] - }, - { - "packageName": "waydroid-helper", - "description": "App that provides a user-friendly way to configure Waydroid and install extensions, including Magisk and ARM translation (android)...", - "icon": "https://portable-linux-apps.github.io/icons/waydroid-helper.png", - "arch": ["x86_64"] - }, - { - "packageName": "wazo-desktop", - "description": "Wazo desktop client for wazo VOIP server...", - "icon": "https://portable-linux-apps.github.io/icons/wazo-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "wc", - "description": "Print newline, word, and byte counts for each file. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/wc.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "weakauras", - "description": "App to provide missing link between Wago.io and World of Warcraft...", - "icon": "https://portable-linux-apps.github.io/icons/weakauras.png", - "arch": ["x86_64"] - }, - { - "packageName": "weatherdump", - "description": "A WeatherDump GUI...", - "icon": "https://portable-linux-apps.github.io/icons/weatherdump.png", - "arch": ["x86_64"] - }, - { - "packageName": "webamp", - "description": "Winamp Player 2.9 reimplementation in HTML5 and JS...", - "icon": "https://portable-linux-apps.github.io/icons/webamp.png", - "arch": ["x86_64"] - }, - { - "packageName": "webamp-desktop-enhanced", - "description": "Unofficial, experimental cross-platform desktop version of Winamp 2.9 reimplementation in electron...", - "icon": "https://portable-linux-apps.github.io/icons/webamp-desktop-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "webcamoid", - "description": "Unofficial. A multi-platform camera capture app focused on providing all major features required by power users with a very simple and intuitive interface...", - "icon": "https://portable-linux-apps.github.io/icons/webcamoid.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "webcord", - "description": "A Discord and Fosscord client implemented without Discord API...", - "icon": "https://portable-linux-apps.github.io/icons/webcord.png", - "arch": ["x86_64"] - }, - { - "packageName": "webcord-enhanced", - "description": "Unofficial, A Discord and Fosscord client implemented without Discord API...", - "icon": "https://portable-linux-apps.github.io/icons/webcord-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "webdesktop", - "description": "WebDesktop make apps with just a text editor and nodejs...", - "icon": "https://portable-linux-apps.github.io/icons/webdesktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "webkitty", - "description": "Local web development IDE...", - "icon": "https://portable-linux-apps.github.io/icons/webkitty.png", - "arch": ["x86_64"] - }, - { - "packageName": "webrecorder", - "description": "A complete packaging of Webrecorder hosted service in Electron...", - "icon": "https://portable-linux-apps.github.io/icons/webrecorder.png", - "arch": ["x86_64"] - }, - { - "packageName": "weektodo", - "description": "WeekToDo is a Free and Open Source Weekly Planner...", - "icon": "https://portable-linux-apps.github.io/icons/weektodo.png", - "arch": ["x86_64"] - }, - { - "packageName": "westeroscraftlauncher", - "description": "Custom launcher for modded Minecraft, game...", - "icon": "https://portable-linux-apps.github.io/icons/westeroscraftlauncher.png", - "arch": ["x86_64"] - }, - { - "packageName": "wethr", - "description": "Command line weather tool...", - "icon": "https://portable-linux-apps.github.io/icons/wethr.png", - "arch": ["x86_64"] - }, - { - "packageName": "wewechat", - "description": "Unofficial WeChat client built with React, MobX and Electron...", - "icon": "https://portable-linux-apps.github.io/icons/wewechat.png", - "arch": ["x86_64"] - }, - { - "packageName": "wexond", - "description": "Extensible, fast and innovative web browser with material UI...", - "icon": "https://portable-linux-apps.github.io/icons/wexond.png", - "arch": ["x86_64"] - }, - { - "packageName": "wezterm", - "description": "A GPU-accelerated terminal emulator and multiplexer...", - "icon": "https://portable-linux-apps.github.io/icons/wezterm.png", - "arch": ["x86_64"] - }, - { - "packageName": "wezterm-nightly", - "description": "A GPU-accelerated terminal emulator and multiplexer...", - "icon": "https://portable-linux-apps.github.io/icons/wezterm-nightly.png", - "arch": ["x86_64"] - }, - { - "packageName": "wget", - "description": "Network utility to retrieve files from the web. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/wget.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "whalebird", - "description": "An Electron based Mastodon client...", - "icon": "https://portable-linux-apps.github.io/icons/whalebird.png", - "arch": ["x86_64"] - }, - { - "packageName": "whatsdesk", - "description": "Unofficial, An unofficial client of WhatsApp...", - "icon": "https://portable-linux-apps.github.io/icons/whatsdesk.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "whatsie", - "description": "Unofficial, feature rich WhatsApp web client based on Qt WebEngine...", - "icon": "https://portable-linux-apps.github.io/icons/whatsie.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "whatstron", - "description": "Unofficial WhatsApp desktop client for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/whatstron.png", - "arch": ["x86_64"] - }, - { - "packageName": "whirlpool-gui", - "description": "Desktop GUI for Whirlpool by Samourai-Wallet...", - "icon": "https://portable-linux-apps.github.io/icons/whirlpool-gui.png", - "arch": ["x86_64"] - }, - { - "packageName": "whispering", - "description": "Press shortcut → speak → get text. Free and open source. More local-first apps soon ❤️...", - "icon": "https://portable-linux-apps.github.io/icons/whispering.png", - "arch": ["x86_64"] - }, - { - "packageName": "who", - "description": "Show who is logged on. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/who.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "whoami", - "description": "Print effective user name. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/whoami.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "whu-library-seat", - "description": "Wuhan University Library Assistant, for Jinan University...", - "icon": "https://portable-linux-apps.github.io/icons/whu-library-seat.png", - "arch": ["x86_64"] - }, - { - "packageName": "wick-editor", - "description": "A free and open-source tool for creating games, animations and everything in-between!..", - "icon": "https://portable-linux-apps.github.io/icons/wick-editor.png", - "arch": ["x86_64"] - }, - { - "packageName": "widelands", - "description": "Real-time strategy game with singleplayer campaigns...", - "icon": "https://portable-linux-apps.github.io/icons/widelands.png", - "arch": ["x86_64"] - }, - { - "packageName": "wiiu-downloader", - "description": "Allows to download encrypted wiiu files from nintendo's official servers...", - "icon": "https://portable-linux-apps.github.io/icons/wiiu-downloader.png", - "arch": ["x86_64"] - }, - { - "packageName": "wikilynx", - "description": "A simple game browser made using Qt C++ for playing wikipedia speed-runs the right way...", - "icon": "https://portable-linux-apps.github.io/icons/wikilynx.png", - "arch": ["x86_64","aarch64","i686"] - }, - { - "packageName": "win11-clipboard-history", - "description": "A beautiful, Windows 11-style Clipboard History Manager for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/win11-clipboard-history.png", - "arch": ["x86_64"] - }, - { - "packageName": "winboat", - "description": "Run Windows apps on 🐧 Linux with ✨ seamless integration...", - "icon": "https://portable-linux-apps.github.io/icons/winboat.png", - "arch": ["x86_64"] - }, - { - "packageName": "window-pet", - "description": "Pet overlay app that lets you have adorable companion such as pets, anime characters on your screen...", - "icon": "https://portable-linux-apps.github.io/icons/window-pet.png", - "arch": ["x86_64"] - }, - { - "packageName": "windows2usb", - "description": "Flash Drive burning utility, MBR/GPT, BIOS/UEFI, FAT32/NTFS...", - "icon": "https://portable-linux-apps.github.io/icons/windows2usb.png", - "arch": ["x86_64"] - }, - { - "packageName": "windows95", - "description": "Unofficial. Windows 95 in Electron...", - "icon": "https://portable-linux-apps.github.io/icons/windows95.png", - "arch": ["x86_64"] - }, - { - "packageName": "windusb-gui", - "description": "A modern, Rust-based graphical tool for creating bootable Windows USB installers on Linux...", - "icon": "https://portable-linux-apps.github.io/icons/windusb-gui.png", - "arch": ["x86_64"] - }, - { - "packageName": "wine", - "description": "Unofficial. Run Windows programs, select a version from mmtrt/WINE_AppImage...", - "icon": "https://portable-linux-apps.github.io/icons/wine.png", - "arch": ["x86_64"] - }, - { - "packageName": "wine-devel", - "description": "Unofficial. Compatibility layer to run x86_64 Windows programs, Dev Edition...", - "icon": "https://portable-linux-apps.github.io/icons/wine-devel.png", - "arch": ["x86_64"] - }, - { - "packageName": "wine-stable", - "description": "Unofficial. Compatibility layer to run x86_64 Windows programs, Stable...", - "icon": "https://portable-linux-apps.github.io/icons/wine-stable.png", - "arch": ["x86_64"] - }, - { - "packageName": "wine-staging", - "description": "Unofficial. Compatibility layer to run x86_64 Windows programs, Staging...", - "icon": "https://portable-linux-apps.github.io/icons/wine-staging.png", - "arch": ["x86_64"] - }, - { - "packageName": "wine-staging-ge-proton", - "description": "Unofficial. Run x86_64 Windows programs, Staging GE Proton...", - "icon": "https://portable-linux-apps.github.io/icons/wine-staging-ge-proton.png", - "arch": ["x86_64"] - }, - { - "packageName": "wine32-deploy", - "description": "Tool for creating AppImages for 32-bit Microsoft Windows apps...", - "icon": "https://portable-linux-apps.github.io/icons/wine32-deploy.png", - "arch": ["x86_64"] - }, - { - "packageName": "winrar", - "description": "Unofficial, data compression, encryption and archiving tool...", - "icon": "https://portable-linux-apps.github.io/icons/winrar.png", - "arch": ["x86_64"] - }, - { - "packageName": "wipeout-rewrite", - "description": "Unofficial, re-implementation of the 1995 PSX game wipEout...", - "icon": "https://portable-linux-apps.github.io/icons/wipeout-rewrite.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "wire", - "description": "The most secure collaboration platform...", - "icon": "https://portable-linux-apps.github.io/icons/wire.png", - "arch": ["x86_64"] - }, - { - "packageName": "wireframesketcher", - "description": "A wireframing tool that helps designers, developers and product managers. A desktop app and a plug-in for any Eclipse IDE...", - "icon": "https://portable-linux-apps.github.io/icons/wireframesketcher.png", - "arch": ["x86_64"] - }, - { - "packageName": "wireguard-gui", - "description": "A wireguard client GUI for Debian/Linux made with nextauri...", - "icon": "https://portable-linux-apps.github.io/icons/wireguard-gui.png", - "arch": ["x86_64"] - }, - { - "packageName": "wireshark", - "description": "Unofficial, the world's most popular network protocol analyze...", - "icon": "https://portable-linux-apps.github.io/icons/wireshark.png", - "arch": ["x86_64"] - }, - { - "packageName": "wishdemo", - "description": "A μ Tcl/Tk distribution statically linked, AppImage...", - "icon": "https://portable-linux-apps.github.io/icons/wishdemo.png", - "arch": ["x86_64"] - }, - { - "packageName": "wives", - "description": "A beautiful, modern & feature-rich Terminal Emulator...", - "icon": "https://portable-linux-apps.github.io/icons/wives.png", - "arch": ["x86_64"] - }, - { - "packageName": "wiznoteplus", - "description": "The third party that supports the plug-in is Zhinote client...", - "icon": "https://portable-linux-apps.github.io/icons/wiznoteplus.png", - "arch": ["x86_64"] - }, - { - "packageName": "wkp", - "description": "A CLI tool designed to fetch Wikipedia excerpts written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/wkp.png", - "arch": ["x86_64"] - }, - { - "packageName": "wled-gui", - "description": "Cross-platform desktop app for WLED...", - "icon": "https://portable-linux-apps.github.io/icons/wled-gui.png", - "arch": ["x86_64"] - }, - { - "packageName": "wlx-overlay-s", - "description": "Access your Wayland/X11 desktop from Monado/WiVRn/SteamVR...", - "icon": "https://portable-linux-apps.github.io/icons/wlx-overlay-s.png", - "arch": ["x86_64"] - }, - { - "packageName": "wnr", - "description": "Work/Rest Timer. Stricter. Prettier. More features...", - "icon": "https://portable-linux-apps.github.io/icons/wnr.png", - "arch": ["x86_64"] - }, - { - "packageName": "woke", - "description": "A REST client with grand ambitions and limited scope...", - "icon": "https://portable-linux-apps.github.io/icons/woke.png", - "arch": ["x86_64"] - }, - { - "packageName": "wolai", - "description": "A new form of document/note/information system, in chinese...", - "icon": "https://portable-linux-apps.github.io/icons/wolai.png", - "arch": ["x86_64"] - }, - { - "packageName": "wonderlab", - "description": "A new generation Minecraft launcher...", - "icon": "https://portable-linux-apps.github.io/icons/wonderlab.png", - "arch": ["x86_64"] - }, - { - "packageName": "wonderwall", - "description": "Wallpaper manager for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/wonderwall.png", - "arch": ["x86_64"] - }, - { - "packageName": "woocommerce-pos", - "description": "Electron Desktop App for WooCommerce POS..", - "icon": "https://portable-linux-apps.github.io/icons/woocommerce-pos.png", - "arch": ["x86_64"] - }, - { - "packageName": "woof-doom", - "description": "Woof! is a continuation of the Boom/MBF bloodline of Doom source ports...", - "icon": "https://portable-linux-apps.github.io/icons/woof-doom.png", - "arch": ["x86_64"] - }, - { - "packageName": "wootility", - "description": "Utility for configuring Wooting keyboards...", - "icon": "https://portable-linux-apps.github.io/icons/wootility.png", - "arch": ["x86_64"] - }, - { - "packageName": "wooting-analog-midi", - "description": "Virtual MIDI device for, Wooting analog keyboards...", - "icon": "https://portable-linux-apps.github.io/icons/wooting-analog-midi.png", - "arch": ["x86_64"] - }, - { - "packageName": "wootomation", - "description": "The official Wooting Macros software...", - "icon": "https://portable-linux-apps.github.io/icons/wootomation.png", - "arch": ["x86_64"] - }, - { - "packageName": "wora", - "description": "A beautiful player for audiophiles...", - "icon": "https://portable-linux-apps.github.io/icons/wora.png", - "arch": ["x86_64"] - }, - { - "packageName": "workflowy", - "description": "A notetaking tool...", - "icon": "https://portable-linux-apps.github.io/icons/workflowy.png", - "arch": ["x86_64"] - }, - { - "packageName": "wournal", - "description": "Simple \"digitial paper\" for note taking and PDF annotation. Heavily inspired by Xournal...", - "icon": "https://portable-linux-apps.github.io/icons/wournal.png", - "arch": ["x86_64"] - }, - { - "packageName": "wowup", - "description": "WowUp the World of Warcraft addon updater...", - "icon": "https://portable-linux-apps.github.io/icons/wowup.png", - "arch": ["x86_64"] - }, - { - "packageName": "wox", - "description": "A cross-platform launcher that simply works...", - "icon": "https://portable-linux-apps.github.io/icons/wox.png", - "arch": ["x86_64"] - }, - { - "packageName": "wps-office", - "description": "Unofficial, Office suite built from the official .deb package...", - "icon": "https://portable-linux-apps.github.io/icons/wps-office.png", - "arch": ["x86_64"] - }, - { - "packageName": "wrapbox", - "description": "An Electron wrapper for web pages...", - "icon": "https://portable-linux-apps.github.io/icons/wrapbox.png", - "arch": ["x86_64"] - }, - { - "packageName": "wsjtz", - "description": "AppImage of WSJT-Z – fork of WSJT-X with automation features...", - "icon": "https://portable-linux-apps.github.io/icons/wsjtz.png", - "arch": ["x86_64"] - }, - { - "packageName": "wsocks", - "description": "A light websocket based proxy...", - "icon": "https://portable-linux-apps.github.io/icons/wsocks.png", - "arch": ["x86_64"] - }, - { - "packageName": "wsrx", - "description": "Controlled TCP-over-WebSocket forwarding tunnel...", - "icon": "https://portable-linux-apps.github.io/icons/wsrx.png", - "arch": ["x86_64"] - }, - { - "packageName": "wtfutil", - "description": "The personal information dashboard for your terminal...", - "icon": "https://portable-linux-apps.github.io/icons/wtfutil.png", - "arch": ["x86_64"] - }, - { - "packageName": "wthrr", - "description": "Weather companion for the terminal...", - "icon": "https://portable-linux-apps.github.io/icons/wthrr.png", - "arch": ["x86_64"] - }, - { - "packageName": "wxmaxima", - "description": "A document based interface for the computer algebra system Maxima...", - "icon": "https://portable-linux-apps.github.io/icons/wxmaxima.png", - "arch": ["x86_64"] - }, - { - "packageName": "wxmedit", - "description": "A cross-platform Text/Hex Editor, an improved version of MadEdit...", - "icon": "https://portable-linux-apps.github.io/icons/wxmedit.png", - "arch": ["x86_64"] - }, - { - "packageName": "wyrmhole", - "description": "A cross-platform GUI wrapper for the p2p magic-wormhole.rs library...", - "icon": "https://portable-linux-apps.github.io/icons/wyrmhole.png", - "arch": ["x86_64"] - }, - { - "packageName": "x-loc", - "description": "Extra localizations/translations manager for Stardew Valley...", - "icon": "https://portable-linux-apps.github.io/icons/x-loc.png", - "arch": ["x86_64"] - }, - { - "packageName": "x-minecraft-launcher", - "description": "An Open Source Minecraft Launcher with Modern UX...", - "icon": "https://portable-linux-apps.github.io/icons/x-minecraft-launcher.png", - "arch": ["x86_64"] - }, - { - "packageName": "x-pixiv", - "description": "CLI, pixiv downloader...", - "icon": "https://portable-linux-apps.github.io/icons/x-pixiv.png", - "arch": ["x86_64"] - }, - { - "packageName": "xapkdetector", - "description": "APK/DEX detector that shows an information about build tools, libraries and protection of APK/DEX files...", - "icon": "https://portable-linux-apps.github.io/icons/xapkdetector.png", - "arch": ["x86_64"] - }, - { - "packageName": "xargs", - "description": "Build and execute command lines from standard input. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/xargs.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "xash3d-fwgs", - "description": "A game engine aimed to provide compatibility with Half-Life Engine and extend it...", - "icon": "https://portable-linux-apps.github.io/icons/xash3d-fwgs.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "xash3d-fwgs-enhanced", - "description": "Unofficial, a game engine aimed to provide compatibility with Half-Life Engine and extend it...", - "icon": "https://portable-linux-apps.github.io/icons/xash3d-fwgs-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "xbooxp", - "description": "A nifty software to upload homebrew apps into your Game Boy Advance (GBA) using an xboo cable...", - "icon": "https://portable-linux-apps.github.io/icons/xbooxp.png", - "arch": ["x86_64"] - }, - { - "packageName": "xbydriver", - "description": "Xiaobaiyang Cloud Drive - Powered by Alibaba Cloud Drive...", - "icon": "https://portable-linux-apps.github.io/icons/xbydriver.png", - "arch": ["x86_64"] - }, - { - "packageName": "xchat", - "description": "Chat with other people using Internet Relay Chat...", - "icon": "https://portable-linux-apps.github.io/icons/xchat.png", - "arch": ["x86_64"] - }, - { - "packageName": "xclock", - "description": "Unofficial AppImage of xclock...", - "icon": "https://portable-linux-apps.github.io/icons/xclock.png", - "arch": ["x86_64"] - }, - { - "packageName": "xcloud-desktop", - "description": "An unofficial desktop app for the XCloud web beta...", - "icon": "https://portable-linux-apps.github.io/icons/xcloud-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "xde", - "description": "The Expo Development Environment...", - "icon": "https://portable-linux-apps.github.io/icons/xde.png", - "arch": ["x86_64"] - }, - { - "packageName": "xdelta3-cross-gui", - "description": "A cross-platform GUI for creating xDelta3 patches...", - "icon": "https://portable-linux-apps.github.io/icons/xdelta3-cross-gui.png", - "arch": ["x86_64"] - }, - { - "packageName": "xdg-ninja", - "description": "Script that checks your $HOME for unwanted files and directories...", - "icon": "https://portable-linux-apps.github.io/icons/xdg-ninja.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "xelfviewer", - "description": "A multiplatform ELF file viewer/editor...", - "icon": "https://portable-linux-apps.github.io/icons/xelfviewer.png", - "arch": ["x86_64"] - }, - { - "packageName": "xemu", - "description": "Original Xbox Emulator...", - "icon": "https://portable-linux-apps.github.io/icons/xemu.png", - "arch": ["x86_64"] - }, - { - "packageName": "xemu-enhanced", - "description": "Unofficial, original Xbox Emulator for Windows, macOS, and Linux (Active Development)...", - "icon": "https://portable-linux-apps.github.io/icons/xemu-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "xenia-canary", - "description": "Unofficial AppImage of xenia-canary Xbox360 emulator...", - "icon": "https://portable-linux-apps.github.io/icons/xenia-canary.png", - "arch": ["x86_64"] - }, - { - "packageName": "xenia-edge", - "description": "Xbox 360 Emulator Research Project, fork of the Xenia emulator, with the aim of quicker iteration and improvements to Vulkan backend...", - "icon": "https://portable-linux-apps.github.io/icons/xenia-edge.png", - "arch": ["x86_64"] - }, - { - "packageName": "xeyes", - "description": "Unofficial, a \"follow the mouse\" X demo, using the X SHAPE extension...", - "icon": "https://portable-linux-apps.github.io/icons/xeyes.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "xgetter", - "description": "Download video on Youtube, Facebook, X(Twitter), Instagram, Tiktok, Bilibili, Douyin and more...", - "icon": "https://portable-linux-apps.github.io/icons/xgetter.png", - "arch": ["x86_64"] - }, - { - "packageName": "xilinota", - "description": "Note-taking app boasting instant syncing among devices and direct keeping of markdown files...", - "icon": "https://portable-linux-apps.github.io/icons/xilinota.png", - "arch": ["x86_64"] - }, - { - "packageName": "xiphos", - "description": "Unofficial, a Bible study tool using GTK...", - "icon": "https://portable-linux-apps.github.io/icons/xiphos.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "xl-converter", - "description": "Powerful image converter with support for multithreading...", - "icon": "https://portable-linux-apps.github.io/icons/xl-converter.png", - "arch": ["x86_64"] - }, - { - "packageName": "xlights", - "description": "A sequencer for Lights and sequences manager...", - "icon": "https://portable-linux-apps.github.io/icons/xlights.png", - "arch": ["x86_64"] - }, - { - "packageName": "xm8", - "description": "PC-8801 emulator...", - "icon": "https://portable-linux-apps.github.io/icons/xm8.png", - "arch": ["x86_64"] - }, - { - "packageName": "xmachoviewer", - "description": "XMachOViewer is a Mach-O viewer...", - "icon": "https://portable-linux-apps.github.io/icons/xmachoviewer.png", - "arch": ["x86_64"] - }, - { - "packageName": "xmedcon", - "description": "An open-source toolkit for medical image conversion...", - "icon": "https://portable-linux-apps.github.io/icons/xmedcon.png", - "arch": ["x86_64"] - }, - { - "packageName": "xmoto", - "description": "A challenging 2D motocross platform game, where physics play an important role...", - "icon": "https://portable-linux-apps.github.io/icons/xmoto.png", - "arch": ["x86_64"] - }, - { - "packageName": "xnconvert", - "description": "A fast, powerful and free cross-platform batch image converter...", - "icon": "https://portable-linux-apps.github.io/icons/xnconvert.png", - "arch": ["x86_64"] - }, - { - "packageName": "xnviewmp", - "description": "Graphic viewer, browser, converter...", - "icon": "https://portable-linux-apps.github.io/icons/xnviewmp.png", - "arch": ["x86_64"] - }, - { - "packageName": "xonsh", - "description": "Python-powered, cross-platform, Unix-gazing shell...", - "icon": "https://portable-linux-apps.github.io/icons/xonsh.png", - "arch": ["x86_64"] - }, - { - "packageName": "xopcodecalc", - "description": "Opcode calculator / ASM calculator...", - "icon": "https://portable-linux-apps.github.io/icons/xopcodecalc.png", - "arch": ["x86_64"] - }, - { - "packageName": "xoreos", - "description": "Unofficial, A reimplementation of BioWare's Aurora engine...", - "icon": "https://portable-linux-apps.github.io/icons/xoreos.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "xournal++", - "description": "A C++ handwriting notetaking software with PDF annotation support...", - "icon": "https://portable-linux-apps.github.io/icons/xournal++.png", - "arch": ["x86_64"] - }, - { - "packageName": "xournal++nightly", - "description": "C++ notetaking software with PDF annotation support, DEV...", - "icon": "https://portable-linux-apps.github.io/icons/xournal++nightly.png", - "arch": ["x86_64"] - }, - { - "packageName": "xournalpp", - "description": "Unofficial. Handwriting notetaking software with PDF annotation support. Written in C++ with GTK3...", - "icon": "https://portable-linux-apps.github.io/icons/xournalpp.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "xpeviewer", - "description": "PE file viewer/editor...", - "icon": "https://portable-linux-apps.github.io/icons/xpeviewer.png", - "arch": ["x86_64"] - }, - { - "packageName": "xpipe", - "description": "Your entire server infrastructure at your fingertips. Manage all your servers from your local desktop. No remote setup required...", - "icon": "https://portable-linux-apps.github.io/icons/xpipe.png", - "arch": ["x86_64"] - }, - { - "packageName": "xplist", - "description": "Cross-platform Plist Editor...", - "icon": "https://portable-linux-apps.github.io/icons/xplist.png", - "arch": ["x86_64"] - }, - { - "packageName": "xplorer", - "description": "Xplorer, a customizable, modern file manager...", - "icon": "https://portable-linux-apps.github.io/icons/xplorer.png", - "arch": ["x86_64"] - }, - { - "packageName": "xsnow", - "description": "Unofficial, let it snow on your desktop...", - "icon": "https://portable-linux-apps.github.io/icons/xsnow.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "xtomarkdown", - "description": "A cross-platform GUI application for converting documents to Markdown...", - "icon": "https://portable-linux-apps.github.io/icons/xtomarkdown.png", - "arch": ["x86_64"] - }, - { - "packageName": "xtool", - "description": "Cross-platform Xcode replacement. Build and deploy iOS apps with SwiftPM...", - "icon": "https://portable-linux-apps.github.io/icons/xtool.png", - "arch": ["x86_64"] - }, - { - "packageName": "xtuber", - "description": "Simple YouTube Downloader...", - "icon": "https://portable-linux-apps.github.io/icons/xtuber.png", - "arch": ["x86_64"] - }, - { - "packageName": "xxh", - "description": "Bring your favorite shell wherever you go through the ssh...", - "icon": "https://portable-linux-apps.github.io/icons/xxh.png", - "arch": ["x86_64"] - }, - { - "packageName": "xyce", - "description": "Xyce Parallel Electronic Simulator...", - "icon": "https://portable-linux-apps.github.io/icons/xyce.png", - "arch": ["x86_64"] - }, - { - "packageName": "xz", - "description": "Library and command line tools for XZ and LZMA compressed files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/xz.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "xzcat", - "description": "Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/xzcat.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "yaak", - "description": "The most intuitive desktop API client. Organize and execute REST, GraphQL, WebSockets, Server Sent Events, and gRPC...", - "icon": "https://portable-linux-apps.github.io/icons/yaak.png", - "arch": ["x86_64"] - }, - { - "packageName": "yaf", - "description": "Yet another system CLI fetch that is minimal and customizable...", - "icon": "https://portable-linux-apps.github.io/icons/yaf.png", - "arch": ["x86_64"] - }, - { - "packageName": "yaka", - "description": "No fuss todo-list manager with full keyboard navigation...", - "icon": "https://portable-linux-apps.github.io/icons/yaka.png", - "arch": ["x86_64"] - }, - { - "packageName": "yakit", - "description": "Cyber Security ALL-IN-ONE Platform...", - "icon": "https://portable-linux-apps.github.io/icons/yakit.png", - "arch": ["x86_64"] - }, - { - "packageName": "yakit-legacy", - "description": "Cyber Security ALL-IN-ONE Platform (legacy)...", - "icon": "https://portable-linux-apps.github.io/icons/yakit-legacy.png", - "arch": ["x86_64"] - }, - { - "packageName": "yam", - "description": "Unofficial Game Updater for the F95Zone platform...", - "icon": "https://portable-linux-apps.github.io/icons/yam.png", - "arch": ["x86_64"] - }, - { - "packageName": "yamagi-quake-ii", - "description": "Unofficial, an enhanced client for id Software's Quake II...", - "icon": "https://portable-linux-apps.github.io/icons/yamagi-quake-ii.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "yamata-launcher", - "description": "A multi-platform game launcher designed to unify game catalogs, downloads, and libraries from multiple ecosystems into a single, extensible application...", - "icon": "https://portable-linux-apps.github.io/icons/yamata-launcher.png", - "arch": ["x86_64"] - }, - { - "packageName": "yana", - "description": "Note-taking app with nested documents, text search/editor, code.....", - "icon": "https://portable-linux-apps.github.io/icons/yana.png", - "arch": ["x86_64"] - }, - { - "packageName": "yandex-browser", - "description": "Unofficial Yandex Browser AppImage, Stable...", - "icon": "https://portable-linux-apps.github.io/icons/yandex-browser.png", - "arch": ["x86_64"] - }, - { - "packageName": "yandex-browser-beta", - "description": "Unofficial Yandex Browser AppImage, Beta...", - "icon": "https://portable-linux-apps.github.io/icons/yandex-browser-beta.png", - "arch": ["x86_64"] - }, - { - "packageName": "yandex-browser-corporate", - "description": "Unofficial Yandex Browser AppImage, Corporate...", - "icon": "https://portable-linux-apps.github.io/icons/yandex-browser-corporate.png", - "arch": ["x86_64"] - }, - { - "packageName": "yandex-music", - "description": "Personal recommendations, mixes for any occasion and the latest musical releases...", - "icon": "https://portable-linux-apps.github.io/icons/yandex-music.png", - "arch": ["x86_64"] - }, - { - "packageName": "yangdownloader", - "description": "Downloads best-quality audio and video from YouTube...", - "icon": "https://portable-linux-apps.github.io/icons/yangdownloader.png", - "arch": ["x86_64"] - }, - { - "packageName": "yank-note", - "description": "A Hackable Markdown Note Application for Programmers...", - "icon": "https://portable-linux-apps.github.io/icons/yank-note.png", - "arch": ["x86_64"] - }, - { - "packageName": "yaya", - "description": "Yet Another Yahtzee-esque Application...", - "icon": "https://portable-linux-apps.github.io/icons/yaya.png", - "arch": ["x86_64"] - }, - { - "packageName": "yazi", - "description": "Blazing fast terminal file manager written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/yazi.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "yes", - "description": "Output a string repeatedly until killed. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/yes.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "yesplaymusic", - "description": "A third party music player for Netease Music...", - "icon": "https://portable-linux-apps.github.io/icons/yesplaymusic.png", - "arch": ["x86_64"] - }, - { - "packageName": "yet-another-open-file-converter", - "description": "Simple Open Source Video and Image Conventer...", - "icon": "https://portable-linux-apps.github.io/icons/yet-another-open-file-converter.png", - "arch": ["x86_64"] - }, - { - "packageName": "ym-desktop", - "description": "The YouTube music desktop app...", - "icon": "https://portable-linux-apps.github.io/icons/ym-desktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "ymir", - "description": "Unofficial, Sega Saturn emulator...", - "icon": "https://portable-linux-apps.github.io/icons/ymir.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "yolx", - "description": "A modern download tool developed with Flutter, powered by Aria 2 at its core...", - "icon": "https://portable-linux-apps.github.io/icons/yolx.png", - "arch": ["x86_64"] - }, - { - "packageName": "youplaytx", - "description": "A full-screen, dual-pane YouTube audio player for the terminal...", - "icon": "https://portable-linux-apps.github.io/icons/youplaytx.png", - "arch": ["x86_64"] - }, - { - "packageName": "youtube-download", - "description": "GUI and CLI for downloading YouTube video/audio...", - "icon": "https://portable-linux-apps.github.io/icons/youtube-download.png", - "arch": ["x86_64"] - }, - { - "packageName": "youtube-downloader", - "description": "Download video/audio from youtube (and instagram) videos...", - "icon": "https://portable-linux-apps.github.io/icons/youtube-downloader.png", - "arch": ["x86_64"] - }, - { - "packageName": "youtube-music", - "description": "Unofficial. Amazing electron wrapper for YouTube Music featuring plugins...", - "icon": "https://portable-linux-apps.github.io/icons/youtube-music.png", - "arch": ["x86_64"] - }, - { - "packageName": "youtube-tui", - "description": "An aesthetically pleasing YouTube TUI CLI written in Rust...", - "icon": "https://portable-linux-apps.github.io/icons/youtube-tui.png", - "arch": ["x86_64"] - }, - { - "packageName": "youtubeanddownloader", - "description": "An app to use youtube and download videos as mp3s or mp4s...", - "icon": "https://portable-linux-apps.github.io/icons/youtubeanddownloader.png", - "arch": ["x86_64"] - }, - { - "packageName": "youtubesearchfilter", - "description": "YouTube searches with/without a pre-filter from CLI...", - "icon": "https://portable-linux-apps.github.io/icons/youtubesearchfilter.png", - "arch": ["x86_64"] - }, - { - "packageName": "yt-dlandcut", - "description": "Download and cut Youtube videos by providing url and time range...", - "icon": "https://portable-linux-apps.github.io/icons/yt-dlandcut.png", - "arch": ["x86_64"] - }, - { - "packageName": "yt-dlg", - "description": "A front-end GUI of the popular youtube-dl written in wxPython...", - "icon": "https://portable-linux-apps.github.io/icons/yt-dlg.png", - "arch": ["x86_64"] - }, - { - "packageName": "yt-dlp", - "description": "A feature-rich command-line audio/video downloader...", - "icon": "https://portable-linux-apps.github.io/icons/yt-dlp.png", - "arch": ["x86_64"] - }, - { - "packageName": "ytarchive", - "description": "Garbage Youtube livestream downloader CLI...", - "icon": "https://portable-linux-apps.github.io/icons/ytarchive.png", - "arch": ["x86_64"] - }, - { - "packageName": "ytdownloader", - "description": "App for downloading Videos and Audios from hundreds of sites...", - "icon": "https://portable-linux-apps.github.io/icons/ytdownloader.png", - "arch": ["x86_64"] - }, - { - "packageName": "ytermusic", - "description": "An in terminal youtube music client with focus on privacy, simplicity and performance...", - "icon": "https://portable-linux-apps.github.io/icons/ytermusic.png", - "arch": ["x86_64"] - }, - { - "packageName": "ytmdesktop", - "description": "A Desktop App for YouTube Music...", - "icon": "https://portable-linux-apps.github.io/icons/ytmdesktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "ytmdesktop2", - "description": "Unofficial Youtube Music Desktop App, with LastFM support...", - "icon": "https://portable-linux-apps.github.io/icons/ytmdesktop2.png", - "arch": ["x86_64"] - }, - { - "packageName": "yts-streaming", - "description": "Stream or play yts and torrent movies...", - "icon": "https://portable-linux-apps.github.io/icons/yts-streaming.png", - "arch": ["x86_64"] - }, - { - "packageName": "ytsage", - "description": "Modern YouTube downloader with a clean PySide6 interface. Download videos in any quality, extract audio, fetch subtitles, sponsorBlock, and view video metadata. Built with yt-dlp for reliable performance...", - "icon": "https://portable-linux-apps.github.io/icons/ytsage.png", - "arch": ["x86_64"] - }, - { - "packageName": "yubikey-manager", - "description": "Configure your YubiKey over all USB transports...", - "icon": "https://portable-linux-apps.github.io/icons/yubikey-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "yup", - "description": "Arch Linux AUR Helper with ncurses functionality and better searching and sorting...", - "icon": "https://portable-linux-apps.github.io/icons/yup.png", - "arch": ["x86_64"] - }, - { - "packageName": "yuview", - "description": "YUV player with an advanced analytic toolset...", - "icon": "https://portable-linux-apps.github.io/icons/yuview.png", - "arch": ["x86_64"] - }, - { - "packageName": "zap", - "description": "Delightful command line AppImage package manager for appimage.github.io...", - "icon": "https://portable-linux-apps.github.io/icons/zap.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "zapdesktop", - "description": "Desktop application for the lightning network...", - "icon": "https://portable-linux-apps.github.io/icons/zapdesktop.png", - "arch": ["x86_64"] - }, - { - "packageName": "zapzap", - "description": "WhatsApp desktop application written in Pyqt6 + PyQt6-WebEngine...", - "icon": "https://portable-linux-apps.github.io/icons/zapzap.png", - "arch": ["x86_64"] - }, - { - "packageName": "zapzap-enhanced", - "description": "Unofficial AppImage of ZapZap WhatsApp client...", - "icon": "https://portable-linux-apps.github.io/icons/zapzap-enhanced.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "zcat", - "description": "Zcat - compress or expand files. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/zcat.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "zed", - "description": "High-performance, multiplayer code editor from the creators of Atom...", - "icon": "https://portable-linux-apps.github.io/icons/zed.png", - "arch": ["x86_64"] - }, - { - "packageName": "zegarek", - "description": "A simple clock with millisecond resolution...", - "icon": "https://portable-linux-apps.github.io/icons/zegarek.png", - "arch": ["x86_64"] - }, - { - "packageName": "zegrapher", - "description": "Math graphing software...", - "icon": "https://portable-linux-apps.github.io/icons/zegrapher.png", - "arch": ["x86_64"] - }, - { - "packageName": "zelda64-recompiled", - "description": "Unofficial, a native port of the N64 Legend of Zelda games, statically recompiled...", - "icon": "https://portable-linux-apps.github.io/icons/zelda64-recompiled.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "zellij", - "description": "A terminal workspace with batteries included...", - "icon": "https://portable-linux-apps.github.io/icons/zellij.png", - "arch": ["x86_64"] - }, - { - "packageName": "zen-app-manager", - "description": "Zen App Manager is a modern and lightweight startup manager that lets you manage startup applications from a single location...", - "icon": "https://portable-linux-apps.github.io/icons/zen-app-manager.png", - "arch": ["x86_64"] - }, - { - "packageName": "zen-browser", - "description": "Experience tranquillity while browsing the web without tracking...", - "icon": "https://portable-linux-apps.github.io/icons/zen-browser.png", - "arch": ["x86_64"] - }, - { - "packageName": "zenity", - "description": "Unofficial, A CLI utility that creates dialog boxes, GTK3 version...", - "icon": "https://portable-linux-apps.github.io/icons/zenity.png", - "arch": ["x86_64"] - }, - { - "packageName": "zenkit", - "description": "A platform for collaboration and project management...", - "icon": "https://portable-linux-apps.github.io/icons/zenkit.png", - "arch": ["x86_64"] - }, - { - "packageName": "zenroomstudio", - "description": "Extensible IDE which targets multiple dev platforms...", - "icon": "https://portable-linux-apps.github.io/icons/zenroomstudio.png", - "arch": ["x86_64"] - }, - { - "packageName": "zettlr", - "description": "A Markdown Editor for the 21st century...", - "icon": "https://portable-linux-apps.github.io/icons/zettlr.png", - "arch": ["x86_64"] - }, - { - "packageName": "zfind", - "description": "Search files, even inside tar/zip/7z/rar using a SQL-WHERE filter...", - "icon": "https://portable-linux-apps.github.io/icons/zfind.png", - "arch": ["x86_64"] - }, - { - "packageName": "zfxtop", - "description": "[WIP] fetch top for gen Z with X written by bubbletea enjoyer...", - "icon": "https://portable-linux-apps.github.io/icons/zfxtop.png", - "arch": ["x86_64"] - }, - { - "packageName": "zk", - "description": "A plain text note-taking assistant..", - "icon": "https://portable-linux-apps.github.io/icons/zk.png", - "arch": ["x86_64"] - }, - { - "packageName": "zmk-studio", - "description": "ZMK Firmware. Modern, open source keyboard firmware...", - "icon": "https://portable-linux-apps.github.io/icons/zmk-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "zmninja", - "description": "Ionic app for Home/Commerical Security Surveillance...", - "icon": "https://portable-linux-apps.github.io/icons/zmninja.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "znax", - "description": "Znax is a cross platform puzzle / arcade game using SDL2 libraries...", - "icon": "https://portable-linux-apps.github.io/icons/znax.png", - "arch": ["x86_64"] - }, - { - "packageName": "znote", - "description": "A Beautiful markdown editor inspired by Jupyter...", - "icon": "https://portable-linux-apps.github.io/icons/znote.png", - "arch": ["x86_64"] - }, - { - "packageName": "zod-engine", - "description": "Unofficial, an open source remake of the 1996 game Z by the Bitmap Brothers...", - "icon": "https://portable-linux-apps.github.io/icons/zod-engine.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "zograscope", - "description": "Syntax-aware diff that provides a number of additional tools...", - "icon": "https://portable-linux-apps.github.io/icons/zograscope.png", - "arch": ["x86_64"] - }, - { - "packageName": "zoo-design-studio", - "description": "The Zoo Design Studio app...", - "icon": "https://portable-linux-apps.github.io/icons/zoo-design-studio.png", - "arch": ["x86_64"] - }, - { - "packageName": "zoom", - "description": "Unofficial. Video Conferencing and Web Conferencing Service...", - "icon": "https://portable-linux-apps.github.io/icons/zoom.png", - "arch": ["x86_64"] - }, - { - "packageName": "zotero", - "description": "Collect, organize, cite, and share your research sources...", - "icon": "https://portable-linux-apps.github.io/icons/zotero.png", - "arch": ["x86_64"] - }, - { - "packageName": "zoxide", - "description": "A smarter cd command. Supports all major shells...", - "icon": "https://portable-linux-apps.github.io/icons/zoxide.png", - "arch": ["x86_64"] - }, - { - "packageName": "zramen", - "description": "Manage zram swap space...", - "icon": "https://portable-linux-apps.github.io/icons/zramen.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "zsnes", - "description": "Unofficial, a Super Nintendo emulator...", - "icon": "https://portable-linux-apps.github.io/icons/zsnes.png", - "arch": ["x86_64"] - }, - { - "packageName": "zsync", - "description": "Partial/differential file download client over HTTP. This is part of \"am-utils\" suite...", - "icon": "https://portable-linux-apps.github.io/icons/zsync.png", - "arch": ["x86_64","aarch64"] - }, - { - "packageName": "zsync2", - "description": "A rewrite of the advanced file download/sync tool zsync...", - "icon": "https://portable-linux-apps.github.io/icons/zsync2.png", - "arch": ["x86_64"] - }, - { - "packageName": "zulip", - "description": "Zulip Desktop Client for Linux...", - "icon": "https://portable-linux-apps.github.io/icons/zulip.png", - "arch": ["x86_64"] - }, - { - "packageName": "zx-poly", - "description": "a multi-CPU ZX-Spectrum 128 concept platform...", - "icon": "https://portable-linux-apps.github.io/icons/zx-poly.png", - "arch": ["x86_64"] - }, - { - "packageName": "zxinfo-file-browser", - "description": "Organize and manage your emulator files for ZX Spectrum...", - "icon": "https://portable-linux-apps.github.io/icons/zxinfo-file-browser.png", - "arch": ["x86_64"] - }, - { - "packageName": "zy-player", - "description": "Video resource player, simple, ad-free and high-value...", - "icon": "https://portable-linux-apps.github.io/icons/zy-player.png", - "arch": ["x86_64"] - }, - { - "packageName": "zyfun", - "description": "ZyPlayer. Cross-platform desktop video player, free and visually appealing...", - "icon": "https://portable-linux-apps.github.io/icons/zyfun.png", - "arch": ["x86_64"] - } -] diff --git a/apps.md b/apps.md deleted file mode 100644 index 836083e34..000000000 --- a/apps.md +++ /dev/null @@ -1,3503 +0,0 @@ -# APPLICATIONS - -| [Home](index.md) | -| --- | - -#### Here are listed all **3300** unique applications, AppImage packages and command line utilities managed by [AM](https://github.com/ivan-hc/AM) and [AppMan](https://github.com/ivan-hc/AppMan) for the x86_64 architecture, plus **75** more entries and items to help you install apps more easily. - - - - -#### *Categories* - -
- AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
- ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***0ad-prerelease***](apps/0ad-prerelease.md) | *FOSS historical Real Time Strategy, RTS game of ancient warfare (Pre-release).*..[ *read more* ](apps/0ad-prerelease.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/0ad-prerelease) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/0ad-prerelease) | -| | [***0ad***](apps/0ad.md) | *FOSS historical Real Time Strategy, RTS game of ancient warfare.*..[ *read more* ](apps/0ad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/0ad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/0ad) | -| | [***12to11***](apps/12to11.md) | *Unofficial, tool for running Wayland applications on an X server.*..[ *read more* ](apps/12to11.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/12to11) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/12to11) | -| | [***3d-puzzles***](apps/3d-puzzles.md) | *3D-Puzzles are Rubik, Dogic and Dogic12.*..[ *read more* ](apps/3d-puzzles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/3d-puzzles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/3d-puzzles) | -| | [***432hz-player***](apps/432hz-player.md) | *Because most music is recorded in 440hz, Audio Player.*..[ *read more* ](apps/432hz-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/432hz-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/432hz-player) | -| | [***5ire***](apps/5ire.md) | *5ire is a cross-platform desktop AI assistant, MCP client. It compatible with major service providers, supports local knowledge base and tools via model context protocol servers.*..[ *read more* ](apps/5ire.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/5ire) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/5ire) | -| | [***7z***](apps/7z.md) | *Archiver with a high compression ratio. This is part of "am-utils" suite.*..[ *read more* ](apps/7z.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/7z) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/7z) | -| | [***7zip***](apps/7zip.md) | *7-Zip is a file archiver with a high compression ratio.*..[ *read more* ](apps/7zip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/7zip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/7zip) | -| | [***86box-enhanced***](apps/86box-enhanced.md) | *Unofficial, emulator of x86-based machines based on PCem.*..[ *read more* ](apps/86box-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/86box-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/86box-enhanced) | -| | [***86box***](apps/86box.md) | *Emulator of x86-based machines based on PCem.*..[ *read more* ](apps/86box.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/86box) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/86box) | -| | [***9launcher***](apps/9launcher.md) | *An actively maintained and cross platform remake of Touhou Relauncher.*..[ *read more* ](apps/9launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/9launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/9launcher) | -| | [***aaaaxy***](apps/aaaaxy.md) | *A nonlinear puzzle platformer, game.*..[ *read more* ](apps/aaaaxy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aaaaxy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aaaaxy) | -| | [***ab-download-manager***](apps/ab-download-manager.md) | *A Download Manager that speeds up your downloads.*..[ *read more* ](apps/ab-download-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ab-download-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ab-download-manager) | -| | [***abaddon***](apps/abaddon.md) | *Unofficial, an alternative Discord client with voice support made with C++ and GTK 3.*..[ *read more* ](apps/abaddon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/abaddon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/abaddon) | -| | [***abiword***](apps/abiword.md) | *Unofficial. A light and free word processing software.*..[ *read more* ](apps/abiword.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/abiword) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/abiword) | -| | [***acestep-cpp-ui***](apps/acestep-cpp-ui.md) | *AceStep-cpp UI, 100% local and free Suno alternative powered by acestep-cpp. Native C++ bundle for local AI music generation with 0% python.*..[ *read more* ](apps/acestep-cpp-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/acestep-cpp-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/acestep-cpp-ui) | -| | [***acestream***](apps/acestream.md) | *Створення бінарника AppImage з AceStream Media.*..[ *read more* ](apps/acestream.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/acestream) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/acestream) | -| | [***acreom***](apps/acreom.md) | *Acreom desktop app releases.*..[ *read more* ](apps/acreom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/acreom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/acreom) | -| | [***actiona***](apps/actiona.md) | *Actiona is an automation tool that allows you to execute many actions on your computer such as emulating mouse clicks, key presses, showing message boxes, editing text files, etc.*..[ *read more* ](apps/actiona.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/actiona) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/actiona) | -| | [***actual***](apps/actual.md) | *A super fast privacy-focused app for managing your finances.*..[ *read more* ](apps/actual.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/actual) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/actual) | -| | [***adb***](apps/platform-tools.md) | *Command-line tool for communicating with Android devices or emulators. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***addr2line***](apps/addr2line.md) | *Or symbol+offset into file names and. This is part of "am-utils" suite.*..[ *read more* ](apps/addr2line.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/addr2line) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/addr2line) | -| | [***adobe-flash-player***](apps/adobe-flash-player.md) | *Unofficial port. Adobe Flash is a mostly discontinued multimedia software platform used for production of animations, rich internet applications, desktop applications, mobile apps, mobile games, and embedded web browser video players. Over 67 billion devices use adobe flash player!*..[ *read more* ](apps/adobe-flash-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/adobe-flash-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/adobe-flash-player) | -| | [***advanced-passgen***](apps/advanced-passgen.md) | *Advanced Password Generator.*..[ *read more* ](apps/advanced-passgen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/advanced-passgen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/advanced-passgen) | -| | [***advanced-rest-client***](apps/advanced-rest-client.md) | *Advanced REST Client and API console, by Mulesoft.*..[ *read more* ](apps/advanced-rest-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/advanced-rest-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/advanced-rest-client) | -| | [***aegisub***](apps/aegisub.md) | *Cross-platform advanced subtitle editor, with new feature branches. Read the README on the feature branch. Cross-platform advanced subtitle editor Cross-platform advanced subtitle editor.*..[ *read more* ](apps/aegisub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aegisub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aegisub) | -| | [***aerofoil***](apps/aerofoil.md) | *Unofficial, multiplatform port of Glider PRO.*..[ *read more* ](apps/aerofoil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aerofoil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aerofoil) | -| | [***afetch***](apps/afetch.md) | *A CLI system information tool written in Rust.*..[ *read more* ](apps/afetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/afetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/afetch) | -| | [***affine-beta***](apps/affine-beta.md) | *Next-gen knowledge base that brings planning, sorting and creating.*..[ *read more* ](apps/affine-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/affine-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/affine-beta) | -| | [***affine-canary***](apps/affine-canary.md) | *Next-gen knowledge base that brings planning/sorting/creating.*..[ *read more* ](apps/affine-canary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/affine-canary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/affine-canary) | -| | [***affine***](apps/affine.md) | *Next-gen knowledge base that brings planning, sorting and creating.*..[ *read more* ](apps/affine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/affine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/affine) | -| | [***affinity***](apps/affinity.md) | *Affinity is a suite of professional graphic design, photo editing, and desktop publishing software. It's a common alternative to software from the Adobe Suite such as for Adobe Photoshop, Adobe Illustrator, Adobe InDesign.*..[ *read more* ](apps/affinity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/affinity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/affinity) | -| | [***agregore***](apps/agregore.md) | *A minimal browser for the distributed web, Desktop version.*..[ *read more* ](apps/agregore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/agregore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/agregore) | -| | [***ahk_x11***](apps/ahk_x11.md) | *AutoHotkey for Linux (X11-based systems).*..[ *read more* ](apps/ahk_x11.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ahk_x11) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ahk_x11) | -| | [***ai-bot-workspace***](apps/ai-bot-workspace.md) | *Electron app including testing workspaces.*..[ *read more* ](apps/ai-bot-workspace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ai-bot-workspace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ai-bot-workspace) | -| | [***aichat***](apps/aichat.md) | *AIO AI CLI tool integrating 20+ AI platforms, including OpenAI.*..[ *read more* ](apps/aichat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aichat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aichat) | -| | [***aidm***](apps/aidm.md) | *AppImage Desktop Maker.*..[ *read more* ](apps/aidm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aidm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aidm) | -| | [***aillio-ts***](apps/aillio-ts.md) | *The desktop application for Aillio Bullet R1.*..[ *read more* ](apps/aillio-ts.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aillio-ts) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aillio-ts) | -| | [***aim***](apps/aim.md) | *A command line download/upload tool with resume.*..[ *read more* ](apps/aim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aim) | -| | [***air-controller-desktop***](apps/air-controller-desktop.md) | *Android phone assistant,powered by Flutter.*..[ *read more* ](apps/air-controller-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/air-controller-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/air-controller-desktop) | -| | [***airspaces***](apps/airspaces.md) | *An online map for your X-Plane flight sessions.*..[ *read more* ](apps/airspaces.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/airspaces) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/airspaces) | -| | [***aisap***](apps/aisap.md) | *Tool to make sandboxing AppImages easy through bwrap/bubblewrap.*..[ *read more* ](apps/aisap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aisap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aisap) | -| | [***aisleriot***](apps/aisleriot.md) | *Unofficial. A card game featuring over 80 different solitaire-type card games.*..[ *read more* ](apps/aisleriot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aisleriot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aisleriot) | -| | [***akasha***](apps/akasha.md) | *AKASHA community client.*..[ *read more* ](apps/akasha.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/akasha) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/akasha) | -| | [***akhenaten***](apps/akhenaten.md) | *Unofficial, open-source engine for Pharaoh (+Cleopatra) city-building game.*..[ *read more* ](apps/akhenaten.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/akhenaten) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/akhenaten) | -| | [***akuse***](apps/akuse.md) | *Simple and easy to use anime streaming desktop app without ads.*..[ *read more* ](apps/akuse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/akuse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/akuse) | -| | [***alacritty***](apps/alacritty.md) | *Unofficial. A modern terminal emulator that comes with sensible defaults, but allows for extensive configuration.*..[ *read more* ](apps/alacritty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alacritty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alacritty) | -| | [***albafetch***](apps/albafetch.md) | *CLI, faster neofetch alternative, written in C. Still improving.*..[ *read more* ](apps/albafetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/albafetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/albafetch) | -| | [***alduin***](apps/alduin.md) | *An Atom and RSS feed aggregator.*..[ *read more* ](apps/alduin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alduin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alduin) | -| | [***alephium-wallet***](apps/alephium-wallet.md) | *The official Alephium wallet for desktop.*..[ *read more* ](apps/alephium-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alephium-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alephium-wallet) | -| | [***alexandria***](apps/alexandria.md) | *eBook reader built with Tauri, Epub.js, and Typescript.*..[ *read more* ](apps/alexandria.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alexandria) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alexandria) | -| | [***alien-tec-ui***](apps/alien-tec-ui.md) | *Alien-Tec Tron Matrix Like Shell Terminal User Interface.*..[ *read more* ](apps/alien-tec-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alien-tec-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alien-tec-ui) | -| | [***allusion***](apps/allusion.md) | *A desktop application for managing your visual library.*..[ *read more* ](apps/allusion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/allusion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/allusion) | -| | [***alma***](apps/alma.md) | *Elegant AI Provider Orchestration. A beautiful desktop application that unifies your AI experience. Seamlessly switch between OpenAI, Anthropic, Google Gemini, and custom providers.*..[ *read more* ](apps/alma.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alma) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alma) | -| | [***alpine-flatimage***](apps/alpine-flatimage.md) | *A hybrid of Flatpak sandboxing with AppImage portability.*..[ *read more* ](apps/alpine-flatimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alpine-flatimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alpine-flatimage) | -| | [***alr2appimage***](apps/alr2appimage.md) | *Tool for building an AppImage from an Alire crate.*..[ *read more* ](apps/alr2appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alr2appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alr2appimage) | -| | [***alt-sendme***](apps/alt-sendme.md) | *Share files and directories anywhere - Local or Global*..[ *read more* ](apps/alt-sendme.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alt-sendme) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alt-sendme) | -| | [***altair***](apps/altair.md) | *The best graphQL client you will ever need.*..[ *read more* ](apps/altair.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altair) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altair) | -| | [***altersend***](apps/altersend.md) | *Send files directly between devices over the internet - no cloud, no servers, no size limits.*..[ *read more* ](apps/altersend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altersend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altersend) | -| | [***altitude***](apps/altitude.md) | *The Altitude wallet by Linda Project Inc.*..[ *read more* ](apps/altitude.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altitude) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altitude) | -| | [***altrady***](apps/altrady.md) | *Altrady Crypto Trading Terminal.*..[ *read more* ](apps/altrady.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altrady) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altrady) | -| | [***altus***](apps/altus.md) | *Client for WhatsApp Web with themes & multiple account support.*..[ *read more* ](apps/altus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altus) | -| | [***alvr***](apps/alvr.md) | *Stream VR games from your PC to your headset via Wi-Fi.*..[ *read more* ](apps/alvr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alvr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alvr) | -| | [***am-gui***](apps/am-gui.md) | *AM-GUI is a graphical Front for AM.*..[ *read more* ](apps/am-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/am-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/am-gui) | -| | [***amarok***](apps/amarok.md) | *Unofficial, powerful music player that lets you rediscover your music.*..[ *read more* ](apps/amarok.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amarok) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amarok) | -| | [***amazingmarvin***](apps/amazingmarvin.md) | *Incorporates principles from behavioral psychology.*..[ *read more* ](apps/amazingmarvin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amazingmarvin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amazingmarvin) | -| | [***ambermoon.net***](apps/ambermoon.net.md) | *Ambermoon rewrite in C#.*..[ *read more* ](apps/ambermoon.net.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ambermoon.net) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ambermoon.net) | -| | [***amdgpu_top***](apps/amdgpu_top.md) | *Tool to display AMDGPU usage.*..[ *read more* ](apps/amdgpu_top.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amdgpu_top) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amdgpu_top) | -| | [***amethyst-mod-manager***](apps/amethyst-mod-manager.md) | *A Linux native mod manager for a variety of games.*..[ *read more* ](apps/amethyst-mod-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amethyst-mod-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amethyst-mod-manager) | -| | [***amfora***](apps/amfora.md) | *A fancy terminal browser for the Gemini protocol.*..[ *read more* ](apps/amfora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amfora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amfora) | -| | [***amiberry***](apps/amiberry.md) | *Unofficial, optimized Amiga emulator.*..[ *read more* ](apps/amiberry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amiberry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amiberry) | -| | [***amplitude-soundboard***](apps/amplitude-soundboard.md) | *A sleek, cross-platform soundboard, available.*..[ *read more* ](apps/amplitude-soundboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amplitude-soundboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amplitude-soundboard) | -| | [***amule***](apps/amule.md) | *All-platform P2P client based on eMule. aMule is a free, GPL-licensed peer-to-peer file-sharing client for the eD2k and Kademlia networks.*..[ *read more* ](apps/amule.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amule) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amule) | -| | [***amusiz***](apps/amusiz.md) | *Unofficial and unpretentious Amazon Music client.*..[ *read more* ](apps/amusiz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amusiz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amusiz) | -| | [***anavis***](apps/anavis.md) | *Tool to visualize musical form.*..[ *read more* ](apps/anavis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anavis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anavis) | -| | [***anchor***](apps/anchor.md) | *An EOSIO Light Wallet with simple and advanced tools.*..[ *read more* ](apps/anchor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anchor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anchor) | -| | [***android-messages-desktop***](apps/android-messages-desktop.md) | *Messages for web, as a desktop app.*..[ *read more* ](apps/android-messages-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-messages-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-messages-desktop) | -| | [***android-studio-latest***](apps/android-studio-latest.md) | *Unofficial. Android Studio as AppImages, release.*..[ *read more* ](apps/android-studio-latest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-studio-latest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-studio-latest) | -| | [***android-studio***](apps/android-studio.md) | *Unofficial. Android Studio as AppImages, stable.*..[ *read more* ](apps/android-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-studio) | -| | [***android-tools***](apps/android-tools.md) | *Unofficial AppImage for the Android Platform tools, adb, fastboot, etc.*..[ *read more* ](apps/android-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-tools) | -| | [***android-translation-layer***](apps/android-translation-layer.md) | *Unofficial, A translation layer that allows running Android apps on a Linux system.*..[ *read more* ](apps/android-translation-layer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-translation-layer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-translation-layer) | -| | [***ani-cli***](apps/ani-cli.md) | *A cli tool to browse and play anime.*..[ *read more* ](apps/ani-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ani-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ani-cli) | -| | [***animashooter-junior***](apps/animashooter-junior.md) | *User-friendly Stop-Motion Animation Software, FREE.*..[ *read more* ](apps/animashooter-junior.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animashooter-junior) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animashooter-junior) | -| | [***animashooter-pioneer***](apps/animashooter-pioneer.md) | *User-friendly Stop-Motion Animation Software, PRO.*..[ *read more* ](apps/animashooter-pioneer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animashooter-pioneer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animashooter-pioneer) | -| | [***animecoin***](apps/animecoin.md) | *Animecoin is a free open source peer-to-peer electronic cash system that is completely decentralized, without the need for a central server or trusted parties. Users hold the crypto keys to their own money and transact directly with each other, with the help of a P2P network to check for double-spending.*..[ *read more* ](apps/animecoin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animecoin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animecoin) | -| | [***animeko***](apps/animeko.md) | *A one-stop platform for finding, following, and watching anime, featuring danmaku (bullet comments) and cloud-based collection synchronization (Bangumi), offline caching, BitTorrent, and cloud-based danmaku filtering.*..[ *read more* ](apps/animeko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animeko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animeko) | -| | [***animos***](apps/animos.md) | *Anime-streaming desktop application without any ads.*..[ *read more* ](apps/animos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animos) | -| | [***aniship***](apps/aniship.md) | *Allows for easy viewing of anime on PCs and laptops.*..[ *read more* ](apps/aniship.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aniship) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aniship) | -| | [***ankama-launcher***](apps/ankama-launcher.md) | *Ankama is an entertainment and digital creation group.*..[ *read more* ](apps/ankama-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ankama-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ankama-launcher) | -| | [***anki***](apps/anki.md) | *Unofficial, Anki's shared backend and web components, and the Qt frontend.*..[ *read more* ](apps/anki.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anki) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anki) | -| | [***another-redis-desktop-manager***](apps/another-redis-desktop-manager.md) | *Faster and better redis desktop manager.*..[ *read more* ](apps/another-redis-desktop-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/another-redis-desktop-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/another-redis-desktop-manager) | -| | [***ansel***](apps/ansel.md) | *An open-source photo-editing software for digital artists, designed to help you achieve your own interpretation of raw digital photographs.*..[ *read more* ](apps/ansel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ansel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ansel) | -| | [***ant-downloader***](apps/ant-downloader.md) | *BitTorrent Client developed by golang, angular, electron.*..[ *read more* ](apps/ant-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ant-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ant-downloader) | -| | [***antares***](apps/antares.md) | *An useful SQL client based on Electron.js and Vue.js.*..[ *read more* ](apps/antares.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antares) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antares) | -| | [***antidot***](apps/antidot.md) | *Cleans up your $HOME from those pesky dotfiles.*..[ *read more* ](apps/antidot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antidot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antidot) | -| | [***antigravity-ide***](apps/antigravity-ide.md) | *Unofficial AppImage of Google Antigravity IDE.*..[ *read more* ](apps/antigravity-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antigravity-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antigravity-ide) | -| | [***antigravity***](apps/antigravity.md) | *Unofficial AppImage of Google Antigravity.*..[ *read more* ](apps/antigravity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antigravity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antigravity) | -| | [***antimicrox***](apps/antimicrox.md) | *Use a gamepad to control a variety of programs.*..[ *read more* ](apps/antimicrox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antimicrox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antimicrox) | -| | [***antra***](apps/antra.md) | *A desktop music library builder. Resolves Spotify / Apple Music / Amazon Music URLs → get lossless audio → auto-tags, transcodes, and organizes. No subscriptions. No compromises.*..[ *read more* ](apps/antra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antra) | -| | [***any-code***](apps/any-code.md) | *Claude Code CLI, OpenAI Codex, and Google Gemini CLI.*..[ *read more* ](apps/any-code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/any-code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/any-code) | -| | [***anydesk***](apps/anydesk.md) | *Unofficial. Remote desktop application distributed.*..[ *read more* ](apps/anydesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anydesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anydesk) | -| | [***anything-llm***](apps/anything-llm.md) | *AI business intelligence tool. Any LLM, any document.*..[ *read more* ](apps/anything-llm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anything-llm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anything-llm) | -| | [***anytype***](apps/anytype.md) | *The everything app for those who celebrate trust & autonomy.*..[ *read more* ](apps/anytype.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anytype) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anytype) | -| | [***anzeigenchef***](apps/anzeigenchef.md) | *AdsChef manages your classified ads.*..[ *read more* ](apps/anzeigenchef.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anzeigenchef) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anzeigenchef) | -| | [***aphelion-wallet***](apps/aphelion-wallet.md) | *Aphelion desktop wallet application built with Electron.*..[ *read more* ](apps/aphelion-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aphelion-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aphelion-wallet) | -| | [***aphototoollibre***](apps/aphototoollibre.md) | *Photo editing app for GNU/Linux.*..[ *read more* ](apps/aphototoollibre.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aphototoollibre) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aphototoollibre) | -| | [***apidog***](apps/apidog.md) | *API design, debugging, testing, and mock tool.*..[ *read more* ](apps/apidog.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apidog) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apidog) | -| | [***apiflow***](apps/apiflow.md) | *A modern API workspace that works both online and offlinecombining API documentation, testing, mock, and AI-powered automation in one lightweight tool.*..[ *read more* ](apps/apiflow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apiflow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apiflow) | -| | [***apk-editor-studio***](apps/apk-editor-studio.md) | *Easy to use APK, Android reverse-engineering tool.*..[ *read more* ](apps/apk-editor-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apk-editor-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apk-editor-studio) | -| | [***apla***](apps/apla.md) | *Project was bootstrapped with Create React App.*..[ *read more* ](apps/apla.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apla) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apla) | -| | [***app-outlet***](apps/app-outlet.md) | *A Universal linux app store for Flatpak/Snap/AppImage.*..[ *read more* ](apps/app-outlet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/app-outlet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/app-outlet) | -| | [***appflowy***](apps/appflowy.md) | *Bring projects, wikis, and teams together with AI. AppFlowy is the AI collaborative workspace where you achieve more without losing control of your data. The leading open source Notion alternative.*..[ *read more* ](apps/appflowy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appflowy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appflowy) | -| | [***apphub***](apps/apphub.md) | *App that simplifies installation/management of .appImage packages.*..[ *read more* ](apps/apphub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apphub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apphub) | -| | [***appimage-builder***](apps/appimage-builder.md) | *GNU/Linux packaging solution using the AppImage format.*..[ *read more* ](apps/appimage-builder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimage-builder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimage-builder) | -| | [***appimage-creator***](apps/appimage-creator.md) | *GUI for easily generating AppImage packages on Linux.*..[ *read more* ](apps/appimage-creator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimage-creator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimage-creator) | -| | [***appimagecraft***](apps/appimagecraft.md) | *Powerful build script generator with a focus on AppImages.*..[ *read more* ](apps/appimagecraft.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagecraft) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagecraft) | -| | [***appimagelauncher***](apps/appimagelauncher.md) | *CLI helper for running and integrating AppImages.*..[ *read more* ](apps/appimagelauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagelauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagelauncher) | -| | [***appimagelint***](apps/appimagelint.md) | *Check AppImages for compatibility, best practices etc.*..[ *read more* ](apps/appimagelint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagelint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagelint) | -| | [***appimagen***](apps/appimagen.md) | *A script that generates a custom AppImage from a PPA.*..[ *read more* ](apps/appimagen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagen) | -| | [***appimagepool***](apps/appimagepool.md) | *A simple, modern AppImageHub Client, powered by flutter.*..[ *read more* ](apps/appimagepool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagepool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagepool) | -| | [***appimagetool***](apps/appimagetool.md) | *Tool to generate an AppImage from an existing AppDir.*..[ *read more* ](apps/appimagetool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagetool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagetool) | -| | [***appimageupdate***](apps/appimageupdate.md) | *A Rust implementation of AppImageUpdate, a tool for updating AppImages using efficient delta updates using zsync.*..[ *read more* ](apps/appimageupdate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimageupdate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimageupdate) | -| | [***appimageupdater***](apps/appimageupdater.md) | *AppImage Updater for Humans built with QML/C++ with Qt5.*..[ *read more* ](apps/appimageupdater.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimageupdater) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimageupdater) | -| | [***appimageupdatetool***](apps/appimageupdatetool.md) | *Tool to update an AppImage using embedded information.*..[ *read more* ](apps/appimageupdatetool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimageupdatetool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimageupdatetool) | -| | [***appimg***](apps/appimg.md) | *Appimg is a lightweight command-line tool that helps you manage AppImage files on Linux.*..[ *read more* ](apps/appimg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimg) | -| | [***appinstall***](apps/appinstall.md) | *AppImage Installer, a tool integrate AppImages to a linux desktop environment.*..[ *read more* ](apps/appinstall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appinstall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appinstall) | -| | [***appium-inspector***](apps/appium-inspector.md) | *A GUI inspector for mobile apps and more, powered by a (separately installed) Appium server.*..[ *read more* ](apps/appium-inspector.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appium-inspector) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appium-inspector) | -| | [***appmanager***](apps/appmanager.md) | *MacOS style AppImage installer and management application.*..[ *read more* ](apps/appmanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appmanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appmanager) | -| | [***aptakube***](apps/aptakube.md) | *A modern and lightweight Kubernetes desktop client.*..[ *read more* ](apps/aptakube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aptakube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aptakube) | -| | [***aptly***](apps/aptly.md) | *Debian repository management CLI tool.*..[ *read more* ](apps/aptly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aptly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aptly) | -| | [***apx-gcs***](apps/apx-gcs.md) | *APX Ground Control.*..[ *read more* ](apps/apx-gcs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apx-gcs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apx-gcs) | -| | [***ar***](apps/ar.md) | *Create, modify, and extract from .deb archives. This is part of "am-utils" suite.*..[ *read more* ](apps/ar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ar) | -| | [***aranym***](apps/aranym.md) | *Virtual Machine for Atari 32-bit applications.*..[ *read more* ](apps/aranym.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aranym) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aranym) | -| | [***arcade-manager***](apps/arcade-manager.md) | *Manage your rom collection, Games/Retropie & Recalbox.*..[ *read more* ](apps/arcade-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arcade-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arcade-manager) | -| | [***arcdlp***](apps/arcdlp.md) | *Open-source desktop video downloader powered by yt-dlp and electron. Download videos and audio from YouTube, Vimeo, Twitter, and thousands of sites.*..[ *read more* ](apps/arcdlp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arcdlp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arcdlp) | -| | [***arch-deployer***](apps/arch-deployer.md) | *A script to bulk download an Arch Linux package with all its dependencies to be converted in AppImage.*..[ *read more* ](apps/arch-deployer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arch-deployer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arch-deployer) | -| | [***arch-flatimage***](apps/arch-flatimage.md) | *A hybrid of Flatpak sandboxing with AppImage portability.*..[ *read more* ](apps/arch-flatimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arch-flatimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arch-flatimage) | -| | [***arch***](apps/arch.md) | *Hardware name (same as uname -m). This is part of "am-utils" suite.*..[ *read more* ](apps/arch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arch) | -| | [***archimage-cli***](apps/archimage-cli.md) | *Build AppImage packages using JuNest, Arch Linux.*..[ *read more* ](apps/archimage-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archimage-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archimage-cli) | -| | [***archimede***](apps/archimede.md) | *Unobtrusive directory information fetcher.*..[ *read more* ](apps/archimede.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archimede) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archimede) | -| | [***archipel***](apps/archipel.md) | *Decentralized archiving and media library system.*..[ *read more* ](apps/archipel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archipel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archipel) | -| | [***archipelago***](apps/archipelago.md) | *Archipelago Multi-Game Randomizer and Server.*..[ *read more* ](apps/archipelago.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archipelago) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archipelago) | -| | [***archisteamfarm***](apps/archisteamfarm.md) | *C# application with primary purpose of farming Steam cards from multiple accounts simultaneously.*..[ *read more* ](apps/archisteamfarm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archisteamfarm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archisteamfarm) | -| | [***archiveweb.page***](apps/archiveweb.page.md) | *A High-Fidelity Web Archiving Extension for Chrome and Chromium based browsers.*..[ *read more* ](apps/archiveweb.page.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archiveweb.page) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archiveweb.page) | -| | [***arduino-ide***](apps/arduino-ide.md) | *Open-source electronics platform.*..[ *read more* ](apps/arduino-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arduino-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arduino-ide) | -| | [***arena-tracker***](apps/arena-tracker.md) | *Deck Tracker for Hearthstone game with arena in focus.*..[ *read more* ](apps/arena-tracker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arena-tracker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arena-tracker) | -| | [***ares-emu***](apps/ares-emu.md) | *Unofficial AppImage of the ares emulator.*..[ *read more* ](apps/ares-emu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ares-emu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ares-emu) | -| | [***ares***](apps/ares.md) | *AppImage for the ares emulator.*..[ *read more* ](apps/ares.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ares) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ares) | -| | [***aretext***](apps/aretext.md) | *Minimalist text editor with vim-compatible key bindings.*..[ *read more* ](apps/aretext.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aretext) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aretext) | -| | [***ark.desktop.wallet***](apps/ark.desktop.wallet.md) | *Ark Ecosystem Desktop Wallet.*..[ *read more* ](apps/ark.desktop.wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ark.desktop.wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ark.desktop.wallet) | -| | [***ark***](apps/kdeutils.md) | *Archiving tool for .zip/.tar/.rar and more. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***arkaway***](apps/arkaway.md) | *Another Arkanoid clone and make with Pyxel.*..[ *read more* ](apps/arkaway.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arkaway) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arkaway) | -| | [***arma3-unix-launcher***](apps/arma3-unix-launcher.md) | *ArmA 3 Unix Launcher, game.*..[ *read more* ](apps/arma3-unix-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arma3-unix-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arma3-unix-launcher) | -| | [***armagetronad***](apps/armagetronad.md) | *Multiplayer game in 3d that emulates the movie "Tron".*..[ *read more* ](apps/armagetronad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/armagetronad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/armagetronad) | -| | [***armcord***](apps/armcord.md) | *Custom client designed to enhance your Discord experience.*..[ *read more* ](apps/armcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/armcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/armcord) | -| | [***artisan***](apps/artisan.md) | *Visualizes the coffee roasting process.*..[ *read more* ](apps/artisan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/artisan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/artisan) | -| | [***artix***](apps/artix.md) | *One app. All your favorite Artix games.*..[ *read more* ](apps/artix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/artix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/artix) | -| | [***arx-libertatis***](apps/arx-libertatis.md) | *Unofficial AppImage of Arx Libertatis.*..[ *read more* ](apps/arx-libertatis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arx-libertatis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arx-libertatis) | -| | [***as***](apps/as.md) | *GNU assembler.. This is part of "am-utils" suite.*..[ *read more* ](apps/as.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/as) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/as) | -| | [***asarui***](apps/asarui.md) | *UI for Asar.*..[ *read more* ](apps/asarui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/asarui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/asarui) | -| | [***ascendara***](apps/ascendara.md) | *Skip extracting files, navigating setup processes, or any unnecessary hassles.*..[ *read more* ](apps/ascendara.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ascendara) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ascendara) | -| | [***asgardex***](apps/asgardex.md) | *Thorchain wallet desktop app.*..[ *read more* ](apps/asgardex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/asgardex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/asgardex) | -| | [***aspect***](apps/aspect.md) | *Photo organization application with support for peer-to-peer based synchronization across devices.*..[ *read more* ](apps/aspect.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aspect) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aspect) | -| | [***asphyxia-core***](apps/asphyxia-core.md) | *Unofficial AppImage of Asphyxia CORE.*..[ *read more* ](apps/asphyxia-core.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/asphyxia-core) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/asphyxia-core) | -| | [***astroffers***](apps/astroffers.md) | *Take offers to watch at given nights by the NGC2000 catalog.*..[ *read more* ](apps/astroffers.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/astroffers) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/astroffers) | -| | [***astrofox***](apps/astrofox.md) | *Audio reactive motion graphics program.*..[ *read more* ](apps/astrofox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/astrofox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/astrofox) | -| | [***asunder***](apps/asunder.md) | *Unofficial. Audio CD ripper and encoder, WAV, MP3, OGG, FLAC, Opus, AAC....*..[ *read more* ](apps/asunder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/asunder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/asunder) | -| | [***atomicwallet***](apps/atomicwallet.md) | *Atomic vue-electron.*..[ *read more* ](apps/atomicwallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/atomicwallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/atomicwallet) | -| | [***atuin***](apps/atuin.md) | *Magical shell history.*..[ *read more* ](apps/atuin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/atuin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/atuin) | -| | [***audacious***](apps/audacious.md) | *Unofficial. An open source audio and music player, descendant of XMMS.*..[ *read more* ](apps/audacious.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audacious) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audacious) | -| | [***audacity-enhanced***](apps/audacity-enhanced.md) | *Unofficial, multiplatform Audio Editor.*..[ *read more* ](apps/audacity-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audacity-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audacity-enhanced) | -| | [***audacity***](apps/audacity.md) | *Multiplatform Audio Editor.*..[ *read more* ](apps/audacity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audacity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audacity) | -| | [***audapolis***](apps/audapolis.md) | *An editor for spoken-word audio with automatic transcription.*..[ *read more* ](apps/audapolis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audapolis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audapolis) | -| | [***audio-sharing***](apps/audio-sharing.md) | *Unofficial. Share audio from the desktop on local network using RTSP protocol.*..[ *read more* ](apps/audio-sharing.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audio-sharing) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audio-sharing) | -| | [***audiomoth-configuration-app***](apps/audiomoth-configuration-app.md) | *An Electron-based application capable of configuring the functionality of the AudioMoth recording device and setting the onboard clock.*..[ *read more* ](apps/audiomoth-configuration-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-configuration-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-configuration-app) | -| | [***audiomoth-flash-app***](apps/audiomoth-flash-app.md) | *An Electron-based application designed to flash the AudioMoth recording device with new firmware.*..[ *read more* ](apps/audiomoth-flash-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-flash-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-flash-app) | -| | [***audiomoth-gps-sync-app***](apps/audiomoth-gps-sync-app.md) | *An Electron-based application to generate WAV files synchronised with GPS time from the files generated by the AudioMoth-GPS-Sync firmware.*..[ *read more* ](apps/audiomoth-gps-sync-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-gps-sync-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-gps-sync-app) | -| | [***audiomoth-live-app***](apps/audiomoth-live-app.md) | *An Electron-based application for recording and analysing live audio from high sample rate microphones, including the AudioMoth USB Microphone.*..[ *read more* ](apps/audiomoth-live-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-live-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-live-app) | -| | [***audiomoth-time-app***](apps/audiomoth-time-app.md) | *An Electron-based application capable of setting the on-board clock of the AudioMoth recording device.*..[ *read more* ](apps/audiomoth-time-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-time-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-time-app) | -| | [***audiomoth-usb-microphone-app***](apps/audiomoth-usb-microphone-app.md) | *An Electron-based application capable of configuring the functionality of the AudioMoth-USB-Microphone firmware.*..[ *read more* ](apps/audiomoth-usb-microphone-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-usb-microphone-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-usb-microphone-app) | -| | [***audiorelay***](apps/audiorelay.md) | *Stream audio between your devices. Turn your phone into a microphone or speakers for PC.*..[ *read more* ](apps/audiorelay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiorelay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiorelay) | -| | [***augur***](apps/augur.md) | *Augur Desktop Application.*..[ *read more* ](apps/augur.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/augur) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/augur) | -| | [***augustus-enhanced***](apps/augustus-enhanced.md) | *Unofficial, a fork of the Julius project that intends to incorporate gameplay changes.*..[ *read more* ](apps/augustus-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/augustus-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/augustus-enhanced) | -| | [***augustus***](apps/augustus.md) | *An open source re-implementation of the game Caesar III.*..[ *read more* ](apps/augustus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/augustus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/augustus) | -| | [***aurora***](apps/aurora.md) | *A utility to control RGB keyboard back-light and charging threshold for Asus TUF-gaming laptops.*..[ *read more* ](apps/aurora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aurora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aurora) | -| | [***auryo***](apps/auryo.md) | *An audio/music desktop client for SoundCloud.*..[ *read more* ](apps/auryo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/auryo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/auryo) | -| | [***authenticator***](apps/authenticator.md) | *Unofficial. An application which generates 2FA code in realtime.*..[ *read more* ](apps/authenticator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/authenticator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/authenticator) | -| | [***authme***](apps/authme.md) | *Simple cross-platform two-factor authenticator app for desktop.*..[ *read more* ](apps/authme.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/authme) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/authme) | -| | [***authy***](apps/authy.md) | *Unofficial, Protect all your accounts with 2FA.*..[ *read more* ](apps/authy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/authy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/authy) | -| | [***auto-claude***](apps/auto-claude.md) | *Autonomous multi-session AI coding framework that plans, builds, and validates software for you.*..[ *read more* ](apps/auto-claude.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/auto-claude) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/auto-claude) | -| | [***autoedit2***](apps/autoedit2.md) | *autoEdit2 Desktop Client for Linux.*..[ *read more* ](apps/autoedit2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/autoedit2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/autoedit2) | -| | [***autosubsync***](apps/autosubsync.md) | *Automatic subtitle synchronization tool.*..[ *read more* ](apps/autosubsync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/autosubsync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/autosubsync) | -| | [***avantgarde***](apps/avantgarde.md) | *Avalonia XAML Preview.*..[ *read more* ](apps/avantgarde.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avantgarde) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avantgarde) | -| | [***avidemux-qt***](apps/avidemux-qt.md) | *Unofficial, my custom Avidemux Video Editor built to use system themes.*..[ *read more* ](apps/avidemux-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avidemux-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avidemux-qt) | -| | [***avidemux***](apps/avidemux.md) | *Multiplatform Video Editor.*..[ *read more* ](apps/avidemux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avidemux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avidemux) | -| | [***avogadro2***](apps/avogadro2.md) | *Molecular editor for computational chemistry, bioinformatics.*..[ *read more* ](apps/avogadro2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avogadro2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avogadro2) | -| | [***awakened-poe-trade-enhanced***](apps/awakened-poe-trade-enhanced.md) | *Unofficial AppImage of Awakened POE Trade with some fixes and wider OS support.*..[ *read more* ](apps/awakened-poe-trade-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/awakened-poe-trade-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/awakened-poe-trade-enhanced) | -| | [***awakened-poe-trade***](apps/awakened-poe-trade.md) | *Path of Exile trading app for price checking.*..[ *read more* ](apps/awakened-poe-trade.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/awakened-poe-trade) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/awakened-poe-trade) | -| | [***axe-electrum***](apps/axe-electrum.md) | *Axe Electrum Wallet.*..[ *read more* ](apps/axe-electrum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/axe-electrum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/axe-electrum) | -| | [***axolotl***](apps/axolotl.md) | *A Signal compatible cross plattform client written in Go and Vuejs.*..[ *read more* ](apps/axolotl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/axolotl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/axolotl) | -| | [***aya***](apps/aya.md) | *A desktop application for easily controlling android devices, which can be considered as a GUI wrapper for ADB.*..[ *read more* ](apps/aya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aya) | -| | [***ayandict***](apps/ayandict.md) | *Simple yet advanced multi-lingual cross-platform offline dictionary for desktop, using Qt and Go.*..[ *read more* ](apps/ayandict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ayandict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ayandict) | -| | [***azahar-enhanced***](apps/azahar-enhanced.md) | *Unofficial AppImage of Azahar, with optimized builds for modern cpus.*..[ *read more* ](apps/azahar-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/azahar-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/azahar-enhanced) | -| | [***azaharplus-pkg-extractor***](apps/azaharplus-pkg-extractor.md) | *Standalone PKG extractor CLI based on code that used to be in ShadPS4 PlayStation 4 emulator written in C++.*..[ *read more* ](apps/azaharplus-pkg-extractor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/azaharplus-pkg-extractor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/azaharplus-pkg-extractor) | -| | [***azaharplus***](apps/azaharplus.md) | *A fork of the Azahar 3DS emulator with extra features an open-source 3DS emulator project based on Citra.*..[ *read more* ](apps/azaharplus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/azaharplus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/azaharplus) | -| | [***b2sum***](apps/b2sum.md) | *Check BLAKE2 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/b2sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/b2sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/b2sum) | -| | [***badlion***](apps/badlion.md) | *Most Complete All-In-One Mod Library for Minecraft with 100+ Mods.*..[ *read more* ](apps/badlion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/badlion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/badlion) | -| | [***baijimangaviewer***](apps/baijimangaviewer.md) | *Manga viewer that uses Material Design.*..[ *read more* ](apps/baijimangaviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/baijimangaviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/baijimangaviewer) | -| | [***balatro-multiplayer***](apps/balatro-multiplayer.md) | *A Multiplayer Mod for Balatro.*..[ *read more* ](apps/balatro-multiplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/balatro-multiplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/balatro-multiplayer) | -| | [***bambustudio***](apps/bambustudio.md) | *PC Software for BambuLab's 3D printers.*..[ *read more* ](apps/bambustudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bambustudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bambustudio) | -| | [***bananas***](apps/bananas.md) | *Bananas, Cross-Platform screen sharing made simple.*..[ *read more* ](apps/bananas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bananas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bananas) | -| | [***banban***](apps/banban.md) | *A productivity app inspired by GitHub Projects Kanban.*..[ *read more* ](apps/banban.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/banban) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/banban) | -| | [***bandwhich***](apps/bandwhich.md) | *Terminal bandwidth utilization tool.*..[ *read more* ](apps/bandwhich.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bandwhich) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bandwhich) | -| | [***banjo-recompiled***](apps/banjo-recompiled.md) | *Unofficial, a static recompiled port of N64 Banjo-Kazooie for PC.*..[ *read more* ](apps/banjo-recompiled.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/banjo-recompiled) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/banjo-recompiled) | -| | [***banjorecomp***](apps/banjorecomp.md) | *Recompiled.*..[ *read more* ](apps/banjorecomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/banjorecomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/banjorecomp) | -| | [***baobab***](apps/baobab.md) | *A graphical directory tree analyzer for the GNOME desktop environment, to keep your disk usage and available space under control.*..[ *read more* ](apps/baobab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/baobab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/baobab) | -| | [***barnacal***](apps/barnacal.md) | *A simple menu bar app for viewing a calendar*..[ *read more* ](apps/barnacal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/barnacal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/barnacal) | -| | [***base32***](apps/base32.md) | *Base32 encode/decode data and print to standard. This is part of "am-utils" suite.*..[ *read more* ](apps/base32.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/base32) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/base32) | -| | [***base64***](apps/base64.md) | *Base64 encode/decode data and print to standard. This is part of "am-utils" suite.*..[ *read more* ](apps/base64.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/base64) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/base64) | -| | [***basename***](apps/basename.md) | *Strip directory and suffix from filenames. This is part of "am-utils" suite.*..[ *read more* ](apps/basename.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basename) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basename) | -| | [***basenc***](apps/basenc.md) | *Encode and decode with multiple base encodings.. This is part of "am-utils" suite.*..[ *read more* ](apps/basenc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basenc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basenc) | -| | [***basilisk2***](apps/basilisk2.md) | *Classic Macintosh emulator BasiliskII.*..[ *read more* ](apps/basilisk2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basilisk2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basilisk2) | -| | [***basiliskii-enhanced***](apps/basiliskii-enhanced.md) | *Unofficial, classic Macintosh emulator BasiliskII.*..[ *read more* ](apps/basiliskii-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basiliskii-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basiliskii-enhanced) | -| | [***bastyon***](apps/bastyon.md) | *Decentralized social network based on the blockchain.*..[ *read more* ](apps/bastyon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bastyon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bastyon) | -| | [***bat-extras***](apps/bat-extras.md) | *Bash scripts that integrate bat with various command line tools.*..[ *read more* ](apps/bat-extras.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bat-extras) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bat-extras) | -| | [***bat***](apps/bat.md) | *A "cat" clone with wings.*..[ *read more* ](apps/bat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bat) | -| | [***batch-explorer***](apps/batch-explorer.md) | *A client tool to create/debug/monitor Azure Batch Apps.*..[ *read more* ](apps/batch-explorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/batch-explorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/batch-explorer) | -| | [***battop***](apps/battop.md) | *CLI, interactive batteries viewer.*..[ *read more* ](apps/battop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/battop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/battop) | -| | [***bauh***](apps/bauh.md) | *GUI for managing AppImage, Arch/AUR, DEBs, Flatpak, Snap and webapps.*..[ *read more* ](apps/bauh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bauh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bauh) | -| | [***bazecor***](apps/bazecor.md) | *Graphical configurator for Dygma Raise.*..[ *read more* ](apps/bazecor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bazecor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bazecor) | -| | [***bbg***](apps/bbg.md) | *A static blog generator based on Electron Technology.*..[ *read more* ](apps/bbg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bbg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bbg) | -| | [***bchat-desktop***](apps/bchat-desktop.md) | *About A decentralized cionfidential messaging app that runs on Beldex network.*..[ *read more* ](apps/bchat-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bchat-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bchat-desktop) | -| | [***bdash***](apps/bdash.md) | *A simple business intelligence application.*..[ *read more* ](apps/bdash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bdash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bdash) | -| | [***bearly***](apps/bearly.md) | *The world's best AI at your fingertips.*..[ *read more* ](apps/bearly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bearly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bearly) | -| | [***beatconnect-client***](apps/beatconnect-client.md) | *Beatconnect power for osu irc.*..[ *read more* ](apps/beatconnect-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beatconnect-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beatconnect-client) | -| | [***beatmapexporter***](apps/beatmapexporter.md) | *osu!lazer beatmap exporter utility. Allowing mass export of beatmaps from the new osu!lazer file storage back into .osz files.*..[ *read more* ](apps/beatmapexporter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beatmapexporter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beatmapexporter) | -| | [***beatsaber-mod-manager***](apps/beatsaber-mod-manager.md) | *Yet another mod installer for Beat Saber, heavily inspired by ModAssistant.*..[ *read more* ](apps/beatsaber-mod-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beatsaber-mod-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beatsaber-mod-manager) | -| | [***beaver-notes***](apps/beaver-notes.md) | *Build your knowledge one log at a time.*..[ *read more* ](apps/beaver-notes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beaver-notes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beaver-notes) | -| | [***beekeeper-studio***](apps/beekeeper-studio.md) | *SQL query editor and database UI.*..[ *read more* ](apps/beekeeper-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beekeeper-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beekeeper-studio) | -| | [***beeref***](apps/beeref.md) | *BeeRef Reference Image Viewer.*..[ *read more* ](apps/beeref.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beeref) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beeref) | -| | [***bemoji***](apps/bemoji.md) | *Emoji picker for bemenu/wofi/rofi/dmenu, remembers your favorites.*..[ *read more* ](apps/bemoji.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bemoji) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bemoji) | -| | [***bench-cli***](apps/bench-cli.md) | *CLI tool to benchmark commands, written in `Fortran`.*..[ *read more* ](apps/bench-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bench-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bench-cli) | -| | [***berserkerquake2***](apps/berserkerquake2.md) | *Berserker@Quake2 game engine, ported to SDL2 library.*..[ *read more* ](apps/berserkerquake2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/berserkerquake2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/berserkerquake2) | -| | [***better-osu-skills***](apps/better-osu-skills.md) | *Gets results from the osu! Using your own IRC credentials.*..[ *read more* ](apps/better-osu-skills.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/better-osu-skills) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/better-osu-skills) | -| | [***betterbird***](apps/betterbird.md) | *Unofficial, Betterbird is a fine-tuned version of Mozilla Thunderbird, a free and open-source email client.*..[ *read more* ](apps/betterbird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/betterbird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/betterbird) | -| | [***bettercrewlink***](apps/bettercrewlink.md) | *Free, open, Among Us proximity voice chat.*..[ *read more* ](apps/bettercrewlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bettercrewlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bettercrewlink) | -| | [***bettermediainfo-enhanced***](apps/bettermediainfo-enhanced.md) | *Unofficial AppImage of BetterMediaInfo.*..[ *read more* ](apps/bettermediainfo-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bettermediainfo-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bettermediainfo-enhanced) | -| | [***bettersis***](apps/bettersis.md) | *Modern shell for SIS.*..[ *read more* ](apps/bettersis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bettersis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bettersis) | -| | [***betterx***](apps/betterx.md) | *Enhance your X (formerly Twitter) experience with BetterX Desktop!*..[ *read more* ](apps/betterx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/betterx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/betterx) | -| | [***beurerscalemanager***](apps/beurerscalemanager.md) | *AppImage packaging project for BeurerScaleManager.*..[ *read more* ](apps/beurerscalemanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beurerscalemanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beurerscalemanager) | -| | [***beyond-all-reason***](apps/beyond-all-reason.md) | *3D Real-Time Strategy Total Annihilation Inspired, game.*..[ *read more* ](apps/beyond-all-reason.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beyond-all-reason) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beyond-all-reason) | -| | [***bezique***](apps/bezique.md) | *Plays bezique game against the AI.*..[ *read more* ](apps/bezique.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bezique) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bezique) | -| | [***bforartists***](apps/bforartists.md) | *3D modeling, animation, rendering and post-production.*..[ *read more* ](apps/bforartists.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bforartists) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bforartists) | -| | [***biblemultithelife***](apps/biblemultithelife.md) | *Bible multi languages, free, offline, no advertising.*..[ *read more* ](apps/biblemultithelife.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biblemultithelife) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biblemultithelife) | -| | [***biblemultithesonofman***](apps/biblemultithesonofman.md) | *Offline Bible for Terminal.*..[ *read more* ](apps/biblemultithesonofman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biblemultithesonofman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biblemultithesonofman) | -| | [***bibletime***](apps/bibletime.md) | *Unofficial, a Bible study application based on the Sword library and Qt toolkit.*..[ *read more* ](apps/bibletime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bibletime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bibletime) | -| | [***bidirectional***](apps/bidirectional.md) | *Write Arabic text on apps that don't support the bidirectional text.*..[ *read more* ](apps/bidirectional.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bidirectional) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bidirectional) | -| | [***bigpemu***](apps/bigpemu.md) | *Unofficial AppImage of BigPEmu.*..[ *read more* ](apps/bigpemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bigpemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bigpemu) | -| | [***bili-liveluckdraw***](apps/bili-liveluckdraw.md) | *A Bilibili live stream lottery tool that draws winners based on keywords retrieved from the chat comments. It is built using Electron + React + Vite.*..[ *read more* ](apps/bili-liveluckdraw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bili-liveluckdraw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bili-liveluckdraw) | -| | [***bilibili***](apps/bilibili.md) | *Bilibili official desktop client.*..[ *read more* ](apps/bilibili.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bilibili) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bilibili) | -| | [***bilibilivideodownload***](apps/bilibilivideodownload.md) | *Bilibili video downloader.*..[ *read more* ](apps/bilibilivideodownload.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bilibilivideodownload) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bilibilivideodownload) | -| | [***biliup-app***](apps/biliup-app.md) | *Bilibili uploader.*..[ *read more* ](apps/biliup-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biliup-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biliup-app) | -| | [***billard-gl***](apps/billard-gl.md) | *Unofficial. 3D billiards game, play a game of 8-ball or 9-ball.*..[ *read more* ](apps/billard-gl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/billard-gl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/billard-gl) | -| | [***billyfrontier***](apps/billyfrontier.md) | *Pangea Software’s Billy Frontier for modern systems.*..[ *read more* ](apps/billyfrontier.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/billyfrontier) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/billyfrontier) | -| | [***bin***](apps/bin.md) | *Effortless binary manager.*..[ *read more* ](apps/bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bin) | -| | [***binclock***](apps/binclock.md) | *Binary clock in terminal.*..[ *read more* ](apps/binclock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/binclock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/binclock) | -| | [***binfinder***](apps/binfinder.md) | *Find binary files not installed through package manager.*..[ *read more* ](apps/binfinder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/binfinder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/binfinder) | -| | [***bingada***](apps/bingada.md) | *Bingo application in GTKAda.*..[ *read more* ](apps/bingada.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bingada) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bingada) | -| | [***binglite***](apps/binglite.md) | *A lightweight new Bing (AI chat) desktop application based on Tauri.*..[ *read more* ](apps/binglite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/binglite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/binglite) | -| | [***bioanimation***](apps/bioanimation.md) | *CCNY Electrochemical Gradient Simulator.*..[ *read more* ](apps/bioanimation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bioanimation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bioanimation) | -| | [***biplanes-revival***](apps/biplanes-revival.md) | *An old cellphone arcade recreated for PC.*..[ *read more* ](apps/biplanes-revival.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biplanes-revival) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biplanes-revival) | -| | [***birds-kitchen***](apps/birds-kitchen.md) | *Recipe manager.*..[ *read more* ](apps/birds-kitchen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/birds-kitchen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/birds-kitchen) | -| | [***bitbox-wallet***](apps/bitbox-wallet.md) | *Cryptocurrency hardware wallet desktop app.*..[ *read more* ](apps/bitbox-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bitbox-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bitbox-wallet) | -| | [***bitshares***](apps/bitshares.md) | *Advanced wallet interface for the BitShares financial blockchain.*..[ *read more* ](apps/bitshares.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bitshares) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bitshares) | -| | [***bitwarden***](apps/bitwarden.md) | *Password manager for individuals, teams and business.*..[ *read more* ](apps/bitwarden.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bitwarden) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bitwarden) | -| | [***biying***](apps/biying.md) | *Biying Wallpaper for Linux.*..[ *read more* ](apps/biying.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biying) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biying) | -| | [***bk***](apps/bk.md) | *Terminal Epub reader.*..[ *read more* ](apps/bk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bk) | -| | [***black-chocobo***](apps/black-chocobo.md) | *FF7 Save Game Editor.*..[ *read more* ](apps/black-chocobo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/black-chocobo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/black-chocobo) | -| | [***blacknut***](apps/blacknut.md) | *Cloud gaming client.*..[ *read more* ](apps/blacknut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blacknut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blacknut) | -| | [***blank***](apps/blank.md) | *Blank is a minimalist, opinionated markdown editor made for writing.*..[ *read more* ](apps/blank.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blank) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blank) | -| | [***blastem***](apps/blastem.md) | *Clone of Mercurial Repo.*..[ *read more* ](apps/blastem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blastem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blastem) | -| | [***blender-alpha***](apps/blender-alpha.md) | *Very fast and versatile 3D modeller/renderer, Alpha.*..[ *read more* ](apps/blender-alpha.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender-alpha) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender-alpha) | -| | [***blender-beta***](apps/blender-beta.md) | *Very fast and versatile 3D modeller/renderer, Beta.*..[ *read more* ](apps/blender-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender-beta) | -| | [***blender-rc***](apps/blender-rc.md) | *Very fast and versatile 3D modeller/renderer, Release Candidate.*..[ *read more* ](apps/blender-rc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender-rc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender-rc) | -| | [***blender***](apps/blender.md) | *Very fast and versatile 3D modeller/renderer, Stable.*..[ *read more* ](apps/blender.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender) | -| | [***blensor***](apps/blensor.md) | *3D modeling, animation, rendering and post-production.*..[ *read more* ](apps/blensor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blensor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blensor) | -| | [***blimp***](apps/blimp.md) | *Customizable terminal UI for monitoring weather information, application status, network latency, and more.*..[ *read more* ](apps/blimp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blimp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blimp) | -| | [***blink***](apps/blink.md) | *GUI of live indexed grep search for source code.*..[ *read more* ](apps/blink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blink) | -| | [***blizzard-4***](apps/blizzard-4.md) | *Emulator & toolchain for the Blizzard 4 16-bit computer.*..[ *read more* ](apps/blizzard-4.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blizzard-4) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blizzard-4) | -| | [***blob-dl***](apps/blob-dl.md) | *Blob-dl is a yt-dlp CLI interface used to download video and audio files from YouTube.*..[ *read more* ](apps/blob-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blob-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blob-dl) | -| | [***blobdrop***](apps/blobdrop.md) | *Drag and drop files directly out of the terminal.*..[ *read more* ](apps/blobdrop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blobdrop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blobdrop) | -| | [***block-dx***](apps/block-dx.md) | *Exchange dApp built on top of the Blocknet Protocol.*..[ *read more* ](apps/block-dx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/block-dx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/block-dx) | -| | [***blockbench***](apps/blockbench.md) | *Editor for boxy models and pixel art textures like Minecraft.*..[ *read more* ](apps/blockbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blockbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blockbench) | -| | [***blockstream-green***](apps/blockstream-green.md) | *Bitcoin wallet compatible with Blockstream Jade.*..[ *read more* ](apps/blockstream-green.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blockstream-green) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blockstream-green) | -| | [***bloks***](apps/bloks.md) | *An electron-vue project.*..[ *read more* ](apps/bloks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bloks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bloks) | -| | [***bloomee***](apps/bloomee.md) | *Music app designed to bring you ad-free tunes from various sources.*..[ *read more* ](apps/bloomee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bloomee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bloomee) | -| | [***bloomrpc***](apps/bloomrpc.md) | *GRPC GUI client.*..[ *read more* ](apps/bloomrpc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bloomrpc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bloomrpc) | -| | [***blowfish***](apps/blowfish.md) | *Display your total Ocean Token balances.*..[ *read more* ](apps/blowfish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blowfish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blowfish) | -| | [***blueglow***](apps/blueglow.md) | *A simple system tray application to watch github notifications.*..[ *read more* ](apps/blueglow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blueglow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blueglow) | -| | [***bluetuith***](apps/bluetuith.md) | *A TUI bluetooth manager for Linux.*..[ *read more* ](apps/bluetuith.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bluetuith) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bluetuith) | -| | [***bm64recomp-enhanced***](apps/bm64recomp-enhanced.md) | *Unofficial AppImage of Bomberman 64 Recompiled.*..[ *read more* ](apps/bm64recomp-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bm64recomp-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bm64recomp-enhanced) | -| | [***bmherorecomp-enhanced***](apps/bmherorecomp-enhanced.md) | *Unofficial AppImage of Bomberman Hero Recompiled.*..[ *read more* ](apps/bmherorecomp-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bmherorecomp-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bmherorecomp-enhanced) | -| | [***boardgamestar***](apps/boardgamestar.md) | *A platform for playing digital boardgames.*..[ *read more* ](apps/boardgamestar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boardgamestar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boardgamestar) | -| | [***bodacious***](apps/bodacious.md) | *A bodacious music player.*..[ *read more* ](apps/bodacious.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bodacious) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bodacious) | -| | [***bodhi***](apps/bodhi.md) | *Bodhi Prediction Market app.*..[ *read more* ](apps/bodhi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bodhi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bodhi) | -| | [***boilr***](apps/boilr.md) | *Synchronize games from other platforms into your Steam library.*..[ *read more* ](apps/boilr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boilr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boilr) | -| | [***bomber***](apps/kdegames.md) | *Arcade spaceship game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***bongocat***](apps/bongocat.md) | *A chinese cute interactive desktop pet application that makes your desktop full of fun!*..[ *read more* ](apps/bongocat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bongocat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bongocat) | -| | [***book-manager***](apps/book-manager.md) | *Simple desktop app to manage personal library.*..[ *read more* ](apps/book-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/book-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/book-manager) | -| | [***bookdb***](apps/bookdb.md) | *A book catalog database for personal collections. Can import data from Readerware 4.*..[ *read more* ](apps/bookdb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bookdb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bookdb) | -| | [***bookmarks-manager***](apps/bookmarks-manager.md) | *Edit bookmarks, check url.*..[ *read more* ](apps/bookmarks-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bookmarks-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bookmarks-manager) | -| | [***boost-note***](apps/boost-note.md) | *Document driven project management tool to speedup remote DevOps.*..[ *read more* ](apps/boost-note.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boost-note) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boost-note) | -| | [***boostchanger***](apps/boostchanger.md) | *Control CPU turbo boost and the settings of the cpu speed.*..[ *read more* ](apps/boostchanger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boostchanger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boostchanger) | -| | [***botclient***](apps/botclient.md) | *A discord botclient built with Electron and React.*..[ *read more* ](apps/botclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/botclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/botclient) | -| | [***botframework-emulator***](apps/botframework-emulator.md) | *Test and debug chat bots built with Bot Framework SDK.*..[ *read more* ](apps/botframework-emulator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/botframework-emulator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/botframework-emulator) | -| | [***bottlebats***](apps/bottlebats.md) | *Client for the 2018 edition of the BottleBats AI competition.*..[ *read more* ](apps/bottlebats.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottlebats) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottlebats) | -| | [***bottles***](apps/bottles.md) | *Unofficial. Manage wine prefixes and run Windows software & games in a new way.*..[ *read more* ](apps/bottles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottles) | -| | [***bottom***](apps/bottom.md) | *Yet another cross-platform graphical process/system monitor.*..[ *read more* ](apps/bottom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottom) | -| | [***bovo***](apps/kdegames.md) | *Five in a row game from. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***boxxy***](apps/boxxy.md) | *Put bad Linux applications in a box with only their files.*..[ *read more* ](apps/boxxy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boxxy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boxxy) | -| | [***brainverse***](apps/brainverse.md) | *Electronic Lab Notebook for Reproducible Neuro Imaging Research.*..[ *read more* ](apps/brainverse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brainverse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brainverse) | -| | [***brainwaves***](apps/brainwaves.md) | *EEG Desktop Application.*..[ *read more* ](apps/brainwaves.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brainwaves) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brainwaves) | -| | [***brave-beta***](apps/brave-beta.md) | *Unofficial, a privacy oriented Web Browser based on Chromium, this is the "beta" release.*..[ *read more* ](apps/brave-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave-beta) | -| | [***brave-nightly***](apps/brave-nightly.md) | *Unofficial, a privacy oriented Web Browser based on Chromium, this is the "nightly" release.*..[ *read more* ](apps/brave-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave-nightly) | -| | [***brave-origin***](apps/brave-origin.md) | *Unofficial, stripped down version of Brave Browser with no extra features.*..[ *read more* ](apps/brave-origin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave-origin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave-origin) | -| | [***brave***](apps/brave.md) | *Unofficial, a privacy oriented Web Browser based on Chromium, this is the "stable" release.*..[ *read more* ](apps/brave.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave) | -| | [***bread***](apps/bread.md) | *Install, update and remove AppImage from GitHub using your CLI.*..[ *read more* ](apps/bread.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bread) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bread) | -| | [***breaktimer***](apps/breaktimer.md) | *Save yourself from RSI and eye-strain.*..[ *read more* ](apps/breaktimer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/breaktimer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/breaktimer) | -| | [***briar***](apps/briar.md) | *Briar Desktop. Censorship-resistant peer-to-peer messaging that bypasses centralized servers. Connect via Bluetooth, Wi-Fi or Tor, with privacy built-in.*..[ *read more* ](apps/briar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/briar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/briar) | -| | [***brickstore***](apps/brickstore.md) | *An offline BrickLink inventory management tool.*..[ *read more* ](apps/brickstore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brickstore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brickstore) | -| | [***bridge***](apps/bridge.md) | *The perfect Bridge between Megascans and your favorite tools.*..[ *read more* ](apps/bridge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bridge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bridge) | -| | [***brisk***](apps/brisk.md) | *Ultra-fast, moden download manager for desktop.*..[ *read more* ](apps/brisk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brisk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brisk) | -| | [***brisqi***](apps/brisqi.md) | *Offline-first Personal Kanban app.*..[ *read more* ](apps/brisqi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brisqi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brisqi) | -| | [***browservice***](apps/browservice.md) | *Browse the modern web on historical browsers.*..[ *read more* ](apps/browservice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/browservice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/browservice) | -| | [***brs-emu-app***](apps/brs-emu-app.md) | *BrightScript Emulator, runs on browsers and Electron apps.*..[ *read more* ](apps/brs-emu-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brs-emu-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brs-emu-app) | -| | [***bruno***](apps/bruno.md) | *An Opensource API Collection Collaboration Suite.*..[ *read more* ](apps/bruno.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bruno) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bruno) | -| | [***brutespray***](apps/brutespray.md) | *Bruteforcing from various scanner output. Automatically attempts default creds on found services.*..[ *read more* ](apps/brutespray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brutespray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brutespray) | -| | [***bscanfftwebcam***](apps/bscanfftwebcam.md) | *FDOCT tool.*..[ *read more* ](apps/bscanfftwebcam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bscanfftwebcam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bscanfftwebcam) | -| | [***bsky***](apps/bsky.md) | *A desktop app of bsky.app.*..[ *read more* ](apps/bsky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bsky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bsky) | -| | [***btop***](apps/btop.md) | *A command line utility to monitor system resources, like Htop.*..[ *read more* ](apps/btop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/btop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/btop) | -| | [***bts-ce-lite***](apps/bts-ce-lite.md) | *Telecommunication network management application.*..[ *read more* ](apps/bts-ce-lite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bts-ce-lite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bts-ce-lite) | -| | [***buckets***](apps/buckets.md) | *Budgeting fast, simple and private.*..[ *read more* ](apps/buckets.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/buckets) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/buckets) | -| | [***bugdom***](apps/bugdom.md) | *Pangea Software's Bugdom game.*..[ *read more* ](apps/bugdom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bugdom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bugdom) | -| | [***bugdom2***](apps/bugdom2.md) | *Pangea Software’s Bugdom 2 for modern systems.*..[ *read more* ](apps/bugdom2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bugdom2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bugdom2) | -| | [***bulkreviewer***](apps/bulkreviewer.md) | *Identify, review, and remove private information.*..[ *read more* ](apps/bulkreviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bulkreviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bulkreviewer) | -| | [***bulkurlopener***](apps/bulkurlopener.md) | *Desktop version of the Bulk URL Opener extension.*..[ *read more* ](apps/bulkurlopener.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bulkurlopener) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bulkurlopener) | -| | [***bulky***](apps/bulky.md) | *Unofficial, an XApp used to rename multiple files and directories.*..[ *read more* ](apps/bulky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bulky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bulky) | -| | [***bunnyfetch***](apps/bunnyfetch.md) | *A small and fast tool for getting info about your system.*..[ *read more* ](apps/bunnyfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bunnyfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bunnyfetch) | -| | [***bunqdesktop***](apps/bunqdesktop.md) | *A desktop implementation for the bunq API.*..[ *read more* ](apps/bunqdesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bunqdesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bunqdesktop) | -| | [***burning-series***](apps/burning-series.md) | *Watch any series from Burning Series, Unofficial client.*..[ *read more* ](apps/burning-series.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/burning-series) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/burning-series) | -| | [***busybox***](apps/busybox.md) | *AppImage of BusyBox, a tool that combines stripped-down versions of many common UNIX utilities into a single, small executable.*..[ *read more* ](apps/busybox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/busybox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/busybox) | -| | [***buttercup***](apps/buttercup.md) | *Free and Open Source password vault.*..[ *read more* ](apps/buttercup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/buttercup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/buttercup) | -| | [***bypass-cors***](apps/bypass-cors.md) | *Unlock browser’s full potential!*..[ *read more* ](apps/bypass-cors.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bypass-cors) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bypass-cors) | -| | [***bytespeichertrayicon***](apps/bytespeichertrayicon.md) | *Bytespeicher Status App.*..[ *read more* ](apps/bytespeichertrayicon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bytespeichertrayicon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bytespeichertrayicon) | -| | [***bzip2***](apps/bzip2.md) | *A high-quality data compression program. This is part of "am-utils" suite.*..[ *read more* ](apps/bzip2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bzip2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bzip2) | -| | [***c++filt***](apps/c++filt.md) | *And Java symbols. This is part of "am-utils" suite.*..[ *read more* ](apps/c++filt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/c++filt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/c++filt) | -| | [***c-evo***](apps/c-evo.md) | *C-evo is an empire building game based on Civilization II, but with a different focus. It aims to be a pure game with all players playing to win.*..[ *read more* ](apps/c-evo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/c-evo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/c-evo) | -| | [***cabal-desktop***](apps/cabal-desktop.md) | *Cabal p2p offline-first desktop application.*..[ *read more* ](apps/cabal-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cabal-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cabal-desktop) | -| | [***cables-gl***](apps/cables-gl.md) | *A tool for creating beautiful interactive content. With an easy to navigate interface and real time visuals.*..[ *read more* ](apps/cables-gl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cables-gl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cables-gl) | -| | [***cacher***](apps/cacher.md) | *Cacher is a code snippet library for professional developers.*..[ *read more* ](apps/cacher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cacher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cacher) | -| | [***cacoco***](apps/cacoco.md) | *A (slightly, but aspirationally) finished SBARDEF editor. Mostly.*..[ *read more* ](apps/cacoco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cacoco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cacoco) | -| | [***cadassistant***](apps/cadassistant.md) | *Offline 3D CAD viewer and converter, free for personal and commercial use.*..[ *read more* ](apps/cadassistant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cadassistant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cadassistant) | -| | [***cadmus***](apps/cadmus.md) | *Pulse Audio real-time noise suppression plugin.*..[ *read more* ](apps/cadmus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cadmus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cadmus) | -| | [***caesium***](apps/caesium.md) | *Image compression software that helps you store, send and share digital pictures, supporting JPG, PNG, WebP and TIFF formats.*..[ *read more* ](apps/caesium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/caesium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/caesium) | -| | [***cake-wallet***](apps/cake-wallet.md) | *Easily and safely store, send, receive, and exchange your cryptocurrency.*..[ *read more* ](apps/cake-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cake-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cake-wallet) | -| | [***calibre-beta***](apps/calibre-beta.md) | *Unofficial. The one stop solution to all your e-book needs. Beta version.*..[ *read more* ](apps/calibre-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calibre-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calibre-beta) | -| | [***calibre-preview***](apps/calibre-preview.md) | *Unofficial. The one stop solution to all your e-book needs. Preview version.*..[ *read more* ](apps/calibre-preview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calibre-preview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calibre-preview) | -| | [***calibre***](apps/calibre.md) | *Unofficial. The one stop solution to all your e-book needs.*..[ *read more* ](apps/calibre.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calibre) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calibre) | -| | [***calligra***](apps/calligra.md) | *Calligra Suite is an office and graphic art suite by KDE. It contains applications for word processing, spreadsheets, presentation, vector graphics, and editing databases.*..[ *read more* ](apps/calligra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calligra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calligra) | -| | [***calm-circles***](apps/calm-circles.md) | *Calm down and draw something, in Lisp.*..[ *read more* ](apps/calm-circles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calm-circles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calm-circles) | -| | [***calm-fan***](apps/calm-fan.md) | *Calm down and draw something, in Lisp.*..[ *read more* ](apps/calm-fan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calm-fan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calm-fan) | -| | [***calm-meditator***](apps/calm-meditator.md) | *Calm down and draw something, in Lisp.*..[ *read more* ](apps/calm-meditator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calm-meditator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calm-meditator) | -| | [***calm-mondrian***](apps/calm-mondrian.md) | *Calm down and draw something, in Lisp.*..[ *read more* ](apps/calm-mondrian.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calm-mondrian) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calm-mondrian) | -| | [***camelot***](apps/camelot.md) | *Camelot is cross-platform file manager written in C.*..[ *read more* ](apps/camelot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/camelot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/camelot) | -| | [***candycrisis***](apps/candycrisis.md) | *Candy Crisis source port for modern operating systems.*..[ *read more* ](apps/candycrisis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/candycrisis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/candycrisis) | -| | [***cannonball***](apps/cannonball.md) | *Unofficial, an Enhanced OutRun Engine.*..[ *read more* ](apps/cannonball.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cannonball) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cannonball) | -| | [***caprine***](apps/caprine.md) | *Unofficial, elegant privacy focused Facebook Messenger app.*..[ *read more* ](apps/caprine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/caprine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/caprine) | -| | [***carbonyl***](apps/carbonyl.md) | *Chromium running inside your terminal.*..[ *read more* ](apps/carbonyl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/carbonyl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/carbonyl) | -| | [***cardo***](apps/cardo.md) | *Podcast client.*..[ *read more* ](apps/cardo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cardo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cardo) | -| | [***cargo***](apps/cargo.md) | *Converts your crate into an AppImage.*..[ *read more* ](apps/cargo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cargo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cargo) | -| | [***carpenters***](apps/carpenters.md) | *Digital preservation ingest utility.*..[ *read more* ](apps/carpenters.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/carpenters) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/carpenters) | -| | [***carta***](apps/carta.md) | *Cube Analysis and Rendering Tool for Astronomy.*..[ *read more* ](apps/carta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/carta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/carta) | -| | [***cartridges***](apps/cartridges.md) | *Unofficial. Game launcher, which helps you visualize your game collection and easily launch games.*..[ *read more* ](apps/cartridges.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cartridges) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cartridges) | -| | [***cashonize***](apps/cashonize.md) | *A cross-platform Bitcoin Cash Wallet.*..[ *read more* ](apps/cashonize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cashonize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cashonize) | -| | [***cask***](apps/cask.md) | *A universal, distributed binary file manager.*..[ *read more* ](apps/cask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cask) | -| | [***casm***](apps/casm.md) | *Corinthian Abstract State Machine, CASM.*..[ *read more* ](apps/casm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/casm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/casm) | -| | [***casterr***](apps/casterr.md) | *Screen recorder, easing recording and clipping in-game.*..[ *read more* ](apps/casterr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/casterr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/casterr) | -| | [***castersoundboard***](apps/castersoundboard.md) | *Soundboard for hot-keying and playing back sounds.*..[ *read more* ](apps/castersoundboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/castersoundboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/castersoundboard) | -| | [***cat***](apps/cat.md) | *Concatenate files and print on the standard output. This is part of "am-utils" suite.*..[ *read more* ](apps/cat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cat) | -| | [***catacombgl***](apps/catacombgl.md) | *Unofficial, a source port with OpenGL graphics for Catacomb 3D (1991), The Catacomb Abyss (1992), The Catacomb Armageddon (1992) and The Catacomb Apocalypse (1993).*..[ *read more* ](apps/catacombgl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catacombgl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catacombgl) | -| | [***catalyst***](apps/catalyst.md) | *Catalyst web browser.*..[ *read more* ](apps/catalyst.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catalyst) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catalyst) | -| | [***catapult***](apps/catapult.md) | *A cross-platform launcher for Cataclysm DDA and BN.*..[ *read more* ](apps/catapult.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catapult) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catapult) | -| | [***catcher***](apps/catcher.md) | *Peer-testing of software projects.*..[ *read more* ](apps/catcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catcher) | -| | [***catfish***](apps/catfish.md) | *Unofficial AppImage of catfish.*..[ *read more* ](apps/catfish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catfish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catfish) | -| | [***cavoke***](apps/cavoke.md) | *Platform to create/host multiplayer turn-based board games.*..[ *read more* ](apps/cavoke.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cavoke) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cavoke) | -| | [***cbetar2***](apps/cbetar2.md) | *ePub viewer supporting fetching and displaying HTML as ePub.*..[ *read more* ](apps/cbetar2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cbetar2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cbetar2) | -| | [***cbird***](apps/cbird.md) | *Command-line program for Content-Based Image Retrieval of images and videos. Includes tools for general search and de-duplication.*..[ *read more* ](apps/cbird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cbird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cbird) | -| | [***cccp***](apps/cccp.md) | *Cortex Command, a community-driven effort to continue the development of Cortex Command.*..[ *read more* ](apps/cccp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cccp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cccp) | -| | [***cdogs-sdl***](apps/cdogs-sdl.md) | *Unofficial, classic overhead run-and-gun game.*..[ *read more* ](apps/cdogs-sdl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cdogs-sdl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cdogs-sdl) | -| | [***celeste64***](apps/celeste64.md) | *A game made by the Celeste developers.*..[ *read more* ](apps/celeste64.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celeste64) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celeste64) | -| | [***celestia-dev***](apps/celestia-dev.md) | *Real time 3D space simulator, developer edition.*..[ *read more* ](apps/celestia-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celestia-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celestia-dev) | -| | [***celestia-enanched***](apps/celestia-enanched.md) | *Unofficial. Real-time 3D space simulator with extra detailed maps.*..[ *read more* ](apps/celestia-enanched.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celestia-enanched) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celestia-enanched) | -| | [***celestia***](apps/celestia.md) | *Real time 3D space simulator.*..[ *read more* ](apps/celestia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celestia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celestia) | -| | [***celoterminal-bin***](apps/celoterminal-bin.md) | *Celo Terminal, AppImage version.*..[ *read more* ](apps/celoterminal-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celoterminal-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celoterminal-bin) | -| | [***cemu-enhanced***](apps/cemu-enhanced.md) | *Unofficial AppImage of Cemu, Nintendo Wii U emulator that is able to run most Wii U games, which is able to work on any linux distro.*..[ *read more* ](apps/cemu-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cemu-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cemu-enhanced) | -| | [***cemu***](apps/cemu.md) | *A Nintendo Wii U emulator that is able to run most Wii U games.*..[ *read more* ](apps/cemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cemu) | -| | [***cerebral-debugger***](apps/cerebral-debugger.md) | *Cerebral Debugger.*..[ *read more* ](apps/cerebral-debugger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cerebral-debugger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cerebral-debugger) | -| | [***cerebro***](apps/cerebro.md) | *Open-source productivity booster with a brain.*..[ *read more* ](apps/cerebro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cerebro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cerebro) | -| | [***chain-desktop-wallet***](apps/chain-desktop-wallet.md) | *Crypto.com DeFi Desktop Wallet.*..[ *read more* ](apps/chain-desktop-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chain-desktop-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chain-desktop-wallet) | -| | [***chainx-signer***](apps/chainx-signer.md) | *Manage ChainX account, sign and sign transactions.*..[ *read more* ](apps/chainx-signer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chainx-signer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chainx-signer) | -| | [***chat-gpt***](apps/chat-gpt.md) | *Unofficial. ChatGPT Desktop Application.*..[ *read more* ](apps/chat-gpt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chat-gpt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chat-gpt) | -| | [***chatall***](apps/chatall.md) | *Concurrently chat with ChatGPT, Bing Chat, bard, Alpaca and more.*..[ *read more* ](apps/chatall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatall) | -| | [***chatbox***](apps/chatbox.md) | *Chatbox is a desktop app for GPT-4 / GPT-3.5, OpenAI API.*..[ *read more* ](apps/chatbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatbox) | -| | [***chatgpt-next-web***](apps/chatgpt-next-web.md) | *A cross-platform ChatGPT/Gemini UI.*..[ *read more* ](apps/chatgpt-next-web.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatgpt-next-web) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatgpt-next-web) | -| | [***chatpad-ai***](apps/chatpad-ai.md) | *Not just another ChatGPT user-interface.*..[ *read more* ](apps/chatpad-ai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatpad-ai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatpad-ai) | -| | [***chatterino2-nightly***](apps/chatterino2-nightly.md) | *Second installment of the Twitch chat client.*..[ *read more* ](apps/chatterino2-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatterino2-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatterino2-nightly) | -| | [***chatterino2***](apps/chatterino2.md) | *Second installment of the Twitch chat client.*..[ *read more* ](apps/chatterino2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatterino2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatterino2) | -| | [***chcon***](apps/chcon.md) | *Security context. This is part of "am-utils" suite.*..[ *read more* ](apps/chcon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chcon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chcon) | -| | [***cheat***](apps/cheat.md) | *Create and view interactive cheatsheets on the command-line.*..[ *read more* ](apps/cheat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cheat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cheat) | -| | [***cheatbreaker***](apps/cheatbreaker.md) | *The free FPS boosting modpack for Minecraft 1.7 & 1.8.*..[ *read more* ](apps/cheatbreaker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cheatbreaker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cheatbreaker) | -| | [***checkra1n***](apps/checkra1n.md) | *Jailbreak for iPhone 5s through iPhone X, iOS 12.0 and up*..[ *read more* ](apps/checkra1n.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/checkra1n) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/checkra1n) | -| | [***chemcanvas***](apps/chemcanvas.md) | *A very intuitive 2D chemical drawing tool.*..[ *read more* ](apps/chemcanvas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chemcanvas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chemcanvas) | -| | [***cherry-studio***](apps/cherry-studio.md) | *Agentic AI desktop with autonomous coding, intelligent automation, and unified access to frontier LLMs.*..[ *read more* ](apps/cherry-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cherry-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cherry-studio) | -| | [***cherrytree***](apps/cherrytree.md) | *A hierarchical note taking application.*..[ *read more* ](apps/cherrytree.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cherrytree) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cherrytree) | -| | [***chess-tui***](apps/chess-tui.md) | *Play chess from your terminal.*..[ *read more* ](apps/chess-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chess-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chess-tui) | -| | [***chessmd***](apps/chessmd.md) | *Open source chess training software. Play against bots, analyze with engines, explore chess openings, and more.*..[ *read more* ](apps/chessmd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chessmd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chessmd) | -| | [***chezmoi***](apps/chezmoi.md) | *Manage your dotfiles across multiple diverse machines, securely.*..[ *read more* ](apps/chezmoi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chezmoi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chezmoi) | -| | [***chgrp***](apps/chgrp.md) | *Change group ownership. This is part of "am-utils" suite.*..[ *read more* ](apps/chgrp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chgrp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chgrp) | -| | [***chimeradesk-kvm***](apps/chimeradesk-kvm.md) | *Simple, fast and flexible DIY Remote Desktop software.*..[ *read more* ](apps/chimeradesk-kvm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chimeradesk-kvm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chimeradesk-kvm) | -| | [***chimeradesk***](apps/chimeradesk.md) | *Simple, fast and flexible DIY Remote Desktop software.*..[ *read more* ](apps/chimeradesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chimeradesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chimeradesk) | -| | [***chmod***](apps/chmod.md) | *Change file mode bits. This is part of "am-utils" suite.*..[ *read more* ](apps/chmod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chmod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chmod) | -| | [***chown***](apps/chown.md) | *Change file owner and group. This is part of "am-utils" suite.*..[ *read more* ](apps/chown.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chown) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chown) | -| | [***chromium-beta***](apps/chromium-beta.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, beta edition.*..[ *read more* ](apps/chromium-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-beta) | -| | [***chromium-bsu***](apps/chromium-bsu.md) | *Unofficial. Fast paced arcade style scrolling space shooter, game.*..[ *read more* ](apps/chromium-bsu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-bsu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-bsu) | -| | [***chromium-edge***](apps/chromium-edge.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, edge edition.*..[ *read more* ](apps/chromium-edge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-edge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-edge) | -| | [***chromium-rc***](apps/chromium-rc.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, release candidate.*..[ *read more* ](apps/chromium-rc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-rc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-rc) | -| | [***chromium***](apps/chromium.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, Edge and Brave, stable.*..[ *read more* ](apps/chromium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium) | -| | [***chroot***](apps/chroot.md) | *Run command or interactive shell with special root. This is part of "am-utils" suite.*..[ *read more* ](apps/chroot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chroot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chroot) | -| | [***chrysalis-bin***](apps/chrysalis-bin.md) | *Graphical configurator for Kaleidoscope-powered keyboards.*..[ *read more* ](apps/chrysalis-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chrysalis-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chrysalis-bin) | -| | [***ciaa-suite***](apps/ciaa-suite.md) | *Makefile based IDE for embedded systems.*..[ *read more* ](apps/ciaa-suite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ciaa-suite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ciaa-suite) | -| | [***cicada***](apps/cicada.md) | *An old-school bash-like Unix shell written in Rust.*..[ *read more* ](apps/cicada.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cicada) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cicada) | -| | [***cine***](apps/cine.md) | *Unofficial AppImage of Cine.*..[ *read more* ](apps/cine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cine) | -| | [***cinelerra***](apps/cinelerra.md) | *CINELERRA-GG is a software program NLE, Non-Linear Editor, that provides a way to edit, record, and play audio or video media. It can also be used to transcode media from one format to another or to correct and retouch photos.*..[ *read more* ](apps/cinelerra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cinelerra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cinelerra) | -| | [***cinny***](apps/cinny.md) | *Yet another matrix client for desktop.*..[ *read more* ](apps/cinny.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cinny) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cinny) | -| | [***circle-z***](apps/circle-z.md) | *A chat client for online math courses.*..[ *read more* ](apps/circle-z.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/circle-z) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/circle-z) | -| | [***circuitblocks***](apps/circuitblocks.md) | *Helps newbies get into embedded programming.*..[ *read more* ](apps/circuitblocks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/circuitblocks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/circuitblocks) | -| | [***city-hub***](apps/city-hub.md) | *Hub into everything on City Chain/Smart City Platform.*..[ *read more* ](apps/city-hub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/city-hub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/city-hub) | -| | [***ciyue***](apps/ciyue.md) | *A simple mdict dictionary.*..[ *read more* ](apps/ciyue.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ciyue) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ciyue) | -| | [***cksum***](apps/cksum.md) | *Compute and verify file checksums. This is part of "am-utils" suite.*..[ *read more* ](apps/cksum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cksum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cksum) | -| | [***clagrange***](apps/clagrange.md) | *Lagrange is a cross-platform client for browsing Geminispace (CLI Version).*..[ *read more* ](apps/clagrange.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clagrange) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clagrange) | -| | [***clamtk***](apps/clamtk.md) | *An easy to use, light-weight, on-demand virus scanner for Linux systems*..[ *read more* ](apps/clamtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clamtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clamtk) | -| | [***clamui***](apps/clamui.md) | *ClamAV Desktop application (GUI).*..[ *read more* ](apps/clamui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clamui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clamui) | -| | [***clapper***](apps/clapper.md) | *Unofficial. A modern media player designed for simplicity and ease of use.*..[ *read more* ](apps/clapper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clapper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clapper) | -| | [***clash-nyanpasu***](apps/clash-nyanpasu.md) | *A Clash GUI based on tauri.*..[ *read more* ](apps/clash-nyanpasu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clash-nyanpasu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clash-nyanpasu) | -| | [***clash-verge***](apps/clash-verge.md) | *A multiplatform Clash GUI based on tauri.*..[ *read more* ](apps/clash-verge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clash-verge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clash-verge) | -| | [***classicimageviewer***](apps/classicimageviewer.md) | *A simple image viewer with some editing features.*..[ *read more* ](apps/classicimageviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/classicimageviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/classicimageviewer) | -| | [***classicube***](apps/classicube.md) | *Unofficial, Custom Minecraft Classic / ClassiCube client written in C from scratch*..[ *read more* ](apps/classicube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/classicube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/classicube) | -| | [***classipod***](apps/classipod.md) | *A local music player app designed to capture the nostalgic essence of the iconic iPod Classic.*..[ *read more* ](apps/classipod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/classipod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/classipod) | -| | [***claude-code***](apps/claude-code.md) | *Unofficial AppImage of claude-code.*..[ *read more* ](apps/claude-code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/claude-code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/claude-code) | -| | [***claude-desktop***](apps/claude-desktop.md) | *Unofficial, Claude is a next generation AI assistant built by Anthropic and trained to be safe, accurate, and secure to help you do your best work.*..[ *read more* ](apps/claude-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/claude-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/claude-desktop) | -| | [***clear***](apps/clear.md) | *Clear the terminal screen. This is part of "am-utils" suite.*..[ *read more* ](apps/clear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clear) | -| | [***cleepdesktop***](apps/cleepdesktop.md) | *Desktop application to manage your Cleep devices.*..[ *read more* ](apps/cleepdesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cleepdesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cleepdesktop) | -| | [***clementine***](apps/clementine.md) | *Unofficial AppImage of the Clementine music player.*..[ *read more* ](apps/clementine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clementine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clementine) | -| | [***clementineremote***](apps/clementineremote.md) | *Remote for Clementine Music Player.*..[ *read more* ](apps/clementineremote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clementineremote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clementineremote) | -| | [***clifm***](apps/clifm.md) | *The shell-like, command line terminal file manager simple, fast, extensible, and lightweight as hell.*..[ *read more* ](apps/clifm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clifm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clifm) | -| | [***cliniface***](apps/cliniface.md) | *3D Facial Image Visualisation and Analysis.*..[ *read more* ](apps/cliniface.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cliniface) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cliniface) | -| | [***clipgrab***](apps/clipgrab.md) | *Download and Convert Online Videos.*..[ *read more* ](apps/clipgrab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clipgrab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clipgrab) | -| | [***clippy***](apps/clippy.md) | *Clipboard History.*..[ *read more* ](apps/clippy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clippy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clippy) | -| | [***clipr***](apps/clipr.md) | *The clipboard that syncs.*..[ *read more* ](apps/clipr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clipr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clipr) | -| | [***clipse***](apps/clipse.md) | *Configurable TUI clipboard manager for Unix.*..[ *read more* ](apps/clipse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clipse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clipse) | -| | [***clk***](apps/clk.md) | *Unofficial, a latency hating emulator for 8 and 16 bit platforms.*..[ *read more* ](apps/clk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clk) | -| | [***cloud-browser***](apps/cloud-browser.md) | *Access to files located in various cloud services.*..[ *read more* ](apps/cloud-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cloud-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cloud-browser) | -| | [***clownmaped***](apps/clownmaped.md) | *Sonic the Hedgehog sprite editor, clone of Xenowhirl's SonMapEd.*..[ *read more* ](apps/clownmaped.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clownmaped) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clownmaped) | -| | [***clownmdemu-enhanced***](apps/clownmdemu-enhanced.md) | *Unofficial, reference standalone frontend for clownmdemu.*..[ *read more* ](apps/clownmdemu-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clownmdemu-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clownmdemu-enhanced) | -| | [***clownmdemu***](apps/clownmdemu.md) | *Reference standalone frontend for clownmdemu.*..[ *read more* ](apps/clownmdemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clownmdemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clownmdemu) | -| | [***cmux***](apps/cmux.md) | *Cmux/ManaflowX is an X feed for coding agents that lets you run + compare Claude Code, Codex CLI, Amp, Gemini CLI, Cursor CLI, Opencode, and other coding agent CLIs in parallel across multiple tasks.*..[ *read more* ](apps/cmux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cmux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cmux) | -| | [***cncjs***](apps/cncjs.md) | *CNC Milling Controller.*..[ *read more* ](apps/cncjs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cncjs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cncjs) | -| | [***cncra2yr***](apps/cncra2yr.md) | *C&C Red Alert 2, a real-time strategy game by Westwood Pacific.*..[ *read more* ](apps/cncra2yr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cncra2yr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cncra2yr) | -| | [***coal-launcher***](apps/coal-launcher.md) | *A client to view and play games from the AB Coal website.*..[ *read more* ](apps/coal-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coal-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coal-launcher) | -| | [***code-expert-sync***](apps/code-expert-sync.md) | *Allows syncing of Code Expert projects to a local file system.*..[ *read more* ](apps/code-expert-sync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code-expert-sync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code-expert-sync) | -| | [***code-notes***](apps/code-notes.md) | *A simple code snippet amp built with Electron.*..[ *read more* ](apps/code-notes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code-notes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code-notes) | -| | [***code-radio***](apps/code-radio.md) | *A command line music radio client for coderadio.freecodecamp.org, written in Rust.*..[ *read more* ](apps/code-radio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code-radio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code-radio) | -| | [***code***](apps/code.md) | *Visual Studio, VSCode, Original Editor to build/debug web/cloud apps.*..[ *read more* ](apps/code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code) | -| | [***codebook-lsp***](apps/codebook-lsp.md) | *Codebook, code-aware spell checker with language server implementation.*..[ *read more* ](apps/codebook-lsp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/codebook-lsp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/codebook-lsp) | -| | [***coinstac***](apps/coinstac.md) | *Collaborative Informatics and Neuroimaging Suite Toolkit.*..[ *read more* ](apps/coinstac.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coinstac) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coinstac) | -| | [***col***](apps/col.md) | *Line feeds from input. This is part of "am-utils" suite.*..[ *read more* ](apps/col.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/col) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/col) | -| | [***colcrt***](apps/colcrt.md) | *Output for CRT previewing. This is part of "am-utils" suite.*..[ *read more* ](apps/colcrt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colcrt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colcrt) | -| | [***collaboraoffice***](apps/collaboraoffice.md) | *Unofficial, a collaborative online office suite based on LibreOffice technology.*..[ *read more* ](apps/collaboraoffice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/collaboraoffice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/collaboraoffice) | -| | [***collision***](apps/collision.md) | *Unofficial. Verify the checksum/hash validity of files.*..[ *read more* ](apps/collision.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/collision) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/collision) | -| | [***colon***](apps/colon.md) | *A flexible text editor.*..[ *read more* ](apps/colon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colon) | -| | [***colorgenerator***](apps/colorgenerator.md) | *Generates color palettes similar to ColorBrewer.*..[ *read more* ](apps/colorgenerator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colorgenerator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colorgenerator) | -| | [***colorpicker***](apps/colorpicker.md) | *Electron app that can show colors with hex/rgb.*..[ *read more* ](apps/colorpicker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colorpicker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colorpicker) | -| | [***colorstatic-bash***](apps/colorstatic-bash.md) | *CLI to generate a random colorful "Static"/"Matrix".*..[ *read more* ](apps/colorstatic-bash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colorstatic-bash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colorstatic-bash) | -| | [***colrm***](apps/colrm.md) | *From a file. This is part of "am-utils" suite.*..[ *read more* ](apps/colrm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colrm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colrm) | -| | [***column***](apps/column.md) | *Columnate lists. This is part of "am-utils" suite.*..[ *read more* ](apps/column.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/column) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/column) | -| | [***comic-book-reader***](apps/comic-book-reader.md) | *Reader and converter for cbz, cbr, epub and pdf files.*..[ *read more* ](apps/comic-book-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comic-book-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comic-book-reader) | -| | [***comic-reader***](apps/comic-reader.md) | *Electron based comic reader.*..[ *read more* ](apps/comic-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comic-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comic-reader) | -| | [***comics-downloader***](apps/comics-downloader.md) | *Tool to download comics and manga in pdf/epub/cbr/cbz from a website.*..[ *read more* ](apps/comics-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comics-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comics-downloader) | -| | [***comictagger***](apps/comictagger.md) | *A multi-platform app for writing metadata to digital comics.*..[ *read more* ](apps/comictagger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comictagger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comictagger) | -| | [***comm***](apps/comm.md) | *Compare two sorted files line by line. This is part of "am-utils" suite.*..[ *read more* ](apps/comm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comm) | -| | [***commander-genius***](apps/commander-genius.md) | *Unofficial, an open-source interpreter for the Commander Keen (1-6, Dreams) and Cosmos Cosmic series.*..[ *read more* ](apps/commander-genius.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/commander-genius) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/commander-genius) | -| | [***compass***](apps/compass.md) | *Air Traffic Surveillance DataBase.*..[ *read more* ](apps/compass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/compass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/compass) | -| | [***compresso***](apps/compresso.md) | *Convert any video into a tiny size.*..[ *read more* ](apps/compresso.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/compresso) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/compresso) | -| | [***concordium-desktop-wallet***](apps/concordium-desktop-wallet.md) | *The official Concordium Dektop Wallet.*..[ *read more* ](apps/concordium-desktop-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/concordium-desktop-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/concordium-desktop-wallet) | -| | [***conduction***](apps/conduction.md) | *Tasks? Done. That was quick.*..[ *read more* ](apps/conduction.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/conduction) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/conduction) | -| | [***conky***](apps/conky.md) | *Light-weight system monitor for X.*..[ *read more* ](apps/conky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/conky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/conky) | -| | [***consoleworkbench***](apps/consoleworkbench.md) | *Console workbench.*..[ *read more* ](apps/consoleworkbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/consoleworkbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/consoleworkbench) | -| | [***constrict***](apps/constrict.md) | *Unofficial AppImage of Constrict.*..[ *read more* ](apps/constrict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/constrict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/constrict) | -| | [***contour***](apps/contour.md) | *Modern C++ Terminal Emulator.*..[ *read more* ](apps/contour.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/contour) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/contour) | -| | [***conty***](apps/conty.md) | *Easy to use unprivileged and portable Arch Linux container.*..[ *read more* ](apps/conty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/conty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/conty) | -| | [***converse-desktop***](apps/converse-desktop.md) | *Electron-based Desktop client for Converse.js.*..[ *read more* ](apps/converse-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/converse-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/converse-desktop) | -| | [***converseen***](apps/converseen.md) | *A batch image converter and resizer.*..[ *read more* ](apps/converseen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/converseen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/converseen) | -| | [***converter432hz***](apps/converter432hz.md) | *Converts and re-encodes music to 432hz.*..[ *read more* ](apps/converter432hz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/converter432hz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/converter432hz) | -| | [***converternow***](apps/converternow.md) | *The Unit Converter app. Easy, immediate and multi-platform.*..[ *read more* ](apps/converternow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/converternow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/converternow) | -| | [***cool-retro-term***](apps/cool-retro-term.md) | *Use the command line the old way.*..[ *read more* ](apps/cool-retro-term.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cool-retro-term) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cool-retro-term) | -| | [***coolercontrol***](apps/coolercontrol.md) | *A program to monitor and control your cooling devices.*..[ *read more* ](apps/coolercontrol.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coolercontrol) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coolercontrol) | -| | [***coolercontrold***](apps/coolercontrold.md) | *Daemon for coolercontrol, to monitor your cooling devices.*..[ *read more* ](apps/coolercontrold.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coolercontrold) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coolercontrold) | -| | [***copyq***](apps/copyq.md) | *Unofficial, an advanced clipboard manager with powerful editing and scripting features.*..[ *read more* ](apps/copyq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/copyq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/copyq) | -| | [***copytranslator***](apps/copytranslator.md) | *Foreign language reading and translation assistant.*..[ *read more* ](apps/copytranslator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/copytranslator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/copytranslator) | -| | [***cordlauncher***](apps/cordlauncher.md) | *Cord launcher based on Electron and Wep Application.*..[ *read more* ](apps/cordlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cordlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cordlauncher) | -| | [***coreaction***](apps/coreaction.md) | *A side bar for showing widgets for CuboCore Application Suite.*..[ *read more* ](apps/coreaction.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreaction) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreaction) | -| | [***corearchiver***](apps/corearchiver.md) | *Archive manager for CuboCore Application Suite.*..[ *read more* ](apps/corearchiver.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corearchiver) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corearchiver) | -| | [***corefm***](apps/corefm.md) | *A lightweight file-manager for C Suite.*..[ *read more* ](apps/corefm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corefm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corefm) | -| | [***coregarage***](apps/coregarage.md) | *A setting manager for CuboCore Application Suite.*..[ *read more* ](apps/coregarage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coregarage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coregarage) | -| | [***corehunt***](apps/corehunt.md) | *A file search utility for CuboCore Application Suite.*..[ *read more* ](apps/corehunt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corehunt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corehunt) | -| | [***coreimage***](apps/coreimage.md) | *An image viewer for CuboCore Application Suite.*..[ *read more* ](apps/coreimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreimage) | -| | [***coreinfo***](apps/coreinfo.md) | *A file information viewer for CuboCore Application Suite.*..[ *read more* ](apps/coreinfo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreinfo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreinfo) | -| | [***corekeyboard***](apps/corekeyboard.md) | *A x11 based virtual keyboard for C Suite.*..[ *read more* ](apps/corekeyboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corekeyboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corekeyboard) | -| | [***corepad***](apps/corepad.md) | *A document editor for CuboCore Application Suite.*..[ *read more* ](apps/corepad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corepad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corepad) | -| | [***corepaint***](apps/corepaint.md) | *A paint app for CuboCore Application Suite.*..[ *read more* ](apps/corepaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corepaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corepaint) | -| | [***corepins***](apps/corepins.md) | *A bookmarking app for CuboCore Application Suite.*..[ *read more* ](apps/corepins.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corepins) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corepins) | -| | [***corerenamer***](apps/corerenamer.md) | *A batch file renamer for CuboCore Application Suite.*..[ *read more* ](apps/corerenamer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corerenamer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corerenamer) | -| | [***coreshot***](apps/coreshot.md) | *A screen capture utility for CuboCore Application Suite.*..[ *read more* ](apps/coreshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreshot) | -| | [***corestats***](apps/corestats.md) | *A system resource viewer from the CoreApps family.*..[ *read more* ](apps/corestats.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corestats) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corestats) | -| | [***corestuff***](apps/corestuff.md) | *An activity viewer for CuboCore Application Suite.*..[ *read more* ](apps/corestuff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corestuff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corestuff) | -| | [***coreterminal***](apps/coreterminal.md) | *A terminal emulator for C Suite.*..[ *read more* ](apps/coreterminal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreterminal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreterminal) | -| | [***coretime***](apps/coretime.md) | *A time related task manager for CuboCore Application Suite.*..[ *read more* ](apps/coretime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coretime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coretime) | -| | [***coreuniverse***](apps/coreuniverse.md) | *Shows releated information of apps from CuboCore App Suite.*..[ *read more* ](apps/coreuniverse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreuniverse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreuniverse) | -| | [***corsixth-enhanced***](apps/corsixth-enhanced.md) | *Unofficial, open source clone of Theme Hospital.*..[ *read more* ](apps/corsixth-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corsixth-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corsixth-enhanced) | -| | [***corsixth***](apps/corsixth.md) | *Open source clone of Theme Hospital.*..[ *read more* ](apps/corsixth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corsixth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corsixth) | -| | [***cosmic-comics***](apps/cosmic-comics.md) | *Web Server based Comics / Manga Collectionner & viewer.*..[ *read more* ](apps/cosmic-comics.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cosmic-comics) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cosmic-comics) | -| | [***cosmonium***](apps/cosmonium.md) | *3D astronomy and space exploration program.*..[ *read more* ](apps/cosmonium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cosmonium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cosmonium) | -| | [***cowitness***](apps/cowitness.md) | *A powerful web app testing tool that enhances the accuracy and efficiency of your testing efforts.*..[ *read more* ](apps/cowitness.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cowitness) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cowitness) | -| | [***cozydrive***](apps/cozydrive.md) | *File Synchronisation for Cozy, cloud.*..[ *read more* ](apps/cozydrive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cozydrive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cozydrive) | -| | [***cp***](apps/cp.md) | *Copy files and directories. This is part of "am-utils" suite.*..[ *read more* ](apps/cp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cp) | -| | [***cpeditor***](apps/cpeditor.md) | *Code editor specially designed for competitive programming.*..[ *read more* ](apps/cpeditor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cpeditor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cpeditor) | -| | [***cpod***](apps/cpod.md) | *A simple, beautiful podcast app.*..[ *read more* ](apps/cpod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cpod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cpod) | -| | [***cpu-x***](apps/cpu-x.md) | *Software that gathers information on CPU, motherboard and more.*..[ *read more* ](apps/cpu-x.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cpu-x) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cpu-x) | -| | [***cpufetch***](apps/cpufetch.md) | *Simple yet fancy CPU architecture fetching tool.*..[ *read more* ](apps/cpufetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cpufetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cpufetch) | -| | [***crabfetch***](apps/crabfetch.md) | *Extremely fast, featureful and customizable command-line fetcher.*..[ *read more* ](apps/crabfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crabfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crabfetch) | -| | [***craftos-pc***](apps/craftos-pc.md) | *Advanced ComputerCraft emulator written in C++.*..[ *read more* ](apps/craftos-pc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/craftos-pc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/craftos-pc) | -| | [***crankshaft***](apps/crankshaft.md) | *A sensible krunker client written in typescript.*..[ *read more* ](apps/crankshaft.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crankshaft) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crankshaft) | -| | [***crawl-ncurses***](apps/crawl-ncurses.md) | *open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - ncurses version (terminal)*..[ *read more* ](apps/crawl-ncurses.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crawl-ncurses) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crawl-ncurses) | -| | [***crawl-tiles***](apps/crawl-tiles.md) | *open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - graphical version (SDL)*..[ *read more* ](apps/crawl-tiles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crawl-tiles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crawl-tiles) | -| | [***creality-print***](apps/creality-print.md) | *Creality Print is a slicer dedicated to FDM printers.*..[ *read more* ](apps/creality-print.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/creality-print) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/creality-print) | -| | [***crg-data-tool***](apps/crg-data-tool.md) | *A tool for working with Games Data files from CRG.*..[ *read more* ](apps/crg-data-tool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crg-data-tool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crg-data-tool) | -| | [***cric***](apps/cric.md) | *Custom Runtime Image Creator.*..[ *read more* ](apps/cric.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cric) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cric) | -| | [***crispy-doom***](apps/crispy-doom.md) | *Unofficial, a limit-removing enhanced-resolution Doom source port based on Chocolate Doom.*..[ *read more* ](apps/crispy-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crispy-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crispy-doom) | -| | [***criteria-geo***](apps/criteria-geo.md) | *A one-dimensional agro-hydrological model, GIS interface.*..[ *read more* ](apps/criteria-geo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/criteria-geo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/criteria-geo) | -| | [***criteria1d-pro***](apps/criteria1d-pro.md) | *A one-dimensional agro-hydrological model, PRO.*..[ *read more* ](apps/criteria1d-pro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/criteria1d-pro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/criteria1d-pro) | -| | [***criteria1d***](apps/criteria1d.md) | *A one-dimensional agro-hydrological model.*..[ *read more* ](apps/criteria1d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/criteria1d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/criteria1d) | -| | [***cro-chain-desktop-bin***](apps/cro-chain-desktop-bin.md) | *Crypto.com DeFi Desktop Wallet, AppImage version.*..[ *read more* ](apps/cro-chain-desktop-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cro-chain-desktop-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cro-chain-desktop-bin) | -| | [***croc***](apps/croc.md) | *Easily and securely send things from one computer to another.*..[ *read more* ](apps/croc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/croc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/croc) | -| | [***crock***](apps/crock.md) | *Crock is rock clock.*..[ *read more* ](apps/crock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crock) | -| | [***cromagrally-enhanced***](apps/cromagrally-enhanced.md) | *Unofficial, the wildest racing game since man invented the wheel!*..[ *read more* ](apps/cromagrally-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cromagrally-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cromagrally-enhanced) | -| | [***cromagrally***](apps/cromagrally.md) | *The wildest racing game since man invented the wheel!*..[ *read more* ](apps/cromagrally.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cromagrally) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cromagrally) | -| | [***cromberg***](apps/cromberg.md) | *Personal accounting system.*..[ *read more* ](apps/cromberg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cromberg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cromberg) | -| | [***cromite***](apps/cromite.md) | *Unofficial AppImage of the Cromite web browser.*..[ *read more* ](apps/cromite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cromite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cromite) | -| | [***crosscode-map-editor***](apps/crosscode-map-editor.md) | *Map Editor for CrossCode.*..[ *read more* ](apps/crosscode-map-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crosscode-map-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crosscode-map-editor) | -| | [***crossmacro***](apps/crossmacro.md) | *A modern mouse and keyboard macro recording and playback application.*..[ *read more* ](apps/crossmacro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crossmacro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crossmacro) | -| | [***crossmobile***](apps/crossmobile.md) | *Create native iOS/Android/Windows apps in Java.*..[ *read more* ](apps/crossmobile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crossmobile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crossmobile) | -| | [***crow-translate***](apps/crow-translate.md) | *Translate and speak text using Google, Yandex, Bing and more.*..[ *read more* ](apps/crow-translate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crow-translate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crow-translate) | -| | [***cryplicity***](apps/cryplicity.md) | *Electron application boilerplate.*..[ *read more* ](apps/cryplicity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cryplicity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cryplicity) | -| | [***crypter***](apps/crypter.md) | *An innovative, convenient and secure crypto app.*..[ *read more* ](apps/crypter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crypter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crypter) | -| | [***cryptocam-companion***](apps/cryptocam-companion.md) | *GUI to decrypt videos taken by Cryptocam.*..[ *read more* ](apps/cryptocam-companion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cryptocam-companion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cryptocam-companion) | -| | [***cryptomator***](apps/cryptomator.md) | *Cloud Storage Encryption Utility.*..[ *read more* ](apps/cryptomator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cryptomator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cryptomator) | -| | [***cryptr***](apps/cryptr.md) | *A GUI for Vault.*..[ *read more* ](apps/cryptr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cryptr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cryptr) | -| | [***cs-demo-manager***](apps/cs-demo-manager.md) | *Companion application for your Counter-Strike demos.*..[ *read more* ](apps/cs-demo-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cs-demo-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cs-demo-manager) | -| | [***cscrypto***](apps/cscrypto.md) | *A crypto app.*..[ *read more* ](apps/cscrypto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cscrypto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cscrypto) | -| | [***csplit***](apps/csplit.md) | *File into sections determined by context. This is part of "am-utils" suite.*..[ *read more* ](apps/csplit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/csplit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/csplit) | -| | [***ctool***](apps/ctool.md) | *Common Tools for Program Development.*..[ *read more* ](apps/ctool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ctool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ctool) | -| | [***ctop***](apps/ctop.md) | *Top-like interface for container metrics.*..[ *read more* ](apps/ctop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ctop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ctop) | -| | [***cuberite***](apps/cuberite.md) | *Unofficial, a lightweight, fast and extensible game server for Minecraft.*..[ *read more* ](apps/cuberite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cuberite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cuberite) | -| | [***cubyz***](apps/cubyz.md) | *Unofficial AppImage of Cubyz.*..[ *read more* ](apps/cubyz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cubyz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cubyz) | -| | [***cudatext***](apps/cudatext.md) | *A cross-platform text editor, written in Object Pascal.*..[ *read more* ](apps/cudatext.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cudatext) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cudatext) | -| | [***cura-beta***](apps/cura-beta.md) | *An open source slicing application for 3D printers, beta.*..[ *read more* ](apps/cura-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cura-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cura-beta) | -| | [***cura***](apps/cura.md) | *An open source slicing application for 3D printers.*..[ *read more* ](apps/cura.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cura) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cura) | -| | [***curl***](apps/curl.md) | *Command line tool and library for transferring data with URLs. This is part of "am-utils" suite.*..[ *read more* ](apps/curl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/curl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/curl) | -| | [***curlie***](apps/curlie.md) | *The power of curl, the ease of use of httpie.*..[ *read more* ](apps/curlie.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/curlie) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/curlie) | -| | [***curseforge***](apps/curseforge.md) | *Discover endless mods for your favorite games, or forge your own and share them with millions.*..[ *read more* ](apps/curseforge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/curseforge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/curseforge) | -| | [***cursor-cli***](apps/cursor-cli.md) | *Unofficial, AI-assisted development CLI tool.*..[ *read more* ](apps/cursor-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cursor-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cursor-cli) | -| | [***cursor***](apps/cursor.md) | *Built to make you extraordinarily productive, Cursor is the best way to code with AI.*..[ *read more* ](apps/cursor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cursor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cursor) | -| | [***customrpc***](apps/customrpc.md) | *An electron-vue project.*..[ *read more* ](apps/customrpc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/customrpc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/customrpc) | -| | [***cut***](apps/cut.md) | *From each line of files. This is part of "am-utils" suite.*..[ *read more* ](apps/cut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cut) | -| | [***cutechess***](apps/cutechess.md) | *Cute Chess is a GUI, a CLI and a library for playing chess.*..[ *read more* ](apps/cutechess.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cutechess) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cutechess) | -| | [***cutepeaks***](apps/cutepeaks.md) | *A simple sanger trace file viewer.*..[ *read more* ](apps/cutepeaks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cutepeaks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cutepeaks) | -| | [***cutevariant***](apps/cutevariant.md) | *A genetics variant filtering tools*..[ *read more* ](apps/cutevariant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cutevariant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cutevariant) | -| | [***cutter***](apps/cutter.md) | *Free and Open Source Reverse Engineering Platform.*..[ *read more* ](apps/cutter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cutter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cutter) | -| | [***cvrx***](apps/cvrx.md) | *A standalone companion app for ChilloutVR that expands the user experience! A standalone companion app for ChilloutVR that expands the user experience! A standalone companion app for ChilloutVR that expands the user experience!.*..[ *read more* ](apps/cvrx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cvrx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cvrx) | -| | [***czkawka***](apps/czkawka.md) | *App to find duplicates, empty folders, similar images etc.*..[ *read more* ](apps/czkawka.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/czkawka) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/czkawka) | -| | [***d1x-rebirth***](apps/d1x-rebirth.md) | *Unofficial, a source port of the Descent engine.*..[ *read more* ](apps/d1x-rebirth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/d1x-rebirth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/d1x-rebirth) | -| | [***d2x-rebirth***](apps/d2x-rebirth.md) | *Unofficial, a source port of the Descent 2 engine.*..[ *read more* ](apps/d2x-rebirth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/d2x-rebirth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/d2x-rebirth) | -| | [***daggerfall-unity***](apps/daggerfall-unity.md) | *Unofficial, open source recreation of Daggerfall in the Unity engine.*..[ *read more* ](apps/daggerfall-unity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/daggerfall-unity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/daggerfall-unity) | -| | [***daisy***](apps/daisy.md) | *A beautiful, easy-to-use, ad-free manga and light novel client that supports both. (Anime Home).*..[ *read more* ](apps/daisy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/daisy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/daisy) | -| | [***dana***](apps/dana.md) | *A desktop client for the Dana learning box.*..[ *read more* ](apps/dana.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dana) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dana) | -| | [***darkplaces***](apps/darkplaces.md) | *Unofficial, the DarkPlaces Quake engine, created by LadyHavoc.*..[ *read more* ](apps/darkplaces.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/darkplaces) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/darkplaces) | -| | [***darktable-nightly***](apps/darktable-nightly.md) | *Photography workflow application and raw developer (nightly).*..[ *read more* ](apps/darktable-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/darktable-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/darktable-nightly) | -| | [***darktable***](apps/darktable.md) | *Photography workflow app and raw developer.*..[ *read more* ](apps/darktable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/darktable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/darktable) | -| | [***dashy-app***](apps/dashy-app.md) | *Dashboard creation application.*..[ *read more* ](apps/dashy-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dashy-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dashy-app) | -| | [***database-dossier***](apps/database-dossier.md) | *A User Interface for your databases.*..[ *read more* ](apps/database-dossier.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/database-dossier) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/database-dossier) | -| | [***dataset-annotator***](apps/dataset-annotator.md) | *An annotation tool for a dataset.*..[ *read more* ](apps/dataset-annotator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dataset-annotator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dataset-annotator) | -| | [***datcord***](apps/datcord.md) | *Discord client.*..[ *read more* ](apps/datcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/datcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/datcord) | -| | [***date***](apps/date.md) | *A header-only library which builds upon . This is part of "am-utils" suite.*..[ *read more* ](apps/date.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/date) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/date) | -| | [***dawnlightsearch***](apps/dawnlightsearch.md) | *A Linux version of Everything Search Engine.*..[ *read more* ](apps/dawnlightsearch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dawnlightsearch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dawnlightsearch) | -| | [***dayon***](apps/dayon.md) | *Dayon! - A cross-platform remote desktop assistance solution for your family and friends.*..[ *read more* ](apps/dayon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dayon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dayon) | -| | [***dbeaver-ce***](apps/dbeaver-ce.md) | *Unofficial, DBeaver Community is a free cross-platform database tool for developers, database administrators, analysts, and everyone working with data.*..[ *read more* ](apps/dbeaver-ce.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbeaver-ce) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbeaver-ce) | -| | [***dbee***](apps/dbee.md) | *Fast & Minimalistic Database Browser.*..[ *read more* ](apps/dbee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbee) | -| | [***dbet-wallet***](apps/dbet-wallet.md) | *DBET Wallet.*..[ *read more* ](apps/dbet-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbet-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbet-wallet) | -| | [***dbgate-premium***](apps/dbgate-premium.md) | *Opensource database administration tool (premium version)*..[ *read more* ](apps/dbgate-premium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbgate-premium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbgate-premium) | -| | [***dbgate***](apps/dbgate.md) | *Opensource database administration tool*..[ *read more* ](apps/dbgate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbgate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbgate) | -| | [***dbin***](apps/dbin.md) | *Poor man's package manager. About 3000 statically linked binaries in the repos!*..[ *read more* ](apps/dbin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbin) | -| | [***dd***](apps/dd.md) | *Convert and copy a file. This is part of "am-utils" suite.*..[ *read more* ](apps/dd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dd) | -| | [***deadbeef-nightly***](apps/deadbeef-nightly.md) | *Unofficial AppImage of the DeaDBeeF music player (Nightly version).*..[ *read more* ](apps/deadbeef-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deadbeef-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deadbeef-nightly) | -| | [***deadbeef***](apps/deadbeef.md) | *Unofficial AppImage of the DeaDBeeF music player (Stable version).*..[ *read more* ](apps/deadbeef.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deadbeef) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deadbeef) | -| | [***deadgame-2048***](apps/deadgame-2048.md) | *GUI tool available for ALL platforms.*..[ *read more* ](apps/deadgame-2048.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deadgame-2048) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deadgame-2048) | -| | [***dealers-choice***](apps/dealers-choice.md) | *A cross-platform, networked multiplayer poker game supporting draw, stud, and community-card variants, including Texas.*..[ *read more* ](apps/dealers-choice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dealers-choice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dealers-choice) | -| | [***deb2appimage***](apps/deb2appimage.md) | *Build AppImages from deb packages on any distro.*..[ *read more* ](apps/deb2appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deb2appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deb2appimage) | -| | [***deckboard***](apps/deckboard.md) | *Control your PC with your phone in easy way possible.*..[ *read more* ](apps/deckboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deckboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deckboard) | -| | [***dedop-studio***](apps/dedop-studio.md) | *DeDop Studio*..[ *read more* ](apps/dedop-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dedop-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dedop-studio) | -| | [***deepl-linux-electron***](apps/deepl-linux-electron.md) | *DeepL Integration. Select & translate text in any app.*..[ *read more* ](apps/deepl-linux-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deepl-linux-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deepl-linux-electron) | -| | [***deeplx***](apps/deeplx.md) | *DeepL Free API, No TOKEN required.*..[ *read more* ](apps/deeplx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deeplx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deeplx) | -| | [***deepnotes***](apps/deepnotes.md) | *End-to-end encrypted visual note-taking tool.*..[ *read more* ](apps/deepnotes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deepnotes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deepnotes) | -| | [***deeptags***](apps/deeptags.md) | *Markdown notes manager with support for nested tags.*..[ *read more* ](apps/deeptags.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deeptags) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deeptags) | -| | [***deerportal***](apps/deerportal.md) | *Full of the diamonds board game.*..[ *read more* ](apps/deerportal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deerportal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deerportal) | -| | [***deezer-enhanced***](apps/deezer-enhanced.md) | *An unofficial application for Deezer with enhanced features.*..[ *read more* ](apps/deezer-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deezer-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deezer-enhanced) | -| | [***deezer***](apps/deezer.md) | *A linux port of Deezer, allows downloading your songs, music.*..[ *read more* ](apps/deezer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deezer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deezer) | -| | [***defichain-app***](apps/defichain-app.md) | *DefiChain Wallet AppImage.*..[ *read more* ](apps/defichain-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/defichain-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/defichain-app) | -| | [***defold***](apps/defold.md) | *Unofficial, Defold is a completely free to use game engine for development of games.*..[ *read more* ](apps/defold.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/defold) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/defold) | -| | [***delta***](apps/delta.md) | *A syntax-highlighting pager for git, diff, grep, and blame output.*..[ *read more* ](apps/delta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/delta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/delta) | -| | [***deltachat-desktop***](apps/deltachat-desktop.md) | *Desktop Application for delta.chat.*..[ *read more* ](apps/deltachat-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deltachat-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deltachat-desktop) | -| | [***demonizer***](apps/demonizer.md) | *Demonic corruption fantasy shmup.*..[ *read more* ](apps/demonizer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/demonizer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/demonizer) | -| | [***denise***](apps/denise.md) | *Unofficial AppImage of Denise.*..[ *read more* ](apps/denise.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/denise) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/denise) | -| | [***densify***](apps/densify.md) | *A GTK+ GUI Application written in Python that simplifies compressing PDF files with Ghostscript.*..[ *read more* ](apps/densify.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/densify) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/densify) | -| | [***deployer***](apps/deployer.md) | *Deploy your applications through Jenkins.*..[ *read more* ](apps/deployer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deployer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deployer) | -| | [***deskreen***](apps/deskreen.md) | *Turns any device with a web browser into a secondary screen.*..[ *read more* ](apps/deskreen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deskreen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deskreen) | -| | [***deskthing***](apps/deskthing.md) | *The Discord Thing, Trello Thing, The Weather Thing, The Macro Thing, just not The Car Thing anymore.*..[ *read more* ](apps/deskthing.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deskthing) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deskthing) | -| | [***desmume***](apps/desmume.md) | *Unofficial AppImage of the DeSmuME emulator.*..[ *read more* ](apps/desmume.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/desmume) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/desmume) | -| | [***destiny***](apps/destiny.md) | *Cross-platform Magic Wormhole graphical client.*..[ *read more* ](apps/destiny.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/destiny) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/destiny) | -| | [***dethrace***](apps/dethrace.md) | *Unofficial, reverse engineering the 1997 game "Carmageddon".*..[ *read more* ](apps/dethrace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dethrace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dethrace) | -| | [***devclean***](apps/devclean.md) | *A CLI and Desktop GUI app to clean dev dependencies (node_modules, cache) and more.*..[ *read more* ](apps/devclean.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devclean) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devclean) | -| | [***devdocs-desktop***](apps/devdocs-desktop.md) | *Desktop client for devdocs.io.*..[ *read more* ](apps/devdocs-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devdocs-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devdocs-desktop) | -| | [***devhub***](apps/devhub.md) | *TweetDeck for GitHub*..[ *read more* ](apps/devhub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devhub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devhub) | -| | [***devilutionx-enhanced***](apps/devilutionx-enhanced.md) | *Unofficial, Diablo build for modern operating systems.*..[ *read more* ](apps/devilutionx-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devilutionx-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devilutionx-enhanced) | -| | [***devilutionx***](apps/devilutionx.md) | *Diablo build for modern operating systems.*..[ *read more* ](apps/devilutionx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devilutionx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devilutionx) | -| | [***devpod***](apps/devpod.md) | *Codespaces but open-source, client-only and unopinionated. Works with any IDE and lets you use any cloud, kubernetes or just localhost docker.*..[ *read more* ](apps/devpod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devpod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devpod) | -| | [***devsidecar***](apps/devsidecar.md) | *Dev sidecar/github/git/stackoverflow acceleration, in chinese.*..[ *read more* ](apps/devsidecar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devsidecar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devsidecar) | -| | [***devtools-x***](apps/devtools-x.md) | *Collection of offline first developer utilities available as desktop application.*..[ *read more* ](apps/devtools-x.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devtools-x) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devtools-x) | -| | [***devtoys***](apps/devtoys.md) | *A Swiss Army knife for developers.*..[ *read more* ](apps/devtoys.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devtoys) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devtoys) | -| | [***dexter-dev-env***](apps/dexter-dev-env.md) | *Dexter Development Environment.*..[ *read more* ](apps/dexter-dev-env.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dexter-dev-env) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dexter-dev-env) | -| | [***dezor***](apps/dezor.md) | *The web browser including VPN and Adblocker.*..[ *read more* ](apps/dezor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dezor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dezor) | -| | [***df***](apps/df.md) | *Report file system space usage. This is part of "am-utils" suite.*..[ *read more* ](apps/df.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/df) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/df) | -| | [***dfdemo***](apps/dfdemo.md) | *A thin Tcl/Tk GUI around the df POSIX command.*..[ *read more* ](apps/dfdemo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dfdemo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dfdemo) | -| | [***dfilemanager***](apps/dfilemanager.md) | *File manager written in Qt and C++.*..[ *read more* ](apps/dfilemanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dfilemanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dfilemanager) | -| | [***dhammapada***](apps/dhammapada.md) | *A simple Dhammapada verse viewer for the Linux desktop.*..[ *read more* ](apps/dhammapada.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dhammapada) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dhammapada) | -| | [***dhewm3***](apps/dhewm3.md) | *Unofficial, doom 3 GPL source port.*..[ *read more* ](apps/dhewm3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dhewm3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dhewm3) | -| | [***dicomautomaton***](apps/dicomautomaton.md) | *Tools for working with medical physics data.*..[ *read more* ](apps/dicomautomaton.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dicomautomaton) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dicomautomaton) | -| | [***didder***](apps/didder.md) | *An extensive, fast, and accurate command-line image dithering tool.*..[ *read more* ](apps/didder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/didder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/didder) | -| | [***die-engine***](apps/die-engine.md) | *Detect It Easy, a program for determining types of files.*..[ *read more* ](apps/die-engine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/die-engine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/die-engine) | -| | [***diff***](apps/diff.md) | *Compare files line by line. This is part of "am-utils" suite.*..[ *read more* ](apps/diff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diff) | -| | [***diffpdf***](apps/diffpdf.md) | *Unofficial AppImage of DiffPDF.*..[ *read more* ](apps/diffpdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diffpdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diffpdf) | -| | [***diffre***](apps/diffre.md) | *A fast, local file and folder diff tool like Beyond Compare, built for the desktop.*..[ *read more* ](apps/diffre.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diffre) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diffre) | -| | [***diffuse***](apps/diffuse.md) | *Music player, connects to your cloud/distributed storage.*..[ *read more* ](apps/diffuse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diffuse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diffuse) | -| | [***digikam-dev***](apps/digikam-dev.md) | *Professional and advanced digital photo management application.*..[ *read more* ](apps/digikam-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/digikam-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/digikam-dev) | -| | [***digikam***](apps/digikam.md) | *Professional and advanced digital photo management application.*..[ *read more* ](apps/digikam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/digikam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/digikam) | -| | [***dillo***](apps/dillo.md) | *Unofficial AppImage of Dillo.*..[ *read more* ](apps/dillo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dillo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dillo) | -| | [***dingtalk***](apps/dingtalk.md) | *DingTalk desktop version based on electron.*..[ *read more* ](apps/dingtalk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dingtalk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dingtalk) | -| | [***dinosaurplanetrecompiled***](apps/dinosaurplanetrecompiled.md) | *A static recompilation/native port of the game Dinosaur Planet.*..[ *read more* ](apps/dinosaurplanetrecompiled.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dinosaurplanetrecompiled) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dinosaurplanetrecompiled) | -| | [***dinox***](apps/dinox.md) | *DinoX - Modern XMPP Chat Client with Video Calls, Voice Messages & OMEMO Encryption.*..[ *read more* ](apps/dinox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dinox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dinox) | -| | [***dione***](apps/dione.md) | *Explore, Install, Innovate — in 1 Click.*..[ *read more* ](apps/dione.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dione) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dione) | -| | [***dir***](apps/dir.md) | *List directory contents. This is part of "am-utils" suite.*..[ *read more* ](apps/dir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dir) | -| | [***dircolors***](apps/dircolors.md) | *For ls. This is part of "am-utils" suite.*..[ *read more* ](apps/dircolors.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dircolors) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dircolors) | -| | [***dirname***](apps/dirname.md) | *Strip last component from file name. This is part of "am-utils" suite.*..[ *read more* ](apps/dirname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dirname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dirname) | -| | [***disass***](apps/disass.md) | *A simple disassembly tool.*..[ *read more* ](apps/disass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/disass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/disass) | -| | [***discord-bot-client***](apps/discord-bot-client.md) | *A patched version of discord, with bot login & Vencord support.*..[ *read more* ](apps/discord-bot-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/discord-bot-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/discord-bot-client) | -| | [***discord-qt***](apps/discord-qt.md) | *Unofficial. Discord client powered by Node.JS and Qt Widgets.*..[ *read more* ](apps/discord-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/discord-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/discord-qt) | -| | [***discord***](apps/discord.md) | *Unofficial. All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.*..[ *read more* ](apps/discord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/discord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/discord) | -| | [***diskfmt***](apps/diskfmt.md) | *A disk formatting utility for linux that is similar to the windows format utility.*..[ *read more* ](apps/diskfmt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diskfmt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diskfmt) | -| | [***diskonaut***](apps/diskonaut.md) | *Terminal disk space navigator.*..[ *read more* ](apps/diskonaut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diskonaut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diskonaut) | -| | [***dissent***](apps/dissent.md) | *Tiny native Discord app.*..[ *read more* ](apps/dissent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dissent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dissent) | -| | [***dl-desktop***](apps/dl-desktop.md) | *Desktop client for the Duolingo language learning application.*..[ *read more* ](apps/dl-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dl-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dl-desktop) | -| | [***dlman***](apps/dlman.md) | *Free & fast modern download manager built with Rust for speed and reliability.*..[ *read more* ](apps/dlman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dlman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dlman) | -| | [***dns-changer***](apps/dns-changer.md) | *An open-source DNS Changer app.*..[ *read more* ](apps/dns-changer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dns-changer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dns-changer) | -| | [***dnzhrecomp***](apps/dnzhrecomp.md) | *Unofficial, a native port of Duke Nukem Zero Hour, statically recompiled.*..[ *read more* ](apps/dnzhrecomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dnzhrecomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dnzhrecomp) | -| | [***dockstation***](apps/dockstation.md) | *Developing with Docker has never been so easy and convenient.*..[ *read more* ](apps/dockstation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dockstation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dockstation) | -| | [***doggo***](apps/doggo.md) | *Command-line DNS Client for Humans. Written in Golang*..[ *read more* ](apps/doggo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doggo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doggo) | -| | [***dolphin-emu-nightly***](apps/dolphin-emu-nightly.md) | *Unofficial nightly AppImage of the Dolphin emulator.*..[ *read more* ](apps/dolphin-emu-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dolphin-emu-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dolphin-emu-nightly) | -| | [***dolphin-emu***](apps/dolphin-emu.md) | *Unofficial, GameCube/Nintento Wii emulator with improvements.*..[ *read more* ](apps/dolphin-emu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dolphin-emu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dolphin-emu) | -| | [***dolt-workbench***](apps/dolt-workbench.md) | *A modern, browser-based, open source SQL workbench for your MySQL and PostgreSQL compatible database with version control features when connected to Dolt.*..[ *read more* ](apps/dolt-workbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dolt-workbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dolt-workbench) | -| | [***domterm***](apps/domterm.md) | *DOM/JavaScript-based terminal-emulator/console.*..[ *read more* ](apps/domterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/domterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/domterm) | -| | [***dooit***](apps/dooit.md) | *An awesome TUI todo manager.*..[ *read more* ](apps/dooit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dooit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dooit) | -| | [***doom64exultra***](apps/doom64exultra.md) | *Unofficial, A fork of DOOM64EX+ with new stuff and fixes.*..[ *read more* ](apps/doom64exultra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doom64exultra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doom64exultra) | -| | [***dopamine-preview***](apps/dopamine-preview.md) | *The audio player that keeps it simple.*..[ *read more* ](apps/dopamine-preview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dopamine-preview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dopamine-preview) | -| | [***dorion***](apps/dorion.md) | *Tiny alternative Discord client with a smaller footprint, snappier startup, themes, plugins and more!*..[ *read more* ](apps/dorion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dorion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dorion) | -| | [***dosbox-pure-unleashed***](apps/dosbox-pure-unleashed.md) | *Unofficial AppImage of DOSBox Pure Unleashed.*..[ *read more* ](apps/dosbox-pure-unleashed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dosbox-pure-unleashed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dosbox-pure-unleashed) | -| | [***dosbox-x***](apps/dosbox-x.md) | *Unofficial, DOSBox-X is a cross-platform DOS emulator for running many MS-DOS games.*..[ *read more* ](apps/dosbox-x.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dosbox-x) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dosbox-x) | -| | [***dosemu***](apps/dosemu.md) | *Run DOS programs under linux.*..[ *read more* ](apps/dosemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dosemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dosemu) | -| | [***dotline***](apps/dotline.md) | *A modern crosshair overlay app.*..[ *read more* ](apps/dotline.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dotline) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dotline) | -| | [***dotto***](apps/dotto.md) | *A portable and modern pixelart editor, written from scratch.*..[ *read more* ](apps/dotto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dotto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dotto) | -| | [***doublecmd-gtk***](apps/doublecmd-gtk.md) | *Two-panel file manager, also known as Double Commander.*..[ *read more* ](apps/doublecmd-gtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doublecmd-gtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doublecmd-gtk) | -| | [***doublecmd-qt***](apps/doublecmd-qt.md) | *Two-panel file manager, also known as Double Commander.*..[ *read more* ](apps/doublecmd-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doublecmd-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doublecmd-qt) | -| | [***downline***](apps/downline.md) | *A cross-platform video and audio downloader.*..[ *read more* ](apps/downline.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/downline) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/downline) | -| | [***dr-robotniks-ring-racers***](apps/dr-robotniks-ring-racers.md) | *Unofficial, kart racing video game originally based on SRB2Kart.*..[ *read more* ](apps/dr-robotniks-ring-racers.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dr-robotniks-ring-racers) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dr-robotniks-ring-racers) | -| | [***dra***](apps/dra.md) | *A command line tool to download release assets from GitHub.*..[ *read more* ](apps/dra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dra) | -| | [***dragdrop***](apps/dragdrop.md) | *Small drag-and-drop file source for the command line.*..[ *read more* ](apps/dragdrop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dragdrop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dragdrop) | -| | [***dragula***](apps/dragula.md) | *Free Stock Images on Steroids.*..[ *read more* ](apps/dragula.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dragula) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dragula) | -| | [***drally***](apps/drally.md) | *Unofficial, a port of Death Rally (1996).*..[ *read more* ](apps/drally.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drally) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drally) | -| | [***draw.io***](apps/draw.io.md) | *draw.io desktop.*..[ *read more* ](apps/draw.io.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/draw.io) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/draw.io) | -| | [***draw***](apps/draw.md) | *Draw in your terminal.*..[ *read more* ](apps/draw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/draw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/draw) | -| | [***drawish***](apps/drawish.md) | *Simple, yet complete drawing program.*..[ *read more* ](apps/drawish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drawish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drawish) | -| | [***drawpile***](apps/drawpile.md) | *Drawing program to sketch on the same canvas simultaneously.*..[ *read more* ](apps/drawpile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drawpile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drawpile) | -| | [***drawy***](apps/drawy.md) | *Your handy, infinite, brainstorming tool.*..[ *read more* ](apps/drawy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drawy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drawy) | -| | [***dreamm***](apps/dreamm.md) | *Unofficial AppImage of DREAMM.*..[ *read more* ](apps/dreamm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dreamm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dreamm) | -| | [***drill***](apps/drill.md) | *Search files without indexing, but clever crawling.*..[ *read more* ](apps/drill.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drill) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drill) | -| | [***droidcam***](apps/droidcam.md) | *A DroidCam AppImage for the Steam Deck/SteamOS 3.0.*..[ *read more* ](apps/droidcam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/droidcam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/droidcam) | -| | [***dropbox***](apps/dropbox.md) | *A free cloud service, Unofficial AppImage.*..[ *read more* ](apps/dropbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dropbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dropbox) | -| | [***droppoint***](apps/droppoint.md) | *Drag content without having to open side-by-side windows.*..[ *read more* ](apps/droppoint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/droppoint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/droppoint) | -| | [***drovp***](apps/drovp.md) | *Desktop app for encoding, converting, upscaling, and much more.*..[ *read more* ](apps/drovp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drovp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drovp) | -| | [***drum-machine***](apps/drum-machine.md) | *Unofficial, Application for managing and playing with drum patterns.*..[ *read more* ](apps/drum-machine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drum-machine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drum-machine) | -| | [***dsda-doom***](apps/dsda-doom.md) | *This is a successor of prboom+ with extra tooling for demo recording and playback, with a focus on speedrunning and quality of life.*..[ *read more* ](apps/dsda-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dsda-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dsda-doom) | -| | [***dstask***](apps/dstask.md) | *Git powered terminal-based todo/note manager, markdown note page per task.*..[ *read more* ](apps/dstask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dstask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dstask) | -| | [***dtmate***](apps/dtmate.md) | *CLI to compute difference between date, time or duration.*..[ *read more* ](apps/dtmate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dtmate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dtmate) | -| | [***du***](apps/du.md) | *Estimate file space usage. This is part of "am-utils" suite.*..[ *read more* ](apps/du.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/du) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/du) | -| | [***dua***](apps/dua.md) | *View disk space usage and delete unwanted data, fast.*..[ *read more* ](apps/dua.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dua) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dua) | -| | [***duckling***](apps/duckling.md) | *A fast viewer for CSV/Parquet files and databases such as DuckDB, SQLite, PostgreSQL, MySQL, Clickhouse, etc.*..[ *read more* ](apps/duckling.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duckling) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duckling) | -| | [***duckstation-gpl-enhanced***](apps/duckstation-gpl-enhanced.md) | *Unofficial, fast PlayStation 1 emulator when it was still using GPLv3.*..[ *read more* ](apps/duckstation-gpl-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duckstation-gpl-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duckstation-gpl-enhanced) | -| | [***duckstation***](apps/duckstation.md) | *PlayStation 1, aka PSX games Emulator.*..[ *read more* ](apps/duckstation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duckstation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duckstation) | -| | [***duf***](apps/duf.md) | *Disk Usage/Free Utility, a better 'df' alternative.*..[ *read more* ](apps/duf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duf) | -| | [***dukto***](apps/dukto.md) | *Easy and multi-platform file transfer tool.*..[ *read more* ](apps/dukto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dukto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dukto) | -| | [***dune***](apps/dune.md) | *A shell by the beach.*..[ *read more* ](apps/dune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dune) | -| | [***dunst***](apps/dunst.md) | *Lightweight and customizable notification daemon.*..[ *read more* ](apps/dunst.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dunst) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dunst) | -| | [***duplicate-image-finder***](apps/duplicate-image-finder.md) | *It is an application that can find duplicated images (jpg, png, bitmap, etc) in a collection.*..[ *read more* ](apps/duplicate-image-finder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duplicate-image-finder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duplicate-image-finder) | -| | [***dusklight***](apps/dusklight.md) | *Dusklight brings a classic adventure to PC and mobile platforms with a variety of fixes and improvements.*..[ *read more* ](apps/dusklight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dusklight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dusklight) | -| | [***duskplayer***](apps/duskplayer.md) | *A minimal music player built on electron.*..[ *read more* ](apps/duskplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duskplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duskplayer) | -| | [***dust***](apps/dust.md) | *A more intuitive version of du in rust.*..[ *read more* ](apps/dust.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dust) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dust) | -| | [***dust3d***](apps/dust3d.md) | *3D modeling software for games, 3D printing, and so on.*..[ *read more* ](apps/dust3d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dust3d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dust3d) | -| | [***dvdisaster***](apps/dvdisaster.md) | *Additional error protection for CD/DVD media.*..[ *read more* ](apps/dvdisaster.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dvdisaster) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dvdisaster) | -| | [***dwarf-fortress-legacy***](apps/dwarf-fortress-legacy.md) | *Unofficial AppImage of Dwarf Fortress Legacy.*..[ *read more* ](apps/dwarf-fortress-legacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dwarf-fortress-legacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dwarf-fortress-legacy) | -| | [***dwarf-fortress***](apps/dwarf-fortress.md) | *The AppImage of lnp-forge built LinuxDwarfPack.*..[ *read more* ](apps/dwarf-fortress.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dwarf-fortress) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dwarf-fortress) | -| | [***dwarffortress***](apps/dwarffortress.md) | *A Dwarf Fortress game. Build a fortress and try to help your dwarves survive against a deeply generated world.*..[ *read more* ](apps/dwarffortress.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dwarffortress) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dwarffortress) | -| | [***dwyco-phoo***](apps/dwyco-phoo.md) | *Dwyco Phoo Chat and Video Calling.*..[ *read more* ](apps/dwyco-phoo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dwyco-phoo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dwyco-phoo) | -| | [***dysk***](apps/dysk.md) | *A linux utility to get information on filesystems, like df but better.*..[ *read more* ](apps/dysk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dysk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dysk) | -| | [***e2-sat-editor***](apps/e2-sat-editor.md) | *Satellite channel lists editor with tabbed nav.*..[ *read more* ](apps/e2-sat-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/e2-sat-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/e2-sat-editor) | -| | [***eaglemode***](apps/eaglemode.md) | *Zoomable user interface with plugin applications.*..[ *read more* ](apps/eaglemode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eaglemode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eaglemode) | -| | [***easytag***](apps/easytag.md) | *Unofficial AppImage of EasyTAG tag editor.*..[ *read more* ](apps/easytag.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/easytag) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/easytag) | -| | [***ecency-surfer***](apps/ecency-surfer.md) | *Rewarding communities built, owned and operated by its users.*..[ *read more* ](apps/ecency-surfer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ecency-surfer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ecency-surfer) | -| | [***echo***](apps/echo.md) | *Display a line of text. This is part of "am-utils" suite.*..[ *read more* ](apps/echo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/echo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/echo) | -| | [***ecode***](apps/ecode.md) | *Lightweight code editor designed for modern hardware.*..[ *read more* ](apps/ecode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ecode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ecode) | -| | [***ecwolf***](apps/ecwolf.md) | *Unofficial, advanced port of Wolfenstein 3D based off of Wolf4SDL.*..[ *read more* ](apps/ecwolf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ecwolf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ecwolf) | -| | [***edconv***](apps/edconv.md) | *A user-friendly FFmpeg GUI.*..[ *read more* ](apps/edconv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/edconv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/edconv) | -| | [***eden-nightly***](apps/eden-nightly.md) | *An experimental open-source emulator for Nintendo Switch (yuzu fork, nightly builds).*..[ *read more* ](apps/eden-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eden-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eden-nightly) | -| | [***eden***](apps/eden.md) | *An experimental open-source emulator for Nintendo Switch (yuzu fork).*..[ *read more* ](apps/eden.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eden) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eden) | -| | [***edex-ui***](apps/edex-ui.md) | *A cross-platform, customizable science fiction terminal emulator.*..[ *read more* ](apps/edex-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/edex-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/edex-ui) | -| | [***eduke32***](apps/eduke32.md) | *Unofficial, an advanced Duke Nukem 3D source port.*..[ *read more* ](apps/eduke32.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eduke32) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eduke32) | -| | [***eez-studio***](apps/eez-studio.md) | *Cross-platform low-code GUI and automation.*..[ *read more* ](apps/eez-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eez-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eez-studio) | -| | [***eget***](apps/eget.md) | *Easily install prebuilt binaries from GitHub.*..[ *read more* ](apps/eget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eget) | -| | [***ehdev-shell***](apps/ehdev-shell.md) | *An electron based developing tool for feds.*..[ *read more* ](apps/ehdev-shell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ehdev-shell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ehdev-shell) | -| | [***eiskaltdcpp***](apps/eiskaltdcpp.md) | *Client for EiskaltDC++ core.*..[ *read more* ](apps/eiskaltdcpp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eiskaltdcpp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eiskaltdcpp) | -| | [***eka2l1***](apps/eka2l1.md) | *A Symbian OS/N-Gage emulator*..[ *read more* ](apps/eka2l1.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eka2l1) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eka2l1) | -| | [***eksplode.re***](apps/eksplode.re.md) | *Bomberman game made with Godot under BSD3.*..[ *read more* ](apps/eksplode.re.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eksplode.re) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eksplode.re) | -| | [***elastic***](apps/elastic.md) | *Unofficial. Visualize and design physics-based animation of objects.*..[ *read more* ](apps/elastic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elastic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elastic) | -| | [***elcalc***](apps/elcalc.md) | *Cross-Platform calculator built with Electron.*..[ *read more* ](apps/elcalc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elcalc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elcalc) | -| | [***eldumper***](apps/eldumper.md) | *A GB Cartridge Dumper.*..[ *read more* ](apps/eldumper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eldumper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eldumper) | -| | [***electorrent***](apps/electorrent.md) | *A remote control Torrent client.*..[ *read more* ](apps/electorrent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electorrent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electorrent) | -| | [***electrocrud***](apps/electrocrud.md) | *No coding is required.*..[ *read more* ](apps/electrocrud.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrocrud) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrocrud) | -| | [***electron-app-store***](apps/electron-app-store.md) | *Simple App Store for Apps Built with Electron.*..[ *read more* ](apps/electron-app-store.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-app-store) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-app-store) | -| | [***electron-cash***](apps/electron-cash.md) | *Lightweight Bitcoin Cash Client.*..[ *read more* ](apps/electron-cash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-cash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-cash) | -| | [***electron-mail***](apps/electron-mail.md) | *Unofficial ProtonMail Desktop App.*..[ *read more* ](apps/electron-mail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-mail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-mail) | -| | [***electron-react-boilerplate***](apps/electron-react-boilerplate.md) | *A Foundation for Scalable Cross-Platform Apps.*..[ *read more* ](apps/electron-react-boilerplate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-react-boilerplate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-react-boilerplate) | -| | [***electron-ssr***](apps/electron-ssr.md) | *Install electron-ssr from appimage.*..[ *read more* ](apps/electron-ssr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-ssr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-ssr) | -| | [***electron-utils***](apps/electron-utils.md) | *Electron Utils for every day usage as a dev.*..[ *read more* ](apps/electron-utils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-utils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-utils) | -| | [***electron-wechat***](apps/electron-wechat.md) | *Wechat desktop application.*..[ *read more* ](apps/electron-wechat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-wechat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-wechat) | -| | [***electron-xiami***](apps/electron-xiami.md) | *Xiami Electron desktop application.*..[ *read more* ](apps/electron-xiami.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electron-xiami) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electron-xiami) | -| | [***electronreact***](apps/electronreact.md) | *Desktop application using Electron and React.*..[ *read more* ](apps/electronreact.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electronreact) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electronreact) | -| | [***electronwmd***](apps/electronwmd.md) | *Upload music to NetMD MiniDisc devices.*..[ *read more* ](apps/electronwmd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electronwmd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electronwmd) | -| | [***electrum-neurai***](apps/electrum-neurai.md) | *Neurai is a decentralized open source protocol optimized to transfer cryptoassets from one party to another on Layer1. The project aims to integrate NFT and Tokens with IoT and artificial intelligence applications.*..[ *read more* ](apps/electrum-neurai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrum-neurai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrum-neurai) | -| | [***electrum-ravencoin***](apps/electrum-ravencoin.md) | *Forked from the Electrum Bitcoin base client.*..[ *read more* ](apps/electrum-ravencoin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrum-ravencoin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrum-ravencoin) | -| | [***electrum***](apps/electrum.md) | *Lightweight Bitcoin Client.*..[ *read more* ](apps/electrum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrum) | -| | [***electrumfair***](apps/electrumfair.md) | *Lightweight FairCoin Client.*..[ *read more* ](apps/electrumfair.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrumfair) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrumfair) | -| | [***electrumsvp***](apps/electrumsvp.md) | *Bitcoin BSV wallet, fork of ElectrumSV.*..[ *read more* ](apps/electrumsvp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrumsvp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrumsvp) | -| | [***element-desktop***](apps/element-desktop.md) | *Unofficial, glossy Matrix collaboration client for desktop.*..[ *read more* ](apps/element-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/element-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/element-desktop) | -| | [***element***](apps/element.md) | *A feature-rich client for Matrix.org.*..[ *read more* ](apps/element.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/element) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/element) | -| | [***elementary-code***](apps/elementary-code.md) | *AppImage version of Elementary OS "Code" by Maksym Titenko.*..[ *read more* ](apps/elementary-code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elementary-code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elementary-code) | -| | [***elements***](apps/elements.md) | *App which displays the periodic table, Education, Science.*..[ *read more* ](apps/elements.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elements) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elements) | -| | [***elfedit***](apps/elfedit.md) | *Header and program property of ELF files. This is part of "am-utils" suite.*..[ *read more* ](apps/elfedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elfedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elfedit) | -| | [***elk***](apps/elk.md) | *Native version of Elk, a nimble Mastodon web.*..[ *read more* ](apps/elk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elk) | -| | [***ellas-war***](apps/ellas-war.md) | *Explore Ancient Greece on Ellas-War.*..[ *read more* ](apps/ellas-war.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ellas-war) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ellas-war) | -| | [***elphyre-walletshell***](apps/elphyre-walletshell.md) | *Elphyrecoin GUI Wallet.*..[ *read more* ](apps/elphyre-walletshell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elphyre-walletshell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elphyre-walletshell) | -| | [***elvish***](apps/elvish.md) | *Powerful modern shell scripting.*..[ *read more* ](apps/elvish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elvish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elvish) | -| | [***elyprismlauncher***](apps/elyprismlauncher.md) | *This fork of Prism Launcher adds integrated support for Ely.by accounts.*..[ *read more* ](apps/elyprismlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elyprismlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elyprismlauncher) | -| | [***elzabrowser***](apps/elzabrowser.md) | *Elza incognito web browser.*..[ *read more* ](apps/elzabrowser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elzabrowser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elzabrowser) | -| | [***emacs-nox***](apps/emacs-nox.md) | *Unofficial. FOSS text editor for complete programming language.*..[ *read more* ](apps/emacs-nox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emacs-nox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emacs-nox) | -| | [***emacs***](apps/emacs.md) | *Unofficial. FOSS text editor for complete programming language.*..[ *read more* ](apps/emacs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emacs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emacs) | -| | [***embedded-ide***](apps/embedded-ide.md) | *Makefile based IDE for embedded systems.*..[ *read more* ](apps/embedded-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/embedded-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/embedded-ide) | -| | [***emoji-keyboard***](apps/emoji-keyboard.md) | *Virtual keyboard-like emoji palette for Linux.*..[ *read more* ](apps/emoji-keyboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emoji-keyboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emoji-keyboard) | -| | [***emudeck***](apps/emudeck.md) | *EmuDeck Desktop Electron Wrapper.*..[ *read more* ](apps/emudeck.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emudeck) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emudeck) | -| | [***emulsion***](apps/emulsion.md) | *Better gaming through chemistry.*..[ *read more* ](apps/emulsion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/emulsion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/emulsion) | -| | [***en-croissant***](apps/en-croissant.md) | *The Ultimate Chess Toolkit.*..[ *read more* ](apps/en-croissant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/en-croissant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/en-croissant) | -| | [***encryptpad***](apps/encryptpad.md) | *Secure text editor and binary encryptor with passwords.*..[ *read more* ](apps/encryptpad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/encryptpad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/encryptpad) | -| | [***endless-sky***](apps/endless-sky.md) | *Space exploration and combat game.*..[ *read more* ](apps/endless-sky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/endless-sky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/endless-sky) | -| | [***enoseannotator***](apps/enoseannotator.md) | *View, annotate and store measurements of the eNose sensor.*..[ *read more* ](apps/enoseannotator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/enoseannotator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/enoseannotator) | -| | [***ente-auth***](apps/ente-auth.md) | *Fully open source, End to End Encrypted alternative to Google Photos and Apple Photos.*..[ *read more* ](apps/ente-auth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ente-auth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ente-auth) | -| | [***ente-photos***](apps/ente-photos.md) | *Binary releases of the Ente Photos desktop app.*..[ *read more* ](apps/ente-photos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ente-photos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ente-photos) | -| | [***env***](apps/env.md) | *Run a program in a modified environment. This is part of "am-utils" suite.*..[ *read more* ](apps/env.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/env) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/env) | -| | [***enve***](apps/enve.md) | *Create 2D Animations.*..[ *read more* ](apps/enve.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/enve) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/enve) | -| | [***envkey***](apps/envkey.md) | *EnvKey’s cross-platform native app.*..[ *read more* ](apps/envkey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/envkey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/envkey) | -| | [***eog***](apps/eog.md) | *Eye of Gnome is an image viewing and cataloging program.*..[ *read more* ](apps/eog.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eog) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eog) | -| | [***eosvc***](apps/eosvc.md) | *Application for management of self-employeed people.*..[ *read more* ](apps/eosvc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eosvc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eosvc) | -| | [***eplee***](apps/eplee.md) | *Sweet, simple epub reader.*..[ *read more* ](apps/eplee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eplee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eplee) | -| | [***epsxe***](apps/epsxe.md) | *Unofficial, enhanced PSX emulator.*..[ *read more* ](apps/epsxe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/epsxe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/epsxe) | -| | [***eqonomize***](apps/eqonomize.md) | *Manage your personal finances.*..[ *read more* ](apps/eqonomize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eqonomize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eqonomize) | -| | [***equibop***](apps/equibop.md) | *Equibop is a custom Discord App aiming to give you better performance and improve linux support.*..[ *read more* ](apps/equibop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/equibop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/equibop) | -| | [***era***](apps/era.md) | *ERA is your note-taking tool.*..[ *read more* ](apps/era.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/era) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/era) | -| | [***erscaffold***](apps/erscaffold.md) | *A code generator for websites.*..[ *read more* ](apps/erscaffold.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/erscaffold) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/erscaffold) | -| | [***es-de***](apps/es-de.md) | *EmulationStation Desktop Edition.*..[ *read more* ](apps/es-de.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/es-de) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/es-de) | -| | [***escrcpy***](apps/escrcpy.md) | *Graphical Scrcpy to display and control Android, devices powered by Electron.*..[ *read more* ](apps/escrcpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/escrcpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/escrcpy) | -| | [***esearch***](apps/esearch.md) | *Screenshot OCR search translate search for picture paste...*..[ *read more* ](apps/esearch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/esearch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/esearch) | -| | [***espanso***](apps/espanso.md) | *Cross-platform Text Expander written in Rust.*..[ *read more* ](apps/espanso.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/espanso) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/espanso) | -| | [***espi***](apps/espi.md) | *Software recreation of the SP-1200 drum machine.*..[ *read more* ](apps/espi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/espi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/espi) | -| | [***etc1tool***](apps/platform-tools.md) | *Utility for compressing and decompressing ETC1 texture files. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***etcher***](apps/etcher.md) | *Flash OS images to SD cards and USB drives, Balena Etcher.*..[ *read more* ](apps/etcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/etcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/etcher) | -| | [***eternal-lands***](apps/eternal-lands.md) | *3D fantasy multiplayer online role playing game.*..[ *read more* ](apps/eternal-lands.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eternal-lands) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eternal-lands) | -| | [***eternalmodmanager***](apps/eternalmodmanager.md) | *A cross platform mod manager for DOOM Eternal.*..[ *read more* ](apps/eternalmodmanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eternalmodmanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eternalmodmanager) | -| | [***etherealengine-cc***](apps/etherealengine-cc.md) | *App for managing Ethereal Engine cluster.*..[ *read more* ](apps/etherealengine-cc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/etherealengine-cc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/etherealengine-cc) | -| | [***etichetta***](apps/etichetta.md) | *A YOLO annotator, for human beings.*..[ *read more* ](apps/etichetta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/etichetta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/etichetta) | -| | [***etlegacy***](apps/etlegacy.md) | *Enemy Territory.*..[ *read more* ](apps/etlegacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/etlegacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/etlegacy) | -| | [***evalit***](apps/evalit.md) | *A notepad calculator application with JavaScript configuration.*..[ *read more* ](apps/evalit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/evalit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/evalit) | -| | [***everdo***](apps/everdo.md) | *A powerful cross-platform GTD app with focus on privacy.*..[ *read more* ](apps/everdo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/everdo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/everdo) | -| | [***everinst***](apps/everinst.md) | *An installer for the Everest mod loader.*..[ *read more* ](apps/everinst.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/everinst) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/everinst) | -| | [***evernote***](apps/evernote.md) | *Unofficial. Note taking app. Remember everything and tackle any project with your notes, tasks, and schedule all in one place.*..[ *read more* ](apps/evernote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/evernote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/evernote) | -| | [***evince***](apps/evince.md) | *Unofficial. Document viewer for popular document formats.*..[ *read more* ](apps/evince.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/evince) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/evince) | -| | [***evoplex***](apps/evoplex.md) | *Agent-based modeling.*..[ *read more* ](apps/evoplex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/evoplex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/evoplex) | -| | [***excel-parser-processor***](apps/excel-parser-processor.md) | *Generates an array of items from the rows.*..[ *read more* ](apps/excel-parser-processor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/excel-parser-processor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/excel-parser-processor) | -| | [***exe***](apps/exe.md) | *A Elearning XHTML/HTML5 editor.*..[ *read more* ](apps/exe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exe) | -| | [***exeqt***](apps/exeqt.md) | *Cross platform tray manager.*..[ *read more* ](apps/exeqt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exeqt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exeqt) | -| | [***exifcleaner***](apps/exifcleaner.md) | *Clean exif metadata from images, videos, and PDFs.*..[ *read more* ](apps/exifcleaner.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exifcleaner) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exifcleaner) | -| | [***eximchain-wallet***](apps/eximchain-wallet.md) | *Eximchain Wallet web and electron app.*..[ *read more* ](apps/eximchain-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eximchain-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eximchain-wallet) | -| | [***exodus***](apps/exodus.md) | *Send, receive & exchange cryptocurrency. Bitcoin wallet.*..[ *read more* ](apps/exodus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exodus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exodus) | -| | [***expand***](apps/expand.md) | *Convert tabs to spaces. This is part of "am-utils" suite.*..[ *read more* ](apps/expand.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/expand) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/expand) | -| | [***explorook***](apps/explorook.md) | *Rookout’s site addon to support local files and folders.*..[ *read more* ](apps/explorook.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/explorook) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/explorook) | -| | [***exportoo***](apps/exportoo.md) | *Read and search your exports.*..[ *read more* ](apps/exportoo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exportoo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exportoo) | -| | [***expr***](apps/expr.md) | *Evaluate expressions. This is part of "am-utils" suite.*..[ *read more* ](apps/expr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/expr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/expr) | -| | [***exsplode.re***](apps/exsplode.re.md) | *A Bomberman game made with Godot under BSD3.*..[ *read more* ](apps/exsplode.re.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exsplode.re) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exsplode.re) | -| | [***extension-manager***](apps/extension-manager.md) | *A native tool for browsing, installing, and managing GNOME Shell Extensions.*..[ *read more* ](apps/extension-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/extension-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/extension-manager) | -| | [***extraterm***](apps/extraterm.md) | *The swiss army chainsaw of terminal emulators.*..[ *read more* ](apps/extraterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/extraterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/extraterm) | -| | [***extrema***](apps/extrema.md) | *Data visualisation and analysis.*..[ *read more* ](apps/extrema.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/extrema) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/extrema) | -| | [***extremetuxracer***](apps/extremetuxracer.md) | *Unofficial. 3D racing game with Tux, the Linux penguin.*..[ *read more* ](apps/extremetuxracer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/extremetuxracer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/extremetuxracer) | -| | [***exult***](apps/exult.md) | *Unofficial, a project to recreate Ultima 7 for modern operating systems.*..[ *read more* ](apps/exult.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exult) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exult) | -| | [***eyedropper***](apps/eyedropper.md) | *Unofficial. Simple color picker, with support for various color palettes.*..[ *read more* ](apps/eyedropper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eyedropper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eyedropper) | -| | [***eyestalker***](apps/eyestalker.md) | *Video-based eye tracking using recursive estimation of pupil.*..[ *read more* ](apps/eyestalker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eyestalker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eyestalker) | -| | [***ez-tree***](apps/ez-tree.md) | *EZ Tree – Procedural tree generator.*..[ *read more* ](apps/ez-tree.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ez-tree) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ez-tree) | -| | [***eza***](apps/eza.md) | *A modern, maintained replacement for ls.*..[ *read more* ](apps/eza.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eza) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eza) | -| | [***ezup***](apps/ezup.md) | *Easy File Upload to Cloud Storage.*..[ *read more* ](apps/ezup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ezup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ezup) | -| | [***f-crm***](apps/f-crm.md) | *Customer Relations Management for Freelancers.*..[ *read more* ](apps/f-crm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/f-crm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/f-crm) | -| | [***f1mv-lights-integration***](apps/f1mv-lights-integration.md) | *Connect your smart home lights to MultiViewer.*..[ *read more* ](apps/f1mv-lights-integration.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/f1mv-lights-integration) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/f1mv-lights-integration) | -| | [***fabother-world***](apps/fabother-world.md) | *Unofficial, an interpreter for Another World (Out of this world).*..[ *read more* ](apps/fabother-world.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fabother-world) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fabother-world) | -| | [***factor***](apps/factor.md) | *A general purpose, dynamically typed, stack-based programming language.. This is part of "am-utils" suite.*..[ *read more* ](apps/factor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/factor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/factor) | -| | [***fafarunner***](apps/fafarunner.md) | *A game developed using flutter and flame.*..[ *read more* ](apps/fafarunner.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fafarunner) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fafarunner) | -| | [***fairshare***](apps/fairshare.md) | *Simplifying the curation and sharing of biomedical research.*..[ *read more* ](apps/fairshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fairshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fairshare) | -| | [***fakedata***](apps/fakedata.md) | *CLI utility for fake data generation.*..[ *read more* ](apps/fakedata.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fakedata) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fakedata) | -| | [***falkon***](apps/falkon.md) | *Unofficial. A fast Qt web browser from KDE.*..[ *read more* ](apps/falkon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/falkon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/falkon) | -| | [***false***](apps/false.md) | *Do nothing, unsuccessfully. This is part of "am-utils" suite.*..[ *read more* ](apps/false.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/false) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/false) | -| | [***fantascene-dynamic-wallpaper***](apps/fantascene-dynamic-wallpaper.md) | *Dynamic wallpaper software for Linux.*..[ *read more* ](apps/fantascene-dynamic-wallpaper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fantascene-dynamic-wallpaper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fantascene-dynamic-wallpaper) | -| | [***fantasia-archive***](apps/fantasia-archive.md) | *A database manager for world building.*..[ *read more* ](apps/fantasia-archive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fantasia-archive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fantasia-archive) | -| | [***farmhand***](apps/farmhand.md) | *A resource management game that puts a farm in your hand.*..[ *read more* ](apps/farmhand.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/farmhand) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/farmhand) | -| | [***fastboot***](apps/platform-tools.md) | *Android bootloader tool for flashing, unlocking, and managing firmware. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***fastcompmgr***](apps/fastcompmgr.md) | *A fast compositor for X11.*..[ *read more* ](apps/fastcompmgr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fastcompmgr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fastcompmgr) | -| | [***fastfetch***](apps/fastfetch.md) | *Like neofetch, but much faster because written mostly in C.*..[ *read more* ](apps/fastfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fastfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fastfetch) | -| | [***fasttrack***](apps/fasttrack.md) | *Fast tracking of multiple objects.*..[ *read more* ](apps/fasttrack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fasttrack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fasttrack) | -| | [***fat-wallet***](apps/fat-wallet.md) | *Wallet for FAT tokens.*..[ *read more* ](apps/fat-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fat-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fat-wallet) | -| | [***fauxx***](apps/fauxx.md) | *Cross-device companion to Fauxx Android app that generates realistic decoy web activity through synthetic personas to pollute the profiles that data brokers and ad-tech build about you.*..[ *read more* ](apps/fauxx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fauxx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fauxx) | -| | [***fbreader***](apps/fbreader.md) | *Your Favourite eBook Reader*..[ *read more* ](apps/fbreader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fbreader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fbreader) | -| | [***fchat-horizon***](apps/fchat-horizon.md) | *The Best F-Chat 3.0 Client, No exceptions!.*..[ *read more* ](apps/fchat-horizon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fchat-horizon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fchat-horizon) | -| | [***fcp***](apps/fcp.md) | *CLI, a significantly faster alternative to the classic Unix cp(1) command, copying large files and directories in a fraction of the time.*..[ *read more* ](apps/fcp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fcp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fcp) | -| | [***fd***](apps/fd.md) | *A simple, fast and user-friendly alternative to 'find'.*..[ *read more* ](apps/fd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fd) | -| | [***fdm***](apps/fdm.md) | *Free Download Manager, multiplatform powerful modern download accelerator and organizer.*..[ *read more* ](apps/fdm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fdm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fdm) | -| | [***fdroidcl***](apps/fdroidcl.md) | *A command-line F-Droid desktop client.*..[ *read more* ](apps/fdroidcl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fdroidcl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fdroidcl) | -| | [***featherpad***](apps/featherpad.md) | *Unofficial. A lightweight Qt plain-text editor.*..[ *read more* ](apps/featherpad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/featherpad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/featherpad) | -| | [***feebas***](apps/feebas.md) | *Screenshot comparison tool for identifying visual regressions.*..[ *read more* ](apps/feebas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/feebas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/feebas) | -| | [***feedseries***](apps/feedseries.md) | *Follow your series enthusiast news, in french.*..[ *read more* ](apps/feedseries.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/feedseries) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/feedseries) | -| | [***feishin***](apps/feishin.md) | *Sonixd Rewrite, a desktop music player.*..[ *read more* ](apps/feishin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/feishin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/feishin) | -| | [***ferdium***](apps/ferdium.md) | *All your services in one place, built by the community.*..[ *read more* ](apps/ferdium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ferdium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ferdium) | -| | [***ferrix***](apps/ferrix.md) | *Fast, modern, cross-platform download manager built with Rust and Tauri, supports resumable downloads, clean UI, and blazing performance.*..[ *read more* ](apps/ferrix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ferrix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ferrix) | -| | [***fetchit***](apps/fetchit.md) | *A system fetch tool for Linux, written in Rust.*..[ *read more* ](apps/fetchit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fetchit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fetchit) | -| | [***ff-password-exporter***](apps/ff-password-exporter.md) | *Export your saved passwords from Firefox.*..[ *read more* ](apps/ff-password-exporter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ff-password-exporter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ff-password-exporter) | -| | [***ffdec-nightly***](apps/ffdec-nightly.md) | *JPEXS Free Flash Decompiler.*..[ *read more* ](apps/ffdec-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffdec-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffdec-nightly) | -| | [***ffdec***](apps/ffdec.md) | *JPEXS Free Flash Decompiler.*..[ *read more* ](apps/ffdec.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffdec) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffdec) | -| | [***fflogs-uploader***](apps/fflogs-uploader.md) | *FFLogs Uploader appimage.*..[ *read more* ](apps/fflogs-uploader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fflogs-uploader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fflogs-uploader) | -| | [***ffmpeg***](apps/ffmpeg.md) | *Unofficial, A complete, cross-platform solution to record, convert and stream audio and video.*..[ *read more* ](apps/ffmpeg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffmpeg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffmpeg) | -| | [***ffsend***](apps/ffsend.md) | *Easily and securely share files from the command line. A fully featured Firefox Send client.*..[ *read more* ](apps/ffsend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffsend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffsend) | -| | [***ficus***](apps/ficus.md) | *A software for editing and managing markdown documents.*..[ *read more* ](apps/ficus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ficus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ficus) | -| | [***fiddler-everywhere***](apps/fiddler-everywhere.md) | *Debug your network traffic to deliver high-quality products.*..[ *read more* ](apps/fiddler-everywhere.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fiddler-everywhere) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fiddler-everywhere) | -| | [***fidias-database-migration-app***](apps/fidias-database-migration-app.md) | *Migrate SQL-based databases.*..[ *read more* ](apps/fidias-database-migration-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fidias-database-migration-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fidias-database-migration-app) | -| | [***fifo***](apps/fifo.md) | *A modern web browser, built on top of modern web technologies.*..[ *read more* ](apps/fifo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fifo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fifo) | -| | [***figma-linux***](apps/figma-linux.md) | *First interface design tool based in the browser, graphics.*..[ *read more* ](apps/figma-linux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/figma-linux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/figma-linux) | -| | [***file-commander***](apps/file-commander.md) | *CLI, cross-platform Total Commander-like orthodox file manager.*..[ *read more* ](apps/file-commander.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file-commander) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file-commander) | -| | [***file-converter***](apps/file-converter.md) | *Convert between various file formats.*..[ *read more* ](apps/file-converter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file-converter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file-converter) | -| | [***file-roller***](apps/file-roller.md) | *File Roller is an archive manager for the GNOME desktop environment. Create and modify archives.*..[ *read more* ](apps/file-roller.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file-roller) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file-roller) | -| | [***file-to-c***](apps/file-to-c.md) | *Tool for generating a C header from a spir-v binary file.*..[ *read more* ](apps/file-to-c.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file-to-c) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file-to-c) | -| | [***file***](apps/file.md) | *Determine the type of a file from its contents. This is part of "am-utils" suite.*..[ *read more* ](apps/file.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file) | -| | [***filebrowser-quantum***](apps/filebrowser-quantum.md) | *Web File Browser.*..[ *read more* ](apps/filebrowser-quantum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filebrowser-quantum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filebrowser-quantum) | -| | [***filebrowser***](apps/filebrowser.md) | *Web File Browser.*..[ *read more* ](apps/filebrowser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filebrowser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filebrowser) | -| | [***filelight***](apps/filelight.md) | *Unofficial. View disk usage information, by KDE.*..[ *read more* ](apps/filelight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filelight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filelight) | -| | [***filen-cli***](apps/filen-cli.md) | *Filen CLI for Windows, macOS and Linux*..[ *read more* ](apps/filen-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filen-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filen-cli) | -| | [***filen***](apps/filen.md) | *Desktop client for Filen.io, end-to-end encrypted cloud storage.*..[ *read more* ](apps/filen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filen) | -| | [***filezilla***](apps/filezilla.md) | *Unofficial. The free FTP solution with support for FTP over TLS and SFTP.*..[ *read more* ](apps/filezilla.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filezilla) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filezilla) | -| | [***filmulator-gui***](apps/filmulator-gui.md) | *Simplified raw editing with the power of film, graphics.*..[ *read more* ](apps/filmulator-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filmulator-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filmulator-gui) | -| | [***find***](apps/find.md) | *Files in a directory hierarchy. This is part of "am-utils" suite.*..[ *read more* ](apps/find.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/find) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/find) | -| | [***fingrom***](apps/fingrom.md) | *Financial accounting application*..[ *read more* ](apps/fingrom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fingrom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fingrom) | -| | [***firealpaca***](apps/firealpaca.md) | *A Free and Multiplatform Digital Painting Software.*..[ *read more* ](apps/firealpaca.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firealpaca) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firealpaca) | -| | [***firecamp***](apps/firecamp.md) | *Developer-first OpenSource API DevTool, Postman/Insomnia alternative.*..[ *read more* ](apps/firecamp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firecamp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firecamp) | -| | [***firedragon***](apps/firedragon.md) | *A web browser based on Floorp (the Vivaldi of Firefox's) with many opiniated settings by default.*..[ *read more* ](apps/firedragon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firedragon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firedragon) | -| | [***firefly-desktop***](apps/firefly-desktop.md) | *The official IOTA and Shimmer wallet.*..[ *read more* ](apps/firefly-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefly-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefly-desktop) | -| | [***firefox-beta***](apps/firefox-beta.md) | *Fast, powerful and extensible Web Browser, Beta Edition.*..[ *read more* ](apps/firefox-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-beta) | -| | [***firefox-devedition***](apps/firefox-devedition.md) | *Fast, powerful and extensible Web Browser, Developer Edition.*..[ *read more* ](apps/firefox-devedition.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-devedition) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-devedition) | -| | [***firefox-esr***](apps/firefox-esr.md) | *Fast, powerful and extensible Web Browser, ESR Edition.*..[ *read more* ](apps/firefox-esr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-esr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-esr) | -| | [***firefox-nightly***](apps/firefox-nightly.md) | *Fast, powerful and extensible Web Browser, Nightly Edition.*..[ *read more* ](apps/firefox-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-nightly) | -| | [***firefox***](apps/firefox.md) | *Fast, powerful and extensible Web Browser, Stable.*..[ *read more* ](apps/firefox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox) | -| | [***fireminipro***](apps/fireminipro.md) | *GUI for minipro CLI.*..[ *read more* ](apps/fireminipro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fireminipro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fireminipro) | -| | [***firetail***](apps/firetail.md) | *An open source music player.*..[ *read more* ](apps/firetail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firetail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firetail) | -| | [***firetv-toolkit***](apps/firetv-toolkit.md) | *Android-Toolkit, a GUI for adb, modify android devices.*..[ *read more* ](apps/firetv-toolkit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firetv-toolkit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firetv-toolkit) | -| | [***fish***](apps/fish.md) | *The user-friendly command line shell.*..[ *read more* ](apps/fish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fish) | -| | [***fishing-funds***](apps/fishing-funds.md) | *Fund, big market, stock, virtual currency status, in chinese.*..[ *read more* ](apps/fishing-funds.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fishing-funds) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fishing-funds) | -| | [***fishterm***](apps/fishterm.md) | *A open-soruce Terminal remote access.*..[ *read more* ](apps/fishterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fishterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fishterm) | -| | [***fixit***](apps/fixit.md) | *A utility to fix mistakes in your commands.*..[ *read more* ](apps/fixit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fixit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fixit) | -| | [***fjordlauncher***](apps/fjordlauncher.md) | *Prism Launcher fork with support for alternative auth servers.*..[ *read more* ](apps/fjordlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fjordlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fjordlauncher) | -| | [***flacon***](apps/flacon.md) | *Audio File Encoder. Extracts audio tracks from audio CDs.*..[ *read more* ](apps/flacon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flacon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flacon) | -| | [***fladder***](apps/fladder.md) | *A Simple Jellyfin frontend built on top of Flutter.*..[ *read more* ](apps/fladder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fladder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fladder) | -| | [***flameshot***](apps/flameshot.md) | *Tool to take screenshots with many built-in features, graphics.*..[ *read more* ](apps/flameshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flameshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flameshot) | -| | [***flare***](apps/flare.md) | *Fantasy action RPG game using the FLARE engine.*..[ *read more* ](apps/flare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flare) | -| | [***flashpoint***](apps/flashpoint.md) | *Flashpoint Archive is a community effort to preserve games and animations from the web.*..[ *read more* ](apps/flashpoint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flashpoint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flashpoint) | -| | [***flashrom***](apps/flashrom.md) | *Unofficial AppImage of ffmpeg.*..[ *read more* ](apps/flashrom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flashrom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flashrom) | -| | [***flawesome***](apps/flawesome.md) | *Flawesome is a modern productivity tool.*..[ *read more* ](apps/flawesome.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flawesome) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flawesome) | -| | [***flb***](apps/flb.md) | *A beautiful Feature Rich Music Player and Downloader,cross platform.*..[ *read more* ](apps/flb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flb) | -| | [***flclash***](apps/flclash.md) | *A multi-platform proxy client based on ClashMeta,simple and easy to use, open-source and ad-free.*..[ *read more* ](apps/flclash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flclash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flclash) | -| | [***flightcore***](apps/flightcore.md) | *A Northstar installer, updater, and mod-manager.*..[ *read more* ](apps/flightcore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flightcore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flightcore) | -| | [***flightgear-airports***](apps/flightgear-airports.md) | *A software to design Flightgear groundnets.*..[ *read more* ](apps/flightgear-airports.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flightgear-airports) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flightgear-airports) | -| | [***flightgear***](apps/flightgear.md) | *Free, open source flight simulator developed since 1997.*..[ *read more* ](apps/flightgear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flightgear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flightgear) | -| | [***flippy-qualitative-testbench***](apps/flippy-qualitative-testbench.md) | *Music sheet reader.*..[ *read more* ](apps/flippy-qualitative-testbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flippy-qualitative-testbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flippy-qualitative-testbench) | -| | [***floorp***](apps/floorp.md) | *Floorp Web Browser, the most Advanced and Fastest Firefox derivative.*..[ *read more* ](apps/floorp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/floorp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/floorp) | -| | [***flow-browser***](apps/flow-browser.md) | *A modern, privacy-focused browser with a minimalistic design.*..[ *read more* ](apps/flow-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flow-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flow-browser) | -| | [***flow***](apps/flow.md) | *a programmer's text editor.*..[ *read more* ](apps/flow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flow) | -| | [***flowinity***](apps/flowinity.md) | *The versatile all-in-one online platform, for everyone.*..[ *read more* ](apps/flowinity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flowinity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flowinity) | -| | [***fluent-reader***](apps/fluent-reader.md) | *Modern desktop RSS reader.*..[ *read more* ](apps/fluent-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fluent-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fluent-reader) | -| | [***fluffychat***](apps/fluffychat.md) | *The cutest instant messenger in the matrix.*..[ *read more* ](apps/fluffychat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fluffychat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fluffychat) | -| | [***fluxer***](apps/fluxer.md) | *A free and open source instant messaging and VoIP platform built for friends, groups, and communities.*..[ *read more* ](apps/fluxer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fluxer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fluxer) | -| | [***flycast-dojo***](apps/flycast-dojo.md) | *Flycast fork, multiplatform Sega Dreamcast, Naomi and Atomiswave emulator for netplay, training & online tournament gameplay.*..[ *read more* ](apps/flycast-dojo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flycast-dojo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flycast-dojo) | -| | [***flycast-enhanced***](apps/flycast-enhanced.md) | *Unofficial, A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator.*..[ *read more* ](apps/flycast-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flycast-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flycast-enhanced) | -| | [***flycast***](apps/flycast.md) | *A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator.*..[ *read more* ](apps/flycast.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flycast) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flycast) | -| | [***flyctl***](apps/flyctl.md) | *Command line tools for fly.io services.*..[ *read more* ](apps/flyctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flyctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flyctl) | -| | [***flyingcarpet***](apps/flyingcarpet.md) | *Cross-platform AirDrop. File transfer between Android, iOS, Linux, macOS, and Windows over ad hoc WiFi. No network infrastructure required, just two devices with WiFi chips in close range.*..[ *read more* ](apps/flyingcarpet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flyingcarpet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flyingcarpet) | -| | [***fman***](apps/fman.md) | *TUI CLI File Manager.*..[ *read more* ](apps/fman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fman) | -| | [***fmradio***](apps/fmradio.md) | *Cross platform FM Radio App for RTL2832U dongles.*..[ *read more* ](apps/fmradio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fmradio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fmradio) | -| | [***fms-file-explorer***](apps/fms-file-explorer.md) | *Access and exploration of data produced.*..[ *read more* ](apps/fms-file-explorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fms-file-explorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fms-file-explorer) | -| | [***fmt***](apps/fmt.md) | *Text formatter. This is part of "am-utils" suite.*..[ *read more* ](apps/fmt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fmt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fmt) | -| | [***focalizzare***](apps/focalizzare.md) | *A Timer for Pomodoro Technique.*..[ *read more* ](apps/focalizzare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focalizzare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focalizzare) | -| | [***focus***](apps/focus.md) | *A fully featured productivity timer for the command line, based on the Pomodoro Technique.*..[ *read more* ](apps/focus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focus) | -| | [***focusatwill***](apps/focusatwill.md) | *Combines neuroscience and music to boost productivity.*..[ *read more* ](apps/focusatwill.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focusatwill) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focusatwill) | -| | [***focuswriter***](apps/focuswriter.md) | *Simple fullscreen word processor.*..[ *read more* ](apps/focuswriter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focuswriter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focuswriter) | -| | [***fold***](apps/fold.md) | *Wrap each input line to fit in specified width. This is part of "am-utils" suite.*..[ *read more* ](apps/fold.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fold) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fold) | -| | [***folo***](apps/folo.md) | *Folo is the AI Reader.*..[ *read more* ](apps/folo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/folo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/folo) | -| | [***fontbase***](apps/fontbase.md) | *A lightning fast, beautiful and free font manager for designers.*..[ *read more* ](apps/fontbase.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fontbase) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fontbase) | -| | [***fontforge***](apps/fontforge.md) | *Free, libre font editor.*..[ *read more* ](apps/fontforge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fontforge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fontforge) | -| | [***fontlet***](apps/fontlet.md) | *A package manager for fonts.*..[ *read more* ](apps/fontlet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fontlet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fontlet) | -| | [***foobar2000***](apps/foobar2000.md) | *Unofficial, an advanced freeware audio player for Windows, includes WINE.*..[ *read more* ](apps/foobar2000.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foobar2000) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foobar2000) | -| | [***foobillardpp***](apps/foobillardpp.md) | *Unofficial, an OpenGL Billard Game based on foobillard 3.0a with patches and new features.*..[ *read more* ](apps/foobillardpp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foobillardpp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foobillardpp) | -| | [***foot***](apps/foot.md) | *Unofficial, A fast, lightweight and minimalistic Wayland terminal emulator (This AppImage can work on x11 as well).*..[ *read more* ](apps/foot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foot) | -| | [***fooyin***](apps/fooyin.md) | *Unofficial, a customisable music player.*..[ *read more* ](apps/fooyin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fooyin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fooyin) | -| | [***forkgram***](apps/forkgram.md) | *Fork of Telegram Desktop messaging app.*..[ *read more* ](apps/forkgram.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/forkgram) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/forkgram) | -| | [***four***](apps/four.md) | *Electron App to access All4/Channel4, UK.*..[ *read more* ](apps/four.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/four) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/four) | -| | [***foxfolio***](apps/foxfolio.md) | *Cryptocurrency portfolio management application.*..[ *read more* ](apps/foxfolio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foxfolio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foxfolio) | -| | [***fpm***](apps/fpm.md) | *Faster Project Plus on Linux.*..[ *read more* ](apps/fpm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fpm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fpm) | -| | [***fractale***](apps/fractale.md) | *2D modeling of the Von Koch fractal.*..[ *read more* ](apps/fractale.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fractale) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fractale) | -| | [***fraidycat***](apps/fraidycat.md) | *Follow blogs, wikis, YouTube, Twitter, Reddit, Instagram and more.*..[ *read more* ](apps/fraidycat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fraidycat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fraidycat) | -| | [***fraktal***](apps/fraktal.md) | *Podcast Manager in Electron.*..[ *read more* ](apps/fraktal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fraktal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fraktal) | -| | [***frame-eth-dev***](apps/frame-eth-dev.md) | *A privacy focused Ethereum wallet.*..[ *read more* ](apps/frame-eth-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/frame-eth-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/frame-eth-dev) | -| | [***frame***](apps/frame.md) | *Fast FFmpeg GUI.*..[ *read more* ](apps/frame.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/frame) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/frame) | -| | [***francetv***](apps/francetv.md) | *The france.tv site in an application.*..[ *read more* ](apps/francetv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/francetv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/francetv) | -| | [***francis***](apps/kdeutils.md) | *Pomodoro technique, get more productive. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***franz***](apps/franz.md) | *Messaging app for WhatsApp, Slack, Telegram, HipChat and much more.*..[ *read more* ](apps/franz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/franz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/franz) | -| | [***frappebooks***](apps/frappebooks.md) | *Book-keeping software for small-businesses and freelancers.*..[ *read more* ](apps/frappebooks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/frappebooks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/frappebooks) | -| | [***freac***](apps/freac.md) | *fre:ac, free audio converter and CD ripper for various encoders.*..[ *read more* ](apps/freac.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freac) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freac) | -| | [***freecad-assembly3***](apps/freecad-assembly3.md) | *Assembly3 workbench for FreeCAD.*..[ *read more* ](apps/freecad-assembly3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freecad-assembly3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freecad-assembly3) | -| | [***freecad-weekly***](apps/freecad-weekly.md) | *Official developmet build of FreeCAD, a free and opensource multiplatform 3D parametric modeler.*..[ *read more* ](apps/freecad-weekly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freecad-weekly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freecad-weekly) | -| | [***freecad***](apps/freecad.md) | *Free and open source AutoCAD alternative.*..[ *read more* ](apps/freecad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freecad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freecad) | -| | [***freefilesync***](apps/freefilesync.md) | *folder comparison and synchronization software.*..[ *read more* ](apps/freefilesync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freefilesync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freefilesync) | -| | [***freeman***](apps/freeman.md) | *A free, extensible, cross-platform file manager for power users.*..[ *read more* ](apps/freeman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freeman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freeman) | -| | [***freeshow***](apps/freeshow.md) | *User-friendly presenter software.*..[ *read more* ](apps/freeshow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freeshow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freeshow) | -| | [***freetexturepacker***](apps/freetexturepacker.md) | *Creates sprite sheets for you game or site, graphics.*..[ *read more* ](apps/freetexturepacker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freetexturepacker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freetexturepacker) | -| | [***freetube-enhanced***](apps/freetube-enhanced.md) | *Unofficial, An Open Source YouTube app for privacy.*..[ *read more* ](apps/freetube-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freetube-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freetube-enhanced) | -| | [***freetube***](apps/freetube.md) | *An Open Source YouTube app for privacy.*..[ *read more* ](apps/freetube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freetube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freetube) | -| | [***freeze***](apps/freeze.md) | *Generate images of code and terminal output.*..[ *read more* ](apps/freeze.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freeze) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freeze) | -| | [***freezer***](apps/freezer.md) | *An unofficial client for Deezer.*..[ *read more* ](apps/freezer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freezer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freezer) | -| | [***fresh***](apps/fresh.md) | *easy, powerful and fast.*..[ *read more* ](apps/fresh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fresh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fresh) | -| | [***freshfetch***](apps/freshfetch.md) | *An alternative to Neofetch in Rust with a focus on customization.*..[ *read more* ](apps/freshfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freshfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freshfetch) | -| | [***fretboard***](apps/fretboard.md) | *Unofficial. Application which helps you find your favorite guitar chord.*..[ *read more* ](apps/fretboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fretboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fretboard) | -| | [***friction***](apps/friction.md) | *Flexible, user expandable 2D animation software.*..[ *read more* ](apps/friction.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/friction) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/friction) | -| | [***friture***](apps/friture.md) | *Real-time audio visualizations, spectrum, spectrogram, etc..*..[ *read more* ](apps/friture.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/friture) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/friture) | -| | [***fromscratch***](apps/fromscratch.md) | *Simple autosaving scratchpad.*..[ *read more* ](apps/fromscratch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fromscratch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fromscratch) | -| | [***frontimer***](apps/frontimer.md) | *Desktop timer application always displayed in the forefront of the screen.*..[ *read more* ](apps/frontimer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/frontimer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/frontimer) | -| | [***fspy***](apps/fspy.md) | *An open source, cross platform app for still image camera matching.*..[ *read more* ](apps/fspy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fspy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fspy) | -| | [***fukayo***](apps/fukayo.md) | *Manga reader.*..[ *read more* ](apps/fukayo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fukayo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fukayo) | -| | [***funkin-legacy***](apps/funkin-legacy.md) | *Legacy GLibC Linux support for Friday Night Funkin. A rhythm game made with HaxeFlixel.*..[ *read more* ](apps/funkin-legacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/funkin-legacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/funkin-legacy) | -| | [***funkin***](apps/funkin.md) | *A rhythm game made with HaxeFlixel*..[ *read more* ](apps/funkin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/funkin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/funkin) | -| | [***furnace***](apps/furnace.md) | *A multi-system chiptune tracker compatible with DefleMask modules.*..[ *read more* ](apps/furnace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/furnace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/furnace) | -| | [***fx***](apps/fx.md) | *Terminal JSON viewer & processor.*..[ *read more* ](apps/fx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fx) | -| | [***fynodoro***](apps/fynodoro.md) | *Fynodoro, the Pomodoro Widget.*..[ *read more* ](apps/fynodoro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fynodoro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fynodoro) | -| | [***fzf***](apps/fzf.md) | *A command-line fuzzy finder.*..[ *read more* ](apps/fzf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fzf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fzf) | -| | [***g-v2ray***](apps/g-v2ray.md) | *Advanced V2Ray/Xray GUI Client for Linux.*..[ *read more* ](apps/g-v2ray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/g-v2ray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/g-v2ray) | -| | [***gaiasky***](apps/gaiasky.md) | *Gaia Sky, a real-time 3D space simulator & astronomy visualisation.*..[ *read more* ](apps/gaiasky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gaiasky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gaiasky) | -| | [***galculator***](apps/galculator.md) | *A GTK 2 / GTK 3 based scientific calculator.*..[ *read more* ](apps/galculator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/galculator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/galculator) | -| | [***gale***](apps/gale.md) | *A modern mod manager for Thunderstore.*..[ *read more* ](apps/gale.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gale) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gale) | -| | [***gallery-dl-nightly***](apps/gallery-dl-nightly.md) | *Command-line program to download image galleries and collections from several image hosting sites, nightly build.*..[ *read more* ](apps/gallery-dl-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gallery-dl-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gallery-dl-nightly) | -| | [***gallery-dl***](apps/gallery-dl.md) | *Command-line program to download image galleries and collections from several image hosting sites.*..[ *read more* ](apps/gallery-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gallery-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gallery-dl) | -| | [***gameconqueror***](apps/gameconqueror.md) | *Unofficial. Memory scanner designed to isolate the adress of an arbitrary variable in an executing process (gtk GUI).*..[ *read more* ](apps/gameconqueror.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gameconqueror) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gameconqueror) | -| | [***gamehub***](apps/gamehub.md) | *Unified library for all your games from different platforms.*..[ *read more* ](apps/gamehub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gamehub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gamehub) | -| | [***gameimage***](apps/gameimage.md) | *Pack a runner/emulator/game and it's configs in a single AppImage.*..[ *read more* ](apps/gameimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gameimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gameimage) | -| | [***gamescope***](apps/gamescope.md) | *Unofficial AppImage of gamescope.*..[ *read more* ](apps/gamescope.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gamescope) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gamescope) | -| | [***gams-studio***](apps/gams-studio.md) | *Development environment of General Algebraic Modeling System.*..[ *read more* ](apps/gams-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gams-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gams-studio) | -| | [***ganache***](apps/ganache.md) | *Personal Blockchain for Ethereum, latest AppImage for Linux.*..[ *read more* ](apps/ganache.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ganache) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ganache) | -| | [***gaphor***](apps/gaphor.md) | *A UML and SysML modeling application written in Python.*..[ *read more* ](apps/gaphor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gaphor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gaphor) | -| | [***gapless***](apps/gapless.md) | *Unofficial. Simple music player with blur and gapless playback.*..[ *read more* ](apps/gapless.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gapless) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gapless) | -| | [***gargoyle-bin***](apps/gargoyle-bin.md) | *Interactive Fiction multi-int. for all major IF formats.*..[ *read more* ](apps/gargoyle-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gargoyle-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gargoyle-bin) | -| | [***gaucho***](apps/gaucho.md) | *Minimalist task launcher*..[ *read more* ](apps/gaucho.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gaucho) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gaucho) | -| | [***gawk***](apps/gawk.md) | *GNU version of awk. This is part of "am-utils" suite.*..[ *read more* ](apps/gawk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gawk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gawk) | -| | [***gcap2025***](apps/gcap2025.md) | *Appimage não oficial do GCAP2025, declare seus ganhos de capital (Ano-calendário 2025).*..[ *read more* ](apps/gcap2025.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gcap2025) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gcap2025) | -| | [***gcap2026***](apps/gcap2026.md) | *Appimage não oficial do GCAP2026, declare seus ganhos de capital (Ano-calendário 2026).*..[ *read more* ](apps/gcap2026.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gcap2026) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gcap2026) | -| | [***gcstar***](apps/gcstar.md) | *Unofficial, collection manager written in Perl and based on Gtk.*..[ *read more* ](apps/gcstar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gcstar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gcstar) | -| | [***gdesktopsuite***](apps/gdesktopsuite.md) | *Google Suite as a desktop app, made possible with Electron.*..[ *read more* ](apps/gdesktopsuite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gdesktopsuite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gdesktopsuite) | -| | [***gdevelop***](apps/gdevelop.md) | *Cross-platform game engine designed to be used by everyone.*..[ *read more* ](apps/gdevelop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gdevelop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gdevelop) | -| | [***gdlauncher***](apps/gdlauncher.md) | *Simple, yet powerful Minecraft custom launcher.*..[ *read more* ](apps/gdlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gdlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gdlauncher) | -| | [***gdm-settings***](apps/gdm-settings.md) | *A settings app for GNOME's Login Manager, GDM.*..[ *read more* ](apps/gdm-settings.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gdm-settings) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gdm-settings) | -| | [***geany***](apps/geany.md) | *Unofficial, a fast and lightweight IDE.*..[ *read more* ](apps/geany.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geany) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geany) | -| | [***gearboy***](apps/gearboy.md) | *Unofficial, Game Boy / Gameboy Color emulator.*..[ *read more* ](apps/gearboy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearboy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearboy) | -| | [***gearcoleco***](apps/gearcoleco.md) | *Unofficial, ColecoVision emulator.*..[ *read more* ](apps/gearcoleco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearcoleco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearcoleco) | -| | [***geargrafx***](apps/geargrafx.md) | *Unofficial, PC Engine / TurboGrafx-16 / SuperGrafx / PCE CD-ROM² emulator.*..[ *read more* ](apps/geargrafx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geargrafx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geargrafx) | -| | [***gearlever***](apps/gearlever.md) | *Unofficial. An utility to organize and manage AppImage files for you, generate desktop entries and app metadata, update apps in-place or keep multiple versions side-by-side.*..[ *read more* ](apps/gearlever.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearlever) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearlever) | -| | [***gearlynx***](apps/gearlynx.md) | *Unofficial, Atari Lynx emulator.*..[ *read more* ](apps/gearlynx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearlynx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearlynx) | -| | [***gearsystem***](apps/gearsystem.md) | *Unofficial, Sega Master System / Game Gear / SG-1000 emulator.*..[ *read more* ](apps/gearsystem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearsystem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearsystem) | -| | [***gedit***](apps/gedit.md) | *An easy-to-use general-purpose text editor for the GNOME desktop environment.*..[ *read more* ](apps/gedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gedit) | -| | [***geeqie***](apps/geeqie.md) | *Claiming to be the best image viewer and photo collection browser.*..[ *read more* ](apps/geeqie.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geeqie) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geeqie) | -| | [***geforce-infinity***](apps/geforce-infinity.md) | *Enhance the Nvidia GeForce NOW experience.*..[ *read more* ](apps/geforce-infinity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geforce-infinity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geforce-infinity) | -| | [***geforcenow-electron***](apps/geforcenow-electron.md) | *Desktop client for Nvidia GeForce NOW game streaming.*..[ *read more* ](apps/geforcenow-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geforcenow-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geforcenow-electron) | -| | [***gemalaya***](apps/gemalaya.md) | *A keyboard-driven Gemini browser written in QML.*..[ *read more* ](apps/gemalaya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gemalaya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gemalaya) | -| | [***gemget***](apps/gemget.md) | *Command line downloader for the Gemini protocol.*..[ *read more* ](apps/gemget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gemget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gemget) | -| | [***gemrb***](apps/gemrb.md) | *GemRB is a portable open-source implementation of Bioware's Infinity Engine.*..[ *read more* ](apps/gemrb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gemrb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gemrb) | -| | [***genact***](apps/genact.md) | *A nonsense activity generator.*..[ *read more* ](apps/genact.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/genact) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/genact) | -| | [***genesis***](apps/genesis.md) | *Open source blockchain platform.*..[ *read more* ](apps/genesis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/genesis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/genesis) | -| | [***geofs***](apps/geofs.md) | *GeoFS flight sim as a desktop application.*..[ *read more* ](apps/geofs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geofs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geofs) | -| | [***geometrize***](apps/geometrize.md) | *Images to shapes converter, graphics.*..[ *read more* ](apps/geometrize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geometrize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geometrize) | -| | [***gerbil***](apps/gerbil.md) | *A desktop app for running Large Language Models locally.*..[ *read more* ](apps/gerbil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gerbil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gerbil) | -| | [***gerbv***](apps/gerbv.md) | *Gerber file viewer for PCB design.*..[ *read more* ](apps/gerbv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gerbv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gerbv) | -| | [***gert***](apps/gert.md) | *A command line tool to download media from Reddit.*..[ *read more* ](apps/gert.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gert) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gert) | -| | [***getthermal***](apps/getthermal.md) | *Cross-platform Thermal Camera Viewer.*..[ *read more* ](apps/getthermal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/getthermal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/getthermal) | -| | [***gextractwinicons***](apps/gextractwinicons.md) | *Extract cursors, icons and images from MS Windows files.*..[ *read more* ](apps/gextractwinicons.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gextractwinicons) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gextractwinicons) | -| | [***gh-eco***](apps/gh-eco.md) | *gh cli extension to explore the ecosystem.*..[ *read more* ](apps/gh-eco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gh-eco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gh-eco) | -| | [***gh***](apps/gh.md) | *GitHub’s official command line tool.*..[ *read more* ](apps/gh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gh) | -| | [***gharmonize***](apps/gharmonize.md) | *A cross-platform media conversion app with a built-in YouTube downloader and Spotify downloader, powered by yt-dlp and ffmpeg — now featuring FPS adaptation support for AC3, EAC3, and AAC codecs.*..[ *read more* ](apps/gharmonize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gharmonize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gharmonize) | -| | [***ghdl***](apps/ghdl.md) | *A much more convenient way to download GitHub release binaries on the command line.*..[ *read more* ](apps/ghdl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghdl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghdl) | -| | [***ghidra***](apps/ghidra.md) | *Ghidra is a software reverse engineering (SRE) framework.*..[ *read more* ](apps/ghidra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghidra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghidra) | -| | [***ghostship***](apps/ghostship.md) | *Unofficial, Another definitive port of Super Mario 64.*..[ *read more* ](apps/ghostship.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostship) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostship) | -| | [***ghostty-glfw-nightly***](apps/ghostty-glfw-nightly.md) | *Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Tip, Nightly) (glfw version)*..[ *read more* ](apps/ghostty-glfw-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty-glfw-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty-glfw-nightly) | -| | [***ghostty-glfw***](apps/ghostty-glfw.md) | *Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (glfw version)*..[ *read more* ](apps/ghostty-glfw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty-glfw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty-glfw) | -| | [***ghostty-nightly***](apps/ghostty-nightly.md) | *Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Tip, Nightly)*..[ *read more* ](apps/ghostty-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty-nightly) | -| | [***ghostty***](apps/ghostty.md) | *Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Stable)*..[ *read more* ](apps/ghostty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty) | -| | [***ghrel***](apps/ghrel.md) | *Download and verify GitHub release.*..[ *read more* ](apps/ghrel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghrel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghrel) | -| | [***giada***](apps/giada.md) | *Hardcore audio music production tool and drum machine for DJs.*..[ *read more* ](apps/giada.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/giada) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/giada) | -| | [***gibs***](apps/gibs.md) | *Generally In-source Build System, build C++ projects without a project.*..[ *read more* ](apps/gibs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gibs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gibs) | -| | [***gickup***](apps/gickup.md) | *Backup your Git repositories with ease.*..[ *read more* ](apps/gickup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gickup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gickup) | -| | [***gifcurry***](apps/gifcurry.md) | *The open-source, Haskell-built video editor for GIF makers.*..[ *read more* ](apps/gifcurry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gifcurry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gifcurry) | -| | [***gimagereader***](apps/gimagereader.md) | *Unofficial AppImage of gImageReader.*..[ *read more* ](apps/gimagereader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimagereader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimagereader) | -| | [***gimp-git***](apps/gimp-git.md) | *Unofficial, Cross-platform image and photo editor, built from GIT.*..[ *read more* ](apps/gimp-git.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimp-git) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimp-git) | -| | [***gimp-hybrid***](apps/gimp-hybrid.md) | *Unofficial, GIMP including third-party plugins and python2 support.*..[ *read more* ](apps/gimp-hybrid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimp-hybrid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimp-hybrid) | -| | [***gimp***](apps/gimp.md) | *GNU Image Manipulation Program, cross-platform image and photo editor. Multiple-choices.*..[ *read more* ](apps/gimp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimp) | -| | [***gingko***](apps/gingko.md) | *Gingko client rewritten in Elm.*..[ *read more* ](apps/gingko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gingko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gingko) | -| | [***git-cliff***](apps/git-cliff.md) | *A highly customizable Changelog Generator that follows Conventional Commit specifications.*..[ *read more* ](apps/git-cliff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-cliff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-cliff) | -| | [***git-credential-oauth***](apps/git-credential-oauth.md) | *A Git credential helper that securely authenticates to GitHub, GitLab and BitBucket using OAuth.*..[ *read more* ](apps/git-credential-oauth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-credential-oauth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-credential-oauth) | -| | [***git-good***](apps/git-good.md) | *Just a simple git client using electron and nodegit.*..[ *read more* ](apps/git-good.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-good) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-good) | -| | [***git-side***](apps/git-side.md) | *A Git subcommand that versions files and directories that should not live in the main repository, using a per-project bare repository invisible to Git.*..[ *read more* ](apps/git-side.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-side) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-side) | -| | [***gitbutler***](apps/gitbutler.md) | *The GitButler version control client, backed by Git, powered by Tauri/Rust/Svelte.*..[ *read more* ](apps/gitbutler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitbutler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitbutler) | -| | [***githoard***](apps/githoard.md) | *Hoard git repositories with ease.*..[ *read more* ](apps/githoard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/githoard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/githoard) | -| | [***github-desktop-plus***](apps/github-desktop-plus.md) | *Electron-based GitHub Desktop fork with advanced functionality and Bitbucket, GitLab integration.*..[ *read more* ](apps/github-desktop-plus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/github-desktop-plus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/github-desktop-plus) | -| | [***github-store***](apps/github-store.md) | *A free, open-source app store for GitHub releases. Browse, discover, and install apps with one click. Powered by Kotlin and Compose Multiplatform for Android & Desktop.*..[ *read more* ](apps/github-store.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/github-store) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/github-store) | -| | [***gitify***](apps/gitify.md) | *GitHub notifications on your menu bar.*..[ *read more* ](apps/gitify.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitify) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitify) | -| | [***gitjournal***](apps/gitjournal.md) | *Mobile first Note Taking integrated with Git.*..[ *read more* ](apps/gitjournal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitjournal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitjournal) | -| | [***gitkraken***](apps/gitkraken.md) | *GitKraken Client including an intuitive GUI & powerful CLI.*..[ *read more* ](apps/gitkraken.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitkraken) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitkraken) | -| | [***gitleaks***](apps/gitleaks.md) | *Protect and discover secrets using Gitleaks.*..[ *read more* ](apps/gitleaks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitleaks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitleaks) | -| | [***gitlight***](apps/gitlight.md) | *GitHub & GitLab notifications on your desktop.*..[ *read more* ](apps/gitlight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitlight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitlight) | -| | [***gitnote***](apps/gitnote.md) | *A modern note taking app based on GIT.*..[ *read more* ](apps/gitnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitnote) | -| | [***gitql***](apps/gitql.md) | *A git query language.*..[ *read more* ](apps/gitql.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitql) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitql) | -| | [***gitqlient***](apps/gitqlient.md) | *Multi-platform Git client written with Qt.*..[ *read more* ](apps/gitqlient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitqlient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitqlient) | -| | [***gittyup***](apps/gittyup.md) | *GUI Git client designed to help you understand and manage your source code history.*..[ *read more* ](apps/gittyup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gittyup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gittyup) | -| | [***gitui***](apps/gitui.md) | *Blazing fast terminal-ui for git written in rust.*..[ *read more* ](apps/gitui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitui) | -| | [***gl-warp2mp4***](apps/gl-warp2mp4.md) | *Utility to pre-warp a movie similar to TGAWarp.*..[ *read more* ](apps/gl-warp2mp4.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gl-warp2mp4) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gl-warp2mp4) | -| | [***glab***](apps/glab.md) | *A GitLab CLI tool bringing GitLab to your command line.*..[ *read more* ](apps/glab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glab) | -| | [***glaxnimate***](apps/glaxnimate.md) | *A simple and fast vector graphics animation program.*..[ *read more* ](apps/glaxnimate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glaxnimate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glaxnimate) | -| | [***glow***](apps/glow.md) | *Render markdown on the CLI, with pizzazz!*..[ *read more* ](apps/glow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glow) | -| | [***gltf-insight***](apps/gltf-insight.md) | *C++11 based glTF 2.0 data insight tool.*..[ *read more* ](apps/gltf-insight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gltf-insight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gltf-insight) | -| | [***glulxe***](apps/glulxe.md) | *AppImage of the glulxe interactive fiction interpreter.*..[ *read more* ](apps/glulxe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glulxe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glulxe) | -| | [***glyphr-studio-desktop***](apps/glyphr-studio-desktop.md) | *Professional font design programs.*..[ *read more* ](apps/glyphr-studio-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glyphr-studio-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glyphr-studio-desktop) | -| | [***gm-companion***](apps/gm-companion.md) | *A tool for rpg gamemasters.*..[ *read more* ](apps/gm-companion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gm-companion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gm-companion) | -| | [***gmail-desktop***](apps/gmail-desktop.md) | *Unofficial. Nifty Gmail desktop app.*..[ *read more* ](apps/gmail-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gmail-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gmail-desktop) | -| | [***gnatstudio***](apps/gnatstudio.md) | *GNAT Studio is a powerful and lightweight IDE for Ada and SPARK.*..[ *read more* ](apps/gnatstudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnatstudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnatstudio) | -| | [***gncdu***](apps/gncdu.md) | *Implements NCurses Disk Usage(ncdu) with golang.*..[ *read more* ](apps/gncdu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gncdu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gncdu) | -| | [***gnome-boxes***](apps/gnome-boxes.md) | *Unofficial, A simple GNOME application to access virtual machines.*..[ *read more* ](apps/gnome-boxes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-boxes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-boxes) | -| | [***gnome-calculator***](apps/gnome-calculator.md) | *Unofficial, Perform arithmetic, scientific or financial calculations.*..[ *read more* ](apps/gnome-calculator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-calculator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-calculator) | -| | [***gnome-pomodoro***](apps/gnome-pomodoro.md) | *A productivity tool designed to help you manage your time effectively using the Pomodoro Technique.*..[ *read more* ](apps/gnome-pomodoro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-pomodoro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-pomodoro) | -| | [***gnome-system-monitor***](apps/gnome-system-monitor.md) | *System Monitor is a process viewer and system monitor with an attractive, easy-to-use interface for the GNOME desktop environment.*..[ *read more* ](apps/gnome-system-monitor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-system-monitor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-system-monitor) | -| | [***gnome-text-editor***](apps/gnome-text-editor.md) | *Unofficial AppImage of the Gnome's Text Editor application.*..[ *read more* ](apps/gnome-text-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-text-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-text-editor) | -| | [***gnome-tweaks***](apps/gnome-tweaks.md) | *Unofficial, Experimental AppImage port of advanced GNOME 3 settings GUI.*..[ *read more* ](apps/gnome-tweaks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-tweaks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-tweaks) | -| | [***gnome-web***](apps/gnome-web.md) | *Unofficial AppImage of Gnome Web aka Epiphany..*..[ *read more* ](apps/gnome-web.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-web) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-web) | -| | [***gnu-freedink***](apps/gnu-freedink.md) | *Unofficial, a portable and enhanced version of the Dink Smallwood game engine.*..[ *read more* ](apps/gnu-freedink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnu-freedink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnu-freedink) | -| | [***gnumeric***](apps/gnumeric.md) | *Unofficial. An open-source spreadsheet program.*..[ *read more* ](apps/gnumeric.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnumeric) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnumeric) | -| | [***go-pd-gui***](apps/go-pd-gui.md) | *DRAINY is a free easy to use cross plattform upload tool for pixeldrain.com.*..[ *read more* ](apps/go-pd-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-pd-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-pd-gui) | -| | [***go-pd***](apps/go-pd.md) | *A free easy to use pixeldrain.com go client pkg and CLI upload tool.*..[ *read more* ](apps/go-pd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-pd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-pd) | -| | [***go-spotify-cli***](apps/go-spotify-cli.md) | *Control Spotify with CLI commands.*..[ *read more* ](apps/go-spotify-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-spotify-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-spotify-cli) | -| | [***goanime***](apps/goanime.md) | *A TUI tool to browse, stream, and download anime in English and Portuguese.*..[ *read more* ](apps/goanime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goanime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goanime) | -| | [***gobuster***](apps/gobuster.md) | *A high-performance directory/file, DNS and virtual host brute-forcing tool written in Go. It's designed to be fast, reliable, and easy to use for security professionals and penetration testers.*..[ *read more* ](apps/gobuster.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gobuster) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gobuster) | -| | [***godmode***](apps/godmode.md) | *AI Chat Browser fast, full webapp access to ChatGPT/Claude/Bard/Bing/Llama2.*..[ *read more* ](apps/godmode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/godmode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/godmode) | -| | [***godot***](apps/godot.md) | *Multi-platform 2D and 3D game engine with a feature-rich editor.*..[ *read more* ](apps/godot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/godot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/godot) | -| | [***gojq***](apps/gojq.md) | *Pure Go implementation of jq.*..[ *read more* ](apps/gojq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gojq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gojq) | -| | [***gokey***](apps/gokey.md) | *A simple vaultless password manager in Go.*..[ *read more* ](apps/gokey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gokey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gokey) | -| | [***goland***](apps/goland.md) | *Capable and Ergonomic Go IDE.*..[ *read more* ](apps/goland.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goland) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goland) | -| | [***goldencheetah***](apps/goldencheetah.md) | *Cycling Power Analysis Software.*..[ *read more* ](apps/goldencheetah.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goldencheetah) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goldencheetah) | -| | [***goldendict-ng***](apps/goldendict-ng.md) | *Unofficial, an advanced dictionary lookup program, supporting many formats.*..[ *read more* ](apps/goldendict-ng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goldendict-ng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goldendict-ng) | -| | [***goldendict***](apps/goldendict.md) | *A feature-rich dictionary lookup program.*..[ *read more* ](apps/goldendict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goldendict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goldendict) | -| | [***gooboxfileshare***](apps/gooboxfileshare.md) | *Goobox File Share App.*..[ *read more* ](apps/gooboxfileshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gooboxfileshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gooboxfileshare) | -| | [***goodls***](apps/goodls.md) | *This is a CLI tool to download shared files and folders from Google Drive.*..[ *read more* ](apps/goodls.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goodls) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goodls) | -| | [***goofcord***](apps/goofcord.md) | *Take control of your Discord experience with GoofCord.*..[ *read more* ](apps/goofcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goofcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goofcord) | -| | [***google-chrome-beta***](apps/google-chrome-beta.md) | *Unofficial, Web Browser, Beta version.*..[ *read more* ](apps/google-chrome-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-chrome-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-chrome-beta) | -| | [***google-chrome-dev***](apps/google-chrome-dev.md) | *Unofficial, Web Browser, Unstable version.*..[ *read more* ](apps/google-chrome-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-chrome-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-chrome-dev) | -| | [***google-chrome***](apps/google-chrome.md) | *Unofficial, Web Browser, Stable version.*..[ *read more* ](apps/google-chrome.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-chrome) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-chrome) | -| | [***google-docs***](apps/google-docs.md) | *Unofficial, Google Docs Desktop App made with electron.*..[ *read more* ](apps/google-docs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-docs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-docs) | -| | [***google-task-tauri***](apps/google-task-tauri.md) | *An Unofficial Desktop Client for Google Tasks.*..[ *read more* ](apps/google-task-tauri.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-task-tauri) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-task-tauri) | -| | [***google-tasks-desktop***](apps/google-tasks-desktop.md) | *Unofficial Google Tasks Desktop Client.*..[ *read more* ](apps/google-tasks-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-tasks-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-tasks-desktop) | -| | [***gooseberry***](apps/gooseberry.md) | *A command line utility to generate a knowledge base from Hypothesis annotations.*..[ *read more* ](apps/gooseberry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gooseberry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gooseberry) | -| | [***gopass***](apps/gopass.md) | *The slightly more awesome standard unix password manager for teams.*..[ *read more* ](apps/gopass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gopass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gopass) | -| | [***gopeed***](apps/gopeed.md) | *A modern download manager that supports all platforms.*..[ *read more* ](apps/gopeed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gopeed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gopeed) | -| | [***gopher64***](apps/gopher64.md) | *Unofficial AppImage of gopher64.*..[ *read more* ](apps/gopher64.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gopher64) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gopher64) | -| | [***gospel***](apps/gospel.md) | *Poppler based fast pdf viewer written in PyQt5.*..[ *read more* ](apps/gospel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gospel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gospel) | -| | [***gost-shred***](apps/gost-shred.md) | *GOST R 50739-95 Data Sanitization Method (2 passes).*..[ *read more* ](apps/gost-shred.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gost-shred) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gost-shred) | -| | [***got***](apps/got.md) | *Simple golang package and CLI tool to download large files faster than cURL and Wget!*..[ *read more* ](apps/got.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/got) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/got) | -| | [***gotimer***](apps/gotimer.md) | *A simple terminal based digital timer for Pomodoro.*..[ *read more* ](apps/gotimer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gotimer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gotimer) | -| | [***goto***](apps/goto.md) | *A simple terminal SSH manager that lists favorite SSH servers.*..[ *read more* ](apps/goto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goto) | -| | [***goverlay***](apps/goverlay.md) | *An opensource project that aims to create a Graphical UI to help manage Linux overlays.*..[ *read more* ](apps/goverlay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goverlay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goverlay) | -| | [***gp-archive***](apps/gp-archive.md) | *Archive profiling experiment data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-archive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-archive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-archive) | -| | [***gp-collect-app***](apps/gp-collect-app.md) | *Collect application performance profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-collect-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-collect-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-collect-app) | -| | [***gp-display-html***](apps/gp-display-html.md) | *Generate HTML reports from profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-display-html.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-display-html) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-display-html) | -| | [***gp-display-src***](apps/gp-display-src.md) | *Display source code annotated with profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-display-src.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-display-src) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-display-src) | -| | [***gp-display-text***](apps/gp-display-text.md) | *Display profiling data in plain text format. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-display-text.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-display-text) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-display-text) | -| | [***gpg-tui***](apps/gpg-tui.md) | *CLI, manage your GnuPG keys with ease!*..[ *read more* ](apps/gpg-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpg-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpg-tui) | -| | [***gpgfrontend***](apps/gpgfrontend.md) | *A Cross-Platform OpenPGP Frontend Software.*..[ *read more* ](apps/gpgfrontend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpgfrontend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpgfrontend) | -| | [***gping***](apps/gping.md) | *Ping, but with a graph.*..[ *read more* ](apps/gping.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gping) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gping) | -| | [***gpodder***](apps/gpodder.md) | *Unofficial AppImage of gPodder.*..[ *read more* ](apps/gpodder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpodder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpodder) | -| | [***gpredict***](apps/gpredict.md) | *A satellite tracking application.*..[ *read more* ](apps/gpredict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpredict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpredict) | -| | [***gprof***](apps/gprof.md) | *Graph profile data. This is part of "am-utils" suite.*..[ *read more* ](apps/gprof.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprof) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprof) | -| | [***gprofng-archive***](apps/gprofng-archive.md) | *Experiment data. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-archive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-archive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-archive) | -| | [***gprofng-collect-app***](apps/gprofng-collect-app.md) | *Data for the target. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-collect-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-collect-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-collect-app) | -| | [***gprofng-display-html***](apps/gprofng-display-html.md) | *HTML based directory structure. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-display-html.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-display-html) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-display-html) | -| | [***gprofng-display-src***](apps/gprofng-display-src.md) | *Code and optionally. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-display-src.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-display-src) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-display-src) | -| | [***gprofng-display-text***](apps/gprofng-display-text.md) | *Performance data in plain text. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-display-text.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-display-text) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-display-text) | -| | [***gprofng-gmon***](apps/gprofng-gmon.md) | *Display or convert GNU gmon profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-gmon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-gmon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-gmon) | -| | [***gprofng***](apps/gprofng.md) | *Generation GNU application profiling tool. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng) | -| | [***gpt-anywhere***](apps/gpt-anywhere.md) | *Use GPT anywhere with just one shortcut.*..[ *read more* ](apps/gpt-anywhere.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpt-anywhere) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpt-anywhere) | -| | [***gpu-screen-recorder***](apps/gpu-screen-recorder.md) | *Unofficial, AppImage of GPU Screen Recorder*..[ *read more* ](apps/gpu-screen-recorder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpu-screen-recorder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpu-screen-recorder) | -| | [***gpu-t***](apps/gpu-t.md) | *A comprehensive graphics card information utility for Linux.*..[ *read more* ](apps/gpu-t.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpu-t) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpu-t) | -| | [***gpupad***](apps/gpupad.md) | *A flexible GLSL shader editor and IDE.*..[ *read more* ](apps/gpupad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpupad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpupad) | -| | [***gqrx***](apps/gqrx.md) | *Software defined radio receiver, SDR.*..[ *read more* ](apps/gqrx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gqrx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gqrx) | -| | [***grabscr***](apps/grabscr.md) | *Yet another screenshot maker.*..[ *read more* ](apps/grabscr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grabscr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grabscr) | -| | [***gradia***](apps/gradia.md) | *Unofficial, screenshot/picture editor and uploader.*..[ *read more* ](apps/gradia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gradia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gradia) | -| | [***gram-enhanced***](apps/gram-enhanced.md) | *Unofficial, a powerful and modern source code editor.*..[ *read more* ](apps/gram-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gram-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gram-enhanced) | -| | [***granatier***](apps/kdegames.md) | *Bomberman clone. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***graphest***](apps/graphest.md) | * A faithful graphing calculator.*..[ *read more* ](apps/graphest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/graphest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/graphest) | -| | [***graphql-playground***](apps/graphql-playground.md) | *GraphQL IDE for better development workflows.*..[ *read more* ](apps/graphql-playground.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/graphql-playground) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/graphql-playground) | -| | [***graphs***](apps/graphs.md) | *Unofficial. A simple, yet powerful tool that allows you to plot and manipulate your data with ease.*..[ *read more* ](apps/graphs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/graphs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/graphs) | -| | [***graviton***](apps/graviton.md) | *A simple code editor.*..[ *read more* ](apps/graviton.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/graviton) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/graviton) | -| | [***greenlight***](apps/greenlight.md) | *Client for xCloud and Xbox home streaming made in Typescript.*..[ *read more* ](apps/greenlight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/greenlight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/greenlight) | -| | [***grep***](apps/grep.md) | *A string search utility. This is part of "am-utils" suite.*..[ *read more* ](apps/grep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grep) | -| | [***gridcoin-research***](apps/gridcoin-research.md) | *POS-based cryptocurrency.*..[ *read more* ](apps/gridcoin-research.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridcoin-research) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridcoin-research) | -| | [***gridea***](apps/gridea.md) | *A static blog writing client, 一个静态博客写作客户端.*..[ *read more* ](apps/gridea.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridea) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridea) | -| | [***gridix***](apps/gridix.md) | *A simple, fast, and secure cross-platform database management tool with Helix or Vim-style keybindings.*..[ *read more* ](apps/gridix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridix) | -| | [***gridplayer***](apps/gridplayer.md) | *Play videos side-by-side.*..[ *read more* ](apps/gridplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridplayer) | -| | [***gridsync***](apps/gridsync.md) | *Synchronize local directories with Tahoe-LAFS storage grids.*..[ *read more* ](apps/gridsync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridsync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridsync) | -| | [***grinplusplus***](apps/grinplusplus.md) | *A C++ Grin Node & Wallet.*..[ *read more* ](apps/grinplusplus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grinplusplus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grinplusplus) | -| | [***grist-desktop***](apps/grist-desktop.md) | *Desktop Grist, packaged with Electron.*..[ *read more* ](apps/grist-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grist-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grist-desktop) | -| | [***gron.awk***](apps/gron.awk.md) | *True JSON parser in pure Awk. fast with Gawk/Mawk/GoAWK.*..[ *read more* ](apps/gron.awk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gron.awk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gron.awk) | -| | [***gron***](apps/gron.md) | *Make JSON greppable! Transform JSON into discrete assignments to grep.*..[ *read more* ](apps/gron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gron) | -| | [***groot***](apps/groot.md) | *Graphical Editor to create BehaviorTrees.*..[ *read more* ](apps/groot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/groot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/groot) | -| | [***groups***](apps/groups.md) | *Print the groups a user is in. This is part of "am-utils" suite.*..[ *read more* ](apps/groups.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/groups) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/groups) | -| | [***gsequencer***](apps/gsequencer.md) | *Tree based audio processing engine.*..[ *read more* ](apps/gsequencer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gsequencer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gsequencer) | -| | [***gsubs***](apps/gsubs.md) | *Finds you the perfect subtitle match.*..[ *read more* ](apps/gsubs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gsubs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gsubs) | -| | [***gthumb***](apps/gthumb.md) | *Unofficial, image viewer and browser.*..[ *read more* ](apps/gthumb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gthumb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gthumb) | -| | [***guarda***](apps/guarda.md) | *A secure, easy-to-use open source multi-platform cryptocurrency wallet.*..[ *read more* ](apps/guarda.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/guarda) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/guarda) | -| | [***guglielmo***](apps/guglielmo.md) | *A FM, DAB/DAB+ decoder using Qt and C++.*..[ *read more* ](apps/guglielmo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/guglielmo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/guglielmo) | -| | [***guiscrcpy***](apps/guiscrcpy.md) | *GUI integration for android screen mirroring system.*..[ *read more* ](apps/guiscrcpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/guiscrcpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/guiscrcpy) | -| | [***guitar***](apps/guitar.md) | *Graphical git client.*..[ *read more* ](apps/guitar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/guitar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/guitar) | -| | [***gum***](apps/gum.md) | *A tool for glamorous shell scripts.*..[ *read more* ](apps/gum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gum) | -| | [***gvim***](apps/gvim.md) | *Edit text files.*..[ *read more* ](apps/gvim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gvim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gvim) | -| | [***gwenview***](apps/gwenview.md) | *Unofficial. Fast and easy to use image viewer by KDE. ideal for displaying a collection of images.*..[ *read more* ](apps/gwenview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gwenview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gwenview) | -| | [***gxc-smart-contract-ide***](apps/gxc-smart-contract-ide.md) | *Gxchain smart contract IDE alpha.*..[ *read more* ](apps/gxc-smart-contract-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gxc-smart-contract-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gxc-smart-contract-ide) | -| | [***gyroflow***](apps/gyroflow.md) | *Video stabilization using gyroscope data.*..[ *read more* ](apps/gyroflow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gyroflow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gyroflow) | -| | [***hades-emu***](apps/hades-emu.md) | *A Nintendo Game Boy Advance Emulator.*..[ *read more* ](apps/hades-emu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hades-emu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hades-emu) | -| | [***hammer***](apps/hammer.md) | *A simple tool for building stories.*..[ *read more* ](apps/hammer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hammer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hammer) | -| | [***hamsket***](apps/hamsket.md) | *Free and Open Source messaging and emailing app.*..[ *read more* ](apps/hamsket.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hamsket) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hamsket) | -| | [***handbrake***](apps/handbrake.md) | *Unofficial, An open-source multiplatform video transcoder.*..[ *read more* ](apps/handbrake.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/handbrake) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/handbrake) | -| | [***handlr***](apps/handlr.md) | *fork of the original handlr, with support for regular expressions.*..[ *read more* ](apps/handlr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/handlr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/handlr) | -| | [***handy***](apps/handy.md) | *A free, open source, and extensible speech-to-text application that works completely offline.*..[ *read more* ](apps/handy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/handy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/handy) | -| | [***hangar***](apps/hangar.md) | *A native Bluesky client for Linux, built with Rust, GTK4, and Libadwaita.*..[ *read more* ](apps/hangar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hangar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hangar) | -| | [***hapee***](apps/hapee.md) | *Best cross-platform downloader ever.*..[ *read more* ](apps/hapee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hapee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hapee) | -| | [***harmonoid***](apps/harmonoid.md) | *Plays & manages your music library. Looks beautiful & juicy. Playlists, visuals, synced lyrics, pitch shift, volume boost & more.*..[ *read more* ](apps/harmonoid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/harmonoid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/harmonoid) | -| | [***haruna***](apps/haruna.md) | *Unofficial, an open source media player built with Qt/QML and libmpv.*..[ *read more* ](apps/haruna.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/haruna) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/haruna) | -| | [***hascard***](apps/hascard.md) | *Flashcard TUI CLI with markdown cards.*..[ *read more* ](apps/hascard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hascard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hascard) | -| | [***hashsum***](apps/hashsum.md) | *A universal tool for finding file duplicates and modified files.*..[ *read more* ](apps/hashsum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hashsum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hashsum) | -| | [***hastyheroes***](apps/hastyheroes.md) | *An endless 2D jumping game.*..[ *read more* ](apps/hastyheroes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hastyheroes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hastyheroes) | -| | [***hatari***](apps/hatari.md) | *Unofficial, an Atari ST and STE emulator.*..[ *read more* ](apps/hatari.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hatari) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hatari) | -| | [***haveno-reto***](apps/haveno-reto.md) | *Decentralized P2P exchange built on Monero and Tor.*..[ *read more* ](apps/haveno-reto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/haveno-reto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/haveno-reto) | -| | [***hctl***](apps/hctl.md) | *A tool to control your Home Assistant devices from the command-line.*..[ *read more* ](apps/hctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hctl) | -| | [***hd***](apps/hd.md) | *Small hex dumper utility (with optional HexII output). This is part of "am-utils" suite.*..[ *read more* ](apps/hd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hd) | -| | [***hdict***](apps/hdict.md) | *Offline dictionary reader for StarDict, Slob, Mdict and Dictd dictionaries.*..[ *read more* ](apps/hdict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hdict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hdict) | -| | [***hdrmerge***](apps/hdrmerge.md) | *Merge several raw images into a single DNG raw image.*..[ *read more* ](apps/hdrmerge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hdrmerge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hdrmerge) | -| | [***head***](apps/head.md) | *Output the first part of files. This is part of "am-utils" suite.*..[ *read more* ](apps/head.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/head) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/head) | -| | [***heat1d***](apps/heat1d.md) | *UI for testing the soilFluxex3D library, CRITERIA1D.*..[ *read more* ](apps/heat1d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/heat1d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/heat1d) | -| | [***heimer***](apps/heimer.md) | *Simple cross-platform mind map, diagram, and note-taking tool.*..[ *read more* ](apps/heimer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/heimer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/heimer) | -| | [***helio***](apps/helio.md) | *One music sequencer for all major platforms, desktop and mobile.*..[ *read more* ](apps/helio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helio) | -| | [***helion***](apps/helion.md) | *A modern fast paced Doom FPS engine.*..[ *read more* ](apps/helion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helion) | -| | [***helioslauncher***](apps/helioslauncher.md) | *Custom launcher for modded minecraft written in Electron.*..[ *read more* ](apps/helioslauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helioslauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helioslauncher) | -| | [***helium-browser-enhanced***](apps/helium-browser-enhanced.md) | *About Unofficial AppImage of Helium.*..[ *read more* ](apps/helium-browser-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helium-browser-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helium-browser-enhanced) | -| | [***helium***](apps/helium.md) | *The Chromium-based web browser made for people, with love. Best privacy by default, unbiased ad-blocking, no bloat and no noise.*..[ *read more* ](apps/helium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helium) | -| | [***helix***](apps/helix.md) | *A post-modern modal text editor.*..[ *read more* ](apps/helix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helix) | -| | [***helixnotes***](apps/helixnotes.md) | *A local markdown note-taking app built with Tauri, SvelteKit, and Rust.*..[ *read more* ](apps/helixnotes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helixnotes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helixnotes) | -| | [***henson***](apps/henson.md) | *A puppet manager for NationStates.*..[ *read more* ](apps/henson.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/henson) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/henson) | -| | [***hermesmessenger***](apps/hermesmessenger.md) | *Desktop client version for Hermes Messenger.*..[ *read more* ](apps/hermesmessenger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hermesmessenger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hermesmessenger) | -| | [***hero-display***](apps/hero-display.md) | *App for display on HERO robot.*..[ *read more* ](apps/hero-display.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hero-display) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hero-display) | -| | [***heroic-games-launcher***](apps/heroic-games-launcher.md) | *A Native GOG and Epic Games Launcher for Linux.*..[ *read more* ](apps/heroic-games-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/heroic-games-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/heroic-games-launcher) | -| | [***hexdump***](apps/hexdump.md) | *Display file contents in hexadecimal format. This is part of "am-utils" suite.*..[ *read more* ](apps/hexdump.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hexdump) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hexdump) | -| | [***hexinator***](apps/hexinator.md) | *Hex editor for reverse engineering & binary file analysis.*..[ *read more* ](apps/hexinator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hexinator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hexinator) | -| | [***hexoclient***](apps/hexoclient.md) | *A cross-platform hexo client, build on electron.*..[ *read more* ](apps/hexoclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hexoclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hexoclient) | -| | [***hexoeditor***](apps/hexoeditor.md) | *Markdown editor for Hexo built with Electron.*..[ *read more* ](apps/hexoeditor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hexoeditor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hexoeditor) | -| | [***heynote***](apps/heynote.md) | *A dedicated scratchpad for developers.*..[ *read more* ](apps/heynote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/heynote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/heynote) | -| | [***hiddify-next***](apps/hiddify-next.md) | *Auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria.*..[ *read more* ](apps/hiddify-next.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hiddify-next) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hiddify-next) | -| | [***hide.me***](apps/hide.me.md) | *Hide.me CLI VPN client for Linux.*..[ *read more* ](apps/hide.me.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hide.me) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hide.me) | -| | [***hidpi-fixer***](apps/hidpi-fixer.md) | *Fractional scaling configuration on X11 desktops.*..[ *read more* ](apps/hidpi-fixer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hidpi-fixer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hidpi-fixer) | -| | [***highlite***](apps/highlite.md) | *A RuneLite-esque Client for the game High Spell.*..[ *read more* ](apps/highlite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/highlite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/highlite) | -| | [***hilbish***](apps/hilbish.md) | *The Moon-powered shell! A comfy and extensible shell for Lua fans!*..[ *read more* ](apps/hilbish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hilbish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hilbish) | -| | [***himalaya***](apps/himalaya.md) | *CLI to manage emails.*..[ *read more* ](apps/himalaya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/himalaya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/himalaya) | -| | [***hmcl***](apps/hmcl.md) | *A Minecraft Launcher which is multi-functional, cross-platform and popular.*..[ *read more* ](apps/hmcl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hmcl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hmcl) | -| | [***hostid***](apps/hostid.md) | *Print the numeric identifier for the current host. This is part of "am-utils" suite.*..[ *read more* ](apps/hostid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hostid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hostid) | -| | [***hotspot***](apps/hotspot.md) | *The Linux perf GUI for performance analysis.*..[ *read more* ](apps/hotspot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hotspot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hotspot) | -| | [***houdoku***](apps/houdoku.md) | *Manga reader and library manager for the desktop.*..[ *read more* ](apps/houdoku.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/houdoku) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/houdoku) | -| | [***hp-15c-simulator***](apps/hp-15c-simulator.md) | *Unofficial, a simulator for the HP-15C programmable scientific RPN calculator.*..[ *read more* ](apps/hp-15c-simulator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hp-15c-simulator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hp-15c-simulator) | -| | [***hpack***](apps/hpack.md) | *A fine tool to convert any data into C header.*..[ *read more* ](apps/hpack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hpack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hpack) | -| | [***hprof-conv***](apps/platform-tools.md) | *Converts Android HPROF heap dumps to standard Java HPROF format. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***hsinstall***](apps/hsinstall.md) | *Pack a haskell project into a deployable directory structure.*..[ *read more* ](apps/hsinstall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hsinstall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hsinstall) | -| | [***htmldoc***](apps/htmldoc.md) | *HTML & Markdown Conversion Software to output PostScript and PDF.*..[ *read more* ](apps/htmldoc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/htmldoc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/htmldoc) | -| | [***htop***](apps/htop.md) | *Unofficial, CLI utility to monitor system resources.*..[ *read more* ](apps/htop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/htop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/htop) | -| | [***httpie-desktop***](apps/httpie-desktop.md) | *HTTPie for Desktop.*..[ *read more* ](apps/httpie-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/httpie-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/httpie-desktop) | -| | [***httptoolkit***](apps/httptoolkit.md) | *HTTP Toolkit is an open-source tool for debugging, testing and building with HTTP.*..[ *read more* ](apps/httptoolkit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/httptoolkit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/httptoolkit) | -| | [***hugin***](apps/hugin.md) | *Stitch photographs together.*..[ *read more* ](apps/hugin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hugin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hugin) | -| | [***hugor***](apps/hugor.md) | *A cross-platform, multimedia interpreter for Hugo adventure games.*..[ *read more* ](apps/hugor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hugor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hugor) | -| | [***humanlog***](apps/humanlog.md) | *Logs for humans to read.*..[ *read more* ](apps/humanlog.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/humanlog) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/humanlog) | -| | [***huwinterpreter***](apps/huwinterpreter.md) | *HuwCode interpreter.*..[ *read more* ](apps/huwinterpreter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/huwinterpreter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/huwinterpreter) | -| | [***hw-probe***](apps/hw-probe.md) | *Probe for hardware and upload result to the Linux hdw database.*..[ *read more* ](apps/hw-probe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hw-probe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hw-probe) | -| | [***hydra***](apps/hydra.md) | *Game launcher with its own embedded bittorrent client.*..[ *read more* ](apps/hydra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hydra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hydra) | -| | [***hydrogen-music***](apps/hydrogen-music.md) | *The advanced drum machine.*..[ *read more* ](apps/hydrogen-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hydrogen-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hydrogen-music) | -| | [***hyper***](apps/hyper.md) | *A terminal built on web technologies.*..[ *read more* ](apps/hyper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyper) | -| | [***hyperdex***](apps/hyperdex.md) | *BarterDEX desktop app.*..[ *read more* ](apps/hyperdex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperdex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperdex) | -| | [***hyperfine***](apps/hyperfine.md) | *A command-line benchmarking tool.*..[ *read more* ](apps/hyperfine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperfine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperfine) | -| | [***hyperionide***](apps/hyperionide.md) | *Hyperion IDE for JIRA.*..[ *read more* ](apps/hyperionide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperionide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperionide) | -| | [***hyperkeys***](apps/hyperkeys.md) | *Unleash you keyboard shorcuts.*..[ *read more* ](apps/hyperkeys.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperkeys) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperkeys) | -| | [***hyperspace***](apps/hyperspace.md) | *A fluffy client for Mastodon in React.*..[ *read more* ](apps/hyperspace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperspace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperspace) | -| | [***hypnotix***](apps/hypnotix.md) | *Unofficial. An IPTV streaming application with support for live TV.*..[ *read more* ](apps/hypnotix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hypnotix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hypnotix) | -| | [***i3-auto-layout***](apps/i3-auto-layout.md) | *Automatic, optimal tiling for i3wm. Fork of dead version.*..[ *read more* ](apps/i3-auto-layout.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/i3-auto-layout) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/i3-auto-layout) | -| | [***i3***](apps/i3.md) | *Unofficial, A tiling window manager for X11.*..[ *read more* ](apps/i3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/i3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/i3) | -| | [***i3lock-color***](apps/i3lock-color.md) | *The world's most popular non-default computer lockscreen.*..[ *read more* ](apps/i3lock-color.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/i3lock-color) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/i3lock-color) | -| | [***iagoncloudapp***](apps/iagoncloudapp.md) | *Iagon Cloud Application.*..[ *read more* ](apps/iagoncloudapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iagoncloudapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iagoncloudapp) | -| | [***ibus-rime***](apps/ibus-rime.md) | *Zhongzhou Yun input method, ibus-rime in AppImage format.*..[ *read more* ](apps/ibus-rime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ibus-rime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ibus-rime) | -| | [***icalingua++***](apps/icalingua++.md) | *A client for QQ and more.*..[ *read more* ](apps/icalingua++.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/icalingua++) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/icalingua++) | -| | [***icecat***](apps/icecat.md) | *GNU IceCat is the GNU version of the Firefox web browser.*..[ *read more* ](apps/icecat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/icecat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/icecat) | -| | [***icestudio***](apps/icestudio.md) | *A real gamechanger in the world of Open Source FPGAs.*..[ *read more* ](apps/icestudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/icestudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/icestudio) | -| | [***id***](apps/id.md) | *Print real and effective user and group IDs. This is part of "am-utils" suite.*..[ *read more* ](apps/id.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/id) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/id) | -| | [***identity***](apps/identity.md) | *Unofficial. Compare images and videos with one another to check for differences.*..[ *read more* ](apps/identity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/identity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/identity) | -| | [***idescriptor***](apps/idescriptor.md) | *A free, open-source, and cross-platform iDevice management tool.*..[ *read more* ](apps/idescriptor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/idescriptor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/idescriptor) | -| | [***igdm***](apps/igdm.md) | *Desktop application for Instagram DMs.*..[ *read more* ](apps/igdm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/igdm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/igdm) | -| | [***iheartradio-webapp***](apps/iheartradio-webapp.md) | *Election WebApp for iHeartRadio.*..[ *read more* ](apps/iheartradio-webapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iheartradio-webapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iheartradio-webapp) | -| | [***iloader***](apps/iloader.md) | *User friendly sideloader.*..[ *read more* ](apps/iloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iloader) | -| | [***imagemagick-clang***](apps/imagemagick-clang.md) | *CLI to create, edit, compose, or convert digital images.*..[ *read more* ](apps/imagemagick-clang.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imagemagick-clang) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imagemagick-clang) | -| | [***imagemagick-gcc***](apps/imagemagick-gcc.md) | *CLI to create, edit, compose, or convert digital images.*..[ *read more* ](apps/imagemagick-gcc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imagemagick-gcc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imagemagick-gcc) | -| | [***imagemosaicwall***](apps/imagemosaicwall.md) | *Create an image based on a bunch of other images.*..[ *read more* ](apps/imagemosaicwall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imagemosaicwall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imagemosaicwall) | -| | [***imagine***](apps/imagine.md) | *PNG/JPEG optimization.*..[ *read more* ](apps/imagine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imagine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imagine) | -| | [***imapsyncclient***](apps/imapsyncclient.md) | *An electron-vue project.*..[ *read more* ](apps/imapsyncclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imapsyncclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imapsyncclient) | -| | [***imfile***](apps/imfile.md) | *A full-featured download manager.*..[ *read more* ](apps/imfile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imfile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imfile) | -| | [***imgbrd-grabber***](apps/imgbrd-grabber.md) | *Very customizable imageboard/booru downloader.*..[ *read more* ](apps/imgbrd-grabber.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imgbrd-grabber) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imgbrd-grabber) | -| | [***imgcat***](apps/imgcat.md) | *Display images and gifs in your terminal.*..[ *read more* ](apps/imgcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imgcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imgcat) | -| | [***imhex***](apps/imhex.md) | *A Hex Editor for Reverse Engineers and Programmers.*..[ *read more* ](apps/imhex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imhex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imhex) | -| | [***impact***](apps/impact.md) | *Music Management and Playback.*..[ *read more* ](apps/impact.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/impact) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/impact) | -| | [***impactor***](apps/impactor.md) | *Feature rich iOS/tvOS sideloading application written in Rust. Formerly known as PlumeImpactor.*..[ *read more* ](apps/impactor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/impactor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/impactor) | -| | [***implay***](apps/implay.md) | *A Cross-Platform Desktop Media Player, built on top of mpv and ImGui.*..[ *read more* ](apps/implay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/implay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/implay) | -| | [***impposter***](apps/impposter.md) | *Post to my own development blog.*..[ *read more* ](apps/impposter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/impposter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/impposter) | -| | [***impression***](apps/impression.md) | *Unofficial. Simple USB image writer application.*..[ *read more* ](apps/impression.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/impression) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/impression) | -| | [***inboxer***](apps/inboxer.md) | *Simple client for Google Inbox.*..[ *read more* ](apps/inboxer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/inboxer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/inboxer) | -| | [***infection-monkey***](apps/infection-monkey.md) | *An automated penetration test tool, security.*..[ *read more* ](apps/infection-monkey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/infection-monkey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/infection-monkey) | -| | [***infinitex***](apps/infinitex.md) | *Editor for academics with cryptography.*..[ *read more* ](apps/infinitex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/infinitex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/infinitex) | -| | [***infra-app***](apps/infra-app.md) | *Infra App for Linux.*..[ *read more* ](apps/infra-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/infra-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/infra-app) | -| | [***inkdown***](apps/inkdown.md) | *A WYSIWYG Markdown editor, improve reading and editing experience and generate your Markdown files.*..[ *read more* ](apps/inkdown.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/inkdown) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/inkdown) | -| | [***inkscape***](apps/inkscape.md) | *Unofficial. Vector-based drawing program and graphics editor for both artistic and technical illustrations. It can import and export various file formats, including SVG, AI, EPS, PDF, AutoCAD, PS and PNG.*..[ *read more* ](apps/inkscape.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/inkscape) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/inkscape) | -| | [***innerbreeze***](apps/innerbreeze.md) | *Guided breathing meditation app based on the Wim Hof breathing method.*..[ *read more* ](apps/innerbreeze.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/innerbreeze) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/innerbreeze) | -| | [***innoextract***](apps/innoextract.md) | *Unofficial, a tool to extract installers created by Inno Setup.*..[ *read more* ](apps/innoextract.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/innoextract) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/innoextract) | -| | [***insight***](apps/insight.md) | *The GUI front-end of GDB with Tcl/Tk.*..[ *read more* ](apps/insight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/insight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/insight) | -| | [***insomnia***](apps/insomnia.md) | *API client for GraphQL, REST, WebSockets and gRPC.*..[ *read more* ](apps/insomnia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/insomnia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/insomnia) | -| | [***insomnium***](apps/insomnium.md) | *A local API testing tool privacy-focused, fork of Kong/insomnia.*..[ *read more* ](apps/insomnium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/insomnium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/insomnium) | -| | [***install***](apps/install.md) | *Copy files and set attributes. This is part of "am-utils" suite.*..[ *read more* ](apps/install.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/install) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/install) | -| | [***instead***](apps/instead.md) | *Simple Text Adventures Interpreter.*..[ *read more* ](apps/instead.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/instead) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/instead) | -| | [***international-doom***](apps/international-doom.md) | *Small, functional and simple source ports, created with help, efforts and bits of code from people around the world.*..[ *read more* ](apps/international-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/international-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/international-doom) | -| | [***internxt-drive***](apps/internxt-drive.md) | *Electron React Boilerplate uses Electron and React.*..[ *read more* ](apps/internxt-drive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/internxt-drive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/internxt-drive) | -| | [***interstellar***](apps/interstellar.md) | *An app for Mbin/Lemmy/PieFed, connecting you to the fediverse.*..[ *read more* ](apps/interstellar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/interstellar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/interstellar) | -| | [***intiface***](apps/intiface.md) | *Desktop Intiface Application.*..[ *read more* ](apps/intiface.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/intiface) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/intiface) | -| | [***invoice-generator***](apps/invoice-generator.md) | *Invoice Generator in Electron.*..[ *read more* ](apps/invoice-generator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/invoice-generator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/invoice-generator) | -| | [***inxi***](apps/inxi.md) | *A full featured CLI system information tool.*..[ *read more* ](apps/inxi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/inxi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/inxi) | -| | [***ioquake3***](apps/ioquake3.md) | *Unofficial, the de-facto OSS Quake 3 distribution.*..[ *read more* ](apps/ioquake3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ioquake3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ioquake3) | -| | [***iota1k***](apps/iota1k.md) | *IOTA based messenging app.*..[ *read more* ](apps/iota1k.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iota1k) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iota1k) | -| | [***ipfs-desktop***](apps/ipfs-desktop.md) | *An unobtrusive and user-friendly app for IPFS on Linux.*..[ *read more* ](apps/ipfs-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ipfs-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ipfs-desktop) | -| | [***iptracker***](apps/iptracker.md) | *Desktop tool to keep track of your IP address and update you when it changes.*..[ *read more* ](apps/iptracker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iptracker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iptracker) | -| | [***iptvnator***](apps/iptvnator.md) | *IPTV player application.*..[ *read more* ](apps/iptvnator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iptvnator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iptvnator) | -| | [***iqpuzzle***](apps/iqpuzzle.md) | *A challenging pentomino puzzle.*..[ *read more* ](apps/iqpuzzle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iqpuzzle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iqpuzzle) | -| | [***irccloud-desktop***](apps/irccloud-desktop.md) | *IRCCloud Desktop Client.*..[ *read more* ](apps/irccloud-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/irccloud-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/irccloud-desktop) | -| | [***ireader***](apps/ireader.md) | *Privacy-focused, open source novel reader app.*..[ *read more* ](apps/ireader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ireader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ireader) | -| | [***iris-enhanced***](apps/iris-enhanced.md) | *Unofficial, Sony PlayStation 2 emulator.*..[ *read more* ](apps/iris-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iris-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iris-enhanced) | -| | [***iris***](apps/iris.md) | *Sony PlayStation 2 games emulator for Windows, Linux and macOS.*..[ *read more* ](apps/iris.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iris) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iris) | -| | [***ironwail***](apps/ironwail.md) | *High-performance QuakeSpasm fork QuakeSpasm. A modern, cross-platform Quake game engine based on FitzQuake.*..[ *read more* ](apps/ironwail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ironwail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ironwail) | -| | [***irpf2025***](apps/irpf2025.md) | *Appimage não oficial do IRPF2025, declare seu imposto de renda (Ano-calendário 2024).*..[ *read more* ](apps/irpf2025.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/irpf2025) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/irpf2025) | -| | [***irpf2026***](apps/irpf2026.md) | *Appimage não oficial do IRPF2026, declare seu imposto de renda (Ano-calendário 2025).*..[ *read more* ](apps/irpf2026.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/irpf2026) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/irpf2026) | -| | [***irscrutinizer***](apps/irscrutinizer.md) | *Capture/generate/analyze/import/export infrared signals.*..[ *read more* ](apps/irscrutinizer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/irscrutinizer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/irscrutinizer) | -| | [***isd***](apps/isd.md) | *Isd (interactive systemd) – a better way to work with systemd units.*..[ *read more* ](apps/isd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/isd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/isd) | -| | [***isle-editor***](apps/isle-editor.md) | *Editor for Integrated Statistics Learning Environment lessons.*..[ *read more* ](apps/isle-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/isle-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/isle-editor) | -| | [***isle-portable-enhanced***](apps/isle-portable-enhanced.md) | *Unofficial, a portable version of LEGO Island (1997).*..[ *read more* ](apps/isle-portable-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/isle-portable-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/isle-portable-enhanced) | -| | [***isle-portable***](apps/isle-portable.md) | *Unofficial, a portable version of LEGO Island (1997).*..[ *read more* ](apps/isle-portable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/isle-portable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/isle-portable) | -| | [***isoimagewriter***](apps/kdeutils.md) | *Write an ISO Image to a USB Disk. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***isolate***](apps/isolate.md) | *Lightweight image browser.*..[ *read more* ](apps/isolate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/isolate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/isolate) | -| | [***itch.io***](apps/itch.io.md) | *A simple way to find and share indie games online for free.*..[ *read more* ](apps/itch.io.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/itch.io) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/itch.io) | -| | [***itgmania***](apps/itgmania.md) | *Unofficial, a fork of StepMania 5.1, an advanced cross-platform rhythm game for home and arcade use.*..[ *read more* ](apps/itgmania.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/itgmania) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/itgmania) | -| | [***itr2025***](apps/itr2025.md) | *Appimage não oficial do ITR2025, declare seu imposto dos seus imóveis rurais (Ano-calendário 2025).*..[ *read more* ](apps/itr2025.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/itr2025) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/itr2025) | -| | [***itusb1-manager***](apps/itusb1-manager.md) | *Control the ITUSB1 USB Test Switch.*..[ *read more* ](apps/itusb1-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/itusb1-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/itusb1-manager) | -| | [***jabref***](apps/jabref.md) | *Graphical Java application for managing BibTeX and biblatex (.bib) databases.*..[ *read more* ](apps/jabref.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jabref) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jabref) | -| | [***jag***](apps/jag.md) | *Program for telemetry veiwing.*..[ *read more* ](apps/jag.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jag) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jag) | -| | [***james***](apps/james.md) | *HTTP/HTTPS proxy built in Electron and React.*..[ *read more* ](apps/james.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/james) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/james) | -| | [***jan***](apps/jan.md) | *FOSS Alternative to ChatGPT that runs 100% offline on your computer.*..[ *read more* ](apps/jan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jan) | -| | [***janice***](apps/janice.md) | *A desktop app for viewing large JSON files.*..[ *read more* ](apps/janice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/janice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/janice) | -| | [***janus***](apps/janus.md) | *Simple text editor.*..[ *read more* ](apps/janus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/janus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/janus) | -| | [***jazz2***](apps/jazz2.md) | *Open-source reimplementation of Jazz Jackrabbit 2.*..[ *read more* ](apps/jazz2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jazz2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jazz2) | -| | [***jdappstreamedit***](apps/jdappstreamedit.md) | *A graphical Program to create and edit AppStream files.*..[ *read more* ](apps/jdappstreamedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdappstreamedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdappstreamedit) | -| | [***jddesktopentryedit***](apps/jddesktopentryedit.md) | *A graphical Program to create and edit Desktop Entries.*..[ *read more* ](apps/jddesktopentryedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jddesktopentryedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jddesktopentryedit) | -| | [***jdminecraftlauncher***](apps/jdminecraftlauncher.md) | *Unofficial classic styled Minecraft Launcher.*..[ *read more* ](apps/jdminecraftlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdminecraftlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdminecraftlauncher) | -| | [***jdmrpackinstaller***](apps/jdmrpackinstaller.md) | *Install Modrinth modpacks.*..[ *read more* ](apps/jdmrpackinstaller.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdmrpackinstaller) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdmrpackinstaller) | -| | [***jdnbtexplorer***](apps/jdnbtexplorer.md) | *A Editor for Minecraft NBT files.*..[ *read more* ](apps/jdnbtexplorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdnbtexplorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdnbtexplorer) | -| | [***jdownloader2***](apps/jdownloader2.md) | *JDownloader is a free download management tool with a huge community that makes downloading as easy and fast as it should be.*..[ *read more* ](apps/jdownloader2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdownloader2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdownloader2) | -| | [***jdreplace***](apps/jdreplace.md) | *With jdReplace you can replace a text in all files of a directory.*..[ *read more* ](apps/jdreplace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdreplace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdreplace) | -| | [***jdtextedit***](apps/jdtextedit.md) | *jdTextEdit is a powerful texteditor with a lot of features.*..[ *read more* ](apps/jdtextedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdtextedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdtextedit) | -| | [***jellyamp***](apps/jellyamp.md) | *A client for listening to music from a Jellyfin server.*..[ *read more* ](apps/jellyamp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jellyamp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jellyamp) | -| | [***jellyfin***](apps/jellyfin.md) | *Media player. Stream to any device from your own server.*..[ *read more* ](apps/jellyfin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jellyfin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jellyfin) | -| | [***jexiftoolgui***](apps/jexiftoolgui.md) | *Java/Swing graphical frontend for ExifTool.*..[ *read more* ](apps/jexiftoolgui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jexiftoolgui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jexiftoolgui) | -| | [***jfcord***](apps/jfcord.md) | *An Jellyfin rich presence client for Discord.*..[ *read more* ](apps/jfcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jfcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jfcord) | -| | [***jgenesis-cli***](apps/jgenesis-cli.md) | *Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (CLI).*..[ *read more* ](apps/jgenesis-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jgenesis-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jgenesis-cli) | -| | [***jgenesis***](apps/jgenesis.md) | *Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (GUI).*..[ *read more* ](apps/jgenesis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jgenesis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jgenesis) | -| | [***jgrasp***](apps/jgrasp.md) | *An IDE with Visualizations for Improving Software Comprehensibility.*..[ *read more* ](apps/jgrasp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jgrasp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jgrasp) | -| | [***jimud***](apps/jimud.md) | *MUD client for ShadowMUD.com, based on webclient.*..[ *read more* ](apps/jimud.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jimud) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jimud) | -| | [***jira-timer***](apps/jira-timer.md) | *Menubar app for JIRA time logging.*..[ *read more* ](apps/jira-timer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jira-timer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jira-timer) | -| | [***jitsi-meet***](apps/jitsi-meet.md) | *Jitsi Meet Desktop App.*..[ *read more* ](apps/jitsi-meet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jitsi-meet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jitsi-meet) | -| | [***jklubtv***](apps/jklubtv.md) | *Chess Round Robin Tournament Manager.*..[ *read more* ](apps/jklubtv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jklubtv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jklubtv) | -| | [***jless***](apps/jless.md) | *CLI JSON viewer designed for reading, exploring, and searching.*..[ *read more* ](apps/jless.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jless) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jless) | -| | [***jnv***](apps/jnv.md) | *Interactive JSON filter using jq.*..[ *read more* ](apps/jnv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jnv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jnv) | -| | [***joaldesktop***](apps/joaldesktop.md) | *Electron application boilerplate.*..[ *read more* ](apps/joaldesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/joaldesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/joaldesktop) | -| | [***join-desktop***](apps/join-desktop.md) | *A companion app for the Join website.*..[ *read more* ](apps/join-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/join-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/join-desktop) | -| | [***join***](apps/join.md) | *Of two files on a common field. This is part of "am-utils" suite.*..[ *read more* ](apps/join.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/join) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/join) | -| | [***joplin-beta***](apps/joplin-beta.md) | *A cross-platform note taking and to-do app.*..[ *read more* ](apps/joplin-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/joplin-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/joplin-beta) | -| | [***joplin***](apps/joplin.md) | *Note and to-do application with synchronization capabilities.*..[ *read more* ](apps/joplin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/joplin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/joplin) | -| | [***jottem***](apps/jottem.md) | *A lean, low friction terminal app for managing markdown notes.*..[ *read more* ](apps/jottem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jottem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jottem) | -| | [***journalv***](apps/journalv.md) | *Journaling app for your days and dreams.*..[ *read more* ](apps/journalv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/journalv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/journalv) | -| | [***joy2droidx***](apps/joy2droidx.md) | *Turn Android phones into virtual Xbox 360 controller.*..[ *read more* ](apps/joy2droidx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/joy2droidx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/joy2droidx) | -| | [***jpg-glitch-electron***](apps/jpg-glitch-electron.md) | *Desktop app for glitching images.*..[ *read more* ](apps/jpg-glitch-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jpg-glitch-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jpg-glitch-electron) | -| | [***jq***](apps/jq.md) | *Command-line JSON processor.*..[ *read more* ](apps/jq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jq) | -| | [***jqp***](apps/jqp.md) | *A TUI playground to experiment with jq.*..[ *read more* ](apps/jqp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jqp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jqp) | -| | [***jreleaser***](apps/jreleaser.md) | *The quick way to release your project.*..[ *read more* ](apps/jreleaser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jreleaser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jreleaser) | -| | [***jscad-desktop***](apps/jscad-desktop.md) | *Jscad desktop application.*..[ *read more* ](apps/jscad-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jscad-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jscad-desktop) | -| | [***juggernaut***](apps/juggernaut.md) | *Decentralized messaging and payments.*..[ *read more* ](apps/juggernaut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/juggernaut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/juggernaut) | -| | [***julius***](apps/julius.md) | *An open source re-implementation of the Caesar III game.*..[ *read more* ](apps/julius.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/julius) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/julius) | -| | [***jumble***](apps/jumble.md) | *A user-friendly Nostr client for exploring relay feeds.*..[ *read more* ](apps/jumble.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jumble) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jumble) | -| | [***junest***](apps/junest.md) | *Arch Linux based distro that runs rootless on any other Linux distro.*..[ *read more* ](apps/junest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/junest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/junest) | -| | [***kade***](apps/kade.md) | *A desktop application for Q Methodology.*..[ *read more* ](apps/kade.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kade) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kade) | -| | [***kadium***](apps/kadium.md) | *App for staying ontop of YouTube channels' uploads.*..[ *read more* ](apps/kadium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kadium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kadium) | -| | [***kaffeine***](apps/kaffeine.md) | *Unofficial, Media player with support for digital television (DVB-C/S/S2/T, ATSC, CI/CAM).*..[ *read more* ](apps/kaffeine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kaffeine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kaffeine) | -| | [***kage***](apps/kage.md) | *GUI for Metasploit Meterpreter and Session Handler.*..[ *read more* ](apps/kage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kage) | -| | [***kaidan***](apps/kaidan.md) | *A QtQuick Jabber client.*..[ *read more* ](apps/kaidan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kaidan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kaidan) | -| | [***kajongg***](apps/kdegames.md) | *An ancient Chinese board game for 4 players. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kalba***](apps/kalba.md) | *Sentence mining tool.*..[ *read more* ](apps/kalba.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kalba) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kalba) | -| | [***kalc***](apps/kalc.md) | *Complex numbers, 2d/3d graphing, arbitrary precision cli calculator.*..[ *read more* ](apps/kalc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kalc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kalc) | -| | [***kalker***](apps/kalker.md) | *Scientific calculator with math syntax for user-defined variables.*..[ *read more* ](apps/kalker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kalker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kalker) | -| | [***kalm***](apps/kdeutils.md) | *Teach you different breathing techniques. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kando***](apps/kando.md) | *The Cross-Platform Pie Menu.*..[ *read more* ](apps/kando.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kando) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kando) | -| | [***kanji-dojo***](apps/kanji-dojo.md) | *A multi-platform application for memorizing Japanese language.*..[ *read more* ](apps/kanji-dojo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kanji-dojo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kanji-dojo) | -| | [***kanon***](apps/kanon.md) | *Maturita GPJP designed for use with kanon web app.*..[ *read more* ](apps/kanon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kanon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kanon) | -| | [***kanri***](apps/kanri.md) | *Modern offline Kanban board app. Built with simplicity and user experience in mind.*..[ *read more* ](apps/kanri.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kanri) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kanri) | -| | [***kapman***](apps/kdegames.md) | *Pac-Man clone. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***karbonized***](apps/karbonized.md) | *💫 Awesome Image Generator for Code Snippets & Mockups*..[ *read more* ](apps/karbonized.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/karbonized) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/karbonized) | -| | [***kardi***](apps/kardi.md) | *Application for taking notes with capabilities to view all content from any device while keeping all data accessible by you only.*..[ *read more* ](apps/kardi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kardi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kardi) | -| | [***kate***](apps/kdeutils.md) | *A multi-document editor part of KDE. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***katomic***](apps/kdegames.md) | *Edu. game based around molecular geometry. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***katvan***](apps/katvan.md) | *A bare-bones editor for Typst files, with a bias for Right-to-Left editing.*..[ *read more* ](apps/katvan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/katvan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/katvan) | -| | [***kbackup***](apps/kdeutils.md) | *Back up your data. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kblackbox***](apps/kdegames.md) | *A game of hide and seek. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kblocks***](apps/kdegames.md) | *Classic Tetris / falling blocks game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kboard***](apps/kboard.md) | *Terminal game to practice keyboard typing.*..[ *read more* ](apps/kboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kboard) | -| | [***kbounce***](apps/kdegames.md) | *Fill the field game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kbreakout***](apps/kdegames.md) | *Destroy bricks without losing the ball. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kcalc***](apps/kdeutils.md) | *Scientific Calculator. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kcc***](apps/kcc.md) | *KCC (Kindle Comic Converter) is a comic and manga converter for ebook readers.*..[ *read more* ](apps/kcc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kcc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kcc) | -| | [***kcharselect***](apps/kdeutils.md) | *Character Selector. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kclock***](apps/kdeutils.md) | *A universal clock application. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kcov***](apps/kcov.md) | *Unofficial, An AppImage of Kcov code coverage tool.*..[ *read more* ](apps/kcov.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kcov) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kcov) | -| | [***kdebugsettings***](apps/kdeutils.md) | *Edits displayed QLoggingCategory. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdeconnect***](apps/kdeconnect.md) | *Unofficial, A project that enables all your Android devices to communicate with each other.*..[ *read more* ](apps/kdeconnect.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeconnect) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeconnect) | -| | [***kdegames***](apps/kdegames.md) | *Unofficial, Full & updatable KDE Games suite, metapackage.*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kdenlive-daily***](apps/kdenlive-daily.md) | *A powerful Video Editor provided by KDE (daily builds).*..[ *read more* ](apps/kdenlive-daily.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdenlive-daily) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdenlive-daily) | -| | [***kdenlive-enhanced***](apps/kdenlive-enhanced.md) | *Unofficial AppImage of Kdenlive Video Editor which is able to work on any linux distro.*..[ *read more* ](apps/kdenlive-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdenlive-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdenlive-enhanced) | -| | [***kdenlive***](apps/kdenlive.md) | *A powerful Video Editor provided by KDE.*..[ *read more* ](apps/kdenlive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdenlive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdenlive) | -| | [***kdeutils***](apps/kdeutils.md) | *Unofficial, Full & updatable KDE Utils suite, metapackage.*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdf***](apps/kdeutils.md) | *view Disk Usage. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdialog***](apps/kdeutils.md) | *a dialog utility. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdiamond***](apps/kdegames.md) | *Diamond game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kdiskmark***](apps/kdiskmark.md) | *A simple open-source disk benchmark tool for Linux distros.*..[ *read more* ](apps/kdiskmark.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdiskmark) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdiskmark) | -| | [***keditbookmarks***](apps/kdeutils.md) | *Bookmarks editor. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***keepassxc-devel***](apps/keepassxc-devel.md) | *Port of the Windows application “Keepass Password Safe”, dev-edition.*..[ *read more* ](apps/keepassxc-devel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keepassxc-devel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keepassxc-devel) | -| | [***keepassxc***](apps/keepassxc.md) | *Port of the Windows application “Keepass Password Safe”.*..[ *read more* ](apps/keepassxc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keepassxc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keepassxc) | -| | [***keepkey-desktop***](apps/keepkey-desktop.md) | *An all-in-one suite for using your KeepKey hardware wallet.*..[ *read more* ](apps/keepkey-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keepkey-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keepkey-desktop) | -| | [***keeweb***](apps/keeweb.md) | *Free cross-platform password manager compatible with KeePass.*..[ *read more* ](apps/keeweb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keeweb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keeweb) | -| | [***kega-fusion***](apps/kega-fusion.md) | *Unofficial, an emulator of classic Sega consoles, including SMS/GG, Genesis/Megadrive and add-ons.*..[ *read more* ](apps/kega-fusion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kega-fusion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kega-fusion) | -| | [***keibo-moneytracker-x86-64***](apps/keibo-moneytracker-x86-64.md) | *Track your income and expenses easily.*..[ *read more* ](apps/keibo-moneytracker-x86-64.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keibo-moneytracker-x86-64) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keibo-moneytracker-x86-64) | -| | [***kettleclient***](apps/kettleclient.md) | *Client for Kettle REST service.*..[ *read more* ](apps/kettleclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kettleclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kettleclient) | -| | [***kevedit***](apps/kevedit.md) | *ZZT Editor.*..[ *read more* ](apps/kevedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kevedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kevedit) | -| | [***keyboardclient***](apps/keyboardclient.md) | *Keyboard Settings Client.*..[ *read more* ](apps/keyboardclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keyboardclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keyboardclient) | -| | [***keycombiner***](apps/keycombiner.md) | *Learn exactly the keyboard shortcuts you need.*..[ *read more* ](apps/keycombiner.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keycombiner) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keycombiner) | -| | [***keymanager***](apps/keymanager.md) | *One-stop certificate app and certificate key management.*..[ *read more* ](apps/keymanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keymanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keymanager) | -| | [***keypunch***](apps/keypunch.md) | *Unofficial, keyboard writing speed test application. *..[ *read more* ](apps/keypunch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keypunch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keypunch) | -| | [***keyrier-json***](apps/keyrier-json.md) | *A CLI/library/webapp to perfom SQL queries on JSON & CSV.*..[ *read more* ](apps/keyrier-json.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keyrier-json) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keyrier-json) | -| | [***keys***](apps/keys.md) | *Key management, signing and encryption.*..[ *read more* ](apps/keys.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keys) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keys) | -| | [***keysmith***](apps/kdeutils.md) | *Generates tokens for your two-factor logins. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kfind***](apps/kdeutils.md) | *A search tool. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kfourinline***](apps/kdegames.md) | *4 in row game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kftray***](apps/kftray.md) | *Kubectl port-forward manager and reverse tunnel (ngrok-like) for exposing local services publicly, with TLS termination, HTTP traffic inspection, UDP forwarding, multi-hop proxy routing through k8s clusters, stateful config via filesystem or git.*..[ *read more* ](apps/kftray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kftray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kftray) | -| | [***kgoldrunner***](apps/kdegames.md) | *A game with a runner and gold. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kgpg***](apps/kdeutils.md) | *A GnuPG frontend. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kibi***](apps/kibi.md) | *A text editor in ≤1024 lines of code, written in Rust.*..[ *read more* ](apps/kibi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kibi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kibi) | -| | [***kicad***](apps/kicad.md) | *A free software suite for electronic design automation (EDA) to facilitates the design and simulation of electronic hardware for PCB manufacturing. It features an integrated environment for schematic capture, PCB layout, manufacturing file viewing, ngspice-provided SPICE simulation, and engineering calculation. Create bill of materials, artwork, Gerber files, and 3D models of the PCB and its components.*..[ *read more* ](apps/kicad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kicad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kicad) | -| | [***kid3***](apps/kid3.md) | *Unofficial, efficient audio tagger that supports a large variety of file formats.*..[ *read more* ](apps/kid3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kid3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kid3) | -| | [***kigo***](apps/kdegames.md) | *Go strategic board game for two players. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kiibohd-configurator***](apps/kiibohd-configurator.md) | *Configuration utility for Input Club keyboards.*..[ *read more* ](apps/kiibohd-configurator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kiibohd-configurator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kiibohd-configurator) | -| | [***kiku***](apps/kiku.md) | *Play music from youtube on desktop. Supports local api, invidious and piped as source.*..[ *read more* ](apps/kiku.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kiku) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kiku) | -| | [***kill***](apps/kill.md) | *Terminate a process. This is part of "am-utils" suite.*..[ *read more* ](apps/kill.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kill) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kill) | -| | [***killall***](apps/killall.md) | *Kill processes by name. This is part of "am-utils" suite.*..[ *read more* ](apps/killall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/killall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/killall) | -| | [***killbots***](apps/kdegames.md) | *Port of the classic console game Robots. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kimitzu-client***](apps/kimitzu-client.md) | *Kimitzu Client.*..[ *read more* ](apps/kimitzu-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kimitzu-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kimitzu-client) | -| | [***kindling-cli***](apps/kindling-cli.md) | *Kindle toolkit for dictionaries, books, comics.*..[ *read more* ](apps/kindling-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kindling-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kindling-cli) | -| | [***kinopio***](apps/kinopio.md) | *Thinking canvas for new ideas and hard problems.*..[ *read more* ](apps/kinopio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kinopio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kinopio) | -| | [***kiri-moto***](apps/kiri-moto.md) | *Browser-based Slicer for 3D Printing, CAM, Laser and mesh editor.*..[ *read more* ](apps/kiri-moto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kiri-moto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kiri-moto) | -| | [***kiriki***](apps/kdegames.md) | *A dice game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kitsas***](apps/kitsas.md) | *Finnish bookkeeping software for small organizations.*..[ *read more* ](apps/kitsas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kitsas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kitsas) | -| | [***kitshn***](apps/kitshn.md) | *An unofficial client for the self-hosted Tandoor recipe management software.*..[ *read more* ](apps/kitshn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kitshn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kitshn) | -| | [***kitty***](apps/kitty.md) | *Cross-platform, fast, feature-rich, GPU based terminal (also provides "kitten" CLI utility).*..[ *read more* ](apps/kitty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kitty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kitty) | -| | [***kitupiikki***](apps/kitupiikki.md) | *Bookkeeping software for small organizations.*..[ *read more* ](apps/kitupiikki.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kitupiikki) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kitupiikki) | -| | [***kiwix***](apps/kiwix.md) | *An offline reader for Web content, primarily designed to make Wikipedia available offline. It reads archives in the ZIM file format, a highly compressed open format with additional metadata.*..[ *read more* ](apps/kiwix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kiwix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kiwix) | -| | [***kjumpingcube***](apps/kdegames.md) | *A game of dices on a board. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***klickety***](apps/kdegames.md) | *Color matching like SameGame. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***klines***](apps/kdegames.md) | *Inspired by well known game of Color Lines. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***klogg***](apps/klogg.md) | *A smart interactive log explorer.*..[ *read more* ](apps/klogg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/klogg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/klogg) | -| | [***km-recplayer***](apps/km-recplayer.md) | *Recorder and player of keyboard and mouse input (HID)*..[ *read more* ](apps/km-recplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/km-recplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/km-recplayer) | -| | [***kmahjongg***](apps/kdegames.md) | *Mahjongg game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kmines***](apps/kdegames.md) | *Classic mine game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kmon***](apps/kmon.md) | *Linux Kernel Manager and Activity Monitor.*..[ *read more* ](apps/kmon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kmon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kmon) | -| | [***kmonad***](apps/kmonad.md) | *An advanced keyboard manager.*..[ *read more* ](apps/kmonad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kmonad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kmonad) | -| | [***kmymoney***](apps/kmymoney.md) | *KMyMoney is a cross-platform personal finance manager build on KDE frameworks technologies for your desktop and notebook environment.*..[ *read more* ](apps/kmymoney.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kmymoney) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kmymoney) | -| | [***knavalbattle***](apps/kdegames.md) | *Battle Ship game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***knetwalk***](apps/kdegames.md) | *Net constructing game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***knights***](apps/knights.md) | *Unofficial, KDE's chess game frontend.*..[ *read more* ](apps/knights.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/knights) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/knights) | -| | [***knowte***](apps/knowte.md) | *Note taking.*..[ *read more* ](apps/knowte.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/knowte) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/knowte) | -| | [***koboldcpp***](apps/koboldcpp.md) | *Simple 1-file way to run GGML and GGUF models with KoboldAI's UI.*..[ *read more* ](apps/koboldcpp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koboldcpp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koboldcpp) | -| | [***koishi-desktop***](apps/koishi-desktop.md) | *Launch Koishi from your desktop.*..[ *read more* ](apps/koishi-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koishi-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koishi-desktop) | -| | [***kolf***](apps/kdegames.md) | *Mini Golf game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kollision***](apps/kdegames.md) | *Dodge red balls in the field. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kolourpaint***](apps/kolourpaint.md) | *Unofficial AppImage of KolourPaint.*..[ *read more* ](apps/kolourpaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kolourpaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kolourpaint) | -| | [***kondo***](apps/kondo.md) | *Cleans dependencies and build artifacts from your projects.*..[ *read more* ](apps/kondo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kondo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kondo) | -| | [***kongress***](apps/kdeutils.md) | *A companion application for conferences. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***konquest***](apps/kdegames.md) | *Game of planets. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***koodo-reader***](apps/koodo-reader.md) | *Modern ebook manager and reader with sync & backup capacities.*..[ *read more* ](apps/koodo-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koodo-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koodo-reader) | -| | [***kopia***](apps/kopia.md) | *Cross-platform backup tool.*..[ *read more* ](apps/kopia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kopia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kopia) | -| | [***koreader-nightly***](apps/koreader-nightly.md) | *A document viewer for E Ink devices. Supported fileformats include EPUB, PDF, DjVu, XPS, CBT, CBZ, FB2, PDB, TXT, HTML, RTF, CHM, DOC, MOBI and ZIP files. It’s available for Kindle, Kobo, PocketBook, Android and desktop Linux. Nightly build.*..[ *read more* ](apps/koreader-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koreader-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koreader-nightly) | -| | [***koreader***](apps/koreader.md) | *A document viewer for E Ink devices. Supported fileformats include EPUB, PDF, DjVu, XPS, CBT, CBZ, FB2, PDB, TXT, HTML, RTF, CHM, DOC, MOBI and ZIP files. It’s available for Kindle, Kobo, PocketBook, Android and desktop Linux.*..[ *read more* ](apps/koreader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koreader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koreader) | -| | [***kpat***](apps/kdegames.md) | *Klondike, Spider, Free Cell and other Solitaire. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***krecorder***](apps/kdeutils.md) | *An audio recording application. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kreversi***](apps/kdegames.md) | *Reversi game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***krita-devel***](apps/krita-devel.md) | *A professional FREE open source painting program, dev-edition.*..[ *read more* ](apps/krita-devel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/krita-devel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/krita-devel) | -| | [***krita***](apps/krita.md) | *A professional FREE and open source painting program, graphics.*..[ *read more* ](apps/krita.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/krita) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/krita) | -| | [***krokiet***](apps/krokiet.md) | *App to find duplicates, empty folders, similar images etc. The successor of czkawka.*..[ *read more* ](apps/krokiet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/krokiet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/krokiet) | -| | [***kronos***](apps/kronos.md) | *Unofficial, Sega Saturn emulator.*..[ *read more* ](apps/kronos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kronos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kronos) | -| | [***krunker***](apps/krunker.md) | *Krunker (.io) is a fast-paced first-person shooter game with pixel graphics.*..[ *read more* ](apps/krunker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/krunker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/krunker) | -| | [***kshisen***](apps/kdegames.md) | *A game similar to Mahjongg. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksirk***](apps/kdegames.md) | *A strategy board game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksnakeduel***](apps/kdegames.md) | *A snake race game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksnip***](apps/ksnip.md) | *Screenshot tool inspired by Windows Snipping Tool and made with Qt.*..[ *read more* ](apps/ksnip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ksnip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ksnip) | -| | [***kspaceduel***](apps/kdegames.md) | *Battleship with satellites in the space. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksquares***](apps/kdegames.md) | *Win with most number of completed squares. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kstars***](apps/kstars.md) | *Unofficial AppImage of KStars.*..[ *read more* ](apps/kstars.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kstars) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kstars) | -| | [***ksudoku***](apps/kdegames.md) | *Sudoku game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kteatime***](apps/kdeutils.md) | *A handy timer for steeping tea. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***ktimer***](apps/kdeutils.md) | *Countdown Launcher. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***ktorrent***](apps/ktorrent.md) | *Unofficial AppImage of KTorrent.*..[ *read more* ](apps/ktorrent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ktorrent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ktorrent) | -| | [***ktrip***](apps/kdeutils.md) | *KTrip helps you navigate in public transport. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***ktuberling***](apps/kdegames.md) | *Simple Mr. Potato game for children. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kubeman***](apps/kubeman.md) | *The Hero that Kubernetes deserves.*..[ *read more* ](apps/kubeman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kubeman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kubeman) | -| | [***kubenav***](apps/kubenav.md) | *The navigator for your Kubernetes clusters right in your pocket.*..[ *read more* ](apps/kubenav.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kubenav) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kubenav) | -| | [***kubrick***](apps/kdegames.md) | *A logic game based on Rubik's Cube. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kunkun***](apps/kunkun.md) | *An open source, cross-platform, extensible app launcher.*..[ *read more* ](apps/kunkun.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kunkun) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kunkun) | -| | [***kure***](apps/kure.md) | *CLI password manager with sessions.*..[ *read more* ](apps/kure.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kure) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kure) | -| | [***kuro***](apps/kuro.md) | *An elegant Microsoft ToDo desktop client for Linux, a fork of Ao.*..[ *read more* ](apps/kuro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kuro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kuro) | -| | [***kwave***](apps/kwave.md) | *A sound & audio editor designed for the KDE Desktop Environment.*..[ *read more* ](apps/kwave.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kwave) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kwave) | -| | [***kweather***](apps/kdeutils.md) | *A convergent weather application. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kwrite***](apps/kdeutils.md) | *KWrite is a text editor by KDE. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***labplot***](apps/labplot.md) | *Data Visualization and Analysis software accessible to everyone and trusted by professionals.*..[ *read more* ](apps/labplot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/labplot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/labplot) | -| | [***ladybird***](apps/ladybird.md) | *A truly independent web browser, using a novel engine based on web standards.*..[ *read more* ](apps/ladybird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ladybird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ladybird) | -| | [***lagrange***](apps/lagrange.md) | *Lagrange is a cross-platform client for browsing Geminispace (GUI Version).*..[ *read more* ](apps/lagrange.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lagrange) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lagrange) | -| | [***laidout***](apps/laidout.md) | *Laidout, desktop publishing software*..[ *read more* ](apps/laidout.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/laidout) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/laidout) | -| | [***laigter***](apps/laigter.md) | *Tool to generate normal/specular/occlussion/parallax 2D maps.*..[ *read more* ](apps/laigter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/laigter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/laigter) | -| | [***lambda-lantern***](apps/lambda-lantern.md) | *A 3D game about functional programming patterns.*..[ *read more* ](apps/lambda-lantern.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lambda-lantern) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lambda-lantern) | -| | [***lan-mouse***](apps/lan-mouse.md) | *Mouse & keyboard sharing via LAN.*..[ *read more* ](apps/lan-mouse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lan-mouse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lan-mouse) | -| | [***landrop***](apps/landrop.md) | *Drop any files to any devices on your LAN.*..[ *read more* ](apps/landrop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/landrop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/landrop) | -| | [***lanshare***](apps/lanshare.md) | *LAN file transfer app for any kind and size of files and folders.*..[ *read more* ](apps/lanshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lanshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lanshare) | -| | [***lapce***](apps/lapce.md) | *Lightning-fast and Powerful Code Editor written in Rust.*..[ *read more* ](apps/lapce.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lapce) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lapce) | -| | [***laravel-kit***](apps/laravel-kit.md) | *Easy Laravel application management.*..[ *read more* ](apps/laravel-kit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/laravel-kit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/laravel-kit) | -| | [***launcher***](apps/launcher.md) | *Generic application's launcher.*..[ *read more* ](apps/launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/launcher) | -| | [***lazpaint***](apps/lazpaint.md) | *Cross-platform image editor with raster and vector layers similar to Paint.Net written in Lazarus (Free Pascal).*..[ *read more* ](apps/lazpaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lazpaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lazpaint) | -| | [***lazygit***](apps/lazygit.md) | *Simple terminal UI for git commands.*..[ *read more* ](apps/lazygit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lazygit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lazygit) | -| | [***lazytyper***](apps/lazytyper.md) | *LazyTyper desktop client (repackaged from the official AppImage, including built-in dependencies).*..[ *read more* ](apps/lazytyper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lazytyper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lazytyper) | -| | [***lba2-classic-community***](apps/lba2-classic-community.md) | *Unofficial, a community fork for evolving and modernizing LBA2 source port.*..[ *read more* ](apps/lba2-classic-community.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lba2-classic-community) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lba2-classic-community) | -| | [***lbry-desktop***](apps/lbry-desktop.md) | *A browser and wallet for LBRY.*..[ *read more* ](apps/lbry-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lbry-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lbry-desktop) | -| | [***lcedit***](apps/lcedit.md) | *Editor, unknown.*..[ *read more* ](apps/lcedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lcedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lcedit) | -| | [***ld.bfd***](apps/ld.bfd.md) | *The GNU linker with BFD libraries. This is part of "am-utils" suite.*..[ *read more* ](apps/ld.bfd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ld.bfd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ld.bfd) | -| | [***ld***](apps/ld.md) | *Standalone Linker Compiler. This is part of "am-utils" suite.*..[ *read more* ](apps/ld.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ld) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ld) | -| | [***ldtk***](apps/ldtk.md) | *Modern and efficient 2D level editor.*..[ *read more* ](apps/ldtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ldtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ldtk) | -| | [***leaflet***](apps/leaflet.md) | *POSP official notes application, written in flutter, beautiful, fast and secure.*..[ *read more* ](apps/leaflet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/leaflet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/leaflet) | -| | [***leapp***](apps/leapp.md) | *The DevTool to access your cloud.*..[ *read more* ](apps/leapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/leapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/leapp) | -| | [***led.custom.palette***](apps/led.custom.palette.md) | *Design the lights on your Model01 with an ease.*..[ *read more* ](apps/led.custom.palette.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/led.custom.palette) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/led.custom.palette) | -| | [***ledger-live-desktop***](apps/ledger-live-desktop.md) | *Ledger Wallet crypto app. Secure your crypto assets such as Bitcoin, Ethereum, XRP, Monero, and more. Give yourself peace of mind by knowing that your cryptocurrencies are safe.*..[ *read more* ](apps/ledger-live-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ledger-live-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ledger-live-desktop) | -| | [***legcord***](apps/legcord.md) | *Legcord is a custom client designed to enhance your Discord experience while keeping everything lightweight.*..[ *read more* ](apps/legcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/legcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/legcord) | -| | [***legendary-kingdoms***](apps/legendary-kingdoms.md) | *Implementation of Legendary Kingdoms Gamebooks in C++.*..[ *read more* ](apps/legendary-kingdoms.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/legendary-kingdoms) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/legendary-kingdoms) | -| | [***lemon***](apps/lemon.md) | *A tiny judging environment for OI contest based on Project_LemonPlus.*..[ *read more* ](apps/lemon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lemon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lemon) | -| | [***lens***](apps/lens.md) | *App you need to take control of your Kubernetes clusters.*..[ *read more* ](apps/lens.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lens) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lens) | -| | [***leocad***](apps/leocad.md) | *Create virtual LEGO models.*..[ *read more* ](apps/leocad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/leocad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/leocad) | -| | [***leonflix***](apps/leonflix.md) | *Multi-platform desktop application for watching movies & TV shows.*..[ *read more* ](apps/leonflix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/leonflix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/leonflix) | -| | [***lepton***](apps/lepton.md) | *Democratizing Code Snippets Management.*..[ *read more* ](apps/lepton.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lepton) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lepton) | -| | [***lescovex***](apps/lescovex.md) | *Lescovex decentralized exchange, wallet and contract issuer.*..[ *read more* ](apps/lescovex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lescovex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lescovex) | -| | [***leshade***](apps/leshade.md) | *An unofficial Reshade Installer for Linux.*..[ *read more* ](apps/leshade.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/leshade) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/leshade) | -| | [***less***](apps/less.md) | *A terminal based program for viewing text files. This is part of "am-utils" suite.*..[ *read more* ](apps/less.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/less) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/less) | -| | [***lets-bend***](apps/lets-bend.md) | *Harmonica tuner for learning bending techniques with real-time visual feedback.*..[ *read more* ](apps/lets-bend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lets-bend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lets-bend) | -| | [***levior***](apps/levior.md) | *Converts web pages on-the-fly to the gemtext format.*..[ *read more* ](apps/levior.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/levior) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/levior) | -| | [***lexido***](apps/lexido.md) | *A terminal assistant, powered by Generative AI.*..[ *read more* ](apps/lexido.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lexido) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lexido) | -| | [***lf***](apps/lf.md) | *lf, as in "list files" is a terminal file manager written in Go.*..[ *read more* ](apps/lf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lf) | -| | [***libassist***](apps/libassist.md) | *Library Assistant.*..[ *read more* ](apps/libassist.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/libassist) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/libassist) | -| | [***libation***](apps/libation.md) | *Unofficial, application for downloading and managing your Audible audiobooks.*..[ *read more* ](apps/libation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/libation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/libation) | -| | [***libertem***](apps/libertem.md) | *Pixelated scanning transmission electron microscopy.*..[ *read more* ](apps/libertem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/libertem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/libertem) | -| | [***librecad***](apps/librecad.md) | *2D CAD program written in C++11 using the Qt framework.*..[ *read more* ](apps/librecad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/librecad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/librecad) | -| | [***libreoffice***](apps/libreoffice.md) | *Unofficial, LibreOffice is a private and powerful, free and open source office suite – the successor project to OpenOffice. It's compatible with Microsoft Office/365 files.*..[ *read more* ](apps/libreoffice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/libreoffice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/libreoffice) | -| | [***librepcb***](apps/librepcb.md) | *Design Schematics and PCBs.*..[ *read more* ](apps/librepcb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/librepcb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/librepcb) | -| | [***librescore***](apps/librescore.md) | *The open source (GPLv3), serverless (IPFS-based), offline-first, and totally free alternative to musescore.com*..[ *read more* ](apps/librescore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/librescore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/librescore) | -| | [***libresprite***](apps/libresprite.md) | *Animated sprite editor & pixel art tool. Fork of the last GPLv2 commit of Aseprite.*..[ *read more* ](apps/libresprite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/libresprite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/libresprite) | -| | [***librewolf***](apps/librewolf.md) | *Firefox-based Web Browser focused on privacy, security, freedom.*..[ *read more* ](apps/librewolf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/librewolf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/librewolf) | -| | [***lichtblick***](apps/lichtblick.md) | *Lichtblick is an integrated visualization and diagnosis tool for robotics, available in your browser or as a desktop app on Linux, Windows, and macOS.*..[ *read more* ](apps/lichtblick.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lichtblick) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lichtblick) | -| | [***lightning-peach-wallet***](apps/lightning-peach-wallet.md) | *Wallet for lightning network*..[ *read more* ](apps/lightning-peach-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lightning-peach-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lightning-peach-wallet) | -| | [***lightning***](apps/lightning.md) | *Lightning Wallet Application.*..[ *read more* ](apps/lightning.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lightning) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lightning) | -| | [***lightzone***](apps/lightzone.md) | *Unofficial AppImage of LighZone.*..[ *read more* ](apps/lightzone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lightzone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lightzone) | -| | [***liground***](apps/liground.md) | *A mordern Chess Variant Analysis GUI, game.*..[ *read more* ](apps/liground.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/liground) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/liground) | -| | [***liketaskmanager***](apps/liketaskmanager.md) | *Process/performances monitor, CPU, RAM, Disks and Network.*..[ *read more* ](apps/liketaskmanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/liketaskmanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/liketaskmanager) | -| | [***linedancer***](apps/linedancer.md) | *Arcade game and entry for Ludum Dare 35.*..[ *read more* ](apps/linedancer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linedancer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linedancer) | -| | [***lingueez***](apps/lingueez.md) | *Vocabulary trainer.*..[ *read more* ](apps/lingueez.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lingueez) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lingueez) | -| | [***link***](apps/link.md) | *Call the link function to create a link to a file. This is part of "am-utils" suite.*..[ *read more* ](apps/link.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/link) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/link) | -| | [***linked***](apps/linked.md) | *Daily journaling without distraction.*..[ *read more* ](apps/linked.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linked) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linked) | -| | [***linkora***](apps/linkora.md) | *Link organizer for Android and desktop with self-hosted sync.*..[ *read more* ](apps/linkora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linkora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linkora) | -| | [***linphone***](apps/linphone.md) | *A libre SIP client.*..[ *read more* ](apps/linphone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linphone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linphone) | -| | [***linux-intel-undervolt-gui***](apps/linux-intel-undervolt-gui.md) | *Undervolting GUI for Intel Linux Systems.*..[ *read more* ](apps/linux-intel-undervolt-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linux-intel-undervolt-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linux-intel-undervolt-gui) | -| | [***linuxaircombat***](apps/linuxaircombat.md) | *Free open source combat flight simulator.*..[ *read more* ](apps/linuxaircombat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxaircombat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxaircombat) | -| | [***linuxdeploy***](apps/linuxdeploy.md) | *AppDir creation and maintenance tool. Featuring flexible plugin system.*..[ *read more* ](apps/linuxdeploy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxdeploy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxdeploy) | -| | [***linuxdeployqt***](apps/linuxdeployqt.md) | *Convert a linux program to an AppDir or an AppImage.*..[ *read more* ](apps/linuxdeployqt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxdeployqt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxdeployqt) | -| | [***linuxqq***](apps/linuxqq.md) | *New Linux QQ based on Electron.*..[ *read more* ](apps/linuxqq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxqq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxqq) | -| | [***linuxtoys***](apps/linuxtoys.md) | *Unofficial, a user-friendly collection of tools to make your life on Linux easier than ever. Useful scripts for gamers, developers and enthusiasts.*..[ *read more* ](apps/linuxtoys.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxtoys) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxtoys) | -| | [***linuxwallpaper***](apps/linuxwallpaper.md) | *Bing wallpaper of the day.*..[ *read more* ](apps/linuxwallpaper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxwallpaper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxwallpaper) | -| | [***linwood-butterfly***](apps/linwood-butterfly.md) | *Powerful, minimalistic, cross-platform, note-taking app.*..[ *read more* ](apps/linwood-butterfly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linwood-butterfly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linwood-butterfly) | -| | [***liquidlauncher***](apps/liquidlauncher.md) | *The official Minecraft launcher for LiquidBounce.*..[ *read more* ](apps/liquidlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/liquidlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/liquidlauncher) | -| | [***lisk-desktop***](apps/lisk-desktop.md) | *Lisk graphical user interface for desktop.*..[ *read more* ](apps/lisk-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lisk-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lisk-desktop) | -| | [***listen.moe***](apps/listen.moe.md) | *Official LISTEN.moe Desktop Client.*..[ *read more* ](apps/listen.moe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/listen.moe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/listen.moe) | -| | [***listen1-desktop***](apps/listen1-desktop.md) | *One for all free music in China.*..[ *read more* ](apps/listen1-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/listen1-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/listen1-desktop) | -| | [***lite-xl***](apps/lite-xl.md) | *A lightweight text editor written in Lua.*..[ *read more* ](apps/lite-xl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lite-xl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lite-xl) | -| | [***liteide***](apps/liteide.md) | *LiteIDE is a simple, open source, cross-platform Go IDE.*..[ *read more* ](apps/liteide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/liteide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/liteide) | -| | [***litime***](apps/litime.md) | *A terminal literature clock telling time with quotes from literature.*..[ *read more* ](apps/litime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/litime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/litime) | -| | [***liveme-pro-tools***](apps/liveme-pro-tools.md) | *Browse, search and manage accounts, replays and more.*..[ *read more* ](apps/liveme-pro-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/liveme-pro-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/liveme-pro-tools) | -| | [***lmms***](apps/lmms.md) | *FL Studio® alternative that allows you to produce music with the PC.*..[ *read more* ](apps/lmms.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lmms) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lmms) | -| | [***lmstudio***](apps/lmstudio.md) | *Experimenting with local and open-source Large Language Models.*..[ *read more* ](apps/lmstudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lmstudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lmstudio) | -| | [***ln***](apps/ln.md) | *Make links between files. This is part of "am-utils" suite.*..[ *read more* ](apps/ln.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ln) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ln) | -| | [***lobe-chat***](apps/lobe-chat.md) | *LobeHub - an open-source, modern design AI Agent Workspace. Supports multiple AI providers, Knowledge Base (file upload / RAG ), one click install MCP Marketplace and Artifacts / Thinking. One-click FREE deployment of your private AI Agent application.*..[ *read more* ](apps/lobe-chat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lobe-chat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lobe-chat) | -| | [***local-browser***](apps/local-browser.md) | *Share your localhost in a unique way.*..[ *read more* ](apps/local-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/local-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/local-browser) | -| | [***localsend***](apps/localsend.md) | *An open source cross-platform alternative to AirDrop*..[ *read more* ](apps/localsend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/localsend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/localsend) | -| | [***lockbook-cli***](apps/lockbook-cli.md) | *The private, polished note-taking platform, CLI.*..[ *read more* ](apps/lockbook-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lockbook-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lockbook-cli) | -| | [***lockbook-desktop***](apps/lockbook-desktop.md) | *The private, polished note-taking platform.*..[ *read more* ](apps/lockbook-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lockbook-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lockbook-desktop) | -| | [***lofi***](apps/lofi.md) | *A mini Spotify player with WebGL visualizations.*..[ *read more* ](apps/lofi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lofi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lofi) | -| | [***loginized***](apps/loginized.md) | *Loginized Gnome GDM Login Theme Manager.*..[ *read more* ](apps/loginized.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/loginized) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/loginized) | -| | [***logname***](apps/logname.md) | *Print user's login name. This is part of "am-utils" suite.*..[ *read more* ](apps/logname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/logname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/logname) | -| | [***logseq***](apps/logseq.md) | *A privacy-first platform for knowledge management and collaboration.*..[ *read more* ](apps/logseq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/logseq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/logseq) | -| | [***look***](apps/look.md) | *Beginning with a given string. This is part of "am-utils" suite.*..[ *read more* ](apps/look.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/look) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/look) | -| | [***looofix***](apps/looofix.md) | *Minimalist Desktop Lofi Player To Relax and Enjoy.*..[ *read more* ](apps/looofix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/looofix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/looofix) | -| | [***loopauditioneer***](apps/loopauditioneer.md) | *Software for loop and cue handling in .wav files.*..[ *read more* ](apps/loopauditioneer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/loopauditioneer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/loopauditioneer) | -| | [***lore-forge***](apps/lore-forge.md) | *The app for writers & worldbuilders.*..[ *read more* ](apps/lore-forge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lore-forge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lore-forge) | -| | [***lorien***](apps/lorien.md) | *Infinite canvas drawing/whiteboarding app.*..[ *read more* ](apps/lorien.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lorien) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lorien) | -| | [***losslesscut***](apps/losslesscut.md) | *The swiss army knife of lossless video/audio editing.*..[ *read more* ](apps/losslesscut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/losslesscut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/losslesscut) | -| | [***love***](apps/love.md) | *The unquestionably awesome 2D game engine.*..[ *read more* ](apps/love.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/love) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/love) | -| | [***lovelive***](apps/lovelive.md) | *A LoveLiver Music Player.*..[ *read more* ](apps/lovelive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lovelive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lovelive) | -| | [***lovesay***](apps/lovesay.md) | *Cowsay, but full of love and now a little rusty.*..[ *read more* ](apps/lovesay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lovesay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lovesay) | -| | [***lovr***](apps/lovr.md) | *Lua Virtual Reality Framework.*..[ *read more* ](apps/lovr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lovr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lovr) | -| | [***lowfi***](apps/lowfi.md) | *An extremely simple lofi player. CLI.*..[ *read more* ](apps/lowfi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lowfi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lowfi) | -| | [***lpub3d***](apps/lpub3d.md) | *An LDraw Building Instruction Editor.*..[ *read more* ](apps/lpub3d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lpub3d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lpub3d) | -| | [***ls***](apps/ls.md) | *List directory contents. This is part of "am-utils" suite.*..[ *read more* ](apps/ls.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ls) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ls) | -| | [***lsd***](apps/lsd.md) | *The next gen ls command.*..[ *read more* ](apps/lsd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lsd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lsd) | -| | [***lskat***](apps/kdegames.md) | *Fun and engaging card game for two players. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ltx-desktop***](apps/ltx-desktop.md) | *An open-source desktop app for generating videos with LTX models.*..[ *read more* ](apps/ltx-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ltx-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ltx-desktop) | -| | [***luanti***](apps/luanti.md) | *Multiplayer infinite-world block sandbox.*..[ *read more* ](apps/luanti.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/luanti) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/luanti) | -| | [***ludo***](apps/ludo.md) | *Ludo is a work in progress libretro frontend written in go.*..[ *read more* ](apps/ludo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ludo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ludo) | -| | [***lumi***](apps/lumi.md) | *A tool to create and display interactive content with H5P.*..[ *read more* ](apps/lumi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lumi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lumi) | -| | [***luna***](apps/luna.md) | *Manage npm dependencies through a modern UI.*..[ *read more* ](apps/luna.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/luna) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/luna) | -| | [***lunar-client***](apps/lunar-client.md) | *Free Minecraft Client, a modpack for all versions of Minecraft.*..[ *read more* ](apps/lunar-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lunar-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lunar-client) | -| | [***lunatask***](apps/lunatask.md) | *All-in-one encrypted to-do list, notebook, habit and mood tracker.*..[ *read more* ](apps/lunatask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lunatask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lunatask) | -| | [***lutris-gamepad-ui***](apps/lutris-gamepad-ui.md) | *A simple, TV-friendly, gamepad-navigable frontend for the Lutris game launcher on Linux.*..[ *read more* ](apps/lutris-gamepad-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lutris-gamepad-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lutris-gamepad-ui) | -| | [***lutris***](apps/lutris.md) | *Unofficial. Install and play video games from all eras and from most gaming systems, by leveraging and combining existing emulators, WINE included.*..[ *read more* ](apps/lutris.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lutris) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lutris) | -| | [***lvgl-editor***](apps/lvgl-editor.md) | *LVGL Pro is a complete toolkit to build, test, share and ship embedded UIs efficiently.*..[ *read more* ](apps/lvgl-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lvgl-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lvgl-editor) | -| | [***lx-music-desktop***](apps/lx-music-desktop.md) | *一个基于electron的音乐软件.*..[ *read more* ](apps/lx-music-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lx-music-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lx-music-desktop) | -| | [***lxtask***](apps/lxtask.md) | *Unofficial. A lightweight and desktop-independent task manager.*..[ *read more* ](apps/lxtask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lxtask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lxtask) | -| | [***lyricistant***](apps/lyricistant.md) | *A helpful writing assistant for lyricists.*..[ *read more* ](apps/lyricistant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lyricistant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lyricistant) | -| | [***m***](apps/m.md) | *Data oriented programming language for game developers.*..[ *read more* ](apps/m.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/m) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/m) | -| | [***macchina***](apps/macchina.md) | *A system information frontend with an emphasis on performance.*..[ *read more* ](apps/macchina.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/macchina) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/macchina) | -| | [***magento2-upgrade-gui***](apps/magento2-upgrade-gui.md) | *Magento 2 Upgrade GUI.*..[ *read more* ](apps/magento2-upgrade-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/magento2-upgrade-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/magento2-upgrade-gui) | -| | [***mages***](apps/mages.md) | *Multiplatform Matrix chat client (experimental CMP+rust app).*..[ *read more* ](apps/mages.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mages) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mages) | -| | [***magicfountain***](apps/magicfountain.md) | *A novel and screenwriting program.*..[ *read more* ](apps/magicfountain.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/magicfountain) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/magicfountain) | -| | [***makagiga***](apps/makagiga.md) | *To-do manager, notepad, RSS reader and much more.*..[ *read more* ](apps/makagiga.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/makagiga) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/makagiga) | -| | [***make_f2fs***](apps/platform-tools.md) | *Creates F2FS filesystems optimized for flash storage. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***make_f2fs_casefold***](apps/platform-tools.md) | *Creates F2FS filesystems with case-insensitive filename support. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***makhber***](apps/makhber.md) | *Makhber is a free application for Visualization and Analysis of Scientific Data.*..[ *read more* ](apps/makhber.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/makhber) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/makhber) | -| | [***makoureactor***](apps/makoureactor.md) | *Can edit field from Final Fantasy VII, PS & PC.*..[ *read more* ](apps/makoureactor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/makoureactor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/makoureactor) | -| | [***malice***](apps/malice.md) | *GUI Programming Tool for iCE40.*..[ *read more* ](apps/malice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/malice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/malice) | -| | [***mame***](apps/mame.md) | *Unofficial AppImage of MAME emulator.*..[ *read more* ](apps/mame.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mame) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mame) | -| | [***manager-io***](apps/manager-io.md) | *Free Accounting Software for Linux, Server.*..[ *read more* ](apps/manager-io.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/manager-io) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/manager-io) | -| | [***mandelbulber2***](apps/mandelbulber2.md) | *Explore trigonometric, hyper-complex and other 3D fractals.*..[ *read more* ](apps/mandelbulber2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mandelbulber2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mandelbulber2) | -| | [***manga-tui***](apps/manga-tui.md) | *Terminal-based manga reader and downloader with image support.*..[ *read more* ](apps/manga-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/manga-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/manga-tui) | -| | [***mangadesk***](apps/mangadesk.md) | *Terminal client for MangaDex.*..[ *read more* ](apps/mangadesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangadesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangadesk) | -| | [***mangal***](apps/mangal.md) | *Most advanced, yet simple CLI manga downloader in the universe!*..[ *read more* ](apps/mangal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangal) | -| | [***mangayomi***](apps/mangayomi.md) | *Free and open source application for reading manga, novels, and watching animes available.*..[ *read more* ](apps/mangayomi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangayomi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangayomi) | -| | [***mangbandclient***](apps/mangbandclient.md) | *A free online multi-player realtime roguelike game.*..[ *read more* ](apps/mangbandclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangbandclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangbandclient) | -| | [***mangojuice***](apps/mangojuice.md) | *It's a great alternative to GOverlay.*..[ *read more* ](apps/mangojuice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangojuice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangojuice) | -| | [***mangoverlay***](apps/mangoverlay.md) | *Mangohud configuration tool.*..[ *read more* ](apps/mangoverlay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangoverlay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangoverlay) | -| | [***maniadrive***](apps/maniadrive.md) | *Unofficial, an open-source clone of the popular racing game TrackMania.*..[ *read more* ](apps/maniadrive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/maniadrive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/maniadrive) | -| | [***manta***](apps/manta.md) | *Flexible invoicing app with beautiful & customizable templates.*..[ *read more* ](apps/manta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/manta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/manta) | -| | [***mapeo***](apps/mapeo.md) | *Local-first mapping and monitoring in remote environments.*..[ *read more* ](apps/mapeo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mapeo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mapeo) | -| | [***mapic***](apps/mapic.md) | *MaPic is a Image Viewer with AI Metadata Reader.*..[ *read more* ](apps/mapic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mapic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mapic) | -| | [***mapollage***](apps/mapollage.md) | *Photo kml generator for Google Earth.*..[ *read more* ](apps/mapollage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mapollage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mapollage) | -| | [***mapton***](apps/mapton.md) | *Some kind of map application.*..[ *read more* ](apps/mapton.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mapton) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mapton) | -| | [***mariokart64recomp***](apps/mariokart64recomp.md) | *Unofficial, a native port of MarioKart 64, statically recompiled.*..[ *read more* ](apps/mariokart64recomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mariokart64recomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mariokart64recomp) | -| | [***mark-mind***](apps/mark-mind.md) | *Multiplatform mind map and outliner editor with markdown support.*..[ *read more* ](apps/mark-mind.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mark-mind) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mark-mind) | -| | [***markflowy***](apps/markflowy.md) | *Modern markdown editor application, Build fast and efficient workflows.*..[ *read more* ](apps/markflowy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/markflowy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/markflowy) | -| | [***markman***](apps/markman.md) | *A markdown editor.*..[ *read more* ](apps/markman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/markman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/markman) | -| | [***marktext***](apps/marktext.md) | *A simple and elegant markdown editor multiplatform.*..[ *read more* ](apps/marktext.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/marktext) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/marktext) | -| | [***marlin-conf***](apps/marlin-conf.md) | *Configuration tool for Marlin project.*..[ *read more* ](apps/marlin-conf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/marlin-conf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/marlin-conf) | -| | [***martian***](apps/martian.md) | *Websocket testing tool.*..[ *read more* ](apps/martian.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/martian) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/martian) | -| | [***marvin***](apps/marvin.md) | *Open Source record and playback test automation for the web.*..[ *read more* ](apps/marvin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/marvin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/marvin) | -| | [***master-pdf-editor***](apps/master-pdf-editor.md) | *Master PDF Editor allows you to create, edit, preview, encrypt, sign and print PDF documents.*..[ *read more* ](apps/master-pdf-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/master-pdf-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/master-pdf-editor) | -| | [***masterkey***](apps/masterkey.md) | *Unofficial AppImage of Master Key.*..[ *read more* ](apps/masterkey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/masterkey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/masterkey) | -| | [***mastervyrn***](apps/mastervyrn.md) | *MasterVyrn is a clean dedicated GBF loader.*..[ *read more* ](apps/mastervyrn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mastervyrn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mastervyrn) | -| | [***mate-system-monitor***](apps/mate-system-monitor.md) | *Unofficial, Process viewer and system resource monitor, from MATE.*..[ *read more* ](apps/mate-system-monitor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mate-system-monitor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mate-system-monitor) | -| | [***materialious***](apps/materialious.md) | *Modern material design for Invidious.*..[ *read more* ](apps/materialious.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/materialious) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/materialious) | -| | [***mathcha-notebook***](apps/mathcha-notebook.md) | *Desktop version of Mathcha, built for your privacy.*..[ *read more* ](apps/mathcha-notebook.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mathcha-notebook) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mathcha-notebook) | -| | [***matm***](apps/matm.md) | *Watch anime, movies, tv shows and read manga from comfort of the cli.*..[ *read more* ](apps/matm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/matm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/matm) | -| | [***mattermost-desktop***](apps/mattermost-desktop.md) | *Secure collaboration across entire software development.*..[ *read more* ](apps/mattermost-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mattermost-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mattermost-desktop) | -| | [***mawk***](apps/mawk.md) | *And text processing language. This is part of "am-utils" suite.*..[ *read more* ](apps/mawk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mawk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mawk) | -| | [***mayo***](apps/mayo.md) | *3D CAD viewer and converter based on Qt + OpenCascade.*..[ *read more* ](apps/mayo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mayo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mayo) | -| | [***mazesolver***](apps/mazesolver.md) | *A tool which shows how different algorithms solves mazes.*..[ *read more* ](apps/mazesolver.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mazesolver) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mazesolver) | -| | [***mbcord***](apps/mbcord.md) | *An Emby/Jellyfin rich presence client for Discord.*..[ *read more* ](apps/mbcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mbcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mbcord) | -| | [***mcfly***](apps/mcfly.md) | *Fly through your shell history. Great Scott!*..[ *read more* ](apps/mcfly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mcfly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mcfly) | -| | [***mcpelauncher***](apps/mcpelauncher.md) | *The main repo for the Linux Bedrock edition Minecraft launcher.*..[ *read more* ](apps/mcpelauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mcpelauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mcpelauncher) | -| | [***mcpodcast***](apps/mcpodcast.md) | *Electron app for tasks around Podcast mp3 files.*..[ *read more* ](apps/mcpodcast.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mcpodcast) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mcpodcast) | -| | [***md5sum***](apps/md5sum.md) | *Compute and check MD5 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/md5sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/md5sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/md5sum) | -| | [***mdcat***](apps/mdcat.md) | *Command line, "cat" for markdown.*..[ *read more* ](apps/mdcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mdcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mdcat) | -| | [***mdl***](apps/mdl.md) | *MDL wallet.*..[ *read more* ](apps/mdl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mdl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mdl) | -| | [***mdsilo-app***](apps/mdsilo-app.md) | *Lightweight Knowledge Base and Feed Reader.*..[ *read more* ](apps/mdsilo-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mdsilo-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mdsilo-app) | -| | [***mdview***](apps/mdview.md) | *Application that renders and displays Markdown files.*..[ *read more* ](apps/mdview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mdview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mdview) | -| | [***measur***](apps/measur.md) | *Energy efficiency calculation app for use with industrial equipment.*..[ *read more* ](apps/measur.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/measur) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/measur) | -| | [***mechtype***](apps/mechtype.md) | *A lightweight app designed to elevate your typing experience by allowing you to enjoy custom soundtracks with every keystroke.*..[ *read more* ](apps/mechtype.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mechtype) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mechtype) | -| | [***mechvibes***](apps/mechvibes.md) | *Play mechanical keyboard sounds as you type.*..[ *read more* ](apps/mechvibes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mechvibes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mechvibes) | -| | [***media-downloader***](apps/media-downloader.md) | *Cross-platform audio/video downloader.*..[ *read more* ](apps/media-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/media-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/media-downloader) | -| | [***media-dupes***](apps/media-dupes.md) | *Content duplicator for common media services like YouTube.*..[ *read more* ](apps/media-dupes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/media-dupes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/media-dupes) | -| | [***media-hoarder***](apps/media-hoarder.md) | *Media Hoarder - THE media frontend for data hoarders and movie lovers*..[ *read more* ](apps/media-hoarder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/media-hoarder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/media-hoarder) | -| | [***mediachips***](apps/mediachips.md) | *Manage your videos, add any metadata to them and play them.*..[ *read more* ](apps/mediachips.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mediachips) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mediachips) | -| | [***mediaelch***](apps/mediaelch.md) | *Media Manager for Kodi.*..[ *read more* ](apps/mediaelch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mediaelch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mediaelch) | -| | [***mediaharbor***](apps/mediaharbor.md) | *Cross-platform MediaHarbor*..[ *read more* ](apps/mediaharbor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mediaharbor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mediaharbor) | -| | [***mediathekview***](apps/mediathekview.md) | *Searches the online media libraries of various broadcasters.*..[ *read more* ](apps/mediathekview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mediathekview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mediathekview) | -| | [***mednafen***](apps/mednafen.md) | *Unofficial AppImage. Mednafen is a portable, utilizing OpenGL and SDL, argument(command-line)-driven multi-system emulator.*..[ *read more* ](apps/mednafen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mednafen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mednafen) | -| | [***megaglest***](apps/megaglest.md) | *MegaGlest real-time strategy game engine (cross-platform, 3-d).*..[ *read more* ](apps/megaglest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/megaglest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/megaglest) | -| | [***megaman64recomp***](apps/megaman64recomp.md) | *Unofficial AppImage of Mega Man 64 Recompiled.*..[ *read more* ](apps/megaman64recomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/megaman64recomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/megaman64recomp) | -| | [***meganimus***](apps/meganimus.md) | *A launcher for native and emulator games.*..[ *read more* ](apps/meganimus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/meganimus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/meganimus) | -| | [***mellowplayer***](apps/mellowplayer.md) | *Cloud music integration for your desktop.*..[ *read more* ](apps/mellowplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mellowplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mellowplayer) | -| | [***melodie***](apps/melodie.md) | *Simple-as-pie music player.*..[ *read more* ](apps/melodie.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/melodie) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/melodie) | -| | [***melonds-enhanced***](apps/melonds-enhanced.md) | *Unofficial, AppImage of melonDS which is able to work on any linux distro.*..[ *read more* ](apps/melonds-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/melonds-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/melonds-enhanced) | -| | [***melonds***](apps/melonds.md) | *DS emulator, sorta.*..[ *read more* ](apps/melonds.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/melonds) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/melonds) | -| | [***melonmix***](apps/melonmix.md) | *KH Melon Mix (DS Emulator) DS emulator, sorta DS emulator, sorta.*..[ *read more* ](apps/melonmix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/melonmix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/melonmix) | -| | [***memento***](apps/memento.md) | *A video player for studying Japanese.*..[ *read more* ](apps/memento.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/memento) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/memento) | -| | [***memocast***](apps/memocast.md) | *Yet another elegant Wiz Note Client.*..[ *read more* ](apps/memocast.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/memocast) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/memocast) | -| | [***memospot***](apps/memospot.md) | *Memospot is a self-contained desktop version of Memos -a privacy-first, lightweight note-taking service.*..[ *read more* ](apps/memospot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/memospot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/memospot) | -| | [***memoto***](apps/memoto.md) | *DevOps oriented modeling tool.*..[ *read more* ](apps/memoto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/memoto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/memoto) | -| | [***mendeley***](apps/mendeley.md) | *Search over 100 million cross-publisher articles and counting.*..[ *read more* ](apps/mendeley.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mendeley) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mendeley) | -| | [***menyoki***](apps/menyoki.md) | *Screen{shot,cast} and perform ImageOps on the command line.*..[ *read more* ](apps/menyoki.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/menyoki) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/menyoki) | -| | [***meow-sql***](apps/meow-sql.md) | *An attempt to port HeidiSQL to C++/Qt.*..[ *read more* ](apps/meow-sql.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/meow-sql) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/meow-sql) | -| | [***mercury***](apps/mercury.md) | *Firefox fork with compiler optimizations and patches from Librewolf.*..[ *read more* ](apps/mercury.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mercury) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mercury) | -| | [***mesa***](apps/mesa.md) | *Experimental AppImage that lets you use the latest MESA with any binary on your system.*..[ *read more* ](apps/mesa.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mesa) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mesa) | -| | [***meshlab***](apps/meshlab.md) | *Processor and editor of large 3D triangular meshes.*..[ *read more* ](apps/meshlab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/meshlab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/meshlab) | -| | [***meshmill***](apps/meshmill.md) | *The world's greatest open source 3D CAM software, maybe one day.*..[ *read more* ](apps/meshmill.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/meshmill) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/meshmill) | -| | [***meta-grabber***](apps/meta-grabber.md) | *A tool to grab metadata for tv shows and rename files on PC.*..[ *read more* ](apps/meta-grabber.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/meta-grabber) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/meta-grabber) | -| | [***mgba-enhanced***](apps/mgba-enhanced.md) | *Unofficial, Game Boy Advance Emulator.*..[ *read more* ](apps/mgba-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mgba-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mgba-enhanced) | -| | [***mgba***](apps/mgba.md) | *Game Boy Advance Emulator.*..[ *read more* ](apps/mgba.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mgba) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mgba) | -| | [***micropad***](apps/micropad.md) | *µPad is an open digital note taking app.*..[ *read more* ](apps/micropad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/micropad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/micropad) | -| | [***microsoft-edge-beta***](apps/microsoft-edge-beta.md) | *Web Browser provided by Microsoft, Beta Edition.*..[ *read more* ](apps/microsoft-edge-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/microsoft-edge-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/microsoft-edge-beta) | -| | [***microsoft-edge-dev***](apps/microsoft-edge-dev.md) | *Web Browser provided by Microsoft, Developer Edition.*..[ *read more* ](apps/microsoft-edge-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/microsoft-edge-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/microsoft-edge-dev) | -| | [***microsoft-edge***](apps/microsoft-edge.md) | *Web Browser provided by Microsoft, Stable Edition.*..[ *read more* ](apps/microsoft-edge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/microsoft-edge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/microsoft-edge) | -| | [***midori***](apps/midori.md) | *Surf lightly, quickly and safely with Midori Web Browser.*..[ *read more* ](apps/midori.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/midori) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/midori) | -| | [***miesimulatorgui***](apps/miesimulatorgui.md) | *MieSimulatorGUI by Virtual Photonics.*..[ *read more* ](apps/miesimulatorgui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/miesimulatorgui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/miesimulatorgui) | -| | [***mightymike***](apps/mightymike.md) | *Pangea Software's Mighty Mike, Power Pete for modern systems.*..[ *read more* ](apps/mightymike.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mightymike) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mightymike) | -| | [***migu***](apps/migu.md) | *Stream anime torrents, real-time with no waiting for downloads.*..[ *read more* ](apps/migu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/migu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/migu) | -| | [***milkytracker***](apps/milkytracker.md) | *An FT2 compatible music tracker.*..[ *read more* ](apps/milkytracker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/milkytracker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/milkytracker) | -| | [***mindmapp***](apps/mindmapp.md) | *Electron application to draw mind maps.*..[ *read more* ](apps/mindmapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mindmapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mindmapp) | -| | [***mine-craft.io***](apps/mine-craft.io.md) | *Minecraft and even more!*..[ *read more* ](apps/mine-craft.io.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mine-craft.io) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mine-craft.io) | -| | [***minecraft-launcher***](apps/minecraft-launcher.md) | *Game downloader and launcher for Minecraft.*..[ *read more* ](apps/minecraft-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/minecraft-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/minecraft-launcher) | -| | [***minetime***](apps/minetime.md) | *Smart scheduling assistant.*..[ *read more* ](apps/minetime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/minetime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/minetime) | -| | [***mini-diary***](apps/mini-diary.md) | *Simple and secure journal app.*..[ *read more* ](apps/mini-diary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mini-diary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mini-diary) | -| | [***mini-qml***](apps/mini-qml.md) | *Minimal Qt deployment.*..[ *read more* ](apps/mini-qml.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mini-qml) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mini-qml) | -| | [***mini-vmac***](apps/mini-vmac.md) | *Unofficial, a miniature Macintosh 68K emulator.*..[ *read more* ](apps/mini-vmac.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mini-vmac) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mini-vmac) | -| | [***minififa***](apps/minififa.md) | *OpenGL-powered third-person football, soccer game.*..[ *read more* ](apps/minififa.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/minififa) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/minififa) | -| | [***minimal-podcasts-player***](apps/minimal-podcasts-player.md) | *Subscribe, listen and download your podcasts.*..[ *read more* ](apps/minimal-podcasts-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/minimal-podcasts-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/minimal-podcasts-player) | -| | [***minions***](apps/minions.md) | *A productive tool inspired by LaunchBar in macOS.*..[ *read more* ](apps/minions.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/minions) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/minions) | -| | [***miniter***](apps/miniter.md) | *Rust based non-linear video editor for basic tasks.*..[ *read more* ](apps/miniter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/miniter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/miniter) | -| | [***minizinc-ide***](apps/minizinc-ide.md) | *A free and open-source constraint modeling language.*..[ *read more* ](apps/minizinc-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/minizinc-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/minizinc-ide) | -| | [***mira-backup***](apps/mira-backup.md) | *Mira Auto Database Backup app.*..[ *read more* ](apps/mira-backup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mira-backup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mira-backup) | -| | [***mirage***](apps/mirage.md) | *Matrix chat client for encrypted and decentralized communication.*..[ *read more* ](apps/mirage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mirage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mirage) | -| | [***mission-center***](apps/mission-center.md) | *Monitor your CPU, Memory, Disk, Network and GPU usage.*..[ *read more* ](apps/mission-center.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mission-center) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mission-center) | -| | [***miteiru***](apps/miteiru.md) | *An open source Electron video player to learn Japanese.*..[ *read more* ](apps/miteiru.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/miteiru) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/miteiru) | -| | [***mixxx***](apps/mixxx.md) | *Unofficial, open source software for digital DJing.*..[ *read more* ](apps/mixxx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mixxx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mixxx) | -| | [***mjml-app***](apps/mjml-app.md) | *The desktop app for MJML.*..[ *read more* ](apps/mjml-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mjml-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mjml-app) | -| | [***mk***](apps/mk.md) | *Interactive Task Runner for Makefile.*..[ *read more* ](apps/mk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mk) | -| | [***mkdir***](apps/mkdir.md) | *Make directories. This is part of "am-utils" suite.*..[ *read more* ](apps/mkdir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mkdir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mkdir) | -| | [***mke2fs***](apps/platform-tools.md) | *Creates ext2/ext3/ext4 Linux filesystems. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***mkfifo***](apps/mkfifo.md) | *Make FIFOs (named pipes). This is part of "am-utils" suite.*..[ *read more* ](apps/mkfifo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mkfifo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mkfifo) | -| | [***mki3dgame***](apps/mki3dgame.md) | *A game of searching, in 3D stages.*..[ *read more* ](apps/mki3dgame.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mki3dgame) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mki3dgame) | -| | [***mknod***](apps/mknod.md) | *Make block or character special files. This is part of "am-utils" suite.*..[ *read more* ](apps/mknod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mknod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mknod) | -| | [***mktemp***](apps/mktemp.md) | *Create a temporary file or directory. This is part of "am-utils" suite.*..[ *read more* ](apps/mktemp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mktemp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mktemp) | -| | [***mkvtoolnix***](apps/mkvtoolnix.md) | *Matroska files creator and tools.*..[ *read more* ](apps/mkvtoolnix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mkvtoolnix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mkvtoolnix) | -| | [***mlv-app***](apps/mlv-app.md) | *All in one MLV processing app, audio/video.*..[ *read more* ](apps/mlv-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mlv-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mlv-app) | -| | [***mmapper***](apps/mmapper.md) | *Graphical MUD client for the game MUME.*..[ *read more* ](apps/mmapper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mmapper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mmapper) | -| | [***mmseqs2-search***](apps/mmseqs2-search.md) | *MMseqs2 app to run on your workstation or servers.*..[ *read more* ](apps/mmseqs2-search.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mmseqs2-search) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mmseqs2-search) | -| | [***moarperf***](apps/moarperf.md) | *Front-end for MoarVM's / Rakudo's profilers.*..[ *read more* ](apps/moarperf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moarperf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moarperf) | -| | [***mob***](apps/mob.md) | *A handsome Himalayan desktop client.*..[ *read more* ](apps/mob.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mob) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mob) | -| | [***mochi***](apps/mochi.md) | *A simple markdown-powered SRS app.*..[ *read more* ](apps/mochi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mochi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mochi) | -| | [***mockman***](apps/mockman.md) | *Manage and start the mock servers on your local platform easily.*..[ *read more* ](apps/mockman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mockman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mockman) | -| | [***mockoon***](apps/mockoon.md) | *Mock servers in seconds.*..[ *read more* ](apps/mockoon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mockoon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mockoon) | -| | [***modemu2k***](apps/modemu2k.md) | *A Hayes AT-command modem emulator that bridges a serial interface to TCP/Telnet.*..[ *read more* ](apps/modemu2k.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/modemu2k) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/modemu2k) | -| | [***moderndeck***](apps/moderndeck.md) | *A beautiful, powerful Twitter client for desktop.*..[ *read more* ](apps/moderndeck.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moderndeck) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moderndeck) | -| | [***modrinth***](apps/modrinth.md) | *Open source launcher that allows you to play your favorite mods.*..[ *read more* ](apps/modrinth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/modrinth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/modrinth) | -| | [***modv***](apps/modv.md) | *Modular audio visualisation powered by JavaScript.*..[ *read more* ](apps/modv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/modv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/modv) | -| | [***monit***](apps/monit.md) | *Desktop widgets displaying various information, in chinese.*..[ *read more* ](apps/monit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/monit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/monit) | -| | [***moniteur-admin***](apps/moniteur-admin.md) | *The admin panel for the lightweight info screen solution.*..[ *read more* ](apps/moniteur-admin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moniteur-admin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moniteur-admin) | -| | [***monokle***](apps/monokle.md) | *Lets you create, analyze, and deploy YAML manifests.*..[ *read more* ](apps/monokle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/monokle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/monokle) | -| | [***monoline***](apps/monoline.md) | *Your personal micro journal.*..[ *read more* ](apps/monoline.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/monoline) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/monoline) | -| | [***mood-fi***](apps/mood-fi.md) | *App with 30+ lo-fi live streams between 8 different lo-fi types.*..[ *read more* ](apps/mood-fi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mood-fi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mood-fi) | -| | [***moolticute***](apps/moolticute.md) | *Mooltipass crossplatform daemon/tools.*..[ *read more* ](apps/moolticute.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moolticute) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moolticute) | -| | [***moon-lander***](apps/moon-lander.md) | *Moon Lander is a 2D game of gravity. Land your ship on the lading pad.*..[ *read more* ](apps/moon-lander.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moon-lander) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moon-lander) | -| | [***moondeck-buddy***](apps/moondeck-buddy.md) | *A server-side part of the MoonDeck plugin for the SteamDeck.*..[ *read more* ](apps/moondeck-buddy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moondeck-buddy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moondeck-buddy) | -| | [***moonlight***](apps/moonlight.md) | *Stream games from your NVIDIA GameStream-enabled PC.*..[ *read more* ](apps/moonlight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moonlight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moonlight) | -| | [***moonplayer***](apps/moonplayer.md) | *AIO video player to play Youtube, Bilibili... and local videos.*..[ *read more* ](apps/moonplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moonplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moonplayer) | -| | [***moose***](apps/moose.md) | *An application to stream, cast and download torrents.*..[ *read more* ](apps/moose.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moose) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moose) | -| | [***moosync***](apps/moosync.md) | *Music player capable of playing local audio or from Youtube/Spotify.*..[ *read more* ](apps/moosync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moosync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moosync) | -| | [***more***](apps/more.md) | *Display the contents of a file in a terminal. This is part of "am-utils" suite.*..[ *read more* ](apps/more.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/more) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/more) | -| | [***motrix-next***](apps/motrix-next.md) | *A full-featured download manager rebuilt from the ground up.*..[ *read more* ](apps/motrix-next.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/motrix-next) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/motrix-next) | -| | [***motrix***](apps/motrix.md) | *A full-featured download manager.*..[ *read more* ](apps/motrix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/motrix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/motrix) | -| | [***mount***](apps/mount.md) | *Mount a filesystem. This is part of "am-utils" suite.*..[ *read more* ](apps/mount.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mount) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mount) | -| | [***mousai***](apps/mousai.md) | *Unofficial. Application for identifying songs using libre utilities.*..[ *read more* ](apps/mousai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mousai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mousai) | -| | [***mouzi***](apps/mouzi.md) | *A free, privacy-first automatic file organizer that quietly sorts your Downloads folder from the system tray.*..[ *read more* ](apps/mouzi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mouzi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mouzi) | -| | [***movie-monad***](apps/movie-monad.md) | *Free and simple to use video player made with Haskell.*..[ *read more* ](apps/movie-monad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/movie-monad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/movie-monad) | -| | [***moyu***](apps/moyu.md) | *An online collaborative api interface management tool.*..[ *read more* ](apps/moyu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moyu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moyu) | -| | [***mp3-tagger***](apps/mp3-tagger.md) | *An Electron app to edit metadata of mp3 files.*..[ *read more* ](apps/mp3-tagger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mp3-tagger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mp3-tagger) | -| | [***mp4grep***](apps/mp4grep.md) | *CLI for transcribing and searching audio/video files.*..[ *read more* ](apps/mp4grep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mp4grep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mp4grep) | -| | [***mpc-qt***](apps/mpc-qt.md) | *Media Player Classic Qute Theater.*..[ *read more* ](apps/mpc-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mpc-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mpc-qt) | -| | [***mpv***](apps/mpv.md) | *Unofficial, A free, open source, and cross-platform media player, Multiple-choices.*..[ *read more* ](apps/mpv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mpv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mpv) | -| | [***mqtt-explorer***](apps/mqtt-explorer.md) | *Explore your message queues.*..[ *read more* ](apps/mqtt-explorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mqtt-explorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mqtt-explorer) | -| | [***mqttcute***](apps/mqttcute.md) | *An advanced desktop MQTT client for binary protocol development.*..[ *read more* ](apps/mqttcute.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mqttcute) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mqttcute) | -| | [***mqttx***](apps/mqttx.md) | *MQTT 5.0 Desktop, CLI, and WebSocket client tools.*..[ *read more* ](apps/mqttx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mqttx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mqttx) | -| | [***mr.dclutterer***](apps/mr.dclutterer.md) | *Minimal App To Aggregate And Rename Files In Bulk.*..[ *read more* ](apps/mr.dclutterer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mr.dclutterer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mr.dclutterer) | -| | [***mrcode***](apps/mrcode.md) | *An opinionated editor based on VSCodium / VSCode.*..[ *read more* ](apps/mrcode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mrcode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mrcode) | -| | [***mrrss***](apps/mrrss.md) | *A modern, cross-platform, and free AI RSS reader.*..[ *read more* ](apps/mrrss.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mrrss) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mrrss) | -| | [***mrwriter***](apps/mrwriter.md) | *Notetaking and blackboard replacement application. Inspired by Xournal. Written in C++/Qt.*..[ *read more* ](apps/mrwriter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mrwriter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mrwriter) | -| | [***ms-365-electron***](apps/ms-365-electron.md) | *Unofficial Microsoft 365 Desktop Wrapper made with Electron.*..[ *read more* ](apps/ms-365-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ms-365-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ms-365-electron) | -| | [***mtcelledit***](apps/mtcelledit.md) | *Lightweight spreadsheet program.*..[ *read more* ](apps/mtcelledit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mtcelledit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mtcelledit) | -| | [***mudita-center***](apps/mudita-center.md) | *Mudita Center Electron App.*..[ *read more* ](apps/mudita-center.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mudita-center) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mudita-center) | -| | [***mudlet***](apps/mudlet.md) | *Mudlet is a platform for gaming and enhancing game-play primarily with MUDs.*..[ *read more* ](apps/mudlet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mudlet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mudlet) | -| | [***muffon***](apps/muffon.md) | *Music streaming browser,retrieves audio, video and metadata.*..[ *read more* ](apps/muffon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/muffon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/muffon) | -| | [***mullvad-browser***](apps/mullvad-browser.md) | *A Tor-based Web Browser.*..[ *read more* ](apps/mullvad-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mullvad-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mullvad-browser) | -| | [***multimc***](apps/multimc.md) | *A Minecraft launcher.*..[ *read more* ](apps/multimc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/multimc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/multimc) | -| | [***munt***](apps/munt.md) | *The payment system of the future.*..[ *read more* ](apps/munt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/munt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/munt) | -| | [***mupdf***](apps/mupdf.md) | *Lightweight PDF, XPS, and E-book viewer.*..[ *read more* ](apps/mupdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mupdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mupdf) | -| | [***muse***](apps/muse.md) | *A digital audio workstation with support for both Audio and MIDI.*..[ *read more* ](apps/muse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/muse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/muse) | -| | [***museeks***](apps/museeks.md) | *A simple, clean and cross-platform music player.*..[ *read more* ](apps/museeks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/museeks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/museeks) | -| | [***musescore***](apps/musescore.md) | *An open source and free music notation software.*..[ *read more* ](apps/musescore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/musescore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/musescore) | -| | [***music-assistant***](apps/music-assistant.md) | *The desktop companion app for Music Assistant.*..[ *read more* ](apps/music-assistant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-assistant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-assistant) | -| | [***music-blocks***](apps/music-blocks.md) | *.Exploring Math, Music, and Programming.*..[ *read more* ](apps/music-blocks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-blocks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-blocks) | -| | [***music-kitten***](apps/music-kitten.md) | *Use your own soundtrack in Counter-Strike.*..[ *read more* ](apps/music-kitten.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-kitten) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-kitten) | -| | [***music-player***](apps/music-player.md) | *Desktop Electron app for playing and downloading music.*..[ *read more* ](apps/music-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-player) | -| | [***music-quiz***](apps/music-quiz.md) | *Jepardy like game, guess as many songs as possible.*..[ *read more* ](apps/music-quiz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-quiz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-quiz) | -| | [***musicalypse***](apps/musicalypse.md) | *Audio/Music player and server built with Web technologies.*..[ *read more* ](apps/musicalypse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/musicalypse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/musicalypse) | -| | [***mutool***](apps/mutool.md) | *All purpose tool for dealing with PDF files.*..[ *read more* ](apps/mutool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mutool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mutool) | -| | [***muwire***](apps/muwire.md) | *A file sharing client for I2P.*..[ *read more* ](apps/muwire.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/muwire) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/muwire) | -| | [***mv***](apps/mv.md) | *Move (rename) files. This is part of "am-utils" suite.*..[ *read more* ](apps/mv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mv) | -| | [***my-budget***](apps/my-budget.md) | *Offline cross-platform budgeting solution built with Electron.*..[ *read more* ](apps/my-budget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/my-budget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/my-budget) | -| | [***my-jira***](apps/my-jira.md) | *A lite jira desktop.*..[ *read more* ](apps/my-jira.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/my-jira) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/my-jira) | -| | [***mybelka***](apps/mybelka.md) | *Accounting system written in C++ with QTCore.*..[ *read more* ](apps/mybelka.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mybelka) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mybelka) | -| | [***mycroft-ai***](apps/mycroft-ai.md) | *Qt5 Frontend for Mycroft Ai*..[ *read more* ](apps/mycroft-ai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mycroft-ai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mycroft-ai) | -| | [***mycrypto***](apps/mycrypto.md) | *MyCrypto web and electron app.*..[ *read more* ](apps/mycrypto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mycrypto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mycrypto) | -| | [***mypaint***](apps/mypaint.md) | *Simple drawing and painting program, graphics.*..[ *read more* ](apps/mypaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mypaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mypaint) | -| | [***mystiq***](apps/mystiq.md) | *Qt5/C++ FFmpeg Media Converter.*..[ *read more* ](apps/mystiq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mystiq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mystiq) | -| | [***mytonwallet***](apps/mytonwallet.md) | *Feature-rich web wallet and browser extension for TON Network.*..[ *read more* ](apps/mytonwallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mytonwallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mytonwallet) | -| | [***n3h***](apps/n3h.md) | *Nodejs implementation of holochain networking / p2p backend process.*..[ *read more* ](apps/n3h.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/n3h) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/n3h) | -| | [***naev***](apps/naev.md) | *A 2d action/rpg space game that combines elements from the action.*..[ *read more* ](apps/naev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/naev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/naev) | -| | [***nami***](apps/nami.md) | *A clean and tidy decentralized package manager.*..[ *read more* ](apps/nami.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nami) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nami) | -| | [***nanokvm-usb***](apps/nanokvm-usb.md) | *Finger-sized 4K USB KVM for Server/SBCs.*..[ *read more* ](apps/nanokvm-usb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nanokvm-usb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nanokvm-usb) | -| | [***nanosaur***](apps/nanosaur.md) | *Pangea Software’s game, adventure of a cybernetic dinosaur.*..[ *read more* ](apps/nanosaur.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nanosaur) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nanosaur) | -| | [***nanosaur2***](apps/nanosaur2.md) | *Pangea Software’s Nanosaur II for modern systems.*..[ *read more* ](apps/nanosaur2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nanosaur2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nanosaur2) | -| | [***nanovault***](apps/nanovault.md) | *Wallet for interacting with Nano.*..[ *read more* ](apps/nanovault.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nanovault) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nanovault) | -| | [***nap***](apps/nap.md) | *Code spippets in your terminal.*..[ *read more* ](apps/nap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nap) | -| | [***naruto-arena***](apps/naruto-arena.md) | *Naruto-based online multiplayer strategy game.*..[ *read more* ](apps/naruto-arena.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/naruto-arena) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/naruto-arena) | -| | [***nault-bin***](apps/nault-bin.md) | *Official Nault AppImage client.*..[ *read more* ](apps/nault-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nault-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nault-bin) | -| | [***nautune***](apps/nautune.md) | *Poseidon's Music Player for Jellyfin.*..[ *read more* ](apps/nautune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nautune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nautune) | -| | [***nauz-file-detector***](apps/nauz-file-detector.md) | *Nauz File Detector is a portable linker/compiler/packer identifier utility.*..[ *read more* ](apps/nauz-file-detector.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nauz-file-detector) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nauz-file-detector) | -| | [***navi***](apps/navi.md) | *An interactive cheatsheet tool for the command-line.*..[ *read more* ](apps/navi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/navi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/navi) | -| | [***nazuna***](apps/nazuna.md) | *Download Twitter videos using your terminal!*..[ *read more* ](apps/nazuna.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nazuna) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nazuna) | -| | [***nblood***](apps/nblood.md) | *Unofficial, blood port based on EDuke32.*..[ *read more* ](apps/nblood.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nblood) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nblood) | -| | [***ncsa-mosaic***](apps/ncsa-mosaic.md) | *One of the first graphical web browsers.*..[ *read more* ](apps/ncsa-mosaic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ncsa-mosaic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ncsa-mosaic) | -| | [***ncspot***](apps/ncspot.md) | *Cross-platform ncurses Spotify client written in Rust, inspired by ncmpc and the likes.*..[ *read more* ](apps/ncspot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ncspot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ncspot) | -| | [***neanes***](apps/neanes.md) | *A scorewriter for notating Byzantine chant in Byzantine notation.*..[ *read more* ](apps/neanes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neanes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neanes) | -| | [***negpy***](apps/negpy.md) | *Tool for processing film negatives.*..[ *read more* ](apps/negpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/negpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/negpy) | -| | [***neko-project-ii-kai***](apps/neko-project-ii-kai.md) | *Unofficial, a PC-9801 series emulator.*..[ *read more* ](apps/neko-project-ii-kai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neko-project-ii-kai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neko-project-ii-kai) | -| | [***neko***](apps/neko.md) | *Neko is a cross-platform cursor-chasing cat.*..[ *read more* ](apps/neko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neko) | -| | [***neochat***](apps/neochat.md) | *Unofficial AppImage of NeoChat.*..[ *read more* ](apps/neochat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neochat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neochat) | -| | [***neohtop***](apps/neohtop.md) | *htop on steroids.*..[ *read more* ](apps/neohtop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neohtop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neohtop) | -| | [***neon***](apps/neon.md) | *Light wallet for NEO blockchain.*..[ *read more* ](apps/neon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neon) | -| | [***neovide***](apps/neovide.md) | *No Nonsense Neovim Client in Rust*..[ *read more* ](apps/neovide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neovide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neovide) | -| | [***nepaliunicode***](apps/nepaliunicode.md) | *An Unicode Converter app.*..[ *read more* ](apps/nepaliunicode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nepaliunicode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nepaliunicode) | -| | [***nerdfetch***](apps/nerdfetch.md) | *A POSIX *nix fetch script using Nerdfonts.*..[ *read more* ](apps/nerdfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nerdfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nerdfetch) | -| | [***nerimity-desktop***](apps/nerimity-desktop.md) | *Electron desktop app for Nerimity.*..[ *read more* ](apps/nerimity-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nerimity-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nerimity-desktop) | -| | [***nest-desktop***](apps/nest-desktop.md) | *A web-based GUI application for NEST Simulator.*..[ *read more* ](apps/nest-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nest-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nest-desktop) | -| | [***nestopia***](apps/nestopia.md) | *Unofficial, Cross-platform Nestopia NES emulator core with a GUI.*..[ *read more* ](apps/nestopia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nestopia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nestopia) | -| | [***netbeans***](apps/netbeans.md) | *Apache NetBeans installers.*..[ *read more* ](apps/netbeans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/netbeans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/netbeans) | -| | [***netpad***](apps/netpad.md) | *A cross-platform C# editor and playground.*..[ *read more* ](apps/netpad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/netpad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/netpad) | -| | [***netpanzer***](apps/netpanzer.md) | *Online multiplayer tactical warfare game for fast action combat.*..[ *read more* ](apps/netpanzer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/netpanzer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/netpanzer) | -| | [***neverball***](apps/neverball.md) | *Unofficial, tilt the floor to roll a ball through an obstacle course before time runs out.*..[ *read more* ](apps/neverball.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neverball) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neverball) | -| | [***newlogic***](apps/newlogic.md) | *A circuit builder.*..[ *read more* ](apps/newlogic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/newlogic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/newlogic) | -| | [***newsflash***](apps/newsflash.md) | *Unofficial. RSS reader with support for local and web RSS feed.*..[ *read more* ](apps/newsflash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/newsflash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/newsflash) | -| | [***newton-adventure***](apps/newton-adventure.md) | *A 2D game with a twist, player can rotate gravity at 360°.*..[ *read more* ](apps/newton-adventure.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/newton-adventure) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/newton-adventure) | -| | [***nexen***](apps/nexen.md) | *Multi-system emulator (NES, SNES, GB, GBA, PCE, SMS/GG, WS).*..[ *read more* ](apps/nexen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nexen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nexen) | -| | [***nexis***](apps/nexis.md) | *Linux & macOS system optimizer and monitor. Qt6 fork of Stacer with GPU monitoring, dark/light themes, and active maintenance.*..[ *read more* ](apps/nexis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nexis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nexis) | -| | [***nextcloud***](apps/nextcloud.md) | *Client-server software for creating & using file hosting services.*..[ *read more* ](apps/nextcloud.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nextcloud) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nextcloud) | -| | [***nextplayer***](apps/nextplayer.md) | *A blue-ray player, originally named TheNewPlayerFree.*..[ *read more* ](apps/nextplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nextplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nextplayer) | -| | [***nexus-mods***](apps/nexus-mods.md) | *A mod installer, creator and manager for all your popular games.*..[ *read more* ](apps/nexus-mods.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nexus-mods) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nexus-mods) | -| | [***nexus-wallet***](apps/nexus-wallet.md) | *Official interface layers of the Nexus Software Stack.*..[ *read more* ](apps/nexus-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nexus-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nexus-wallet) | -| | [***nfctools***](apps/nfctools.md) | *A library which allows userspace application access to NFC devices.*..[ *read more* ](apps/nfctools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nfctools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nfctools) | -| | [***nfsiise***](apps/nfsiise.md) | *Unofficial, Need For Speed™ II SE, cross-platform wrapper with 3D acceleration and TCP protocol.*..[ *read more* ](apps/nfsiise.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nfsiise) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nfsiise) | -| | [***ngpost***](apps/ngpost.md) | *Usenet poster for binaries developped in C++/QT.*..[ *read more* ](apps/ngpost.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ngpost) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ngpost) | -| | [***ngrev***](apps/ngrev.md) | *Reverse Engineering for Angular.*..[ *read more* ](apps/ngrev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ngrev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ngrev) | -| | [***nheko***](apps/nheko.md) | *Desktop client for Matrix.*..[ *read more* ](apps/nheko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nheko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nheko) | -| | [***nice***](apps/nice.md) | *Run a program with modified scheduling priority. This is part of "am-utils" suite.*..[ *read more* ](apps/nice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nice) | -| | [***niffler***](apps/niffler.md) | *A grin gui wallet.*..[ *read more* ](apps/niffler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/niffler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/niffler) | -| | [***nightpdf***](apps/nightpdf.md) | *Dark Mode PDF Reader built using Electron and PDF.js.*..[ *read more* ](apps/nightpdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nightpdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nightpdf) | -| | [***nightwave-plaza-electron***](apps/nightwave-plaza-electron.md) | *https://plaza.one/ radio station desktop app.*..[ *read more* ](apps/nightwave-plaza-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nightwave-plaza-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nightwave-plaza-electron) | -| | [***nimbus-weather***](apps/nimbus-weather.md) | *A beautiful weather app built using the Dark Sky API.*..[ *read more* ](apps/nimbus-weather.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nimbus-weather) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nimbus-weather) | -| | [***nine***](apps/nine.md) | *Nine. is an open source desktop application for managing rental properties.*..[ *read more* ](apps/nine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nine) | -| | [***nitch***](apps/nitch.md) | *Incredibly fast system fetch written in nim.*..[ *read more* ](apps/nitch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nitch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nitch) | -| | [***nitrogen***](apps/nitrogen.md) | *Unofficial AppImage of Nitrogen.*..[ *read more* ](apps/nitrogen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nitrogen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nitrogen) | -| | [***nitrokey***](apps/nitrokey.md) | *Manage your Nitrokey devices.*..[ *read more* ](apps/nitrokey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nitrokey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nitrokey) | -| | [***nix-bucks***](apps/nix-bucks.md) | *A money tracker. Your income and expenses at your control. Finance.*..[ *read more* ](apps/nix-bucks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nix-bucks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nix-bucks) | -| | [***nix-portable***](apps/nix-portable.md) | *Use nix on any linux system, rootless and configuration free.*..[ *read more* ](apps/nix-portable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nix-portable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nix-portable) | -| | [***nixnote***](apps/nixnote.md) | *Use with Evernote to remember everything.*..[ *read more* ](apps/nixnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nixnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nixnote) | -| | [***nl***](apps/nl.md) | *Number lines of files. This is part of "am-utils" suite.*..[ *read more* ](apps/nl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nl) | -| | [***nm***](apps/nm.md) | *From object files. This is part of "am-utils" suite.*..[ *read more* ](apps/nm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nm) | -| | [***nmeasimulator***](apps/nmeasimulator.md) | *NMEA sentence generator utility to broadcast via TCP.*..[ *read more* ](apps/nmeasimulator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nmeasimulator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nmeasimulator) | -| | [***nnn***](apps/nnn.md) | *n³ The unorthodox terminal file manager*..[ *read more* ](apps/nnn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nnn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nnn) | -| | [***no-fwl***](apps/no-fwl.md) | *NoFWL Desktop Application.*..[ *read more* ](apps/no-fwl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/no-fwl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/no-fwl) | -| | [***node***](apps/node.md) | *This is the official suite of Node.js tools, also known as "NodeJS", a JavaScript runtime built on Chrome's V8 JavaScript engine.*..[ *read more* ](apps/node.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/node) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/node) | -| | [***nodeflow***](apps/nodeflow.md) | *An Editor for creating simple or complex OCR workflows.*..[ *read more* ](apps/nodeflow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nodeflow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nodeflow) | -| | [***nodes***](apps/nodes.md) | *A new way to create with code.*..[ *read more* ](apps/nodes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nodes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nodes) | -| | [***nohup***](apps/nohup.md) | *Run a command immune to hangups, with output to a. This is part of "am-utils" suite.*..[ *read more* ](apps/nohup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nohup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nohup) | -| | [***noi***](apps/noi.md) | *🚀 an AI-enhanced, customizable browser designed to streamline your digital experience.*..[ *read more* ](apps/noi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/noi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/noi) | -| | [***nomacs***](apps/nomacs.md) | *Unofficial, nomacs is a free, open source image viewer, which supports multiple platforms.*..[ *read more* ](apps/nomacs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nomacs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nomacs) | -| | [***nootka***](apps/nootka.md) | *Application for learning musical score notation.*..[ *read more* ](apps/nootka.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nootka) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nootka) | -| | [***nora***](apps/nora.md) | *An elegant music player built using Electron and React.*..[ *read more* ](apps/nora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nora) | -| | [***normcap***](apps/normcap.md) | *OCR powered screen-capture tool to capture info instead of images.*..[ *read more* ](apps/normcap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/normcap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/normcap) | -| | [***nosqlbooster***](apps/nosqlbooster.md) | *Essential admin GUI for mongodb.*..[ *read more* ](apps/nosqlbooster.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nosqlbooster) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nosqlbooster) | -| | [***notable***](apps/notable.md) | *The Markdown-based note-taking app that doesn't suck.*..[ *read more* ](apps/notable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notable) | -| | [***notedown***](apps/notedown.md) | *Note taking with react + rust.*..[ *read more* ](apps/notedown.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notedown) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notedown) | -| | [***notekit***](apps/notekit.md) | *A GTK3 hierarchical markdown notetaking app with tablet support.*..[ *read more* ](apps/notekit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notekit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notekit) | -| | [***notemaster***](apps/notemaster.md) | *Note-taking app to help boost productivity.*..[ *read more* ](apps/notemaster.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notemaster) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notemaster) | -| | [***notepad++***](apps/notepad++.md) | *Unofficial Appimage of Notepad++, with WINE prefix.*..[ *read more* ](apps/notepad++.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notepad++) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notepad++) | -| | [***notepadnext***](apps/notepadnext.md) | *A cross-platform, reimplementation of Notepad++.*..[ *read more* ](apps/notepadnext.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notepadnext) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notepadnext) | -| | [***noter***](apps/noter.md) | *Simple serial terminal application.*..[ *read more* ](apps/noter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/noter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/noter) | -| | [***notes-nc***](apps/notes-nc.md) | *Cross-platform Notes desktop application for markdown notes.*..[ *read more* ](apps/notes-nc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notes-nc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notes-nc) | -| | [***notes***](apps/notes.md) | *Note-taking application, write down your thoughts.*..[ *read more* ](apps/notes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notes) | -| | [***noteshrink-qt***](apps/noteshrink-qt.md) | *GUI for noteshrink.py with preview and pre-processing opt.*..[ *read more* ](apps/noteshrink-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/noteshrink-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/noteshrink-qt) | -| | [***notesnook***](apps/notesnook.md) | *Private note-taking app that encrypts everything on client side.*..[ *read more* ](apps/notesnook.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notesnook) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notesnook) | -| | [***notify-send***](apps/notify-send.md) | *A program to send desktop notifications. This is part of "am-utils" suite.*..[ *read more* ](apps/notify-send.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notify-send) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notify-send) | -| | [***novelwriter***](apps/novelwriter.md) | *Plain text editor designed for writing novels, supports a minimal markdown-like syntax for formatting text.*..[ *read more* ](apps/novelwriter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/novelwriter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/novelwriter) | -| | [***npm***](apps/node.md) | *Package manager for Node.js dependencies and modules. This is part of "node".*..[ *read more* ](apps/node.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/node) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/node) | -| | [***nproc***](apps/nproc.md) | *Print the number of processing units available. This is part of "am-utils" suite.*..[ *read more* ](apps/nproc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nproc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nproc) | -| | [***npx***](apps/node.md) | *Runs commands from npm packages without manual installation. This is part of "node".*..[ *read more* ](apps/node.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/node) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/node) | -| | [***nrf-connect***](apps/nrf-connect.md) | *Framework for desktop apps for development kits.*..[ *read more* ](apps/nrf-connect.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nrf-connect) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nrf-connect) | -| | [***nsz***](apps/nsz.md) | *Unofficial, Homebrew compatible NSP/XCI compressor/decompressor.*..[ *read more* ](apps/nsz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nsz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nsz) | -| | [***ntfydesktop***](apps/ntfydesktop.md) | *A desktop client for ntfy. Allows you to subscribe to topics from any ntfy server and recieve notifications natively on the desktop.*..[ *read more* ](apps/ntfydesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ntfydesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ntfydesktop) | -| | [***ntsc-rs***](apps/ntsc-rs.md) | *Free, open-source VHS effect. Standalone application + plugin (After Effects, Premiere, and OpenFX).*..[ *read more* ](apps/ntsc-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ntsc-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ntsc-rs) | -| | [***nu***](apps/nu.md) | *A new type of shell.*..[ *read more* ](apps/nu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nu) | -| | [***nuclear***](apps/nuclear.md) | *Streaming music player that finds free music for you.*..[ *read more* ](apps/nuclear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nuclear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nuclear) | -| | [***nuclia***](apps/nuclia.md) | *A low-code API to build an AI multi-language semantic search engine.*..[ *read more* ](apps/nuclia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nuclia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nuclia) | -| | [***nuclino***](apps/nuclino.md) | *Bring knowledge, docs, and projects together in one place.*..[ *read more* ](apps/nuclino.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nuclino) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nuclino) | -| | [***nudelta***](apps/nudelta.md) | *Open source NuPhy Console alternative.*..[ *read more* ](apps/nudelta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nudelta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nudelta) | -| | [***nugget-doom-enhanced***](apps/nugget-doom-enhanced.md) | *Unofficial, a Doom source port forked from Woof! with additional features.*..[ *read more* ](apps/nugget-doom-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nugget-doom-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nugget-doom-enhanced) | -| | [***nugget-doom***](apps/nugget-doom.md) | *Nugget Doom is a Doom game source port forked from Woof! with additional features.*..[ *read more* ](apps/nugget-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nugget-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nugget-doom) | -| | [***numara***](apps/numara.md) | *Simple notepad calculator built on Electron.*..[ *read more* ](apps/numara.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/numara) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/numara) | -| | [***numfmt***](apps/numfmt.md) | *From/to human-readable strings. This is part of "am-utils" suite.*..[ *read more* ](apps/numfmt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/numfmt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/numfmt) | -| | [***nunchuk***](apps/nunchuk.md) | *Desktop bitcoin wallet with multisig, hardware, nfc and air-gapped key support.*..[ *read more* ](apps/nunchuk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nunchuk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nunchuk) | -| | [***nvim-nightly***](apps/nvim-nightly.md) | *NeoVim, Vim fork, the most recent development build.*..[ *read more* ](apps/nvim-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nvim-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nvim-nightly) | -| | [***nvim***](apps/nvim.md) | *NeoVim, Vim fork focused on extensibility and usability.*..[ *read more* ](apps/nvim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nvim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nvim) | -| | [***nvtop***](apps/nvtop.md) | *GPUs process monitoring for AMD, Intel and NVIDIA.*..[ *read more* ](apps/nvtop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nvtop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nvtop) | -| | [***nx-software-center***](apps/nx-software-center.md) | *A GUI to install and manage AppImages, Nitrux OS.*..[ *read more* ](apps/nx-software-center.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nx-software-center) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nx-software-center) | -| | [***nxengine-evo-enhanced***](apps/nxengine-evo-enhanced.md) | *Unofficial, a somewhat upgraded/refactored version of NXEngine.*..[ *read more* ](apps/nxengine-evo-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nxengine-evo-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nxengine-evo-enhanced) | -| | [***nxengine-evo***](apps/nxengine-evo.md) | *A somewhat upgraded/refactored version of NXEngine.*..[ *read more* ](apps/nxengine-evo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nxengine-evo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nxengine-evo) | -| | [***nxshell***](apps/nxshell.md) | *An easy to use new terminal.*..[ *read more* ](apps/nxshell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nxshell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nxshell) | -| | [***nyaa***](apps/nyaa.md) | *A nyaa.si tui tool for browsing and downloading torrents.*..[ *read more* ](apps/nyaa.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nyaa) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nyaa) | -| | [***nyan***](apps/nyan.md) | *CLI, colored "cat" command.*..[ *read more* ](apps/nyan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nyan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nyan) | -| | [***nychess***](apps/nychess.md) | *A python Chess Engine and AI.*..[ *read more* ](apps/nychess.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nychess) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nychess) | -| | [***nym-vpn***](apps/nym-vpn.md) | *Cross-platform open source VPN client built in Rust, with mixnet anonymity and WireGuard speed. Protects metadata, not just IP addresses. Zero-knowledge payments for unlinkable online activities.*..[ *read more* ](apps/nym-vpn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nym-vpn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nym-vpn) | -| | [***nym-wallet***](apps/nym-wallet.md) | *Use the Nym network and take advantage of it.*..[ *read more* ](apps/nym-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nym-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nym-wallet) | -| | [***nyrna***](apps/nyrna.md) | *Suspend games and applications.*..[ *read more* ](apps/nyrna.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nyrna) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nyrna) | -| | [***objcopy***](apps/objcopy.md) | *Translate object files. This is part of "am-utils" suite.*..[ *read more* ](apps/objcopy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/objcopy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/objcopy) | -| | [***objdump***](apps/objdump.md) | *From object files. This is part of "am-utils" suite.*..[ *read more* ](apps/objdump.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/objdump) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/objdump) | -| | [***obliqoro***](apps/obliqoro.md) | *A cross-platform tauri gui where Oblique Strategies meets Pomodoro.*..[ *read more* ](apps/obliqoro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/obliqoro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/obliqoro) | -| | [***oblivion-desktop***](apps/oblivion-desktop.md) | *Unofficial Warp Client, Oblivion provides a secure, optimised internet access.*..[ *read more* ](apps/oblivion-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oblivion-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oblivion-desktop) | -| | [***obs-studio***](apps/obs-studio.md) | *Unofficial. Software for video recording and live streaming.*..[ *read more* ](apps/obs-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/obs-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/obs-studio) | -| | [***obsidian-cli***](apps/obsidian-cli.md) | *Interact with Obsidian in the terminal. Open, search, create, update, move and delete notes!*..[ *read more* ](apps/obsidian-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/obsidian-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/obsidian-cli) | -| | [***obsidian***](apps/obsidian.md) | *A powerful knowledge base, plain text Markdown files.*..[ *read more* ](apps/obsidian.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/obsidian) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/obsidian) | -| | [***obsidianirc***](apps/obsidianirc.md) | *Modern IRC Client for the web, desktop and mobile.*..[ *read more* ](apps/obsidianirc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/obsidianirc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/obsidianirc) | -| | [***ocat***](apps/ocat.md) | *OpenCore Auxiliary Tools, editing config.plist files for Acidanthera.*..[ *read more* ](apps/ocat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ocat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ocat) | -| | [***ocenaudio***](apps/ocenaudio.md) | *Unofficial. Multiplatform Audio Editor.*..[ *read more* ](apps/ocenaudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ocenaudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ocenaudio) | -| | [***ocrmypdf***](apps/ocrmypdf.md) | *Unofficial AppImage of OCRmyPDF.*..[ *read more* ](apps/ocrmypdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ocrmypdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ocrmypdf) | -| | [***ocvvid2fulldome***](apps/ocvvid2fulldome.md) | *Take flat videos, distort them to fit fulldome.*..[ *read more* ](apps/ocvvid2fulldome.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ocvvid2fulldome) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ocvvid2fulldome) | -| | [***ocvwarp***](apps/ocvwarp.md) | *Warping images and videos for planetarium fulldome display.*..[ *read more* ](apps/ocvwarp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ocvwarp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ocvwarp) | -| | [***od***](apps/od.md) | *Dump files in octal and other formats. This is part of "am-utils" suite.*..[ *read more* ](apps/od.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/od) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/od) | -| | [***odamex***](apps/odamex.md) | *Unofficial, Online Multiplayer Doom port with a strong focus on the original gameplay while providing a breadth of enhancements.*..[ *read more* ](apps/odamex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/odamex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/odamex) | -| | [***odicto***](apps/odicto.md) | *An offline English dictionary app for desktop.*..[ *read more* ](apps/odicto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/odicto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/odicto) | -| | [***oh-mymd***](apps/oh-mymd.md) | *A markdown editor,support cloud sync.*..[ *read more* ](apps/oh-mymd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oh-mymd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oh-mymd) | -| | [***oh***](apps/oh.md) | *A new Unix shell.*..[ *read more* ](apps/oh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oh) | -| | [***okteta***](apps/okteta.md) | *Unofficial. Hex editor for viewing and editing the raw data of files.*..[ *read more* ](apps/okteta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/okteta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/okteta) | -| | [***olive-legacy***](apps/olive-legacy.md) | *Free non-linear video editor, version 0.1.*..[ *read more* ](apps/olive-legacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/olive-legacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/olive-legacy) | -| | [***olive***](apps/olive.md) | *Free open-source non-linear video editor, nightly build.*..[ *read more* ](apps/olive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/olive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/olive) | -| | [***ollama***](apps/ollama.md) | *Get up and running with Llama 3, Mistral, Gemma, and other LLMs.*..[ *read more* ](apps/ollama.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ollama) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ollama) | -| | [***omekasy***](apps/omekasy.md) | *Command line application that converts alphanumeric characters to various styles 𝚍𝚎𝚏𝚒𝚗𝚎𝚍 𝚒𝚗 𝚄𝚗𝚒𝚌𝚘𝚍𝚎.*..[ *read more* ](apps/omekasy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omekasy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omekasy) | -| | [***omikuji***](apps/omikuji.md) | *Qt/QML based game launcher for Linux.*..[ *read more* ](apps/omikuji.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omikuji) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omikuji) | -| | [***ommpfritt***](apps/ommpfritt.md) | *Semantic, procedural, non-destructive vector modelling.*..[ *read more* ](apps/ommpfritt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ommpfritt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ommpfritt) | -| | [***omniget***](apps/omniget.md) | *Media downloader from various websites.*..[ *read more* ](apps/omniget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omniget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omniget) | -| | [***omnipull***](apps/omnipull.md) | *Pull Everything. Everywhere. OmniPull is a powerful, cross-platform download manager.*..[ *read more* ](apps/omnipull.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omnipull) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omnipull) | -| | [***omniroute***](apps/omniroute.md) | *an OpenAI-compatible endpoint with smart routing, load balancing, retries, and fallbacks. Add policies, rate limits, caching, and observability for reliable, cost-aware inference.*..[ *read more* ](apps/omniroute.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omniroute) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omniroute) | -| | [***omnispeak***](apps/omnispeak.md) | *Re-implementation of "Commander Keen in Goodbye Galaxy".*..[ *read more* ](apps/omnispeak.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omnispeak) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omnispeak) | -| | [***one-gpt***](apps/one-gpt.md) | *Aggregate ChatGPT official version, Wenxin Yiyan, Poe, chatchat.*..[ *read more* ](apps/one-gpt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/one-gpt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/one-gpt) | -| | [***oneanime***](apps/oneanime.md) | *A clean, ad-free anime viewing app. A third-party client for Anime1 with subtitles and a Material You-compliant interface.*..[ *read more* ](apps/oneanime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oneanime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oneanime) | -| | [***onedrive-gui***](apps/onedrive-gui.md) | *Microsoft OneDrive Client GUI.*..[ *read more* ](apps/onedrive-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onedrive-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onedrive-gui) | -| | [***onefetch***](apps/onefetch.md) | *Command-line Git information tool.*..[ *read more* ](apps/onefetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onefetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onefetch) | -| | [***onekey-wallet***](apps/onekey-wallet.md) | *Open source crypto wallet.*..[ *read more* ](apps/onekey-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onekey-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onekey-wallet) | -| | [***onenote***](apps/onenote.md) | *P3X Onenote Linux.*..[ *read more* ](apps/onenote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onenote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onenote) | -| | [***oneweb***](apps/oneweb.md) | *OneWeb - free, private and secure web browser! POLSKA GUROM.*..[ *read more* ](apps/oneweb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oneweb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oneweb) | -| | [***onionhop***](apps/onionhop.md) | *Privacy-first Desktop app that routes your traffic through Tor - Anonymous browsing made simple.*..[ *read more* ](apps/onionhop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onionhop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onionhop) | -| | [***onionmediax***](apps/onionmediax.md) | *OnionMedia X. Convert and download videos and music quickly and easily.*..[ *read more* ](apps/onionmediax.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onionmediax) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onionmediax) | -| | [***onlyoffice***](apps/onlyoffice.md) | *Office Suite with full support for MS Windows formats and cloud.*..[ *read more* ](apps/onlyoffice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onlyoffice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onlyoffice) | -| | [***onlyrefs***](apps/onlyrefs.md) | *Organize all of your references, notes, bookmarks and more.*..[ *read more* ](apps/onlyrefs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onlyrefs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onlyrefs) | -| | [***onnx2bnn***](apps/onnx2bnn.md) | *Binary neural networks inference framework for mobile platform.*..[ *read more* ](apps/onnx2bnn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onnx2bnn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onnx2bnn) | -| | [***onnx2daq***](apps/onnx2daq.md) | *Wrapper of NNAPI, "DNNLibrary" is for "daquexian's NNAPI libs.*..[ *read more* ](apps/onnx2daq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onnx2daq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onnx2daq) | -| | [***onshape***](apps/onshape.md) | *Onshape desktop app, web application shell.*..[ *read more* ](apps/onshape.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onshape) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onshape) | -| | [***onthespot***](apps/onthespot.md) | *A GUI music downloader for Apple Music, Bandcamp, Deezer, Qobuz, Spotify, Tidal, and More.*..[ *read more* ](apps/onthespot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onthespot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onthespot) | -| | [***onyx***](apps/onyx.md) | *Decentralized messaging application based on PSS.*..[ *read more* ](apps/onyx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onyx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onyx) | -| | [***opal***](apps/opal.md) | *Plays relaxing music in the background.*..[ *read more* ](apps/opal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opal) | -| | [***open-ai-translator***](apps/open-ai-translator.md) | *Browser extension for translation based on ChatGPT API.*..[ *read more* ](apps/open-ai-translator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-ai-translator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-ai-translator) | -| | [***open-markup-editor***](apps/open-markup-editor.md) | *Pluggable markup editor.*..[ *read more* ](apps/open-markup-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-markup-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-markup-editor) | -| | [***open-pencil***](apps/open-pencil.md) | *AI-native design editor. Open-source Figma alternative.*..[ *read more* ](apps/open-pencil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-pencil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-pencil) | -| | [***open-typer***](apps/open-typer.md) | *A free and open source typing tutor program.*..[ *read more* ](apps/open-typer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-typer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-typer) | -| | [***open-video-downloader***](apps/open-video-downloader.md) | *A cross-platform GUI for youtube-dl made in Electron.*..[ *read more* ](apps/open-video-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-video-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-video-downloader) | -| | [***open-webui***](apps/open-webui.md) | *Your AI, right on your desktop. Open WebUI as a native app. Run models locally or connect to any server. No Docker, no terminal, no setup. Download, launch, chat.*..[ *read more* ](apps/open-webui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-webui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-webui) | -| | [***openapi-tui***](apps/openapi-tui.md) | *Terminal UI to list, browse and run APIs defined with openapi.*..[ *read more* ](apps/openapi-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openapi-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openapi-tui) | -| | [***openarena***](apps/openarena.md) | *Violent & sexy, multiplayer first person shooter game, ioquake3.*..[ *read more* ](apps/openarena.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openarena) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openarena) | -| | [***openaudible***](apps/openaudible.md) | *Download and manage your Audible audiobooks.*..[ *read more* ](apps/openaudible.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openaudible) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openaudible) | -| | [***openblok***](apps/openblok.md) | *A customizable falling block puzzle game like tetris.*..[ *read more* ](apps/openblok.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openblok) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openblok) | -| | [***openboardview***](apps/openboardview.md) | *Unofficial AppImage of Open Board Viewer.*..[ *read more* ](apps/openboardview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openboardview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openboardview) | -| | [***openbor***](apps/openbor.md) | *Ultimate 2D side scrolling engine for beat em ups, shooters...*..[ *read more* ](apps/openbor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openbor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openbor) | -| | [***openclaw***](apps/openclaw.md) | *Unofficial, reimplementation of Captain Claw (1997) platformer.*..[ *read more* ](apps/openclaw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openclaw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openclaw) | -| | [***opencloud***](apps/opencloud.md) | *Desktop application to synchronize files from OpenCloud with your computer.*..[ *read more* ](apps/opencloud.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencloud) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencloud) | -| | [***opencode-cli***](apps/opencode-cli.md) | *Unofficial AppImage of the opencode CLI utility. The open source coding agent.*..[ *read more* ](apps/opencode-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencode-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencode-cli) | -| | [***opencode-desktop***](apps/opencode-desktop.md) | *Desktop application for opencode, the open source coding agent.*..[ *read more* ](apps/opencode-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencode-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencode-desktop) | -| | [***opencode-enhanced***](apps/opencode-enhanced.md) | *Unofficial, improved AppImage of opencode, the open source coding agent.*..[ *read more* ](apps/opencode-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencode-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencode-enhanced) | -| | [***opencode***](apps/opencode.md) | *The open source coding agent.*..[ *read more* ](apps/opencode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencode) | -| | [***opencomic***](apps/opencomic.md) | *Comic and Manga reader, written with Node.js and using Electron.*..[ *read more* ](apps/opencomic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencomic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencomic) | -| | [***opengothic***](apps/opengothic.md) | *Unofficial AppImage of OpenGothic.*..[ *read more* ](apps/opengothic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opengothic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opengothic) | -| | [***openhv***](apps/openhv.md) | *A mod for OpenRA based on the Hard Vacuum, game.*..[ *read more* ](apps/openhv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openhv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openhv) | -| | [***openjazz***](apps/openjazz.md) | *Unofficial, open-source version of the classic Jazz Jackrabbit™ games.*..[ *read more* ](apps/openjazz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openjazz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openjazz) | -| | [***openlara***](apps/openlara.md) | *Unofficial, classic Tomb Raider open-source engine.*..[ *read more* ](apps/openlara.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openlara) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openlara) | -| | [***openlens***](apps/openlens.md) | *OpenLens Binary Build Repository.*..[ *read more* ](apps/openlens.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openlens) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openlens) | -| | [***openlibextended***](apps/openlibextended.md) | *An Open source app to download and read books from shadow library (Anna’s Archive).*..[ *read more* ](apps/openlibextended.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openlibextended) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openlibextended) | -| | [***openloco***](apps/openloco.md) | *Unofficial, an open source re-implementation of Chris Sawyer's Locomotion.*..[ *read more* ](apps/openloco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openloco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openloco) | -| | [***openmsx***](apps/openmsx.md) | *Unofficial, the MSX emulator that aims for perfection.*..[ *read more* ](apps/openmsx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openmsx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openmsx) | -| | [***openmw***](apps/openmw.md) | *OpenMW is an open-source open-world RPG game engine that supports playing Morrowind.*..[ *read more* ](apps/openmw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openmw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openmw) | -| | [***openop2***](apps/openop2.md) | *Re-implementation of the game Outpost 2, using the OpenRA engine.*..[ *read more* ](apps/openop2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openop2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openop2) | -| | [***openosrs-launcher***](apps/openosrs-launcher.md) | *Open-source client for Old School RuneScape.*..[ *read more* ](apps/openosrs-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openosrs-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openosrs-launcher) | -| | [***openpilot-workbench***](apps/openpilot-workbench.md) | *Fix problems with EON/Openpilot.*..[ *read more* ](apps/openpilot-workbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openpilot-workbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openpilot-workbench) | -| | [***openra-dune***](apps/openra-dune.md) | *Real-time strategy game engine, MOD Dune 2000.*..[ *read more* ](apps/openra-dune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openra-dune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openra-dune) | -| | [***openra-enhanced***](apps/openra-enhanced.md) | *Unofficial AppImage of OpenRA containing all 3 game modes.*..[ *read more* ](apps/openra-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openra-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openra-enhanced) | -| | [***openra-red-alert***](apps/openra-red-alert.md) | *Real-time strategy game engine, MOD Red Alert.*..[ *read more* ](apps/openra-red-alert.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openra-red-alert) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openra-red-alert) | -| | [***openra-tiberian-dawn***](apps/openra-tiberian-dawn.md) | *Real-time strategy game engine penGL, MOD TD.*..[ *read more* ](apps/openra-tiberian-dawn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openra-tiberian-dawn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openra-tiberian-dawn) | -| | [***openramodsdk***](apps/openramodsdk.md) | *Dev Kit for building your own games using the OpenRA engine.*..[ *read more* ](apps/openramodsdk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openramodsdk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openramodsdk) | -| | [***openrct2-enhanced***](apps/openrct2-enhanced.md) | *Unofficial, Re-implementation of RollerCoaster Tycoon 2 (RCT2), expanding the game with new features.*..[ *read more* ](apps/openrct2-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openrct2-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openrct2-enhanced) | -| | [***openrct2***](apps/openrct2.md) | *Re-implementation of RollerCoaster Tycoon 2 (RCT2), expanding the game with new features.*..[ *read more* ](apps/openrct2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openrct2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openrct2) | -| | [***openrgb***](apps/openrgb.md) | *RGB lighting control that doesn't depend on manufacturer software.*..[ *read more* ](apps/openrgb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openrgb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openrgb) | -| | [***openscad***](apps/openscad.md) | *The Programmers Solid 3D CAD Modeller.*..[ *read more* ](apps/openscad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openscad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openscad) | -| | [***openscreen***](apps/openscreen.md) | *Create stunning screen recordings for free. Open-source, no subscriptions, no watermarks, and free for commercial use. An alternative to Screen Studio.*..[ *read more* ](apps/openscreen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openscreen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openscreen) | -| | [***openshot***](apps/openshot.md) | *A powerful Video Editor.*..[ *read more* ](apps/openshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openshot) | -| | [***openstickies***](apps/openstickies.md) | *Sticky notes for your desktop. Simple, fast, private. Drop files, paste screenshots, set reminders, keep things visible where you work.*..[ *read more* ](apps/openstickies.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openstickies) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openstickies) | -| | [***openstream-music***](apps/openstream-music.md) | *The OpenStream Music source.*..[ *read more* ](apps/openstream-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openstream-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openstream-music) | -| | [***openswe1r***](apps/openswe1r.md) | *Racer.*..[ *read more* ](apps/openswe1r.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openswe1r) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openswe1r) | -| | [***openterface-qt***](apps/openterface-qt.md) | *Openterface Mini-KVM.*..[ *read more* ](apps/openterface-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openterface-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openterface-qt) | -| | [***opentodolist***](apps/opentodolist.md) | *A note and task managing application.*..[ *read more* ](apps/opentodolist.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opentodolist) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opentodolist) | -| | [***opentrons***](apps/opentrons.md) | *Opentrons desktop application.*..[ *read more* ](apps/opentrons.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opentrons) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opentrons) | -| | [***openttd***](apps/openttd.md) | *Unofficial, an open source simulation game based upon Transport Tycoon Deluxe.*..[ *read more* ](apps/openttd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openttd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openttd) | -| | [***opentubex***](apps/opentubex.md) | *A FreeTube fork with extra features for privacy.*..[ *read more* ](apps/opentubex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opentubex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opentubex) | -| | [***opentyrian2000***](apps/opentyrian2000.md) | *Unofficial, an open-source port of the DOS shoot-em-up Tyrian.*..[ *read more* ](apps/opentyrian2000.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opentyrian2000) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opentyrian2000) | -| | [***openxcom-extended***](apps/openxcom-extended.md) | *OXCE, extended version of openXcom provide better mod support, QoL improvements, new game mechanics, improved and new GUIs.*..[ *read more* ](apps/openxcom-extended.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openxcom-extended) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openxcom-extended) | -| | [***openxcom***](apps/openxcom.md) | *Enemy Unknown licensed under the GPL and written in C++ / SDL.*..[ *read more* ](apps/openxcom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openxcom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openxcom) | -| | [***openxray***](apps/openxray.md) | *Unofficial AppImage of OpenXRay.*..[ *read more* ](apps/openxray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openxray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openxray) | -| | [***opera-beta***](apps/opera-beta.md) | *Unofficial. Fast and secure web browser, Beta version.*..[ *read more* ](apps/opera-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opera-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opera-beta) | -| | [***opera-dev***](apps/opera-dev.md) | *Unofficial. Fast and secure web browser, Developer version.*..[ *read more* ](apps/opera-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opera-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opera-dev) | -| | [***opera***](apps/opera.md) | *Unofficial. Fast and secure web browser, Stable version.*..[ *read more* ](apps/opera.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opera) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opera) | -| | [***optiimage***](apps/optiimage.md) | *Unofficial, optimize your images with OptiImage, a useful image compressor that supports PNG, JPEG, WebP and SVG file types.*..[ *read more* ](apps/optiimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/optiimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/optiimage) | -| | [***orange***](apps/orange.md) | *Cross-platform local file search engine.*..[ *read more* ](apps/orange.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/orange) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/orange) | -| | [***oras***](apps/oras.md) | *OCI registry client managing content like artifacts, images, packages.*..[ *read more* ](apps/oras.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oras) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oras) | -| | [***orca-note***](apps/orca-note.md) | *A note taking application that is good both for outlining and long-form writing.*..[ *read more* ](apps/orca-note.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/orca-note) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/orca-note) | -| | [***orcaslicer-devel***](apps/orcaslicer-devel.md) | *G-code generator for 3D printers, the most recent development build (nightly, alpha, beta, rc).*..[ *read more* ](apps/orcaslicer-devel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/orcaslicer-devel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/orcaslicer-devel) | -| | [***orcaslicer***](apps/orcaslicer.md) | *G-code generator for 3D printers, Stable release.*..[ *read more* ](apps/orcaslicer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/orcaslicer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/orcaslicer) | -| | [***osrs-tools***](apps/osrs-tools.md) | *Several tools for OSRS.*..[ *read more* ](apps/osrs-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/osrs-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/osrs-tools) | -| | [***ossia-score***](apps/ossia-score.md) | *Sequencer for audio-visual artists for interactive shows.*..[ *read more* ](apps/ossia-score.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ossia-score) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ossia-score) | -| | [***ostara***](apps/ostara.md) | *To monitor and interact with Spring Boot Applications via Actuator.*..[ *read more* ](apps/ostara.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ostara) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ostara) | -| | [***osu***](apps/osu.md) | *A free-to-win rhythm game. Rhythm is just a click away!*..[ *read more* ](apps/osu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/osu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/osu) | -| | [***ots***](apps/ots.md) | *Share end-to-end encrypted secrets with others via a one-time URL.*..[ *read more* ](apps/ots.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ots) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ots) | -| | [***ottomatic***](apps/ottomatic.md) | *Pangea Software’s Otto Matic, a game of robots.*..[ *read more* ](apps/ottomatic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ottomatic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ottomatic) | -| | [***outer-wilds-mod-manager***](apps/outer-wilds-mod-manager.md) | *The mod manager for the Outer Wilds Mod Loader*..[ *read more* ](apps/outer-wilds-mod-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/outer-wilds-mod-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/outer-wilds-mod-manager) | -| | [***outline-client***](apps/outline-client.md) | *Lean on the Cordova and Electron frameworks.*..[ *read more* ](apps/outline-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/outline-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/outline-client) | -| | [***outline-manager***](apps/outline-manager.md) | *Create and manage access to Outline servers.*..[ *read more* ](apps/outline-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/outline-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/outline-manager) | -| | [***overbind***](apps/overbind.md) | *A utility that allows binding keyboard buttons to virtual Xbox360 controller joystick outputs.*..[ *read more* ](apps/overbind.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/overbind) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/overbind) | -| | [***overlayed***](apps/overlayed.md) | *A modern, open-source, and free voice chat overlay for Discord.*..[ *read more* ](apps/overlayed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/overlayed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/overlayed) | -| | [***oversteer***](apps/oversteer.md) | *Unofficial, Steering Wheel Manager for Linux.*..[ *read more* ](apps/oversteer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oversteer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oversteer) | -| | [***overte***](apps/overte.md) | *Overte open source virtual worlds platform.*..[ *read more* ](apps/overte.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/overte) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/overte) | -| | [***ovideo***](apps/ovideo.md) | *Video Editor.*..[ *read more* ](apps/ovideo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ovideo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ovideo) | -| | [***ow-mod-man***](apps/ow-mod-man.md) | *The mod manager for the Outer Wilds Mod Loader.*..[ *read more* ](apps/ow-mod-man.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ow-mod-man) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ow-mod-man) | -| | [***owallet***](apps/owallet.md) | *A comprehensive Ontology desktop wallet.*..[ *read more* ](apps/owallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/owallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/owallet) | -| | [***owncloud***](apps/owncloud.md) | *Desktop Syncing Client for ownCloud. ownCloud, a Kiteworks Company, offers file sharing and collaboration trusted by 200+ million users worldwide regardless of device or location.*..[ *read more* ](apps/owncloud.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/owncloud) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/owncloud) | -| | [***owte***](apps/owte.md) | *Anime girl dancing on your screen.*..[ *read more* ](apps/owte.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/owte) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/owte) | -| | [***oxen-gui-wallet***](apps/oxen-gui-wallet.md) | *Oxen electron GUI wallet.*..[ *read more* ](apps/oxen-gui-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oxen-gui-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oxen-gui-wallet) | -| | [***p2p-chat***](apps/p2p-chat.md) | *P2P LAN chatting and file sharing tool.*..[ *read more* ](apps/p2p-chat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/p2p-chat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/p2p-chat) | -| | [***p2pderivatives***](apps/p2pderivatives.md) | *Enables users to enter into Discreet Log Contracts.*..[ *read more* ](apps/p2pderivatives.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/p2pderivatives) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/p2pderivatives) | -| | [***p3x-redis-ui***](apps/p3x-redis-ui.md) | *A very functional handy database GUI and works in your pocket.*..[ *read more* ](apps/p3x-redis-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/p3x-redis-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/p3x-redis-ui) | -| | [***packetsender***](apps/packetsender.md) | *Network utility for sending/receiving TCP/UDP/SSL/HTTP.*..[ *read more* ](apps/packetsender.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/packetsender) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/packetsender) | -| | [***packsquash***](apps/packsquash.md) | *A Minecraft Java Edition resource and data pack optimizer.*..[ *read more* ](apps/packsquash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/packsquash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/packsquash) | -| | [***paclear***](apps/paclear.md) | *CLI, paclear is a clear command with PAC-MAN animation.*..[ *read more* ](apps/paclear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paclear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paclear) | -| | [***padloc***](apps/padloc.md) | *Electron Wrapper for Padloc app.*..[ *read more* ](apps/padloc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/padloc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/padloc) | -| | [***pageedit***](apps/pageedit.md) | *EPub XHTML Visual Editor.*..[ *read more* ](apps/pageedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pageedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pageedit) | -| | [***painel-web***](apps/painel-web.md) | *Novo SGA panel.*..[ *read more* ](apps/painel-web.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/painel-web) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/painel-web) | -| | [***paket***](apps/paket.md) | *A simple and fast package manager for the Fish shell written in Rust.*..[ *read more* ](apps/paket.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paket) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paket) | -| | [***palapeli***](apps/kdegames.md) | *Jigsaw puzzle game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***palemoon-legacy***](apps/palemoon-legacy.md) | *Unofficial. Pale Moon is a fully-independent web browser built on its own maintained platform and rendering engine (Goanna), focusing on user customization. This is the GTK2 implementation.*..[ *read more* ](apps/palemoon-legacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/palemoon-legacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/palemoon-legacy) | -| | [***palemoon***](apps/palemoon.md) | *Unofficial. Pale Moon is a fully-independent web browser built on its own maintained platform and rendering engine (Goanna), focusing on user customization.*..[ *read more* ](apps/palemoon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/palemoon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/palemoon) | -| | [***pandoralauncher***](apps/pandoralauncher.md) | *Pandora is a modern Minecraft launcher that balances ease-of-use with powerful instance management features.*..[ *read more* ](apps/pandoralauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pandoralauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pandoralauncher) | -| | [***pandoralaunchercrack***](apps/pandoralaunchercrack.md) | *Customized version of Pandora, a modern Minecraft launcher that balances ease-of-use with powerful instance management features.*..[ *read more* ](apps/pandoralaunchercrack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pandoralaunchercrack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pandoralaunchercrack) | -| | [***panini***](apps/panini.md) | *Perspective views from panoramic images.*..[ *read more* ](apps/panini.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/panini) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/panini) | -| | [***pano-scrobbler***](apps/pano-scrobbler.md) | *Feature packed cross-platform music tracker for Last.fm, ListenBrainz, Libre.fm, Pleroma and other compatible services.*..[ *read more* ](apps/pano-scrobbler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pano-scrobbler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pano-scrobbler) | -| | [***panwriter***](apps/panwriter.md) | *Markdown editor with pandoc integration.*..[ *read more* ](apps/panwriter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/panwriter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/panwriter) | -| | [***paper-design***](apps/paper-design.md) | *Paper is a modern and powerful design tool that helps you create, share, and ship your best work. Design incredible, the connected canvas for teams shipping with agents.*..[ *read more* ](apps/paper-design.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paper-design) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paper-design) | -| | [***paper***](apps/paper.md) | *A CLI Tool to set a random wallpaper from Unsplash.com.*..[ *read more* ](apps/paper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paper) | -| | [***papercraft***](apps/papercraft.md) | *A tool to unwrap 3D models.*..[ *read more* ](apps/papercraft.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/papercraft) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/papercraft) | -| | [***paperlib***](apps/paperlib.md) | *An open-source academic paper management tool.*..[ *read more* ](apps/paperlib.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paperlib) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paperlib) | -| | [***paperweight***](apps/paperweight.md) | *Paperweight scans your inbox to map your digital footprint, then helps you take back control and delete your data.*..[ *read more* ](apps/paperweight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paperweight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paperweight) | -| | [***parabolic***](apps/parabolic.md) | *Unofficial, Download web video and audio.*..[ *read more* ](apps/parabolic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parabolic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parabolic) | -| | [***parallelcoin***](apps/parallelcoin.md) | *Parallelcoin qt wallet appimage binary.*..[ *read more* ](apps/parallelcoin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parallelcoin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parallelcoin) | -| | [***parchment***](apps/parchment.md) | *A minimal minimal text editor written using web technologies.*..[ *read more* ](apps/parchment.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parchment) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parchment) | -| | [***parity-fether***](apps/parity-fether.md) | *Fether Wallet.*..[ *read more* ](apps/parity-fether.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parity-fether) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parity-fether) | -| | [***parsec-linux***](apps/parsec-linux.md) | *Parsec game streaming client.*..[ *read more* ](apps/parsec-linux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parsec-linux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parsec-linux) | -| | [***parsec***](apps/parsec.md) | *Open source Dropbox-like file sharing with full client encryption.*..[ *read more* ](apps/parsec.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parsec) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parsec) | -| | [***passky***](apps/passky.md) | *Simple and secure password manager.*..[ *read more* ](apps/passky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/passky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/passky) | -| | [***passphraser***](apps/passphraser.md) | *Phrase-based password generator that can use your own list of words.*..[ *read more* ](apps/passphraser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/passphraser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/passphraser) | -| | [***paste***](apps/paste.md) | *Merge lines of files. This is part of "am-utils" suite.*..[ *read more* ](apps/paste.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paste) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paste) | -| | [***pastel***](apps/pastel.md) | *A command-line tool to generate, analyze, convert and manipulate colors.*..[ *read more* ](apps/pastel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pastel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pastel) | -| | [***patchbay***](apps/patchbay.md) | *An alt. Secure Scuttlebutt client compatible with Patchwork.*..[ *read more* ](apps/patchbay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/patchbay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/patchbay) | -| | [***patchelf***](apps/patchelf.md) | *Utility to modify the dynamic linker and RPATH of ELF executables.*..[ *read more* ](apps/patchelf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/patchelf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/patchelf) | -| | [***patchwork***](apps/patchwork.md) | *Messaging and sharing app built on top of Secure Scuttlebutt.*..[ *read more* ](apps/patchwork.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/patchwork) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/patchwork) | -| | [***pathchk***](apps/pathchk.md) | *File names are valid or portable. This is part of "am-utils" suite.*..[ *read more* ](apps/pathchk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pathchk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pathchk) | -| | [***pathephone***](apps/pathephone.md) | *Distributed audio player.*..[ *read more* ](apps/pathephone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pathephone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pathephone) | -| | [***pattypan***](apps/pattypan.md) | *Unofficial AppImage of Pattypan.*..[ *read more* ](apps/pattypan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pattypan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pattypan) | -| | [***pavo***](apps/pavo.md) | *A mini desktop wallpaper application.*..[ *read more* ](apps/pavo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pavo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pavo) | -| | [***pavucontrol-qt***](apps/pavucontrol-qt.md) | *Qt port of pavucontrol Pulseaudio mixer, unofficial AppImage.*..[ *read more* ](apps/pavucontrol-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pavucontrol-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pavucontrol-qt) | -| | [***pay-respects***](apps/pay-respects.md) | *Terminal command correction, alternative to thefuck written in Rust.*..[ *read more* ](apps/pay-respects.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pay-respects) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pay-respects) | -| | [***pb-for-desktop***](apps/pb-for-desktop.md) | *Pushbullet Desktop app.*..[ *read more* ](apps/pb-for-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pb-for-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pb-for-desktop) | -| | [***pboy***](apps/pboy.md) | *A small .pdf management tool with a command-line UI.*..[ *read more* ](apps/pboy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pboy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pboy) | -| | [***pcexhumed***](apps/pcexhumed.md) | *Unofficial, port of the PC version of Exhumed based on EDuke32.*..[ *read more* ](apps/pcexhumed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcexhumed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcexhumed) | -| | [***pcloud***](apps/pcloud.md) | *pCloud Drive Client, cloud service, built using electron and node.js.*..[ *read more* ](apps/pcloud.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcloud) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcloud) | -| | [***pcsx-redux-enhanced***](apps/pcsx-redux-enhanced.md) | *Unofficial, modern fork of the pcsxr PlayStation 1 emulator focused on reverse engineering and homebrew development.*..[ *read more* ](apps/pcsx-redux-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcsx-redux-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcsx-redux-enhanced) | -| | [***pcsx2-nightly***](apps/pcsx2-nightly.md) | *PCSX2 is a free and open-source PlayStation 2 (PS2) emulator, using a combination of MIPS CPU Interpreters, Recompilers and a Virtual Machine which manages hardware states and PS2 system memory. This allows you to play PS2 games on your PC, with many additional features and benefits. This is the nightly version.*..[ *read more* ](apps/pcsx2-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcsx2-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcsx2-nightly) | -| | [***pcsx2***](apps/pcsx2.md) | *PCSX2 is a free and open-source PlayStation 2 (PS2) emulator, using a combination of MIPS CPU Interpreters, Recompilers and a Virtual Machine which manages hardware states and PS2 system memory. This allows you to play PS2 games on your PC, with many additional features and benefits.*..[ *read more* ](apps/pcsx2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcsx2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcsx2) | -| | [***pdf-arranger***](apps/pdf-arranger.md) | *Unofficial, a small python-gtk application, which helps the user to merge or split PDF documents and rotate, crop and rearrange their pages.*..[ *read more* ](apps/pdf-arranger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf-arranger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf-arranger) | -| | [***pdf-diff***](apps/pdf-diff.md) | *A CLI tool for visualizing differences between two pdf files.*..[ *read more* ](apps/pdf-diff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf-diff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf-diff) | -| | [***pdf-sync***](apps/pdf-sync.md) | *PDF Reader in JavaScript with Sync.*..[ *read more* ](apps/pdf-sync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf-sync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf-sync) | -| | [***pdf-tricks***](apps/pdf-tricks.md) | *Unofficial, a simple, efficient application for small manipulations in PDF files.*..[ *read more* ](apps/pdf-tricks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf-tricks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf-tricks) | -| | [***pdf2htmlex***](apps/pdf2htmlex.md) | *Convert PDF to HTML without losing text or format.*..[ *read more* ](apps/pdf2htmlex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf2htmlex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf2htmlex) | -| | [***pdf4qt***](apps/pdf4qt.md) | *Open source PDF editor.*..[ *read more* ](apps/pdf4qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf4qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf4qt) | -| | [***pdfcompress***](apps/pdfcompress.md) | *A utility to compress PDF documentas based on Ghostscript and YAD.*..[ *read more* ](apps/pdfcompress.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdfcompress) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdfcompress) | -| | [***pdfcrackgui***](apps/pdfcrackgui.md) | *GUI overlay for the popular and highly regarded pdfcrack.*..[ *read more* ](apps/pdfcrackgui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdfcrackgui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdfcrackgui) | -| | [***pdfquirk***](apps/pdfquirk.md) | *Creating PDFs from images or scanner made easy.*..[ *read more* ](apps/pdfquirk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdfquirk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdfquirk) | -| | [***pdmaner***](apps/pdmaner.md) | *A relational database modeling tool.*..[ *read more* ](apps/pdmaner.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdmaner) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdmaner) | -| | [***pear-desktop***](apps/pear-desktop.md) | *An extension for music player.*..[ *read more* ](apps/pear-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pear-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pear-desktop) | -| | [***pearpass***](apps/pearpass.md) | *An open-source, privacy-first password manager with peer-to-peer syncing and end-to-end encryption.*..[ *read more* ](apps/pearpass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pearpass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pearpass) | -| | [***peazip***](apps/peazip.md) | *Unofficial. PeaZip Appimage for linux 64bits.*..[ *read more* ](apps/peazip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/peazip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/peazip) | -| | [***peep***](apps/peep.md) | *The CLI text viewer tool that works like less command on small pane within the terminal window.*..[ *read more* ](apps/peep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/peep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/peep) | -| | [***pelusica***](apps/pelusica.md) | *Action game, control the blue dot with your keyboard/create music.*..[ *read more* ](apps/pelusica.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pelusica) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pelusica) | -| | [***pencil***](apps/pencil.md) | *Pencil2D is an easy, intuitive tool to make 2D hand-drawn animations.*..[ *read more* ](apps/pencil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pencil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pencil) | -| | [***penguins-eggs***](apps/penguins-eggs.md) | *A professional and universal remastering tool for all major distributions.*..[ *read more* ](apps/penguins-eggs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/penguins-eggs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/penguins-eggs) | -| | [***pennywise***](apps/pennywise.md) | *Open any website or media in a floating window.*..[ *read more* ](apps/pennywise.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pennywise) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pennywise) | -| | [***perfect-dark***](apps/perfect-dark.md) | *Unofficial, work in progress port of n64decomp/perfect_dark to modern platforms.*..[ *read more* ](apps/perfect-dark.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/perfect-dark) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/perfect-dark) | -| | [***perl-executing-browser***](apps/perl-executing-browser.md) | *HTML5 user interface for Perl 5 desktop apps.*..[ *read more* ](apps/perl-executing-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/perl-executing-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/perl-executing-browser) | -| | [***permastead***](apps/permastead.md) | *Desktop software for managing a homestead using permaculture design.*..[ *read more* ](apps/permastead.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/permastead) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/permastead) | -| | [***perplexity-ai-app***](apps/perplexity-ai-app.md) | *Perplexity AI Desktop app eases the process to access Perplexity AI.*..[ *read more* ](apps/perplexity-ai-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/perplexity-ai-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/perplexity-ai-app) | -| | [***pet***](apps/pet.md) | *Simple command-line snippet manager.*..[ *read more* ](apps/pet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pet) | -| | [***pext***](apps/pext.md) | *Python-based extendable tool.*..[ *read more* ](apps/pext.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pext) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pext) | -| | [***pfetch-rs***](apps/pfetch-rs.md) | *A rewrite of the pfetch system information tool in Rust.*..[ *read more* ](apps/pfetch-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pfetch-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pfetch-rs) | -| | [***pget***](apps/pget.md) | *The fastest, resumable file download CLI client.*..[ *read more* ](apps/pget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pget) | -| | [***phantom-satellite***](apps/phantom-satellite.md) | *Unofficial, a fork of Pale Moon that aims to support older/niche platforms, without sacrificing support for more common/modern platforms.*..[ *read more* ](apps/phantom-satellite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/phantom-satellite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/phantom-satellite) | -| | [***phinch***](apps/phinch.md) | *Phinch is a framework for visualizing biological data.*..[ *read more* ](apps/phinch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/phinch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/phinch) | -| | [***pho***](apps/pho.md) | *The AppImage Manager that Linux always deserved.*..[ *read more* ](apps/pho.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pho) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pho) | -| | [***phoenix-x-server***](apps/phoenix-x-server.md) | *Unofficial, a new X server, written from scratch in Zig (not a fork). Designed to be a modern alternative to the Xorg server.*..[ *read more* ](apps/phoenix-x-server.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/phoenix-x-server) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/phoenix-x-server) | -| | [***photocrea***](apps/photocrea.md) | *Unofficial Photopea wrapper, image editor that includes all the familiar features like layers, filters, magic wand selection, etc.*..[ *read more* ](apps/photocrea.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photocrea) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photocrea) | -| | [***photoflare***](apps/photoflare.md) | *A simple but featureful image editor.*..[ *read more* ](apps/photoflare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photoflare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photoflare) | -| | [***photoflow***](apps/photoflow.md) | *Edit images from digital cameras.*..[ *read more* ](apps/photoflow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photoflow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photoflow) | -| | [***photogimp***](apps/photogimp.md) | *A patched version of GIMP for Adobe Photoshop users.*..[ *read more* ](apps/photogimp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photogimp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photogimp) | -| | [***photon***](apps/photon.md) | *Cross-platform file-transfer application built using flutter. It uses http to transfer files between devices.*..[ *read more* ](apps/photon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photon) | -| | [***photoname***](apps/photoname.md) | *Rename photo image files based on EXIF shoot date.*..[ *read more* ](apps/photoname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photoname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photoname) | -| | [***photopealoader***](apps/photopealoader.md) | *Photopea desktop app that loads local files and plugins.*..[ *read more* ](apps/photopealoader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photopealoader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photopealoader) | -| | [***photoqt***](apps/photoqt.md) | *View and manage images.*..[ *read more* ](apps/photoqt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photoqt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photoqt) | -| | [***photoquick***](apps/photoquick.md) | *Light-weight image viewer, resize, collage, filters....*..[ *read more* ](apps/photoquick.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photoquick) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photoquick) | -| | [***phreshplayer***](apps/phreshplayer.md) | *Electron based media player app.*..[ *read more* ](apps/phreshplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/phreshplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/phreshplayer) | -| | [***pia***](apps/pia.md) | *Version Portable Outil PIA.*..[ *read more* ](apps/pia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pia) | -| | [***picacg-qt***](apps/picacg-qt.md) | *PicACG Comic PC Client For Linux.*..[ *read more* ](apps/picacg-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picacg-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picacg-qt) | -| | [***picard-daily***](apps/picard-daily.md) | *Inofficial daily development builds for MusicBrainz Picard.*..[ *read more* ](apps/picard-daily.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picard-daily) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picard-daily) | -| | [***picgo***](apps/picgo.md) | *Easy to upload your pic & copy to write.*..[ *read more* ](apps/picgo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picgo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picgo) | -| | [***piclist***](apps/piclist.md) | *Cloud storage platform management & file upload tool based on PicGo.*..[ *read more* ](apps/piclist.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/piclist) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/piclist) | -| | [***picmi***](apps/kdegames.md) | *Single player logic-based puzzle game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***picocrypt-ng***](apps/picocrypt-ng.md) | *A very small, very simple, yet very secure encryption tool.*..[ *read more* ](apps/picocrypt-ng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picocrypt-ng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picocrypt-ng) | -| | [***picsimlab***](apps/picsimlab.md) | *PICsimLab - Programmable IC Simulator Laboratory.*..[ *read more* ](apps/picsimlab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picsimlab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picsimlab) | -| | [***picterm***](apps/picterm.md) | *CLI, TUI image viewer.*..[ *read more* ](apps/picterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picterm) | -| | [***picturama***](apps/picturama.md) | *Digital image organizer powered by the web.*..[ *read more* ](apps/picturama.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picturama) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picturama) | -| | [***piglit***](apps/piglit.md) | *Unofficial, a collection of automated tests for OpenGL, Vulkan, and OpenCL implementations.*..[ *read more* ](apps/piglit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/piglit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/piglit) | -| | [***pigs-n-cows***](apps/pigs-n-cows.md) | *A relaxing game for children and adults alike.*..[ *read more* ](apps/pigs-n-cows.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pigs-n-cows) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pigs-n-cows) | -| | [***pika-backup***](apps/pika-backup.md) | *Doing backups the easy way. Plugin your USB drive and let the Pika do the rest for you.*..[ *read more* ](apps/pika-backup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pika-backup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pika-backup) | -| | [***pikapika***](apps/pikapika.md) | *A comic browser.*..[ *read more* ](apps/pikapika.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pikapika) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pikapika) | -| | [***pile***](apps/pile.md) | *App to organize your piled work at one place.*..[ *read more* ](apps/pile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pile) | -| | [***pince***](apps/pince.md) | *Reverse engineering tool for linux games.*..[ *read more* ](apps/pince.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pince) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pince) | -| | [***pingendo***](apps/pingendo.md) | *???*..[ *read more* ](apps/pingendo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pingendo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pingendo) | -| | [***pingnoo***](apps/pingnoo.md) | *An open source network ping analyser.*..[ *read more* ](apps/pingnoo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pingnoo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pingnoo) | -| | [***pingu***](apps/pingu.md) | *CLI, ping command but with pingu.*..[ *read more* ](apps/pingu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pingu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pingu) | -| | [***pingviewer***](apps/pingviewer.md) | *Ping viewer interface.*..[ *read more* ](apps/pingviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pingviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pingviewer) | -| | [***pinky***](apps/pinky.md) | *Lightweight finger. This is part of "am-utils" suite.*..[ *read more* ](apps/pinky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pinky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pinky) | -| | [***pinokio***](apps/pinokio.md) | *AI Browser.*..[ *read more* ](apps/pinokio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pinokio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pinokio) | -| | [***pinta-dev***](apps/pinta-dev.md) | *Simple GTK Paint Program (developer edition).*..[ *read more* ](apps/pinta-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pinta-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pinta-dev) | -| | [***pinta***](apps/pinta.md) | *Unofficial, Simple GTK Paint Program clone of Paint.Net 3.0.*..[ *read more* ](apps/pinta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pinta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pinta) | -| | [***pipes-rs***](apps/pipes-rs.md) | *An over-engineered rewrite of pipes.sh in Rust. CLI.*..[ *read more* ](apps/pipes-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pipes-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pipes-rs) | -| | [***pixelhopper***](apps/pixelhopper.md) | *Animated GIF player for Linux (X11).*..[ *read more* ](apps/pixelhopper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixelhopper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixelhopper) | -| | [***pixelorama***](apps/pixelorama.md) | *A powerful and accessible open-source pixel art multitool. Whether you want to create sprites, tiles, animations, or just express yourself in the language of pixel art.*..[ *read more* ](apps/pixelorama.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixelorama) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixelorama) | -| | [***pixelpulse2***](apps/pixelpulse2.md) | *Pixelpulse2 is a user interface for analog systems exploration.*..[ *read more* ](apps/pixelpulse2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixelpulse2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixelpulse2) | -| | [***pixfetch***](apps/pixfetch.md) | *Another CLI fetch program with pixelized images written in Rust.*..[ *read more* ](apps/pixfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixfetch) | -| | [***pixsrt***](apps/pixsrt.md) | *Pixel sorter.*..[ *read more* ](apps/pixsrt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixsrt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixsrt) | -| | [***pizarra***](apps/pizarra.md) | *A digital, vectorial and infinite chalkboard.*..[ *read more* ](apps/pizarra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pizarra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pizarra) | -| | [***pkg2appimage***](apps/pkg2appimage.md) | *Utility to convert .yml recipes to AppDir, see appimagetool.*..[ *read more* ](apps/pkg2appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pkg2appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pkg2appimage) | -| | [***plagpatrol***](apps/plagpatrol.md) | *Detecting documents tampered to bypass plagiarism detectors.*..[ *read more* ](apps/plagpatrol.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plagpatrol) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plagpatrol) | -| | [***planes***](apps/planes.md) | *Variant of battleships game.*..[ *read more* ](apps/planes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/planes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/planes) | -| | [***planet-blupi***](apps/planet-blupi.md) | *A delirious spell-binding game.*..[ *read more* ](apps/planet-blupi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/planet-blupi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/planet-blupi) | -| | [***planify***](apps/planify.md) | *Unofficial AppImage of Planify.*..[ *read more* ](apps/planify.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/planify) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/planify) | -| | [***platform-tools***](apps/platform-tools.md) | *Official Suite of command line utilities to manage Android devices.*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***platinum-md***](apps/platinum-md.md) | *Graphical MiniDisc NetMD conversion and upload.*..[ *read more* ](apps/platinum-md.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platinum-md) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platinum-md) | -| | [***play-2048***](apps/play-2048.md) | *Another implementation of the 2048 game.*..[ *read more* ](apps/play-2048.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/play-2048) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/play-2048) | -| | [***play-enhanced***](apps/play-enhanced.md) | *Unofficial, a PlayStation2 emulator.*..[ *read more* ](apps/play-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/play-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/play-enhanced) | -| | [***play***](apps/play.md) | *Play! is a PlayStation2 games emulator.*..[ *read more* ](apps/play.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/play) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/play) | -| | [***playback***](apps/playback.md) | *Play and manage your cartridges and replay your childhood games.*..[ *read more* ](apps/playback.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playback) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playback) | -| | [***playbox***](apps/playbox.md) | *An audio playback system for the live production industry.*..[ *read more* ](apps/playbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playbox) | -| | [***playerctl***](apps/playerctl.md) | *Unofficial, MPRIS media player command-line controller.*..[ *read more* ](apps/playerctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playerctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playerctl) | -| | [***playit***](apps/playit.md) | *Want to run an online game server? playit.gg is a global proxy that allows anyone to host a server without port forwarding.*..[ *read more* ](apps/playit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playit) | -| | [***playme***](apps/playme.md) | *Elegant YouTube Music desktop app.*..[ *read more* ](apps/playme.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playme) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playme) | -| | [***playyourdamnturn***](apps/playyourdamnturn.md) | *Desktop Client to assist with playing your damn turns.*..[ *read more* ](apps/playyourdamnturn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playyourdamnturn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playyourdamnturn) | -| | [***plebchan***](apps/plebchan.md) | *A GUI for plebbit similar to 4chan.*..[ *read more* ](apps/plebchan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plebchan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plebchan) | -| | [***plex***](apps/plex.md) | *The ultimate home theater experience.*..[ *read more* ](apps/plex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plex) | -| | [***plexamp***](apps/plexamp.md) | *The best little audio player on the planet.*..[ *read more* ](apps/plexamp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plexamp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plexamp) | -| | [***plotjuggler***](apps/plotjuggler.md) | *The Time Series Visualization Tool that you deserve.*..[ *read more* ](apps/plotjuggler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plotjuggler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plotjuggler) | -| | [***plotly-orca***](apps/plotly-orca.md) | *CLI generating static images of interactive charts.*..[ *read more* ](apps/plotly-orca.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plotly-orca) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plotly-orca) | -| | [***plover***](apps/plover.md) | *Stenographic input and translation.*..[ *read more* ](apps/plover.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plover) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plover) | -| | [***plume***](apps/plume.md) | *A note-taking app written in Qt C++ and QML.*..[ *read more* ](apps/plume.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plume) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plume) | -| | [***plus42***](apps/plus42.md) | *Unofficial, an enhanced HP-42S calculator simulator.*..[ *read more* ](apps/plus42.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plus42) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plus42) | -| | [***png2svg***](apps/png2svg.md) | *CLI, convert small PNG images to SVG Tiny 1.2.*..[ *read more* ](apps/png2svg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/png2svg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/png2svg) | -| | [***pnpm***](apps/pnpm.md) | *A single file, powered by AppImage.*..[ *read more* ](apps/pnpm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pnpm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pnpm) | -| | [***pocket-browser***](apps/pocket-browser.md) | *A FOSS browser made for privacy and going towards security.*..[ *read more* ](apps/pocket-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pocket-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pocket-browser) | -| | [***pocketcasts-electron***](apps/pocketcasts-electron.md) | *Pocket Casts wrapper with mapped media keys.*..[ *read more* ](apps/pocketcasts-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pocketcasts-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pocketcasts-electron) | -| | [***poddr***](apps/poddr.md) | *Podcast client that uses iTunes RSS feeds and Search API.*..[ *read more* ](apps/poddr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/poddr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/poddr) | -| | [***podium***](apps/podium.md) | *A Markdown-based native presentation tool.*..[ *read more* ](apps/podium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/podium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/podium) | -| | [***podman-desktop-companion***](apps/podman-desktop-companion.md) | *Podman command line interface.*..[ *read more* ](apps/podman-desktop-companion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/podman-desktop-companion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/podman-desktop-companion) | -| | [***podman***](apps/podman.md) | *Free & open source tool to manage containers, pods, and images.*..[ *read more* ](apps/podman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/podman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/podman) | -| | [***poe-ladder***](apps/poe-ladder.md) | *Path of Exile ladder viewer.*..[ *read more* ](apps/poe-ladder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/poe-ladder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/poe-ladder) | -| | [***poedit***](apps/poedit.md) | *Unofficial. Powerful and intuitive translation editor.*..[ *read more* ](apps/poedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/poedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/poedit) | -| | [***pog***](apps/pog.md) | *A Kmk firmware flashing and configuration tool.*..[ *read more* ](apps/pog.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pog) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pog) | -| | [***poi***](apps/poi.md) | *Scalable KanColle browser and tool.*..[ *read more* ](apps/poi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/poi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/poi) | -| | [***pointless***](apps/pointless.md) | *An endless drawing canvas desktop app made with Tauri (Rust) and React.*..[ *read more* ](apps/pointless.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pointless) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pointless) | -| | [***pokeclicker***](apps/pokeclicker.md) | *PokéClicker with quality of life changes.*..[ *read more* ](apps/pokeclicker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokeclicker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokeclicker) | -| | [***pokeget-rs***](apps/pokeget-rs.md) | *A better rust version of pokeget. CLI.*..[ *read more* ](apps/pokeget-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokeget-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokeget-rs) | -| | [***pokego***](apps/pokego.md) | *Command-line tool that lets you display Pokémon sprites in color directly in your terminal.*..[ *read more* ](apps/pokego.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokego) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokego) | -| | [***pokemmo***](apps/pokemmo.md) | *Unofficial, MMO based on the Pokémon Universe.*..[ *read more* ](apps/pokemmo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokemmo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokemmo) | -| | [***pokete***](apps/pokete.md) | *A terminal based Pokemon like game.*..[ *read more* ](apps/pokete.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokete) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokete) | -| | [***polar***](apps/polar.md) | *One-click Bitcoin Lightning networks for local app development.*..[ *read more* ](apps/polar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/polar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/polar) | -| | [***polkakey***](apps/polkakey.md) | *A secure way to generate Polkadot/Kusama/Edgeware address.*..[ *read more* ](apps/polkakey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/polkakey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/polkakey) | -| | [***polybar***](apps/polybar.md) | *Unofficial AppImage of polybar. A fast easy-to-use status bar.*..[ *read more* ](apps/polybar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/polybar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/polybar) | -| | [***polypane***](apps/polypane.md) | *Browser for web developers.*..[ *read more* ](apps/polypane.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/polypane) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/polypane) | -| | [***pomatez***](apps/pomatez.md) | *Stay Focused. Take a Break.*..[ *read more* ](apps/pomatez.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pomatez) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pomatez) | -| | [***pomodorolm***](apps/pomodorolm.md) | *A simple, good looking and multi-platform pomodoro tracker.*..[ *read more* ](apps/pomodorolm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pomodorolm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pomodorolm) | -| | [***pomotroid***](apps/pomotroid.md) | *Simple and visually-pleasing Pomodoro timer.*..[ *read more* ](apps/pomotroid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pomotroid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pomotroid) | -| | [***pop***](apps/pop.md) | *Send emails from your terminal.*..[ *read more* ](apps/pop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pop) | -| | [***popsicle***](apps/popsicle.md) | *Multiple USB File Flasher.*..[ *read more* ](apps/popsicle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/popsicle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/popsicle) | -| | [***portable2appimage***](apps/portable2appimage.md) | *Convert standalone, self-contained portable apps into AppImage packages.*..[ *read more* ](apps/portable2appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/portable2appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/portable2appimage) | -| | [***positron***](apps/positron.md) | *Manage your movie and show watchlist.*..[ *read more* ](apps/positron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/positron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/positron) | -| | [***postal***](apps/postal.md) | *Unofficial, Postal a quirky FPS shooter.*..[ *read more* ](apps/postal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/postal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/postal) | -| | [***postcat***](apps/postcat.md) | *An extensible API tool.*..[ *read more* ](apps/postcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/postcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/postcat) | -| | [***postman***](apps/postman.md) | *API platform for building and using APIs, AppImage.*..[ *read more* ](apps/postman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/postman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/postman) | -| | [***postybirb-plus***](apps/postybirb-plus.md) | *Helps artists post art to multiple websites more quickly.*..[ *read more* ](apps/postybirb-plus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/postybirb-plus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/postybirb-plus) | -| | [***postybirb***](apps/postybirb.md) | *Multimedia crossposter for multimedia websites.*..[ *read more* ](apps/postybirb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/postybirb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/postybirb) | -| | [***pot-desktop***](apps/pot-desktop.md) | *A cross-platform software for text translation and recognition.*..[ *read more* ](apps/pot-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pot-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pot-desktop) | -| | [***potatopresenter***](apps/potatopresenter.md) | *Create presentation slides and exported as PDF.*..[ *read more* ](apps/potatopresenter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/potatopresenter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/potatopresenter) | -| | [***powder-toy***](apps/powder-toy.md) | *AppImage build of The Powder Toy built from source.*..[ *read more* ](apps/powder-toy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/powder-toy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/powder-toy) | -| | [***powerliminals-player***](apps/powerliminals-player.md) | *Powerliminal audios in the background, Audio player.*..[ *read more* ](apps/powerliminals-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/powerliminals-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/powerliminals-player) | -| | [***powershell***](apps/powershell.md) | *Microsoft PowerShell.*..[ *read more* ](apps/powershell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/powershell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/powershell) | -| | [***ppet3***](apps/ppet3.md) | *Put a cute girl on your desk for more fun.*..[ *read more* ](apps/ppet3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ppet3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ppet3) | -| | [***ppsspp***](apps/ppsspp.md) | *PSP emulator written in C++.*..[ *read more* ](apps/ppsspp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ppsspp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ppsspp) | -| | [***pr***](apps/pr.md) | *Files for printing. This is part of "am-utils" suite.*..[ *read more* ](apps/pr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pr) | -| | [***pragtical***](apps/pragtical.md) | *The practical and pragmatic code editor.*..[ *read more* ](apps/pragtical.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pragtical) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pragtical) | -| | [***pretty-handy-privacy***](apps/pretty-handy-privacy.md) | *User interface for basic encryption tasks.*..[ *read more* ](apps/pretty-handy-privacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pretty-handy-privacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pretty-handy-privacy) | -| | [***prey2006***](apps/prey2006.md) | *Unofficial, Prey 2006 SDK integrated with Doom 3 GPL release.*..[ *read more* ](apps/prey2006.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prey2006) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prey2006) | -| | [***primate***](apps/primate.md) | *A modern dashboard for Kong Gateway admins.*..[ *read more* ](apps/primate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/primate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/primate) | -| | [***prime-world-editor***](apps/prime-world-editor.md) | *Edit world assets from games by Retro Studios.*..[ *read more* ](apps/prime-world-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prime-world-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prime-world-editor) | -| | [***primehack***](apps/primehack.md) | *Unofficial AppImage of the PrimeHack emulator.*..[ *read more* ](apps/primehack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/primehack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/primehack) | -| | [***principia***](apps/principia.md) | *Open source physics-based sandbox game.*..[ *read more* ](apps/principia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/principia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/principia) | -| | [***printenv***](apps/printenv.md) | *Print all or part of environment. This is part of "am-utils" suite.*..[ *read more* ](apps/printenv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/printenv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/printenv) | -| | [***printerclient***](apps/printerclient.md) | *A printer client.*..[ *read more* ](apps/printerclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/printerclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/printerclient) | -| | [***printf***](apps/printf.md) | *Format and print data. This is part of "am-utils" suite.*..[ *read more* ](apps/printf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/printf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/printf) | -| | [***printventory***](apps/printventory.md) | *The ultimate tool for managing your 3D printing collection with ease. Sort, tag, and track your models in one place.*..[ *read more* ](apps/printventory.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/printventory) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/printventory) | -| | [***prisma-studio***](apps/prisma-studio.md) | *The easiest way to explore and manipulate your data.*..[ *read more* ](apps/prisma-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prisma-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prisma-studio) | -| | [***prismlauncher-enhanced***](apps/prismlauncher-enhanced.md) | *Unofficial, a custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once (Fork of MultiMC).*..[ *read more* ](apps/prismlauncher-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prismlauncher-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prismlauncher-enhanced) | -| | [***prismlauncher-qt5***](apps/prismlauncher-qt5.md) | *Launcher for Minecraft, manage multiple installations (Qt5 version).*..[ *read more* ](apps/prismlauncher-qt5.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prismlauncher-qt5) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prismlauncher-qt5) | -| | [***prismlauncher***](apps/prismlauncher.md) | *Launcher for Minecraft, manage multiple installations.*..[ *read more* ](apps/prismlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prismlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prismlauncher) | -| | [***privacy.sexy***](apps/privacy.sexy.md) | *Tool to enforce privacy & security best-practices.*..[ *read more* ](apps/privacy.sexy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/privacy.sexy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/privacy.sexy) | -| | [***privaxy***](apps/privaxy.md) | *The next generation tracker and ads/advertisement blocker.*..[ *read more* ](apps/privaxy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/privaxy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/privaxy) | -| | [***probe-desktop***](apps/probe-desktop.md) | *The next generation OONI Probe desktop app.*..[ *read more* ](apps/probe-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/probe-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/probe-desktop) | -| | [***procdepmonitor***](apps/procdepmonitor.md) | *Obtaining information about loaded process dependencies.*..[ *read more* ](apps/procdepmonitor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/procdepmonitor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/procdepmonitor) | -| | [***procs***](apps/procs.md) | *A modern replacement for ps written in Rust.*..[ *read more* ](apps/procs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/procs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/procs) | -| | [***procspin***](apps/procspin.md) | *CLI to create a process/progress animation with text.*..[ *read more* ](apps/procspin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/procspin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/procspin) | -| | [***procyon***](apps/procyon.md) | *Note Keeper.*..[ *read more* ](apps/procyon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/procyon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/procyon) | -| | [***programmer-browser***](apps/programmer-browser.md) | *A fast-searching and space-saving browser specially designed for programmers.*..[ *read more* ](apps/programmer-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/programmer-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/programmer-browser) | -| | [***promethium***](apps/promethium.md) | *Extensible and innovative web browser with built-in AdBlock.*..[ *read more* ](apps/promethium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/promethium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/promethium) | -| | [***proofkeeper***](apps/proofkeeper.md) | *Desktop tool to automate proof management.*..[ *read more* ](apps/proofkeeper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/proofkeeper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/proofkeeper) | -| | [***prospect-mail***](apps/prospect-mail.md) | *An Outlook mail desktop client powered by Electron.*..[ *read more* ](apps/prospect-mail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prospect-mail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prospect-mail) | -| | [***protocol_10***](apps/protocol_10.md) | *A mod decompiler for frosty tool suite.*..[ *read more* ](apps/protocol_10.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/protocol_10) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/protocol_10) | -| | [***protoman***](apps/protoman.md) | *A Postman-like API client for protobuf-based messages.*..[ *read more* ](apps/protoman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/protoman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/protoman) | -| | [***protonmail-desktop***](apps/protonmail-desktop.md) | *Unofficial Electron wrapper for ProtonMail.*..[ *read more* ](apps/protonmail-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/protonmail-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/protonmail-desktop) | -| | [***protontricks***](apps/protontricks.md) | *Unofficial AppImage of Protontricks.*..[ *read more* ](apps/protontricks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/protontricks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/protontricks) | -| | [***protonup-qt***](apps/protonup-qt.md) | *Manage Proton-GE/Luxtorpeda for Steam/Wine-GE for Lutris.*..[ *read more* ](apps/protonup-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/protonup-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/protonup-qt) | -| | [***proxy-master***](apps/proxy-master.md) | *Set and reset your proxy settings EVERYWHERE.*..[ *read more* ](apps/proxy-master.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/proxy-master) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/proxy-master) | -| | [***proxyman***](apps/proxyman.md) | *Modern and Delightful HTTP Debugging Proxy.*..[ *read more* ](apps/proxyman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/proxyman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/proxyman) | -| | [***prusa-slicer***](apps/prusa-slicer.md) | *Prusa3d/PrusaSlicer, G-code generator for 3D printers.*..[ *read more* ](apps/prusa-slicer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prusa-slicer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prusa-slicer) | -| | [***psi+***](apps/psi+.md) | *Communicate over the XMPP network.*..[ *read more* ](apps/psi+.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/psi+) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/psi+) | -| | [***pstube***](apps/pstube.md) | *Watch and download videos without ads.*..[ *read more* ](apps/pstube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pstube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pstube) | -| | [***psydoom***](apps/psydoom.md) | *A backport of PSX Doom to PC.*..[ *read more* ](apps/psydoom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/psydoom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/psydoom) | -| | [***ptx***](apps/ptx.md) | *Permuted index of file contents. This is part of "am-utils" suite.*..[ *read more* ](apps/ptx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ptx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ptx) | -| | [***ptyxis***](apps/ptyxis.md) | *Unofficial AppImage of Ptyxis terminal.*..[ *read more* ](apps/ptyxis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ptyxis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ptyxis) | -| | [***publii***](apps/publii.md) | *A desktop-based CMS that makes creating static websites fast.*..[ *read more* ](apps/publii.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/publii) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/publii) | -| | [***puddletag***](apps/puddletag.md) | *Unofficial, Powerful, simple, audio tag editor for GNU/Linux.*..[ *read more* ](apps/puddletag.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/puddletag) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/puddletag) | -| | [***pullp***](apps/pullp.md) | *Pull request monitoring app for Github.*..[ *read more* ](apps/pullp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pullp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pullp) | -| | [***pulsar***](apps/pulsar.md) | *A Community-led Hyper-Hackable Text Editor.*..[ *read more* ](apps/pulsar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pulsar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pulsar) | -| | [***pulse***](apps/pulse.md) | *Pulse desktop client.*..[ *read more* ](apps/pulse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pulse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pulse) | -| | [***pulseview***](apps/pulseview.md) | *PulseView (sometimes abbreviated as "PV") is a Qt based logic analyzer, oscilloscope and MSO GUI for sigrok.*..[ *read more* ](apps/pulseview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pulseview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pulseview) | -| | [***punes***](apps/punes.md) | *Qt-based Nintendo Entertaiment System emulator and NSF/NSF2/NSFe Music Player.*..[ *read more* ](apps/punes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/punes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/punes) | -| | [***puppetry***](apps/puppetry.md) | *Solution for non-developers on top of Puppeteer and Jest.*..[ *read more* ](apps/puppetry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/puppetry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/puppetry) | -| | [***puush-qt***](apps/puush-qt.md) | *A GUI frontend for puush on Linux.*..[ *read more* ](apps/puush-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/puush-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/puush-qt) | -| | [***pwd***](apps/pwd.md) | *Print name of current/working directory. This is part of "am-utils" suite.*..[ *read more* ](apps/pwd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pwd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pwd) | -| | [***pyappimage***](apps/pyappimage.md) | *Simple appimage builder for Python applications.*..[ *read more* ](apps/pyappimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pyappimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pyappimage) | -| | [***pycharm***](apps/pycharm.md) | *Unofficial, PyCharm-community-edition in AppImage.*..[ *read more* ](apps/pycharm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pycharm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pycharm) | -| | [***pyfa***](apps/pyfa.md) | *EVE Online Fitting Assistant.*..[ *read more* ](apps/pyfa.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pyfa) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pyfa) | -| | [***pyglossary***](apps/pyglossary.md) | *Unofficial, A tool for converting dictionary files aka glossaries.*..[ *read more* ](apps/pyglossary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pyglossary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pyglossary) | -| | [***python***](apps/python.md) | *AppImage distributions of Python, an interactive high-level object-oriented language.*..[ *read more* ](apps/python.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/python) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/python) | -| | [***qaddapp***](apps/qaddapp.md) | *Qt5 Gui app that helps you add AppImages and binary archives into your Desktop environment.*..[ *read more* ](apps/qaddapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qaddapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qaddapp) | -| | [***qarma***](apps/qarma.md) | *Unofficial, Qarma is a tool to create dialog boxes, based on Qt. It's a clone of Zenity.*..[ *read more* ](apps/qarma.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qarma) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qarma) | -| | [***qaterialgallery***](apps/qaterialgallery.md) | *Demonstrate Qaterial library.*..[ *read more* ](apps/qaterialgallery.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qaterialgallery) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qaterialgallery) | -| | [***qaterialhotreload***](apps/qaterialhotreload.md) | *Qml HotReload software.*..[ *read more* ](apps/qaterialhotreload.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qaterialhotreload) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qaterialhotreload) | -| | [***qawl***](apps/qawl.md) | *Read the Holy Qur’ān whenever, wherever, however you like.*..[ *read more* ](apps/qawl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qawl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qawl) | -| | [***qbittorrent-enhanced***](apps/qbittorrent-enhanced.md) | *Unofficial qBittorrent Enhanced, based on qBittorrent.*..[ *read more* ](apps/qbittorrent-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qbittorrent-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qbittorrent-enhanced) | -| | [***qbittorrent***](apps/qbittorrent.md) | *A powerful QT-based Bittorrent Client, official AppImage.*..[ *read more* ](apps/qbittorrent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qbittorrent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qbittorrent) | -| | [***qdiskinfo***](apps/qdiskinfo.md) | *QDiskInfo is a frontend for smartctl. It provides a user experience similar to CrystalDiskInfo.*..[ *read more* ](apps/qdiskinfo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qdiskinfo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qdiskinfo) | -| | [***qdriverstation***](apps/qdriverstation.md) | *Cross-platform clone of the FRC Driver Station.*..[ *read more* ](apps/qdriverstation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qdriverstation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qdriverstation) | -| | [***qelectrotech***](apps/qelectrotech.md) | *Edit electrical diagrams.*..[ *read more* ](apps/qelectrotech.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qelectrotech) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qelectrotech) | -| | [***qemu-ppc***](apps/qemu-ppc.md) | *Run PowerPC operating systems on 64-bit Intel Linux hosts.*..[ *read more* ](apps/qemu-ppc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qemu-ppc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qemu-ppc) | -| | [***qemu***](apps/qemu.md) | *Unofficial, a generic and open source machine & userspace emulator and virtualizer, to run a virtual machines.*..[ *read more* ](apps/qemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qemu) | -| | [***qflipper***](apps/qflipper.md) | *Flipper Zero multitool for pentesters and geeks in a toy-like body.*..[ *read more* ](apps/qflipper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qflipper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qflipper) | -| | [***qfsm***](apps/qfsm.md) | *Qt Finite State Machine Designer.*..[ *read more* ](apps/qfsm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qfsm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qfsm) | -| | [***qgroundcontrol***](apps/qgroundcontrol.md) | *Ground control for unmanned vehicles.*..[ *read more* ](apps/qgroundcontrol.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qgroundcontrol) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qgroundcontrol) | -| | [***qikqr***](apps/qikqr.md) | *Minimal desktop app to create QR codes.*..[ *read more* ](apps/qikqr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qikqr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qikqr) | -| | [***qimgv***](apps/qimgv.md) | *Unofficial, Image viewer. Fast, easy to use. Optional video support.*..[ *read more* ](apps/qimgv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qimgv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qimgv) | -| | [***qmasterpassword***](apps/qmasterpassword.md) | *A password manager based on Qt.*..[ *read more* ](apps/qmasterpassword.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmasterpassword) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmasterpassword) | -| | [***qmediathekview***](apps/qmediathekview.md) | *An alternative front-end to the MediathekView database.*..[ *read more* ](apps/qmediathekview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmediathekview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmediathekview) | -| | [***qmidictl***](apps/qmidictl.md) | *MIDI Remote Controller via UDP/IP Multicast.*..[ *read more* ](apps/qmidictl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmidictl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmidictl) | -| | [***qmidinet***](apps/qmidinet.md) | *MIDI Network Gateway via UDP/IP Multicast.*..[ *read more* ](apps/qmidinet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmidinet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmidinet) | -| | [***qmmp***](apps/qmmp.md) | *Unofficial, Qt-based multimedia player.*..[ *read more* ](apps/qmmp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmmp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmmp) | -| | [***qmplay2-enhanced***](apps/qmplay2-enhanced.md) | *Unofficial, a video and audio player which can play most formats and codecs.*..[ *read more* ](apps/qmplay2-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmplay2-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmplay2-enhanced) | -| | [***qmplay2***](apps/qmplay2.md) | *Video and audio player whit support of most formats and codecs.*..[ *read more* ](apps/qmplay2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmplay2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmplay2) | -| | [***qnapi***](apps/qnapi.md) | *Qt-based, multi-engine, multi-platform subtitle downloader.*..[ *read more* ](apps/qnapi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qnapi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qnapi) | -| | [***qortal-ui***](apps/qortal-ui.md) | *Decentralize the world, data storage, communications.*..[ *read more* ](apps/qortal-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qortal-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qortal-ui) | -| | [***qownnotes***](apps/qownnotes.md) | *Plain text notepad and todo list manager.*..[ *read more* ](apps/qownnotes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qownnotes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qownnotes) | -| | [***qpdf***](apps/qpdf.md) | *CLI tool to perform content-preserving transformations on PDF files.*..[ *read more* ](apps/qpdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qpdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qpdf) | -| | [***qppcad***](apps/qppcad.md) | *Molecule and crystal editor written in c++*..[ *read more* ](apps/qppcad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qppcad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qppcad) | -| | [***qprompt***](apps/qprompt.md) | *Personal teleprompter software for all video creators.*..[ *read more* ](apps/qprompt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qprompt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qprompt) | -| | [***qr-code-generator***](apps/qr-code-generator.md) | *Create custom QR Codes, resize, save them as PNG image.*..[ *read more* ](apps/qr-code-generator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qr-code-generator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qr-code-generator) | -| | [***qrscan***](apps/qrscan.md) | *Scan a QR code in the terminal using the system camera or an image.*..[ *read more* ](apps/qrscan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qrscan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qrscan) | -| | [***qsdrswr***](apps/qsdrswr.md) | *Qt SWR analyser using an SDR and soapy_power.*..[ *read more* ](apps/qsdrswr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qsdrswr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qsdrswr) | -| | [***qt-dab***](apps/qt-dab.md) | *Listening to terrestrial Digital Audio Broadcasting.*..[ *read more* ](apps/qt-dab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qt-dab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qt-dab) | -| | [***qt-raster-lines***](apps/qt-raster-lines.md) | *Lines between points using rasterization, DDA, Bresenham.*..[ *read more* ](apps/qt-raster-lines.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qt-raster-lines) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qt-raster-lines) | -| | [***qtads***](apps/qtads.md) | *A cross-platform, multimedia interpreter for TADS adventure games.*..[ *read more* ](apps/qtads.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtads) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtads) | -| | [***qtalarm***](apps/qtalarm.md) | *Alarm clock for Computers.*..[ *read more* ](apps/qtalarm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtalarm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtalarm) | -| | [***qtchan***](apps/qtchan.md) | *4chan browser in qt5.*..[ *read more* ](apps/qtchan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtchan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtchan) | -| | [***qtcreator***](apps/qtcreator.md) | *Unofficial, lightweight, cross-platform integrated development environment.*..[ *read more* ](apps/qtcreator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtcreator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtcreator) | -| | [***qterminal***](apps/qterminal.md) | *Unofficial. A lightweight Qt terminal emulator based on QTermWidget.*..[ *read more* ](apps/qterminal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qterminal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qterminal) | -| | [***qtjsondiff***](apps/qtjsondiff.md) | *Json difference checker widget and viewer.*..[ *read more* ](apps/qtjsondiff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtjsondiff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtjsondiff) | -| | [***qtox***](apps/qtox.md) | *Qt 5 based Tox instant messenger for secure communication.*..[ *read more* ](apps/qtox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtox) | -| | [***qtrfpowermeter***](apps/qtrfpowermeter.md) | *Improve usage of chinese RF power meter RF8000.*..[ *read more* ](apps/qtrfpowermeter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtrfpowermeter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtrfpowermeter) | -| | [***quamodbusclient***](apps/quamodbusclient.md) | *Modbus to OPC UA Gateway*..[ *read more* ](apps/quamodbusclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quamodbusclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quamodbusclient) | -| | [***quantumlauncher-enhanced***](apps/quantumlauncher-enhanced.md) | *Unofficial, a simple, powerful Minecraft launcher.*..[ *read more* ](apps/quantumlauncher-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quantumlauncher-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quantumlauncher-enhanced) | -| | [***quark-player***](apps/quark-player.md) | *An Electron based Web Video Services Player.*..[ *read more* ](apps/quark-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quark-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quark-player) | -| | [***quark***](apps/quark.md) | *Sketchbook for rapid prototyping and development of your projects.*..[ *read more* ](apps/quark.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quark) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quark) | -| | [***quarto-cli***](apps/quarto-cli.md) | *Scientific and technical publishing system built on Pandoc.*..[ *read more* ](apps/quarto-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quarto-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quarto-cli) | -| | [***quaternion***](apps/quaternion.md) | *A Qt5-based IM client for Matrix.*..[ *read more* ](apps/quaternion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quaternion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quaternion) | -| | [***quba***](apps/quba.md) | *A viewer for electronic invoices.*..[ *read more* ](apps/quba.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quba) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quba) | -| | [***qucs-s***](apps/qucs-s.md) | *An Universal GUI for Circuit Simulators.*..[ *read more* ](apps/qucs-s.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qucs-s) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qucs-s) | -| | [***quentier***](apps/quentier.md) | *Note taking app integrated with Evernote.*..[ *read more* ](apps/quentier.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quentier) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quentier) | -| | [***quick-clone***](apps/quick-clone.md) | *Search through gitlab and clone git-repositories.*..[ *read more* ](apps/quick-clone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quick-clone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quick-clone) | -| | [***quickgui***](apps/quickgui.md) | *An elegant virtual machine manager for the desktop.*..[ *read more* ](apps/quickgui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quickgui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quickgui) | -| | [***quicknote***](apps/quicknote.md) | *QuickNote helps to paste some random text or take some notes right from your taskbar!*..[ *read more* ](apps/quicknote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quicknote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quicknote) | -| | [***quickredis***](apps/quickredis.md) | *A free Redis Desktop manager.*..[ *read more* ](apps/quickredis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quickredis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quickredis) | -| | [***quickshell***](apps/quickshell.md) | *Unofficial AppImage of Quickshell.*..[ *read more* ](apps/quickshell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quickshell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quickshell) | -| | [***quicktwitch***](apps/quicktwitch.md) | *Electron React Redux Boilerplate.*..[ *read more* ](apps/quicktwitch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quicktwitch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quicktwitch) | -| | [***quickviewer***](apps/quickviewer.md) | *A image viewer application for folders/archives.*..[ *read more* ](apps/quickviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quickviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quickviewer) | -| | [***quiet***](apps/quiet.md) | *A private, p2p alternative to Slack and Discord built on Tor & IPFS*..[ *read more* ](apps/quiet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quiet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quiet) | -| | [***quokkagit***](apps/quokkagit.md) | *A small, TortoiseGit inspired git log viewer for linux.*..[ *read more* ](apps/quokkagit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quokkagit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quokkagit) | -| | [***quran-companion***](apps/quran-companion.md) | *Free and open-source desktop Quran reader and player.*..[ *read more* ](apps/quran-companion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quran-companion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quran-companion) | -| | [***qv2ray***](apps/qv2ray.md) | *Cross-platform v2ray GUI Client in Qt.*..[ *read more* ](apps/qv2ray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qv2ray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qv2ray) | -| | [***qview***](apps/qview.md) | *Practical and minimal image viewer.*..[ *read more* ](apps/qview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qview) | -| | [***qxgedit***](apps/qxgedit.md) | *QXGEdit is a Qt GUI XG editor application.*..[ *read more* ](apps/qxgedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qxgedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qxgedit) | -| | [***r2modman***](apps/r2modman.md) | *Mod manager for several Unity games using Thunderstore.*..[ *read more* ](apps/r2modman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/r2modman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/r2modman) | -| | [***r3play***](apps/r3play.md) | *High-value third-party Netease cloud player, chinese.*..[ *read more* ](apps/r3play.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/r3play) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/r3play) | -| | [***rabix-composer***](apps/rabix-composer.md) | *A desktop IDE for working with Common Workflow Language.*..[ *read more* ](apps/rabix-composer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rabix-composer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rabix-composer) | -| | [***radioit***](apps/radioit.md) | *Automation software for Radios.*..[ *read more* ](apps/radioit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/radioit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/radioit) | -| | [***radix-wallet***](apps/radix-wallet.md) | *Radix DLT desktop wallet.*..[ *read more* ](apps/radix-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/radix-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/radix-wallet) | -| | [***rainbow-board***](apps/rainbow-board.md) | *22nd Century Whiteboard App.*..[ *read more* ](apps/rainbow-board.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rainbow-board) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rainbow-board) | -| | [***rambox***](apps/rambox.md) | *Free and Open Source messaging and emailing app.*..[ *read more* ](apps/rambox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rambox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rambox) | -| | [***ranlib***](apps/ranlib.md) | *Index to an archive. This is part of "am-utils" suite.*..[ *read more* ](apps/ranlib.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ranlib) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ranlib) | -| | [***rapidraw***](apps/rapidraw.md) | *A beautiful, non-destructive, and GPU-accelerated RAW image editor built with performance in mind.*..[ *read more* ](apps/rapidraw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rapidraw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rapidraw) | -| | [***raptor***](apps/raptor.md) | *Unofficial, reversed-engineered source port from Raptor Call Of The Shadows.*..[ *read more* ](apps/raptor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/raptor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/raptor) | -| | [***rare***](apps/rare.md) | *GUI for legendary. An Epic Games Launcher open source alternative.*..[ *read more* ](apps/rare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rare) | -| | [***raspberry-pi-imager-cli***](apps/raspberry-pi-imager-cli.md) | *The home of Raspberry Pi Imager, a user-friendly tool for creating bootable media for Raspberry Pi devices. CLI edition.*..[ *read more* ](apps/raspberry-pi-imager-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/raspberry-pi-imager-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/raspberry-pi-imager-cli) | -| | [***raspberry-pi-imager***](apps/raspberry-pi-imager.md) | *The home of Raspberry Pi Imager, a user-friendly tool for creating bootable media for Raspberry Pi devices. Desktop edition.*..[ *read more* ](apps/raspberry-pi-imager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/raspberry-pi-imager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/raspberry-pi-imager) | -| | [***raspirus***](apps/raspirus.md) | *A user and resources-friendly signatures-based malware scanner.*..[ *read more* ](apps/raspirus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/raspirus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/raspirus) | -| | [***rasterdraw***](apps/rasterdraw.md) | *Simple shape drawn using rasterisation.*..[ *read more* ](apps/rasterdraw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rasterdraw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rasterdraw) | -| | [***rasterview***](apps/rasterview.md) | *Raster Viewer for CUPS-Raster, Apple-Raster and PWG-Raster.*..[ *read more* ](apps/rasterview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rasterview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rasterview) | -| | [***rats-search***](apps/rats-search.md) | *P2P BitTorrent search engine.*..[ *read more* ](apps/rats-search.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rats-search) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rats-search) | -| | [***rawtherapee***](apps/rawtherapee.md) | *An advanced raw photo development program.*..[ *read more* ](apps/rawtherapee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rawtherapee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rawtherapee) | -| | [***rbdl-toolkit***](apps/rbdl-toolkit.md) | *Application for visualizing and working with rbdl models.*..[ *read more* ](apps/rbdl-toolkit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rbdl-toolkit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rbdl-toolkit) | -| | [***rbdoom-3***](apps/rbdoom-3.md) | *Doom 3 BFG Edition source port with updated DX12/Vulkan renderer.*..[ *read more* ](apps/rbdoom-3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rbdoom-3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rbdoom-3) | -| | [***rbw***](apps/rbw.md) | *Unofficial Bitwarden password manager cli.*..[ *read more* ](apps/rbw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rbw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rbw) | -| | [***rclip***](apps/rclip.md) | *AI-Powered Semantic Photo Search for the Command Line.*..[ *read more* ](apps/rclip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rclip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rclip) | -| | [***rclone-browser***](apps/rclone-browser.md) | *Simple cross platform GUI for rclone.*..[ *read more* ](apps/rclone-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rclone-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rclone-browser) | -| | [***rclone-gui-manager***](apps/rclone-gui-manager.md) | *A simple, modern graphical user interface for managing rclone remotes for Linux.*..[ *read more* ](apps/rclone-gui-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rclone-gui-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rclone-gui-manager) | -| | [***rclone-ui***](apps/rclone-ui.md) | *The cross-platform desktop GUI for rclone & S3.*..[ *read more* ](apps/rclone-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rclone-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rclone-ui) | -| | [***rclone***](apps/rclone.md) | *"rsync for cloud storage", CLI that supports Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Wasabi, Google Cloud Storage, Azure Blob, Azure Files, Yandex Files.*..[ *read more* ](apps/rclone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rclone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rclone) | -| | [***rcloneview***](apps/rcloneview.md) | *The ultimate GUI for Cloud Data Sync and File Management. Effortlessly browse, organize, transfer files across your cloud storages.*..[ *read more* ](apps/rcloneview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rcloneview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rcloneview) | -| | [***reactotron***](apps/reactotron.md) | *Reactotron desktop mode engage.*..[ *read more* ](apps/reactotron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/reactotron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/reactotron) | -| | [***readelf***](apps/readelf.md) | *About ELF files. This is part of "am-utils" suite.*..[ *read more* ](apps/readelf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readelf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readelf) | -| | [***readest-enhanced***](apps/readest-enhanced.md) | *Unofficial, an enhanced version of Readest, a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience.*..[ *read more* ](apps/readest-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readest-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readest-enhanced) | -| | [***readest***](apps/readest.md) | *Readest is a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience.*..[ *read more* ](apps/readest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readest) | -| | [***readlink***](apps/readlink.md) | *Print resolved symbolic links or canonical file. This is part of "am-utils" suite.*..[ *read more* ](apps/readlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readlink) | -| | [***real-video-enhancer***](apps/real-video-enhancer.md) | *Interpolate and Upscale easily.*..[ *read more* ](apps/real-video-enhancer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/real-video-enhancer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/real-video-enhancer) | -| | [***realm-studio***](apps/realm-studio.md) | *A tool for everything Realm.*..[ *read more* ](apps/realm-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/realm-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/realm-studio) | -| | [***realpath***](apps/realpath.md) | *Print the resolved path. This is part of "am-utils" suite.*..[ *read more* ](apps/realpath.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/realpath) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/realpath) | -| | [***reaper***](apps/reaper.md) | *A complete digital audio production app, offering a full multitrack audio and MIDI recording, editing, processing, mixing and mastering toolset.*..[ *read more* ](apps/reaper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/reaper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/reaper) | -| | [***rebaslight***](apps/rebaslight.md) | *An easy to use special effects video editor.*..[ *read more* ](apps/rebaslight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rebaslight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rebaslight) | -| | [***rebos***](apps/rebos.md) | *Rebos is a tool that aims at mimicking what NixOS does (repeatability), for any Linux distribution.*..[ *read more* ](apps/rebos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rebos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rebos) | -| | [***reco***](apps/reco.md) | *Unofficial, An audio recorder focused on being concise and simple to use*..[ *read more* ](apps/reco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/reco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/reco) | -| | [***recoll***](apps/recoll.md) | *Full-text search for your desktop.*..[ *read more* ](apps/recoll.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/recoll) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/recoll) | -| | [***record-compare***](apps/record-compare.md) | *Record Compare.*..[ *read more* ](apps/record-compare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/record-compare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/record-compare) | -| | [***recordscript***](apps/recordscript.md) | *Cross-platform screen recorder, transcript, subtitle.*..[ *read more* ](apps/recordscript.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/recordscript) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/recordscript) | -| | [***redact***](apps/redact.md) | *Application to mass delete your account posts from different social media.*..[ *read more* ](apps/redact.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/redact) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/redact) | -| | [***redeclipse***](apps/redeclipse.md) | *A great first person 3D arena shooter with online support, game.*..[ *read more* ](apps/redeclipse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/redeclipse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/redeclipse) | -| | [***redis-gui***](apps/redis-gui.md) | *Modern graphical user interface to peek into redis DB.*..[ *read more* ](apps/redis-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/redis-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/redis-gui) | -| | [***redis-viewer***](apps/redis-viewer.md) | *A Redis visualization client tool.*..[ *read more* ](apps/redis-viewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/redis-viewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/redis-viewer) | -| | [***rednukem***](apps/rednukem.md) | *Unofficial, a port of serveral BUILD Engine games based on EDuke32.*..[ *read more* ](apps/rednukem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rednukem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rednukem) | -| | [***redriver2***](apps/redriver2.md) | *Unofficial, Driver 2 Playstation game reverse engineering effort.*..[ *read more* ](apps/redriver2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/redriver2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/redriver2) | -| | [***rehex***](apps/rehex.md) | *Reverse Engineers' Hex Editor.*..[ *read more* ](apps/rehex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rehex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rehex) | -| | [***remind-me-again***](apps/remind-me-again.md) | *Toggleable cron reminders app.*..[ *read more* ](apps/remind-me-again.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/remind-me-again) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/remind-me-again) | -| | [***remnote***](apps/remnote.md) | *Make flashcards in your notes. Cut study time in half. Use evidence-based memory techniques to create flashcards that resurface at the best time for retention.*..[ *read more* ](apps/remnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/remnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/remnote) | -| | [***rendertune***](apps/rendertune.md) | *Electron app that uses ffmpeg to combine audio.+image files into video files.*..[ *read more* ](apps/rendertune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rendertune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rendertune) | -| | [***renpy***](apps/renpy.md) | *Unofficial, visual novel engine Ren'Py.*..[ *read more* ](apps/renpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/renpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/renpy) | -| | [***reor***](apps/reor.md) | *AI note-taking app that runs models locally.*..[ *read more* ](apps/reor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/reor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/reor) | -| | [***repath-studio***](apps/repath-studio.md) | *A cross-platform vector graphics editor.*..[ *read more* ](apps/repath-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/repath-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/repath-studio) | -| | [***repetier-host***](apps/repetier-host.md) | *Repetier-Host is a 3D printing application developed by Hot-World GmbH & Co. KG.*..[ *read more* ](apps/repetier-host.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/repetier-host) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/repetier-host) | -| | [***reqable***](apps/reqable.md) | *Advanced API Debugging Proxy and REST Client.*..[ *read more* ](apps/reqable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/reqable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/reqable) | -| | [***responsively***](apps/responsively.md) | *A browser for developing responsive web apps.*..[ *read more* ](apps/responsively.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/responsively) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/responsively) | -| | [***retroarch-nightly***](apps/retroarch-nightly.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch-nightly) | -| | [***retroarch-qt-nightly***](apps/retroarch-qt-nightly.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch-qt-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch-qt-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch-qt-nightly) | -| | [***retroarch-qt***](apps/retroarch-qt.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch-qt) | -| | [***retroarch***](apps/retroarch.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch) | -| | [***retrom***](apps/retrom.md) | *A centralized game library/collection management service with a focus on emulation.*..[ *read more* ](apps/retrom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retrom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retrom) | -| | [***retroshare***](apps/retroshare.md) | *Securely share files with your friends.*..[ *read more* ](apps/retroshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroshare) | -| | [***retrovibed***](apps/retrovibed.md) | *Personal Digital Archive and Media Player with at cost cloud storage backend.*..[ *read more* ](apps/retrovibed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retrovibed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retrovibed) | -| | [***rev***](apps/rev.md) | *Reverse lines characterwise. This is part of "am-utils" suite.*..[ *read more* ](apps/rev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rev) | -| | [***revealgo***](apps/revealgo.md) | *Markdown driven presentation tool written in Go!*..[ *read more* ](apps/revealgo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/revealgo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/revealgo) | -| | [***revolt***](apps/revolt.md) | *Revolt Desktop App.*..[ *read more* ](apps/revolt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/revolt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/revolt) | -| | [***rewaita***](apps/rewaita.md) | *Unofficial, rewaita gives your Adwaita apps a fresh look by tinting them with popular color schemes.*..[ *read more* ](apps/rewaita.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rewaita) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rewaita) | -| | [***rgitui***](apps/rgitui.md) | *A GPU-accelerated desktop Git client built in Rust with GPUI.*..[ *read more* ](apps/rgitui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rgitui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rgitui) | -| | [***rhb***](apps/rhb.md) | *Rapid HTML Builder/Prototyper.*..[ *read more* ](apps/rhb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rhb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rhb) | -| | [***rhythmbox***](apps/rhythmbox.md) | *The popular Audio Player Rhythmbox.*..[ *read more* ](apps/rhythmbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rhythmbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rhythmbox) | -| | [***ricochet***](apps/ricochet.md) | *Anonymous peer-to-peer instant messaging.*..[ *read more* ](apps/ricochet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ricochet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ricochet) | -| | [***ricochlime***](apps/ricochlime.md) | *Satisfying slime shooter.*..[ *read more* ](apps/ricochlime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ricochlime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ricochlime) | -| | [***ridereceipts***](apps/ridereceipts.md) | *Automation app to download and organize your tax invoices.*..[ *read more* ](apps/ridereceipts.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ridereceipts) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ridereceipts) | -| | [***rift***](apps/rift.md) | *All your EVE Online intel in one place.*..[ *read more* ](apps/rift.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rift) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rift) | -| | [***rigelengine***](apps/rigelengine.md) | *Unofficial, modern re-implementation of DOS game Duke Nukem II.*..[ *read more* ](apps/rigelengine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rigelengine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rigelengine) | -| | [***rigs-of-rods***](apps/rigs-of-rods.md) | *Unofficial, an open source vehicle simulator based on soft-body physics.*..[ *read more* ](apps/rigs-of-rods.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rigs-of-rods) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rigs-of-rods) | -| | [***rimage***](apps/rimage.md) | *This is CLI tool inspired by squoosh.*..[ *read more* ](apps/rimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rimage) | -| | [***ripcord***](apps/ripcord.md) | *Chat client for group-centric services like Slack and Discord.*..[ *read more* ](apps/ripcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ripcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ripcord) | -| | [***ripes***](apps/ripes.md) | *Graphical processor simulator and assembly editor for the RISC-V ISA.*..[ *read more* ](apps/ripes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ripes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ripes) | -| | [***ripgrep-all***](apps/ripgrep-all.md) | *A ripgrep version to also search in documents and archives.*..[ *read more* ](apps/ripgrep-all.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ripgrep-all) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ripgrep-all) | -| | [***ripgrep***](apps/ripgrep.md) | *Search directories for regex pattern while respecting gitignore.*..[ *read more* ](apps/ripgrep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ripgrep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ripgrep) | -| | [***riseup-vpn***](apps/riseup-vpn.md) | *Unofficial, RiseupVPN is an easy, fast, and secure VPN service from riseup.net.*..[ *read more* ](apps/riseup-vpn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/riseup-vpn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/riseup-vpn) | -| | [***ristretto***](apps/ristretto.md) | *Unofficial. Image viewer by Xfce that can be used to view and scroll through images.*..[ *read more* ](apps/ristretto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ristretto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ristretto) | -| | [***rm***](apps/rm.md) | *Remove files or directories. This is part of "am-utils" suite.*..[ *read more* ](apps/rm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rm) | -| | [***rmdir***](apps/rmdir.md) | *Remove empty directories. This is part of "am-utils" suite.*..[ *read more* ](apps/rmdir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rmdir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rmdir) | -| | [***rmg-enhanced***](apps/rmg-enhanced.md) | *Unofficial AppImage of RMG N64 emulator wtih x86-64-v3 optimizations and smaller size.*..[ *read more* ](apps/rmg-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rmg-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rmg-enhanced) | -| | [***rmg***](apps/rmg.md) | *Rosalie's Mupen GUI.*..[ *read more* ](apps/rmg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rmg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rmg) | -| | [***rmw***](apps/rmw.md) | *A safe-remove utility for the command line.*..[ *read more* ](apps/rmw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rmw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rmw) | -| | [***rnote***](apps/rnote.md) | *Unofficial, Rnote is a vector-based drawing app for sketching, handwritten notes and to annotate documents and pictures.*..[ *read more* ](apps/rnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rnote) | -| | [***roborock-control-center***](apps/roborock-control-center.md) | *Control Your Xiaomi Vacuum.*..[ *read more* ](apps/roborock-control-center.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/roborock-control-center) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/roborock-control-center) | -| | [***robrix***](apps/robrix.md) | *A multi-platform Matrix chat client written in Rust, using the Makepad UI toolkit and the Robius app dev framework.*..[ *read more* ](apps/robrix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/robrix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/robrix) | -| | [***rock.so***](apps/rock.so.md) | *Messaging + Tasks.*..[ *read more* ](apps/rock.so.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rock.so) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rock.so) | -| | [***rocketfetch***](apps/rocketfetch.md) | *A WIP command line system information tool written with multithreading in rust for performance with toml file configuration.*..[ *read more* ](apps/rocketfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rocketfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rocketfetch) | -| | [***rocksndiamonds***](apps/rocksndiamonds.md) | *Unofficial, an open source arcade style game of Boulder Dash, Emerald Mine, and Sokoban.*..[ *read more* ](apps/rocksndiamonds.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rocksndiamonds) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rocksndiamonds) | -| | [***rofi***](apps/rofi.md) | *Unofficial, A window switcher, runs dialogs, dmenu like, etc.*..[ *read more* ](apps/rofi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rofi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rofi) | -| | [***roller***](apps/roller.md) | *Unofficial, reverse engineering the 1995 game Whiplash/Fatal Racing.*..[ *read more* ](apps/roller.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/roller) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/roller) | -| | [***roloviewer***](apps/roloviewer.md) | *Image slideshow viewer.*..[ *read more* ](apps/roloviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/roloviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/roloviewer) | -| | [***root***](apps/root.md) | *Voice, video, and chat plus powerful apps that help your community organize, grow, and thrive. An alternative to Discord.*..[ *read more* ](apps/root.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/root) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/root) | -| | [***rotki***](apps/rotki.md) | *A portfolio tracking, asset analytics and tax reporting app.*..[ *read more* ](apps/rotki.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rotki) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rotki) | -| | [***rpan-studio***](apps/rpan-studio.md) | *OBS Studio with RPAN integration.*..[ *read more* ](apps/rpan-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rpan-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rpan-studio) | -| | [***rpcs3***](apps/rpcs3.md) | *An open-source PlayStation 3 emulator/debugger written in C++.*..[ *read more* ](apps/rpcs3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rpcs3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rpcs3) | -| | [***rquickshare***](apps/rquickshare.md) | *Rust implementation of NearbyShare/QuickShare from Android.*..[ *read more* ](apps/rquickshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rquickshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rquickshare) | -| | [***rrip***](apps/rrip.md) | *Bulk image downloader for reddit.*..[ *read more* ](apps/rrip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rrip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rrip) | -| | [***rsdkv3***](apps/rsdkv3.md) | *Unofficial, a Full Decompilation of Sonic CD (2011) & Retro Engine v3.*..[ *read more* ](apps/rsdkv3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rsdkv3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rsdkv3) | -| | [***rsdkv4***](apps/rsdkv4.md) | *Unofficial, a complete decompilation of Sonic 1 & Sonic 2 (2013) & Retro Engine v4.*..[ *read more* ](apps/rsdkv4.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rsdkv4) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rsdkv4) | -| | [***rssguard***](apps/rssguard.md) | *Feed reader which supports RSS/ATOM/JSON, no-webengine version.*..[ *read more* ](apps/rssguard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rssguard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rssguard) | -| | [***rtneuron***](apps/rtneuron.md) | *Framework for geometrically detailed neuron simulations.*..[ *read more* ](apps/rtneuron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rtneuron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rtneuron) | -| | [***rubikscube***](apps/rubikscube.md) | *Rubik's cube in OpenGL.*..[ *read more* ](apps/rubikscube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rubikscube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rubikscube) | -| | [***rucola***](apps/rucola.md) | *Terminal-based markdown note manager.*..[ *read more* ](apps/rucola.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rucola) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rucola) | -| | [***ruffle***](apps/ruffle.md) | *A Flash Player emulator written in Rust.*..[ *read more* ](apps/ruffle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ruffle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ruffle) | -| | [***runanode***](apps/runanode.md) | *Lets run a node.*..[ *read more* ](apps/runanode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/runanode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/runanode) | -| | [***runcon***](apps/runcon.md) | *With specified security context. This is part of "am-utils" suite.*..[ *read more* ](apps/runcon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/runcon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/runcon) | -| | [***runelite***](apps/runelite.md) | *Open source Old School RuneScape client.*..[ *read more* ](apps/runelite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/runelite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/runelite) | -| | [***runjs***](apps/runjs.md) | *JavaScript playground. Write code with Node.js & browser APIs access.*..[ *read more* ](apps/runjs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/runjs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/runjs) | -| | [***running-dinner-tool***](apps/running-dinner-tool.md) | *Running Dinner Tool.*..[ *read more* ](apps/running-dinner-tool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/running-dinner-tool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/running-dinner-tool) | -| | [***rustdesk-enhanced***](apps/rustdesk-enhanced.md) | *Unofficial, AppImage of remote desktop app which is able to work on any linux distro.*..[ *read more* ](apps/rustdesk-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rustdesk-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rustdesk-enhanced) | -| | [***rustdesk***](apps/rustdesk.md) | *Virtual/remote desktop infrastructure, like TeamViewer/Citrix.*..[ *read more* ](apps/rustdesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rustdesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rustdesk) | -| | [***rustdict***](apps/rustdict.md) | *A dictionary CLI tool in Rust inspired by BetaPictoris's dict.*..[ *read more* ](apps/rustdict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rustdict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rustdict) | -| | [***rusty-rain***](apps/rusty-rain.md) | *CLI, a cross platform matrix rain made with Rust.*..[ *read more* ](apps/rusty-rain.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rusty-rain) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rusty-rain) | -| | [***rustypaste***](apps/rustypaste.md) | *A minimal file upload/pastebin service.*..[ *read more* ](apps/rustypaste.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rustypaste) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rustypaste) | -| | [***rvgl***](apps/rvgl.md) | *Unofficial, a cross-platform rewrite/port of Re-Volt.*..[ *read more* ](apps/rvgl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rvgl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rvgl) | -| | [***rx-bin***](apps/rx-bin.md) | *A modern and extensible pixel editor implemented in Rust.*..[ *read more* ](apps/rx-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rx-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rx-bin) | -| | [***ryowallet***](apps/ryowallet.md) | *Modern GUI interface for Ryo Currency.*..[ *read more* ](apps/ryowallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ryowallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ryowallet) | -| | [***ryujinx-canary***](apps/ryujinx-canary.md) | *An open-source Nintendo Switch emulator, originally created by gdkchan, written in C# (Canary builds).*..[ *read more* ](apps/ryujinx-canary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ryujinx-canary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ryujinx-canary) | -| | [***ryujinx***](apps/ryujinx.md) | *An open-source Nintendo Switch emulator, originally created by gdkchan, written in C#.*..[ *read more* ](apps/ryujinx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ryujinx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ryujinx) | -| | [***s***](apps/s.md) | *Open a web search in your terminal.*..[ *read more* ](apps/s.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/s) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/s) | -| | [***s3drive***](apps/s3drive.md) | *Convert S3, SFTP, WebDAV or Rclone back-end into your encrypted storage.*..[ *read more* ](apps/s3drive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/s3drive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/s3drive) | -| | [***sabaki***](apps/sabaki.md) | *Modern, elegant, cross-platform Go/Baduk/Weiqi game board.*..[ *read more* ](apps/sabaki.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sabaki) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sabaki) | -| | [***saber***](apps/saber.md) | *A work-in-progress cross-platform libre handwritten notes app.*..[ *read more* ](apps/saber.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/saber) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/saber) | -| | [***sacdextractgui***](apps/sacdextractgui.md) | *Unofficial AppImage of SACDExtractGUI.*..[ *read more* ](apps/sacdextractgui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sacdextractgui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sacdextractgui) | -| | [***safe-multisig***](apps/safe-multisig.md) | *Allowing crypto users manage funds in a safer way.*..[ *read more* ](apps/safe-multisig.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/safe-multisig) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/safe-multisig) | -| | [***safelight***](apps/safelight.md) | *SafeLight is a modular image editing software that combines professional imaging tools with the customizability and modularity of modern IDEs to create a powerful, personalized editing workflow backed by an open-source community.*..[ *read more* ](apps/safelight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/safelight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/safelight) | -| | [***sameboy***](apps/sameboy.md) | *Unofficial AppImage of SameBoy.*..[ *read more* ](apps/sameboy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sameboy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sameboy) | -| | [***samira***](apps/samira.md) | *Steam achievement manager for Linux written with Tauri and Rust.*..[ *read more* ](apps/samira.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/samira) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/samira) | -| | [***samrewritten***](apps/samrewritten.md) | *Steam Achievement Manager For Linux. Rewritten in C++.*..[ *read more* ](apps/samrewritten.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/samrewritten) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/samrewritten) | -| | [***sanicball***](apps/sanicball.md) | *Unofficial, an extraordinarily fast racing game.*..[ *read more* ](apps/sanicball.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sanicball) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sanicball) | -| | [***saphyr***](apps/saphyr.md) | *A C++ like compiler.*..[ *read more* ](apps/saphyr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/saphyr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/saphyr) | -| | [***sas***](apps/sas.md) | *Tool to sandbox AppImages with bubblewrap easily.*..[ *read more* ](apps/sas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sas) | -| | [***sat***](apps/sat.md) | *Simple AppImage thumbnailer in POSIX shell*..[ *read more* ](apps/sat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sat) | -| | [***satisfactory***](apps/satisfactory.md) | *Satisfactory Mod Manager.*..[ *read more* ](apps/satisfactory.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/satisfactory) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/satisfactory) | -| | [***satty***](apps/satty.md) | *Unofficial, a screenshot annotation tool.*..[ *read more* ](apps/satty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/satty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/satty) | -| | [***saucedacity***](apps/saucedacity.md) | *Audio editor based on Audacity focusing on general improvements.*..[ *read more* ](apps/saucedacity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/saucedacity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/saucedacity) | -| | [***savvycan***](apps/savvycan.md) | *Facilitates reverse engineering of canbus captures.*..[ *read more* ](apps/savvycan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/savvycan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/savvycan) | -| | [***sayonara-player-enhanced***](apps/sayonara-player-enhanced.md) | *Unofficial, a small, clear and fast audio player.*..[ *read more* ](apps/sayonara-player-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sayonara-player-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sayonara-player-enhanced) | -| | [***sayonara***](apps/sayonara.md) | *Music player and music library admininstration.*..[ *read more* ](apps/sayonara.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sayonara) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sayonara) | -| | [***sbe***](apps/sbe.md) | *An unofficial Scrapbox desktop app.*..[ *read more* ](apps/sbe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sbe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sbe) | -| | [***sblauncher***](apps/sblauncher.md) | *Minecraft Launcher.*..[ *read more* ](apps/sblauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sblauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sblauncher) | -| | [***sc-controller***](apps/sc-controller.md) | *User-mode driver and GTK3 based GUI for Steam Controller.*..[ *read more* ](apps/sc-controller.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sc-controller) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sc-controller) | -| | [***scatter***](apps/scatter.md) | *Scatter desktop signature server.*..[ *read more* ](apps/scatter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scatter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scatter) | -| | [***scavengers***](apps/scavengers.md) | *Unity Roguelike tutorial, game.*..[ *read more* ](apps/scavengers.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scavengers) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scavengers) | -| | [***schildi-revenge***](apps/schildi-revenge.md) | *Matrix client for desktop written in Kotlin and using the Matrix Rust SDK.*..[ *read more* ](apps/schildi-revenge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/schildi-revenge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/schildi-revenge) | -| | [***school-sections***](apps/school-sections.md) | *This project was generated with Angular CLI v1.7.4.*..[ *read more* ](apps/school-sections.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/school-sections) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/school-sections) | -| | [***scilab***](apps/scilab.md) | *Scientific software package for numerical computations.*..[ *read more* ](apps/scilab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scilab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scilab) | -| | [***sciqlop***](apps/sciqlop.md) | *SciQLop is an ergonomic and efficient application to browse and label in situ plasma measurements from multi-mission satellite data.*..[ *read more* ](apps/sciqlop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sciqlop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sciqlop) | -| | [***scopy***](apps/scopy.md) | *A software oscilloscope and signal analysis toolset.*..[ *read more* ](apps/scopy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scopy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scopy) | -| | [***scraper***](apps/scraper.md) | *Simple desktop scraper app.*..[ *read more* ](apps/scraper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scraper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scraper) | -| | [***scratux***](apps/scratux.md) | *Linux client for scratch programming.*..[ *read more* ](apps/scratux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scratux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scratux) | -| | [***scrcpy***](apps/scrcpy.md) | *Display and control your Android device.*..[ *read more* ](apps/scrcpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scrcpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scrcpy) | -| | [***scrcpygui***](apps/scrcpygui.md) | *A user-friendly GUI for scrcpy with added functionalities.*..[ *read more* ](apps/scrcpygui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scrcpygui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scrcpygui) | -| | [***screenarc***](apps/screenarc.md) | *ScreenArc – Cross-platform screen recorder & editor with automatic cinematic zooms, mouse tracking, and effortless video creation.*..[ *read more* ](apps/screenarc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/screenarc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/screenarc) | -| | [***screencloud***](apps/screencloud.md) | *Capture and share screenshots easily.*..[ *read more* ](apps/screencloud.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/screencloud) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/screencloud) | -| | [***scribus***](apps/scribus.md) | *Powerful desktop publishing software.*..[ *read more* ](apps/scribus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scribus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scribus) | -| | [***scrite***](apps/scrite.md) | *Multilingual Screenplay Writing App from TERIFLIX.*..[ *read more* ](apps/scrite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scrite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scrite) | -| | [***scrum-retroboard***](apps/scrum-retroboard.md) | *Electron application based on React.*..[ *read more* ](apps/scrum-retroboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scrum-retroboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scrum-retroboard) | -| | [***scummvm***](apps/scummvm.md) | *Unofficial, A 'virtual machine' for several classic graphical point-and-click adventure games*..[ *read more* ](apps/scummvm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scummvm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scummvm) | -| | [***scytale***](apps/scytale.md) | *Scytale Desktop Client for Linux.*..[ *read more* ](apps/scytale.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scytale) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scytale) | -| | [***sd***](apps/sd.md) | *Intuitive find & replace CLI, sed alternative.*..[ *read more* ](apps/sd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sd) | -| | [***sdlpal***](apps/sdlpal.md) | *SDL-based reimplementation of the classic Chinese-language RPG known as PAL.*..[ *read more* ](apps/sdlpal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sdlpal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sdlpal) | -| | [***sdlpop***](apps/sdlpop.md) | *Unofficial, an open-source port of Prince of Persia.*..[ *read more* ](apps/sdlpop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sdlpop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sdlpop) | -| | [***seafile-cli***](apps/seafile-cli.md) | *Seafile CLI version. Beyond just syncing and sharing files, it lets you add custom file properties and organize your files in different views. With AI-powered automation for generating properties, Seafile offers a smarter, more efficient way to manage your files.*..[ *read more* ](apps/seafile-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seafile-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seafile-cli) | -| | [***seafile***](apps/seafile.md) | *Seafile GUI version. Beyond just syncing and sharing files, it lets you add custom file properties and organize your files in different views. With AI-powered automation for generating properties, Seafile offers a smarter, more efficient way to manage your files.*..[ *read more* ](apps/seafile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seafile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seafile) | -| | [***seanime***](apps/seanime.md) | *Open-source media server with a web interface and desktop app for anime and manga.*..[ *read more* ](apps/seanime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seanime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seanime) | -| | [***secops***](apps/secops.md) | *A Linux Desktop Application for managing security.*..[ *read more* ](apps/secops.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/secops) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/secops) | -| | [***secrets***](apps/secrets.md) | *Unofficial AppImage of the Secrets keepass and 2FA password manager.*..[ *read more* ](apps/secrets.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/secrets) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/secrets) | -| | [***sed***](apps/sed.md) | *GNU stream editor for filtering and transforming text. This is part of "am-utils" suite.*..[ *read more* ](apps/sed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sed) | -| | [***seedit***](apps/seedit.md) | *A GUI for plebbit similar to old.reddit.*..[ *read more* ](apps/seedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seedit) | -| | [***seismic***](apps/seismic.md) | *A taskbar app for displaying USGS magnitude 2.5+ earthquakes from the past day.*..[ *read more* ](apps/seismic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seismic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seismic) | -| | [***selenium-ide***](apps/selenium-ide.md) | *Open Source record and playback test automation for the web.*..[ *read more* ](apps/selenium-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/selenium-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/selenium-ide) | -| | [***sengi***](apps/sengi.md) | *A multi-account desktop client for Mastodon and Pleroma.*..[ *read more* ](apps/sengi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sengi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sengi) | -| | [***senpa-io-client***](apps/senpa-io-client.md) | *Official Client for Senpa.io*..[ *read more* ](apps/senpa-io-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/senpa-io-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/senpa-io-client) | -| | [***sentinel***](apps/sentinel.md) | *An open-source decentralized VPN network application.*..[ *read more* ](apps/sentinel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sentinel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sentinel) | -| | [***seq***](apps/seq.md) | *Print a sequence of numbers. This is part of "am-utils" suite.*..[ *read more* ](apps/seq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seq) | -| | [***ser-player***](apps/ser-player.md) | *Video player for SER files used for astronomy-imaging.*..[ *read more* ](apps/ser-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ser-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ser-player) | -| | [***serial-studio***](apps/serial-studio.md) | *Multi-purpose serial data view program.*..[ *read more* ](apps/serial-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serial-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serial-studio) | -| | [***serialplot***](apps/serialplot.md) | *Small and simple software for plotting data from serial port.*..[ *read more* ](apps/serialplot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serialplot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serialplot) | -| | [***serioussamtfe-vk***](apps/serioussamtfe-vk.md) | *Game engine for Serious Sam Classic, Vulkan support, TFE.*..[ *read more* ](apps/serioussamtfe-vk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serioussamtfe-vk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serioussamtfe-vk) | -| | [***serioussamtfe***](apps/serioussamtfe.md) | *Game engine for Serious Sam Classic, TFE.*..[ *read more* ](apps/serioussamtfe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serioussamtfe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serioussamtfe) | -| | [***serioussamtse-vk***](apps/serioussamtse-vk.md) | *Game engine for Serious Sam Classic, Vulkan support, TSE.*..[ *read more* ](apps/serioussamtse-vk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serioussamtse-vk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serioussamtse-vk) | -| | [***serioussamtse***](apps/serioussamtse.md) | *Game engine for Serious Sam Classic, TSE.*..[ *read more* ](apps/serioussamtse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serioussamtse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serioussamtse) | -| | [***servo***](apps/servo.md) | *Unofficial AppImage builds of the Servo web browser engine.*..[ *read more* ](apps/servo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/servo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/servo) | -| | [***session-desktop***](apps/session-desktop.md) | *Onion routing based messenger.*..[ *read more* ](apps/session-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/session-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/session-desktop) | -| | [***setcolors***](apps/setcolors.md) | *Another way to set colors in Linux shells.*..[ *read more* ](apps/setcolors.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/setcolors) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/setcolors) | -| | [***sevicebus-browser***](apps/sevicebus-browser.md) | *A cross platform tool to manage your Azure Service Bus instances.*..[ *read more* ](apps/sevicebus-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sevicebus-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sevicebus-browser) | -| | [***sf-tube***](apps/sf-tube.md) | *Watch and download videos without ads.*..[ *read more* ](apps/sf-tube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sf-tube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sf-tube) | -| | [***sfbrename-cli***](apps/sfbrename-cli.md) | *Bulk file renamer.*..[ *read more* ](apps/sfbrename-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sfbrename-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sfbrename-cli) | -| | [***sfbrename-gtk***](apps/sfbrename-gtk.md) | *Bulk file renamer.*..[ *read more* ](apps/sfbrename-gtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sfbrename-gtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sfbrename-gtk) | -| | [***sfp***](apps/sfp.md) | *This utility is designed to allow you to apply skins to the modern Steam client.*..[ *read more* ](apps/sfp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sfp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sfp) | -| | [***sfrt-attendance***](apps/sfrt-attendance.md) | *The attendance tracking program for robotics.*..[ *read more* ](apps/sfrt-attendance.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sfrt-attendance) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sfrt-attendance) | -| | [***sh***](apps/sh.md) | *GNU Bourne-Again Shell, the de facto standard shell on Linux. This is part of "am-utils" suite.*..[ *read more* ](apps/sh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sh) | -| | [***sha1sum***](apps/sha1sum.md) | *Compute and check SHA1 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha1sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha1sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha1sum) | -| | [***sha224sum***](apps/sha224sum.md) | *Check SHA224 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha224sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha224sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha224sum) | -| | [***sha256sum***](apps/sha256sum.md) | *Compute and check SHA256 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha256sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha256sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha256sum) | -| | [***sha384sum***](apps/sha384sum.md) | *Check SHA384 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha384sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha384sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha384sum) | -| | [***sha512sum***](apps/sha512sum.md) | *Compute and check SHA512 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha512sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha512sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha512sum) | -| | [***shadow-tech***](apps/shadow-tech.md) | *Shadow.tech, cloud computing service.*..[ *read more* ](apps/shadow-tech.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shadow-tech) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shadow-tech) | -| | [***shadowsocks***](apps/shadowsocks.md) | *Shadowsocks GUI client.*..[ *read more* ](apps/shadowsocks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shadowsocks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shadowsocks) | -| | [***shadps4-qtlauncher***](apps/shadps4-qtlauncher.md) | *The official Qt launcher for shadps4 PlayStation 4 emulator.*..[ *read more* ](apps/shadps4-qtlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shadps4-qtlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shadps4-qtlauncher) | -| | [***shadps4***](apps/shadps4.md) | *An early PlayStation 4 emulator written in C++.*..[ *read more* ](apps/shadps4.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shadps4) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shadps4) | -| | [***shannon-calculator***](apps/shannon-calculator.md) | *Self-information content of a message text.*..[ *read more* ](apps/shannon-calculator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shannon-calculator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shannon-calculator) | -| | [***sharemyhost***](apps/sharemyhost.md) | *One click to share your files in your local network.*..[ *read more* ](apps/sharemyhost.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sharemyhost) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sharemyhost) | -| | [***sharp-tune***](apps/sharp-tune.md) | *Music player build upon the node using the electron.*..[ *read more* ](apps/sharp-tune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sharp-tune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sharp-tune) | -| | [***sheepshaver***](apps/sheepshaver.md) | *Classic Macintosh emulator SheepShaver.*..[ *read more* ](apps/sheepshaver.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sheepshaver) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sheepshaver) | -| | [***sheikah***](apps/sheikah.md) | *A Witnet compatible desktop wallet.*..[ *read more* ](apps/sheikah.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sheikah) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sheikah) | -| | [***shellcheck***](apps/shellcheck.md) | *ShellCheck, a static analysis tool for shell scripts.*..[ *read more* ](apps/shellcheck.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shellcheck) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shellcheck) | -| | [***shellharden***](apps/shellharden.md) | *The corrective bash syntax highlighter.*..[ *read more* ](apps/shellharden.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shellharden) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shellharden) | -| | [***shockolate***](apps/shockolate.md) | *Unofficial AppImage of Shockolate.*..[ *read more* ](apps/shockolate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shockolate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shockolate) | -| | [***shoopdaloop***](apps/shoopdaloop.md) | *A (live) looping application with DAW elements.*..[ *read more* ](apps/shoopdaloop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shoopdaloop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shoopdaloop) | -| | [***shotcut***](apps/shotcut.md) | *A powerful Video Editor.*..[ *read more* ](apps/shotcut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shotcut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shotcut) | -| | [***shotwell***](apps/shotwell.md) | *Unofficial, a digital photo organizer designed for the GNOME desktop environment.*..[ *read more* ](apps/shotwell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shotwell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shotwell) | -| | [***shradiko***](apps/shradiko.md) | *Make Portable AppImages from Distro Packages.*..[ *read more* ](apps/shradiko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shradiko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shradiko) | -| | [***shred***](apps/shred.md) | *Overwrite a file to hide its contents, and optionally. This is part of "am-utils" suite.*..[ *read more* ](apps/shred.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shred) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shred) | -| | [***shuf***](apps/shuf.md) | *Generate random permutations. This is part of "am-utils" suite.*..[ *read more* ](apps/shuf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shuf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shuf) | -| | [***shutter-encoder***](apps/shutter-encoder.md) | *Professional converter & compression tool designed by video editors.*..[ *read more* ](apps/shutter-encoder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shutter-encoder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shutter-encoder) | -| | [***shuttle***](apps/shuttle.md) | *The fastest access to your favorite applications.*..[ *read more* ](apps/shuttle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shuttle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shuttle) | -| | [***shvspy***](apps/shvspy.md) | *Qt GUI tool for shvbroker administration and browsing.*..[ *read more* ](apps/shvspy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shvspy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shvspy) | -| | [***sideka***](apps/sideka.md) | *Platform Tata Kelola Desa*..[ *read more* ](apps/sideka.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sideka) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sideka) | -| | [***sidenote***](apps/sidenote.md) | *A CLI tool that helps to manage plain text notes per working directory.*..[ *read more* ](apps/sidenote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sidenote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sidenote) | -| | [***sigdigger***](apps/sigdigger.md) | *Signal analyzer, using Suscan core and Sigutils DSP library.*..[ *read more* ](apps/sigdigger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sigdigger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sigdigger) | -| | [***sigil***](apps/sigil.md) | *Sigil is a multi-platform EPUB ebook editor.*..[ *read more* ](apps/sigil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sigil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sigil) | -| | [***sigma-file-manager***](apps/sigma-file-manager.md) | *A free, open-source, modern file manager.*..[ *read more* ](apps/sigma-file-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sigma-file-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sigma-file-manager) | -| | [***sigmaspectra***](apps/sigmaspectra.md) | *Semi-automated selection and scaling of time series.*..[ *read more* ](apps/sigmaspectra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sigmaspectra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sigmaspectra) | -| | [***signal***](apps/signal.md) | *Unofficial AppImage package for Signal (communication).*..[ *read more* ](apps/signal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/signal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/signal) | -| | [***silex-desktop***](apps/silex-desktop.md) | *This is the official Silex desktop version.*..[ *read more* ](apps/silex-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/silex-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/silex-desktop) | -| | [***siliconsneaker***](apps/siliconsneaker.md) | *View runs from your Garmin brand watch*..[ *read more* ](apps/siliconsneaker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/siliconsneaker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/siliconsneaker) | -| | [***silverkey***](apps/silverkey.md) | *The best Qt Application Ever.*..[ *read more* ](apps/silverkey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/silverkey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/silverkey) | -| | [***simdock***](apps/simdock.md) | *Small dock with pseudo-transparency and good window handling.*..[ *read more* ](apps/simdock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simdock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simdock) | -| | [***simdsp***](apps/simdsp.md) | *DSP Simulator.*..[ *read more* ](apps/simdsp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simdsp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simdsp) | -| | [***simitone***](apps/simitone.md) | *Unofficial, re-implementation of The Sims 1, based off of FreeSO.*..[ *read more* ](apps/simitone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simitone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simitone) | -| | [***simple-s3-uploader***](apps/simple-s3-uploader.md) | *Easily uploading files and sharing links via AWS S3.*..[ *read more* ](apps/simple-s3-uploader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simple-s3-uploader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simple-s3-uploader) | -| | [***simple-scan***](apps/simple-scan.md) | *Make a digital copy of your photos and documents. Simple scanning utility for the GNOME desktop environment.*..[ *read more* ](apps/simple-scan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simple-scan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simple-scan) | -| | [***simple-timer***](apps/simple-timer.md) | *A really simple timer with a customizable logo and heading.*..[ *read more* ](apps/simple-timer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simple-timer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simple-timer) | -| | [***simplechroot***](apps/simplechroot.md) | *Simple command line chroot with ease.*..[ *read more* ](apps/simplechroot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simplechroot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simplechroot) | -| | [***simpleinstabot***](apps/simpleinstabot.md) | *Simple Instagram bot.*..[ *read more* ](apps/simpleinstabot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simpleinstabot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simpleinstabot) | -| | [***simplenote-electron***](apps/simplenote-electron.md) | *Simplenote.*..[ *read more* ](apps/simplenote-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simplenote-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simplenote-electron) | -| | [***simpleos***](apps/simpleos.md) | *EOS Blockchain Interface & Wallet.*..[ *read more* ](apps/simpleos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simpleos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simpleos) | -| | [***simplescreenrecorder***](apps/simplescreenrecorder.md) | *Unofficial. Feature-rich screen recorder supporting X11 & OpenGL.*..[ *read more* ](apps/simplescreenrecorder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simplescreenrecorder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simplescreenrecorder) | -| | [***simplest-file-renamer***](apps/simplest-file-renamer.md) | *Simplest file renamer, rename your files quickly and easily.*..[ *read more* ](apps/simplest-file-renamer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simplest-file-renamer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simplest-file-renamer) | -| | [***simplex-chat***](apps/simplex-chat.md) | *First messaging platform operating without user identifiers.*..[ *read more* ](apps/simplex-chat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simplex-chat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simplex-chat) | -| | [***simplex-solver***](apps/simplex-solver.md) | *Simplex for optimization problems.*..[ *read more* ](apps/simplex-solver.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simplex-solver) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simplex-solver) | -| | [***simtoolkitpro***](apps/simtoolkitpro.md) | *The all-in-one flight simulation EFB.*..[ *read more* ](apps/simtoolkitpro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simtoolkitpro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simtoolkitpro) | -| | [***simutrans***](apps/simutrans.md) | *Unofficial, a freeware and open-source transportation simulator.*..[ *read more* ](apps/simutrans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simutrans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simutrans) | -| | [***singlebox***](apps/singlebox.md) | *AppView template for WebCatalog.*..[ *read more* ](apps/singlebox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/singlebox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/singlebox) | -| | [***sinon***](apps/sinon.md) | *A handy video tool.*..[ *read more* ](apps/sinon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sinon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sinon) | -| | [***sioyek***](apps/sioyek.md) | *PDF viewer designed for reading research papers and technical books.*..[ *read more* ](apps/sioyek.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sioyek) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sioyek) | -| | [***sipgate-softphone***](apps/sipgate-softphone.md) | *The sipgate softphone is developed directly by sipgate.*..[ *read more* ](apps/sipgate-softphone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sipgate-softphone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sipgate-softphone) | -| | [***siyuan***](apps/siyuan.md) | *A local-first personal knowledge management system.*..[ *read more* ](apps/siyuan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/siyuan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/siyuan) | -| | [***size***](apps/size.md) | *Sizes and total size of binary files. This is part of "am-utils" suite.*..[ *read more* ](apps/size.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/size) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/size) | -| | [***skanpage***](apps/kdeutils.md) | *A simple scanning application. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***skyemu***](apps/skyemu.md) | *Game Boy Advance, Game Boy, Game Boy Color, and DS Emulator.*..[ *read more* ](apps/skyemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/skyemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/skyemu) | -| | [***skype***](apps/skype.md) | *Unofficial. VoIP-based videoconferencing, voice calls and instant messaging app.*..[ *read more* ](apps/skype.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/skype) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/skype) | -| | [***slack***](apps/slack.md) | *Unofficial AppImage of Slack.*..[ *read more* ](apps/slack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/slack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/slack) | -| | [***slackbackup***](apps/slackbackup.md) | *An app to archive Slack messages.*..[ *read more* ](apps/slackbackup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/slackbackup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/slackbackup) | -| | [***slacktronic***](apps/slacktronic.md) | *Connect your Slack workspace to Arduino.*..[ *read more* ](apps/slacktronic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/slacktronic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/slacktronic) | -| | [***slang-ed***](apps/slang-ed.md) | *An Electron/Ionic app to edit i18n language translations files.*..[ *read more* ](apps/slang-ed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/slang-ed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/slang-ed) | -| | [***sleek***](apps/sleek.md) | *Multiplatform todo.txt manager.*..[ *read more* ](apps/sleek.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sleek) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sleek) | -| | [***sleep***](apps/sleep.md) | *Delay for a specified amount of time. This is part of "am-utils" suite.*..[ *read more* ](apps/sleep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sleep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sleep) | -| | [***slic3r***](apps/slic3r.md) | *Open Source toolpath generator for 3D printers.*..[ *read more* ](apps/slic3r.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/slic3r) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/slic3r) | -| | [***slippi***](apps/slippi.md) | *Slippi Launcher program for browsing and playing replays.*..[ *read more* ](apps/slippi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/slippi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/slippi) | -| | [***slogidex***](apps/slogidex.md) | *Task management and automation tool.*..[ *read more* ](apps/slogidex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/slogidex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/slogidex) | -| | [***smallbasic***](apps/smallbasic.md) | *A fast and easy to learn BASIC language interpreter.*..[ *read more* ](apps/smallbasic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smallbasic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smallbasic) | -| | [***smartservogui***](apps/smartservogui.md) | *Scan for servo devices easily view.*..[ *read more* ](apps/smartservogui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smartservogui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smartservogui) | -| | [***smassh***](apps/smassh.md) | *Smassh your Keyboard, TUI Edition.*..[ *read more* ](apps/smassh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smassh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smassh) | -| | [***smath-studio***](apps/smath-studio.md) | *Tiny, but powerful mathematical program with WYSIWYG editor.*..[ *read more* ](apps/smath-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smath-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smath-studio) | -| | [***smf-dsp***](apps/smf-dsp.md) | *Standard MIDI file player.*..[ *read more* ](apps/smf-dsp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smf-dsp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smf-dsp) | -| | [***smplayer***](apps/smplayer.md) | *Media Player with built-in codecs for all audio and video formats.*..[ *read more* ](apps/smplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smplayer) | -| | [***smuview***](apps/smuview.md) | *A Qt based source measure unit GUI for sigrok.*..[ *read more* ](apps/smuview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smuview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smuview) | -| | [***snake-js***](apps/snake-js.md) | *Canvas/JavaScript based Snake Game with support for controllers.*..[ *read more* ](apps/snake-js.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snake-js) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snake-js) | -| | [***snapclear***](apps/snapclear.md) | *Remove Image Background with AI for Free Offline.*..[ *read more* ](apps/snapclear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snapclear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snapclear) | -| | [***snapmaker-orca***](apps/snapmaker-orca.md) | *G-code generator for 3D printers (Bambu, Prusa, Voron, VzBot, RatRig, Creality...).*..[ *read more* ](apps/snapmaker-orca.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snapmaker-orca) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snapmaker-orca) | -| | [***snapshot-slider***](apps/snapshot-slider.md) | *Present/print/email Snapshots of modern mathematics.*..[ *read more* ](apps/snapshot-slider.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snapshot-slider) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snapshot-slider) | -| | [***snes9x-enhanced***](apps/snes9x-enhanced.md) | *Unofficial, Snes9x - Portable Super Nintendo Entertainment System TM emulator.*..[ *read more* ](apps/snes9x-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snes9x-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snes9x-enhanced) | -| | [***snes9x***](apps/snes9x.md) | *Snes9x - Portable Super Nintendo Entertainment System TM emulator.*..[ *read more* ](apps/snes9x.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snes9x) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snes9x) | -| | [***sniffnet***](apps/sniffnet.md) | *Sniffnet is a network monitoring tool to help you easily keep track of your Internet traffic. Whether you want to gather statistics, you’re curious to see who you are exchanging data with, or you need to inspect more in depth what's going on in your network, this app will get you covered.*..[ *read more* ](apps/sniffnet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sniffnet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sniffnet) | -| | [***snippetstore***](apps/snippetstore.md) | *A snippet management app for developers.*..[ *read more* ](apps/snippetstore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snippetstore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snippetstore) | -| | [***snomcontrol***](apps/snomcontrol.md) | *An application to control snom D3xx phones from the desktop.*..[ *read more* ](apps/snomcontrol.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snomcontrol) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snomcontrol) | -| | [***snowball***](apps/snowball.md) | *Find and filter literature, fast.*..[ *read more* ](apps/snowball.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snowball) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snowball) | -| | [***snowboardkids2-recomp***](apps/snowboardkids2-recomp.md) | *Unofficial AppImage of game Snowboard Kids 2 Recompilation.*..[ *read more* ](apps/snowboardkids2-recomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snowboardkids2-recomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snowboardkids2-recomp) | -| | [***soapy-sdr***](apps/soapy-sdr.md) | *I/Q recorder and processor using SoapySDR as backend.*..[ *read more* ](apps/soapy-sdr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soapy-sdr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soapy-sdr) | -| | [***soar***](apps/soar.md) | *A fast, modern package manager for Static Binaries, Portable Formats, AppImage, AppBundle, FlatImage, Runimage & More.*..[ *read more* ](apps/soar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soar) | -| | [***socnetv***](apps/socnetv.md) | *Social Network Analysis and Visualization software.*..[ *read more* ](apps/socnetv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/socnetv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/socnetv) | -| | [***soft-serve***](apps/soft-serve.md) | *The mighty, self-hostable Git server for the command line.*..[ *read more* ](apps/soft-serve.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soft-serve) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soft-serve) | -| | [***software-challenge-gui***](apps/software-challenge-gui.md) | *GUI für die Software-Challenge.*..[ *read more* ](apps/software-challenge-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/software-challenge-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/software-challenge-gui) | -| | [***soh-enhanced***](apps/soh-enhanced.md) | *Unofficial, Ship of Harkinian.*..[ *read more* ](apps/soh-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soh-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soh-enhanced) | -| | [***soil-editor***](apps/soil-editor.md) | *A tool to edit the soil properties, CRITERIA1D.*..[ *read more* ](apps/soil-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soil-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soil-editor) | -| | [***solaar***](apps/solaar.md) | *Unofficial AppImage of solaar.*..[ *read more* ](apps/solaar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/solaar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/solaar) | -| | [***solars***](apps/solars.md) | *Visualize the planets of our solar system.*..[ *read more* ](apps/solars.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/solars) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/solars) | -| | [***solarwallet***](apps/solarwallet.md) | *Stellar wallet. Secure and user-friendly.*..[ *read more* ](apps/solarwallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/solarwallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/solarwallet) | -| | [***songrec***](apps/songrec.md) | *Unofficial, an open-source Shazam client for Linux.*..[ *read more* ](apps/songrec.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/songrec) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/songrec) | -| | [***sonic-3-air***](apps/sonic-3-air.md) | *Unofficial, Source and data to build Sonic 3 A.I.R. (Angel Island Revisited) and the Oxygen Engine.*..[ *read more* ](apps/sonic-3-air.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sonic-3-air) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sonic-3-air) | -| | [***sonic-mania-decompilation***](apps/sonic-mania-decompilation.md) | *Unofficial, a complete decompilation of Sonic Mania (2017).*..[ *read more* ](apps/sonic-mania-decompilation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sonic-mania-decompilation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sonic-mania-decompilation) | -| | [***sonicvisualiser***](apps/sonicvisualiser.md) | *Viewing and analysing the contents of music audio files.*..[ *read more* ](apps/sonicvisualiser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sonicvisualiser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sonicvisualiser) | -| | [***sonixd***](apps/sonixd.md) | *A full-featured Subsonic/Jellyfin compatible desktop music player.*..[ *read more* ](apps/sonixd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sonixd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sonixd) | -| | [***sonos-controller***](apps/sonos-controller.md) | *An Electron based linux app for controlling your sonos system.*..[ *read more* ](apps/sonos-controller.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sonos-controller) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sonos-controller) | -| | [***sonusmix***](apps/sonusmix.md) | *Next-gen Pipewire audio routing tool.*..[ *read more* ](apps/sonusmix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sonusmix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sonusmix) | -| | [***sort***](apps/sort.md) | *Sort lines of text files. This is part of "am-utils" suite.*..[ *read more* ](apps/sort.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sort) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sort) | -| | [***soul-arena***](apps/soul-arena.md) | *Bleach-based online multiplayer strategy game.*..[ *read more* ](apps/soul-arena.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soul-arena) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soul-arena) | -| | [***sound-space-plus***](apps/sound-space-plus.md) | *Unofficial AppImage of sound-space-plus, Rhythm-based aim game.*..[ *read more* ](apps/sound-space-plus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sound-space-plus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sound-space-plus) | -| | [***soundcloud-rpc***](apps/soundcloud-rpc.md) | *A SoundCloud client with Discord Rich Presence and AdBlock.*..[ *read more* ](apps/soundcloud-rpc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soundcloud-rpc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soundcloud-rpc) | -| | [***sourcetrail***](apps/sourcetrail.md) | *Source explorer to get you productive on unfamiliar source code.*..[ *read more* ](apps/sourcetrail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sourcetrail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sourcetrail) | -| | [***sozi***](apps/sozi.md) | *A "zooming" presentation editor.*..[ *read more* ](apps/sozi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sozi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sozi) | -| | [***spacebar-debug***](apps/spacebar-debug.md) | *Extendable discord-compatible native Spacebar client, debug.*..[ *read more* ](apps/spacebar-debug.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spacebar-debug) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spacebar-debug) | -| | [***spacebar***](apps/spacebar.md) | *Themeable and extendable discord-compatible native Spacebar client.*..[ *read more* ](apps/spacebar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spacebar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spacebar) | -| | [***spacecadet***](apps/spacecadet.md) | *Unofficial. Reverse engineered port of 3D Pinball for Windows XP Space Cadet.*..[ *read more* ](apps/spacecadet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spacecadet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spacecadet) | -| | [***spacewars***](apps/spacewars.md) | *A re-imagining of the classic game Spacewar using Amethyst engine.*..[ *read more* ](apps/spacewars.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spacewars) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spacewars) | -| | [***spaghettikart-enhanced***](apps/spaghettikart-enhanced.md) | *Unofficial, Mario Kart 64 PC game Port.*..[ *read more* ](apps/spaghettikart-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spaghettikart-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spaghettikart-enhanced) | -| | [***spark-wallet***](apps/spark-wallet.md) | *A wallet GUI for c-lightning, accessible over web/mobile/pc.*..[ *read more* ](apps/spark-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spark-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spark-wallet) | -| | [***speak-to-ai***](apps/speak-to-ai.md) | *Speak to AI - native Linux voice-to-text app.*..[ *read more* ](apps/speak-to-ai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/speak-to-ai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/speak-to-ai) | -| | [***speaky-miniplayer***](apps/speaky-miniplayer.md) | *A miniplayer with a synthetic radio speaker.*..[ *read more* ](apps/speaky-miniplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/speaky-miniplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/speaky-miniplayer) | -| | [***speed-dreams***](apps/speed-dreams.md) | *A Torcs fork, 3d motorsport simulation and race cars game.*..[ *read more* ](apps/speed-dreams.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/speed-dreams) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/speed-dreams) | -| | [***speedcrunch***](apps/speedcrunch.md) | *Unofficial, a high-precision scientific calculator featuring a fast, keyboard-driven user interface.*..[ *read more* ](apps/speedcrunch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/speedcrunch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/speedcrunch) | -| | [***speedyloader***](apps/speedyloader.md) | *Speeduino universal firmware loader.*..[ *read more* ](apps/speedyloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/speedyloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/speedyloader) | -| | [***speek***](apps/speek.md) | *Privacy focused messenger.*..[ *read more* ](apps/speek.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/speek) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/speek) | -| | [***spek***](apps/spek.md) | *Unofficial AppImage of Spek.*..[ *read more* ](apps/spek.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spek) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spek) | -| | [***sphia***](apps/sphia.md) | *A Proxy Handling Intuitive Application.*..[ *read more* ](apps/sphia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sphia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sphia) | -| | [***spicy-launcher***](apps/spicy-launcher.md) | *Cross-platform launcher for Spicy Lobster games.*..[ *read more* ](apps/spicy-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spicy-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spicy-launcher) | -| | [***spivak***](apps/spivak.md) | *Karaoke player based on GStreamer and Qt5.*..[ *read more* ](apps/spivak.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spivak) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spivak) | -| | [***splayer***](apps/splayer.md) | *A simple music player that supports word-by-word lyrics, song downloads, comment section display, music cloud storage and playlist management, music spectrum analysis, and basic mobile adaptation. NetEase Cloud Music.*..[ *read more* ](apps/splayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/splayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/splayer) | -| | [***split***](apps/split.md) | *Divide a file into multiple smaller files. This is part of "am-utils" suite.*..[ *read more* ](apps/split.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/split) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/split) | -| | [***spm***](apps/spm.md) | *A simple CLI package manager written in bash mainly for AppImages.*..[ *read more* ](apps/spm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spm) | -| | [***spmp***](apps/spmp.md) | *A YouTube Music client with a focus on customisation of colours and song metadata.*..[ *read more* ](apps/spmp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spmp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spmp) | -| | [***sponge-hash-aes256***](apps/sponge-hash-aes256.md) | *A sponge-based secure hash function that uses AES-256 as its internal PRF.*..[ *read more* ](apps/sponge-hash-aes256.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sponge-hash-aes256) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sponge-hash-aes256) | -| | [***spotifetch***](apps/spotifetch.md) | *A simple and beautiful CLI fetch tool for spotify, now rusty.*..[ *read more* ](apps/spotifetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotifetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotifetch) | -| | [***spotify-candidate***](apps/spotify-candidate.md) | *Unofficial. A proprietary music streaming service.*..[ *read more* ](apps/spotify-candidate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-candidate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-candidate) | -| | [***spotify-dl***](apps/spotify-dl.md) | *A command-line utility to download songs and playlists directly from Spotify's servers.*..[ *read more* ](apps/spotify-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-dl) | -| | [***spotify-edge***](apps/spotify-edge.md) | *Unofficial. A proprietary music streaming service.*..[ *read more* ](apps/spotify-edge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-edge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-edge) | -| | [***spotify-player***](apps/spotify-player.md) | *A Spotify player in the terminal with full feature parity.*..[ *read more* ](apps/spotify-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-player) | -| | [***spotify-qt***](apps/spotify-qt.md) | *Lightweight Spotify client using Qt.*..[ *read more* ](apps/spotify-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-qt) | -| | [***spotify-tui***](apps/spotify-tui.md) | *Spotify for the terminal written in Rust.*..[ *read more* ](apps/spotify-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-tui) | -| | [***spotify***](apps/spotify.md) | *Unofficial. A proprietary music streaming service.*..[ *read more* ](apps/spotify.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify) | -| | [***spotube***](apps/spotube.md) | *Open source Spotify client that doesn't require Premium.*..[ *read more* ](apps/spotube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotube) | -| | [***spritemate4electron***](apps/spritemate4electron.md) | *A simple Electron-wrapper for Esshahn's awesome Spritemate-webapp.*..[ *read more* ](apps/spritemate4electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spritemate4electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spritemate4electron) | -| | [***sptlrx***](apps/sptlrx.md) | *Synchronized lyrics in your terminal.*..[ *read more* ](apps/sptlrx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sptlrx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sptlrx) | -| | [***spyglass***](apps/spyglass.md) | *A personal search engine to create a searchable library from your personal documents, interests, and more.*..[ *read more* ](apps/spyglass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spyglass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spyglass) | -| | [***sqlite3***](apps/platform-tools.md) | *Command-line tool for managing SQLite databases. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***sqlitebrowser***](apps/sqlitebrowser.md) | *DB Browser is a light GUI editor for SQLite databases.*..[ *read more* ](apps/sqlitebrowser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sqlitebrowser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sqlitebrowser) | -| | [***squirrel-disk***](apps/squirrel-disk.md) | *Cross-Platform and Super Fast Disk Usage Analysis Tool.*..[ *read more* ](apps/squirrel-disk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/squirrel-disk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/squirrel-disk) | -| | [***srb2***](apps/srb2.md) | *Unofficial, a 3D Sonic the Hedgehog fangame based on a modified version of Doom Legacy.*..[ *read more* ](apps/srb2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/srb2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/srb2) | -| | [***srb2k***](apps/srb2k.md) | *AppImage Package for Sonic Robo Blast 2 Kart, game.*..[ *read more* ](apps/srb2k.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/srb2k) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/srb2k) | -| | [***srb2kart***](apps/srb2kart.md) | *Unofficial AppImage of SRB2kart.*..[ *read more* ](apps/srb2kart.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/srb2kart) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/srb2kart) | -| | [***ssh-mitm***](apps/ssh-mitm.md) | *Server for security audits supporting public key authentication.*..[ *read more* ](apps/ssh-mitm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ssh-mitm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ssh-mitm) | -| | [***ssplot***](apps/ssplot.md) | *A simple plotting utility for dynamical systems.*..[ *read more* ](apps/ssplot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ssplot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ssplot) | -| | [***st+***](apps/st+.md) | *A beautiful, SIXEL-capable, lightweight terminal (~100KB) with just-enough essential features for rock-solid stability in daily usage. Features integration with nerd-fonts and Gogh color schemes.*..[ *read more* ](apps/st+.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/st+) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/st+) | -| | [***st***](apps/st.md) | *Unofficial AppImage of the suckless terminal st.*..[ *read more* ](apps/st.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/st) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/st) | -| | [***stabilitymatrix***](apps/stabilitymatrix.md) | *Multi-Platform Package Manager for Stable Diffusion, a deep AI learning model used for converting text to images.*..[ *read more* ](apps/stabilitymatrix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stabilitymatrix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stabilitymatrix) | -| | [***stacer***](apps/stacer.md) | *Linux System Optimizer and Monitoring.*..[ *read more* ](apps/stacer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stacer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stacer) | -| | [***stack-wallet***](apps/stack-wallet.md) | *Stack Wallet, a multicoin, cryptocurrency wallet.*..[ *read more* ](apps/stack-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stack-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stack-wallet) | -| | [***stackandconquer***](apps/stackandconquer.md) | *A challenging tower conquest board game "Mixtour" inspired.*..[ *read more* ](apps/stackandconquer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stackandconquer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stackandconquer) | -| | [***standard-notes***](apps/standard-notes.md) | *A simple and private place for your notes.*..[ *read more* ](apps/standard-notes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/standard-notes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/standard-notes) | -| | [***starc***](apps/starc.md) | *Story Architect, reinventing the screenwriting software.*..[ *read more* ](apps/starc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/starc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/starc) | -| | [***starfox64recomp***](apps/starfox64recomp.md) | *Unofficial, a native port of Starfox 64, statically recompiled.*..[ *read more* ](apps/starfox64recomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/starfox64recomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/starfox64recomp) | -| | [***starship***](apps/starship.md) | *The minimal, blazing-fast, and infinitely customizable prompt for any shell.*..[ *read more* ](apps/starship.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/starship) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/starship) | -| | [***stash-electron***](apps/stash-electron.md) | *The friendly secret storage made for teams.*..[ *read more* ](apps/stash-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stash-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stash-electron) | -| | [***stat***](apps/stat.md) | *Display file or file system status. This is part of "am-utils" suite.*..[ *read more* ](apps/stat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stat) | -| | [***station***](apps/station.md) | *A single place for all of your web applications.*..[ *read more* ](apps/station.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/station) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/station) | -| | [***statsbook-tool***](apps/statsbook-tool.md) | *A tool for error checking WFTDA Statsbooks.*..[ *read more* ](apps/statsbook-tool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/statsbook-tool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/statsbook-tool) | -| | [***statuspilatus***](apps/statuspilatus.md) | *Monitor your PC like never before.*..[ *read more* ](apps/statuspilatus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/statuspilatus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/statuspilatus) | -| | [***stdbuf***](apps/stdbuf.md) | *With modified buffering operations for its. This is part of "am-utils" suite.*..[ *read more* ](apps/stdbuf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stdbuf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stdbuf) | -| | [***steam-rom-manager***](apps/steam-rom-manager.md) | *An app for managing ROMs in Steam.*..[ *read more* ](apps/steam-rom-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steam-rom-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steam-rom-manager) | -| | [***steam-tui***](apps/steam-tui.md) | *Rust TUI client for steamcmd.*..[ *read more* ](apps/steam-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steam-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steam-tui) | -| | [***steam***](apps/steam.md) | *Unofficial. The ultimate destination for playing, discussing, and creating games.*..[ *read more* ](apps/steam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steam) | -| | [***steamcad***](apps/steamcad.md) | *2D CAD especially designed to draw steam locomotives.*..[ *read more* ](apps/steamcad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steamcad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steamcad) | -| | [***steamdepotdownloadergui***](apps/steamdepotdownloadergui.md) | *Easily download older versions of games from Steam.*..[ *read more* ](apps/steamdepotdownloadergui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steamdepotdownloadergui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steamdepotdownloadergui) | -| | [***steem-messenger***](apps/steem-messenger.md) | *Messer for Steem.*..[ *read more* ](apps/steem-messenger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steem-messenger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steem-messenger) | -| | [***stele***](apps/stele.md) | *Kiosk app wrapper for museum media exhibits.*..[ *read more* ](apps/stele.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stele) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stele) | -| | [***stella***](apps/stella.md) | *Unofficial, A multi-platform Atari 2600 Emulator.*..[ *read more* ](apps/stella.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stella) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stella) | -| | [***stellarium***](apps/stellarium.md) | *Planetarium that shows a realistic sky in 3D.*..[ *read more* ](apps/stellarium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stellarium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stellarium) | -| | [***stellarmaps***](apps/stellarmaps.md) | *Stylized maps from Stellaris saves.*..[ *read more* ](apps/stellarmaps.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stellarmaps) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stellarmaps) | -| | [***stew***](apps/stew.md) | *An independent package manager for compiled binaries.*..[ *read more* ](apps/stew.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stew) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stew) | -| | [***sticker-convert***](apps/sticker-convert.md) | *Convert animated stickers.*..[ *read more* ](apps/sticker-convert.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sticker-convert) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sticker-convert) | -| | [***stirling-pdf***](apps/stirling-pdf.md) | *Unofficial. Powerful, open-source PDF editing platform.*..[ *read more* ](apps/stirling-pdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stirling-pdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stirling-pdf) | -| | [***stockstalk***](apps/stockstalk.md) | *Your stocks on your desktop.*..[ *read more* ](apps/stockstalk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stockstalk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stockstalk) | -| | [***stoplight***](apps/stoplight.md) | *The kickass API platform.*..[ *read more* ](apps/stoplight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stoplight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stoplight) | -| | [***storadit***](apps/storadit.md) | *Minimalistic Todo list/notes taking app.*..[ *read more* ](apps/storadit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/storadit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/storadit) | -| | [***storaji***](apps/storaji.md) | *The Light/Responsive Inventory Management System.*..[ *read more* ](apps/storaji.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/storaji) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/storaji) | -| | [***storyboarder***](apps/storyboarder.md) | *Visualize a story as fast you can draw stick figures.*..[ *read more* ](apps/storyboarder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/storyboarder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/storyboarder) | -| | [***strace***](apps/strace.md) | *Trace system calls and signals. This is part of "am-utils" suite.*..[ *read more* ](apps/strace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strace) | -| | [***strans***](apps/strans.md) | *A powerful command-line utility.*..[ *read more* ](apps/strans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strans) | -| | [***strata***](apps/strata.md) | *Semi-automated selection and scaling of time series.*..[ *read more* ](apps/strata.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strata) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strata) | -| | [***strawberry***](apps/strawberry.md) | *Unofficial AppImage of the strawberry music player.*..[ *read more* ](apps/strawberry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strawberry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strawberry) | -| | [***streamdock***](apps/streamdock.md) | *Streaming service viewer.*..[ *read more* ](apps/streamdock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/streamdock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/streamdock) | -| | [***streamlink-twitch-gui***](apps/streamlink-twitch-gui.md) | *A multi platform Twitch.tv browser for Streamlink.*..[ *read more* ](apps/streamlink-twitch-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/streamlink-twitch-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/streamlink-twitch-gui) | -| | [***streamlink***](apps/streamlink.md) | *Command-line which pipes video streams from various services.*..[ *read more* ](apps/streamlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/streamlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/streamlink) | -| | [***streamon***](apps/streamon.md) | *Create streaming links to instagram live.*..[ *read more* ](apps/streamon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/streamon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/streamon) | -| | [***stremio-enhanced***](apps/stremio-enhanced.md) | *Electron-based Stremio client with support for plugins and themes. This is a community project and is not affiliated with Stremio in any way.*..[ *read more* ](apps/stremio-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stremio-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stremio-enhanced) | -| | [***stretchly***](apps/stretchly.md) | *App that reminds you to take breaks when working on your PC.*..[ *read more* ](apps/stretchly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stretchly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stretchly) | -| | [***strings***](apps/strings.md) | *Strings is another bad static string library, written in C. This is part of "am-utils" suite.*..[ *read more* ](apps/strings.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strings) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strings) | -| | [***strip***](apps/strip.md) | *And other data from object files. This is part of "am-utils" suite.*..[ *read more* ](apps/strip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strip) | -| | [***strongbox***](apps/strongbox.md) | *A World of Warcraft Addon Manager aimed at Linux players.*..[ *read more* ](apps/strongbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strongbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strongbox) | -| | [***structure***](apps/structure.md) | *A knowledge management tool.*..[ *read more* ](apps/structure.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/structure) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/structure) | -| | [***stty***](apps/stty.md) | *Change and print terminal line settings. This is part of "am-utils" suite.*..[ *read more* ](apps/stty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stty) | -| | [***studymd***](apps/studymd.md) | *Flashcards from Markdown.*..[ *read more* ](apps/studymd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/studymd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/studymd) | -| | [***stunt-car-remake***](apps/stunt-car-remake.md) | *Remake of the old game Stunt Car Racer.*..[ *read more* ](apps/stunt-car-remake.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stunt-car-remake) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stunt-car-remake) | -| | [***subillmanager***](apps/subillmanager.md) | *A simple Flutter app to manage electricity bill.*..[ *read more* ](apps/subillmanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/subillmanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/subillmanager) | -| | [***substrate-ide***](apps/substrate-ide.md) | *Graphic IDE for developing Substrate blockchains.*..[ *read more* ](apps/substrate-ide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/substrate-ide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/substrate-ide) | -| | [***subsurface***](apps/subsurface.md) | *Official upstream of the Subsurface divelog program.*..[ *read more* ](apps/subsurface.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/subsurface) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/subsurface) | -| | [***subtitld***](apps/subtitld.md) | *Transform your video content creation with Subtitld, the open source software that streamlines your video content creation process.*..[ *read more* ](apps/subtitld.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/subtitld) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/subtitld) | -| | [***subtitle-composer***](apps/subtitle-composer.md) | *KF5/Qt Video Subtitle Editor for KDE.*..[ *read more* ](apps/subtitle-composer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/subtitle-composer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/subtitle-composer) | -| | [***subtitler***](apps/subtitler.md) | *Quickly download subtitles.*..[ *read more* ](apps/subtitler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/subtitler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/subtitler) | -| | [***sultanpos***](apps/sultanpos.md) | *Simple POS for minimarket.*..[ *read more* ](apps/sultanpos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sultanpos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sultanpos) | -| | [***sum***](apps/sum.md) | *Checksum and count the blocks in a file. This is part of "am-utils" suite.*..[ *read more* ](apps/sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sum) | -| | [***summoners.war.exporter***](apps/summoners.war.exporter.md) | *To parse intercepted data from Summoners War.*..[ *read more* ](apps/summoners.war.exporter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/summoners.war.exporter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/summoners.war.exporter) | -| | [***sumoco***](apps/sumoco.md) | *Simple Unified Model for Orthopaedics.*..[ *read more* ](apps/sumoco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sumoco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sumoco) | -| | [***sunny***](apps/sunny.md) | *Screenshot software that supports OCR and image translation features.*..[ *read more* ](apps/sunny.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sunny) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sunny) | -| | [***sunsama***](apps/sunsama.md) | *The daily planner for elite professionals.*..[ *read more* ](apps/sunsama.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sunsama) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sunsama) | -| | [***sunshine***](apps/sunshine.md) | *Sunshine is a Gamestream host for Moonlight.*..[ *read more* ](apps/sunshine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sunshine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sunshine) | -| | [***sunvox***](apps/sunvox.md) | *Unofficial. Small, fast and powerful modular synthesizer with pattern-based sequencer (tracker).*..[ *read more* ](apps/sunvox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sunvox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sunvox) | -| | [***sup***](apps/sup.md) | *A Slack client with WhatsApp like UI.*..[ *read more* ](apps/sup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sup) | -| | [***super-zsnes***](apps/super-zsnes.md) | *Unofficial AppImage of SUPER ZSNES.*..[ *read more* ](apps/super-zsnes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/super-zsnes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/super-zsnes) | -| | [***superbacked***](apps/superbacked.md) | *Don’t lose your secrets. A secret management platform used to back up and pass on sensitive data from one generation to the next.*..[ *read more* ](apps/superbacked.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superbacked) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superbacked) | -| | [***supercell-wx***](apps/supercell-wx.md) | *Supercell Wx is a free, open source advanced weather radar viewer.*..[ *read more* ](apps/supercell-wx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supercell-wx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supercell-wx) | -| | [***superfile***](apps/superfile.md) | *Pretty fancy and modern terminal file manager.*..[ *read more* ](apps/superfile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superfile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superfile) | -| | [***supermariowar***](apps/supermariowar.md) | *Unofficial, a fan-made multiplayer Super Mario Bros. style deathmatch game.*..[ *read more* ](apps/supermariowar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supermariowar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supermariowar) | -| | [***supermodel***](apps/supermodel.md) | *Unofficial, Sega Model 3 arcade emulator.*..[ *read more* ](apps/supermodel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supermodel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supermodel) | -| | [***supernotes***](apps/supernotes.md) | *Enjoy efficient note-taking without the hassle.*..[ *read more* ](apps/supernotes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supernotes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supernotes) | -| | [***superpaper***](apps/superpaper.md) | *A cross-platform multi monitor wallpaper manager.*..[ *read more* ](apps/superpaper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superpaper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superpaper) | -| | [***superproductivity***](apps/superproductivity.md) | *An advanced todo list app with integrated Timeboxing.*..[ *read more* ](apps/superproductivity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superproductivity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superproductivity) | -| | [***superslicer-bin***](apps/superslicer-bin.md) | *G-code generator for 3D printers.*..[ *read more* ](apps/superslicer-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superslicer-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superslicer-bin) | -| | [***superslicer-prerelease-bin***](apps/superslicer-prerelease-bin.md) | *G-code generator for 3D printers.*..[ *read more* ](apps/superslicer-prerelease-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superslicer-prerelease-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superslicer-prerelease-bin) | -| | [***supersonic***](apps/supersonic.md) | *A lightweight and full-featured cross-platform desktop client for self-hosted music servers.*..[ *read more* ](apps/supersonic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supersonic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supersonic) | -| | [***supertag***](apps/supertag.md) | *A tag-based filesystem written in Rust.*..[ *read more* ](apps/supertag.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supertag) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supertag) | -| | [***supertux***](apps/supertux.md) | *Classic 2D jump'n run sidescroller game inspired to Super Mario.*..[ *read more* ](apps/supertux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supertux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supertux) | -| | [***supertuxkart-dev***](apps/supertuxkart-dev.md) | *Free kart racing game focused on Fun! Pre-release.*..[ *read more* ](apps/supertuxkart-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supertuxkart-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supertuxkart-dev) | -| | [***supertuxkart***](apps/supertuxkart.md) | *Free kart racing game focused on Fun!*..[ *read more* ](apps/supertuxkart.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supertuxkart) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supertuxkart) | -| | [***surrealist***](apps/surrealist.md) | *Surrealist is the ultimate way to visually manage your SurrealDB database.*..[ *read more* ](apps/surrealist.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/surrealist) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/surrealist) | -| | [***suwayomi***](apps/suwayomi.md) | *A rewrite of Tachiyomi for the Desktop.*..[ *read more* ](apps/suwayomi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/suwayomi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/suwayomi) | -| | [***svelte-electron***](apps/svelte-electron.md) | *Create desktop apps with this Svelte boilerplate.*..[ *read more* ](apps/svelte-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/svelte-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/svelte-electron) | -| | [***svgwall***](apps/svgwall.md) | *SVG Wallpaper Utility for Xorg.*..[ *read more* ](apps/svgwall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/svgwall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/svgwall) | -| | [***sview***](apps/sview.md) | *3D Stereoscopic media player for videos and images.*..[ *read more* ](apps/sview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sview) | -| | [***swaglyrics***](apps/swaglyrics.md) | *SwagLyrics AppImage, unofficial.*..[ *read more* ](apps/swaglyrics.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swaglyrics) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swaglyrics) | -| | [***swapoff***](apps/swapoff.md) | *Enable/disable devices and files for paging and. This is part of "am-utils" suite.*..[ *read more* ](apps/swapoff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swapoff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swapoff) | -| | [***swapon***](apps/swapon.md) | *Enable/disable devices and files for paging and. This is part of "am-utils" suite.*..[ *read more* ](apps/swapon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swapon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swapon) | -| | [***swc-minecraft-launcher***](apps/swc-minecraft-launcher.md) | *SWC Minecraft Launcher.*..[ *read more* ](apps/swc-minecraft-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swc-minecraft-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swc-minecraft-launcher) | -| | [***sweeper***](apps/kdeutils.md) | *System Cleaner. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***sweethome3d***](apps/sweethome3d.md) | *An interior design app to draw house plans & arrange furniture.*..[ *read more* ](apps/sweethome3d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sweethome3d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sweethome3d) | -| | [***swell***](apps/swell.md) | *Testing for streaming APIs, right at your desktop.*..[ *read more* ](apps/swell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swell) | -| | [***swiftnessx***](apps/swiftnessx.md) | *Electron application boilerplate based on React/Webpack.*..[ *read more* ](apps/swiftnessx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swiftnessx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swiftnessx) | -| | [***swifty***](apps/swifty.md) | *Free Offline-first Password Manager.*..[ *read more* ](apps/swifty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swifty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swifty) | -| | [***swiftynotes***](apps/swiftynotes.md) | *Unofficial AppImage of swiftynotes.*..[ *read more* ](apps/swiftynotes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swiftynotes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swiftynotes) | -| | [***swish***](apps/swish.md) | *Command Line Interface for Swisstransfer Infomaniak's free service.*..[ *read more* ](apps/swish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swish) | -| | [***switchcraft***](apps/switchcraft.md) | *Switchcraft watches GNOME's light/dark preference and runs your shell commands when the theme changes.*..[ *read more* ](apps/switchcraft.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/switchcraft) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/switchcraft) | -| | [***switchhosts***](apps/switchhosts.md) | *Switch hosts quickly!*..[ *read more* ](apps/switchhosts.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/switchhosts) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/switchhosts) | -| | [***switchshuttle***](apps/switchshuttle.md) | *Run predefined commands in various terminal applications.*..[ *read more* ](apps/switchshuttle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/switchshuttle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/switchshuttle) | -| | [***swradio***](apps/swradio.md) | *Shortwave receiver for use with sdrplay/hackrf/dabsticks/pmsdr.*..[ *read more* ](apps/swradio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swradio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swradio) | -| | [***symphonium***](apps/symphonium.md) | *A tool to help when learning to play the piano.*..[ *read more* ](apps/symphonium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/symphonium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/symphonium) | -| | [***sync***](apps/sync.md) | *Backup and synchronization service. This is part of "am-utils" suite.*..[ *read more* ](apps/sync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sync) | -| | [***syncmyl2p***](apps/syncmyl2p.md) | *L2P synchronisation tool.*..[ *read more* ](apps/syncmyl2p.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/syncmyl2p) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/syncmyl2p) | -| | [***syncplay***](apps/syncplay.md) | *Synchronize video playback over network.*..[ *read more* ](apps/syncplay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/syncplay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/syncplay) | -| | [***syncthing***](apps/syncthing.md) | *Open Source Continuous File Synchronization.*..[ *read more* ](apps/syncthing.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/syncthing) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/syncthing) | -| | [***syncthingctl***](apps/syncthingctl.md) | *Tray control application and Dolphin/Plasma integration for Syncthing.*..[ *read more* ](apps/syncthingctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/syncthingctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/syncthingctl) | -| | [***syncthingtray***](apps/syncthingtray.md) | *Tray application and Dolphin/Plasma integration for Syncthing.*..[ *read more* ](apps/syncthingtray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/syncthingtray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/syncthingtray) | -| | [***synfig***](apps/synfig.md) | *Unofficial. Synfig Studio animation software.*..[ *read more* ](apps/synfig.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/synfig) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/synfig) | -| | [***synthein***](apps/synthein.md) | *A space ship building and combat game.*..[ *read more* ](apps/synthein.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/synthein) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/synthein) | -| | [***synthv1***](apps/synthv1.md) | *An old school polyphonic synthesizer.*..[ *read more* ](apps/synthv1.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/synthv1) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/synthv1) | -| | [***system-monitoring-center***](apps/system-monitoring-center.md) | *Unofficial. Multi-featured system monitor.*..[ *read more* ](apps/system-monitoring-center.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/system-monitoring-center) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/system-monitoring-center) | -| | [***sysz***](apps/sysz.md) | *An fzf terminal UI for systemctl.*..[ *read more* ](apps/sysz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sysz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sysz) | -| | [***szyszka***](apps/szyszka.md) | *Szyszka is fast and powerful file renamer.*..[ *read more* ](apps/szyszka.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/szyszka) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/szyszka) | -| | [***t.viewer***](apps/t.viewer.md) | *Cross Platform Tizen Log Viewer.*..[ *read more* ](apps/t.viewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/t.viewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/t.viewer) | -| | [***t3code***](apps/t3code.md) | *T3 Code is a minimal web GUI for coding agents (currently Codex and Claude, more coming soon).*..[ *read more* ](apps/t3code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/t3code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/t3code) | -| | [***tabby***](apps/tabby.md) | *A terminal for a more modern age*..[ *read more* ](apps/tabby.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tabby) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tabby) | -| | [***tablo-tools***](apps/tablo-tools.md) | *Tools to Bulk Delete and Export from Tablo DVR.*..[ *read more* ](apps/tablo-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tablo-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tablo-tools) | -| | [***tabularis***](apps/tabularis.md) | *A lightweight, developer-focused database management tool.*..[ *read more* ](apps/tabularis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tabularis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tabularis) | -| | [***tac***](apps/tac.md) | *Concatenate and print files in reverse. This is part of "am-utils" suite.*..[ *read more* ](apps/tac.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tac) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tac) | -| | [***tachoparser***](apps/tachoparser.md) | *Unofficial AppImage of tachoparser, CLI and GUI application for reading DDD tachograph cards.*..[ *read more* ](apps/tachoparser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tachoparser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tachoparser) | -| | [***tag-editor***](apps/tag-editor.md) | *Tag Editor, supports MP4, ID3, Vorbis, Opus, FLAC and Matroska.*..[ *read more* ](apps/tag-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tag-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tag-editor) | -| | [***tagger***](apps/tagger.md) | *Unofficial. Simple audio tagger with support for various audio formats.*..[ *read more* ](apps/tagger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tagger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tagger) | -| | [***tagspaces***](apps/tagspaces.md) | *An offline, open source, document manager with tagging support.*..[ *read more* ](apps/tagspaces.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tagspaces) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tagspaces) | -| | [***tagtime-desktop***](apps/tagtime-desktop.md) | *Time tracking for space cadets, desktop edition.*..[ *read more* ](apps/tagtime-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tagtime-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tagtime-desktop) | -| | [***tail***](apps/tail.md) | *Output the last part of files. This is part of "am-utils" suite.*..[ *read more* ](apps/tail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tail) | -| | [***taisei-project***](apps/taisei-project.md) | *Unofficial, A free and open-source Touhou Project fangame.*..[ *read more* ](apps/taisei-project.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/taisei-project) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/taisei-project) | -| | [***talktype***](apps/talktype.md) | *Linux speech to text app.*..[ *read more* ](apps/talktype.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/talktype) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/talktype) | -| | [***tamga***](apps/tamga.md) | *A 3D sculpting, sketching, and stylized rendering app.*..[ *read more* ](apps/tamga.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tamga) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tamga) | -| | [***tangent***](apps/tangent.md) | *A clean and powerful open source notes app.*..[ *read more* ](apps/tangent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tangent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tangent) | -| | [***tar***](apps/tar.md) | *Utility used to store, backup, and transport files. This is part of "am-utils" suite.*..[ *read more* ](apps/tar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tar) | -| | [***taradino***](apps/taradino.md) | *Unofficial, SDL2 port of Rise of the Triad.*..[ *read more* ](apps/taradino.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/taradino) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/taradino) | -| | [***taskell***](apps/taskell.md) | *Command-line Kanban board/task manager with support for Trello boards and GitHub projects.*..[ *read more* ](apps/taskell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/taskell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/taskell) | -| | [***taskizer***](apps/taskizer.md) | *A task management app.*..[ *read more* ](apps/taskizer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/taskizer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/taskizer) | -| | [***tasks-org***](apps/tasks-org.md) | *Private, ad-free task lists. Optional sync with Google Tasks, CalDAV or EteSync.*..[ *read more* ](apps/tasks-org.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tasks-org) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tasks-org) | -| | [***tastee-ui***](apps/tastee-ui.md) | *Tool helping you write executable specifications in your lang.*..[ *read more* ](apps/tastee-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tastee-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tastee-ui) | -| | [***tauon***](apps/tauon.md) | *Unofficial, a music player for the desktop.*..[ *read more* ](apps/tauon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tauon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tauon) | -| | [***tb***](apps/tb.md) | *Tasks, boards & notes for the command-line habitat.*..[ *read more* ](apps/tb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tb) | -| | [***tbc-video-export***](apps/tbc-video-export.md) | *Tool for exporting S-Video and CVBS-type TBCs to video files.*..[ *read more* ](apps/tbc-video-export.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tbc-video-export) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tbc-video-export) | -| | [***tc***](apps/tc.md) | *A desktop chat client for Twitch.*..[ *read more* ](apps/tc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tc) | -| | [***tdlib-rs***](apps/tdlib-rs.md) | *Rust wrapper around the Telegram Database Library.*..[ *read more* ](apps/tdlib-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tdlib-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tdlib-rs) | -| | [***teams***](apps/teams.md) | *Unofficial, Business communication platform developed by Microsoft.*..[ *read more* ](apps/teams.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teams) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teams) | -| | [***teamviewer-host***](apps/teamviewer-host.md) | *Host utility for TeamViewer, if you want to set up unattended access to a device.*..[ *read more* ](apps/teamviewer-host.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teamviewer-host) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teamviewer-host) | -| | [***teamviewer-qs***](apps/teamviewer-qs.md) | *QuickSupport utility for TeamViewer, if you want to receive support.*..[ *read more* ](apps/teamviewer-qs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teamviewer-qs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teamviewer-qs) | -| | [***teamviewer***](apps/teamviewer.md) | *Deliver remote IT support to your customers and colleagues, anytime, anywhere. Communication, network.*..[ *read more* ](apps/teamviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teamviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teamviewer) | -| | [***tee***](apps/tee.md) | *Read from standard input and write to standard output and. This is part of "am-utils" suite.*..[ *read more* ](apps/tee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tee) | -| | [***teledrive***](apps/teledrive.md) | *Automatically backup Telegram Saved Messages.*..[ *read more* ](apps/teledrive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teledrive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teledrive) | -| | [***telegram***](apps/telegram.md) | *Official desktop version of Telegram messaging app.*..[ *read more* ](apps/telegram.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/telegram) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/telegram) | -| | [***telly-skout***](apps/kdeutils.md) | *A convergent Kirigami TV guide. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***tenacity***](apps/tenacity.md) | *An easy-to-use, cross-platform multi-track audio editor/recorder.*..[ *read more* ](apps/tenacity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tenacity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tenacity) | -| | [***terabox***](apps/terabox.md) | *Terabox is the simplest way to send your files around the world. Back up and Share photos, videos, docs, and other files of any size to cloud storage.*..[ *read more* ](apps/terabox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/terabox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/terabox) | -| | [***tere***](apps/tere.md) | *Terminal file explorer.*..[ *read more* ](apps/tere.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tere) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tere) | -| | [***terminalos-sim***](apps/terminalos-sim.md) | *A terminalOS simulator.*..[ *read more* ](apps/terminalos-sim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/terminalos-sim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/terminalos-sim) | -| | [***termora***](apps/termora.md) | *A terminal emulator and SSH client.*..[ *read more* ](apps/termora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/termora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/termora) | -| | [***termshot***](apps/termshot.md) | *Creates screenshots based on terminal command output.*..[ *read more* ](apps/termshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/termshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/termshot) | -| | [***teslacam-browser***](apps/teslacam-browser.md) | *A minimal TeslaCam Browser.*..[ *read more* ](apps/teslacam-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teslacam-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teslacam-browser) | -| | [***tesler***](apps/tesler.md) | *The Tesla Sentinel Viewer.*..[ *read more* ](apps/tesler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tesler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tesler) | -| | [***tess***](apps/tess.md) | *A hackable, simple, rapid and beautiful terminal.*..[ *read more* ](apps/tess.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tess) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tess) | -| | [***tesseract***](apps/tesseract.md) | *Tesseract Open Source OCR Engine AppImage.*..[ *read more* ](apps/tesseract.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tesseract) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tesseract) | -| | [***test***](apps/test.md) | *Check file types and compare values. This is part of "am-utils" suite.*..[ *read more* ](apps/test.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/test) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/test) | -| | [***testdisk***](apps/testdisk.md) | *TestDisk & PhotoRec, tools to recover lost partitions and files.*..[ *read more* ](apps/testdisk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/testdisk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/testdisk) | -| | [***tetanes***](apps/tetanes.md) | *A cross-platform NES emulator written in Rust using wgpu.*..[ *read more* ](apps/tetanes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tetanes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tetanes) | -| | [***tev***](apps/tev.md) | *High dynamic range (HDR) image viewer for people who care about colors.*..[ *read more* ](apps/tev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tev) | -| | [***texmacs***](apps/texmacs.md) | *Free scientific text editor, inspired by TeX and GNU Emacs.*..[ *read more* ](apps/texmacs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/texmacs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/texmacs) | -| | [***texstudio***](apps/texstudio.md) | *LaTeX development environment.*..[ *read more* ](apps/texstudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/texstudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/texstudio) | -| | [***textnote***](apps/textnote.md) | *Simple tool for creating and organizing daily notes on the command line.*..[ *read more* ](apps/textnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/textnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/textnote) | -| | [***textosaurus***](apps/textosaurus.md) | *Cross-platform text editor based on Qt and Scintilla.*..[ *read more* ](apps/textosaurus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/textosaurus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/textosaurus) | -| | [***tfcbm***](apps/tfcbm.md) | *The * Clipboard Manager.*..[ *read more* ](apps/tfcbm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tfcbm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tfcbm) | -| | [***tgpt***](apps/tgpt.md) | *AI Chatbots in terminal without needing API keys.*..[ *read more* ](apps/tgpt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tgpt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tgpt) | -| | [***the-way***](apps/the-way.md) | *A code snippets manager for your terminal.*..[ *read more* ](apps/the-way.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/the-way) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/the-way) | -| | [***thedesk***](apps/thedesk.md) | *Mastodon Client for PC.*..[ *read more* ](apps/thedesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thedesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thedesk) | -| | [***theframe***](apps/theframe.md) | *Animation tool.*..[ *read more* ](apps/theframe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/theframe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/theframe) | -| | [***theia-blueprint***](apps/theia-blueprint.md) | *Building desktop-based products based on Eclipse Theia.*..[ *read more* ](apps/theia-blueprint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/theia-blueprint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/theia-blueprint) | -| | [***thermusqt***](apps/thermusqt.md) | *Calculate particle composition of hadronic state.*..[ *read more* ](apps/thermusqt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thermusqt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thermusqt) | -| | [***theweb***](apps/theweb.md) | *Web Browser.*..[ *read more* ](apps/theweb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/theweb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/theweb) | -| | [***thief***](apps/thief.md) | *An innovative cross-platform fishing tool, in chinese.*..[ *read more* ](apps/thief.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thief) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thief) | -| | [***thinreports-section-editor***](apps/thinreports-section-editor.md) | *A template editor for Thinreports.*..[ *read more* ](apps/thinreports-section-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thinreports-section-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thinreports-section-editor) | -| | [***thlink***](apps/thlink.md) | *Touhou Project Game Netplay Tool.*..[ *read more* ](apps/thlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thlink) | -| | [***thoptv***](apps/thoptv.md) | *Enjoy Ultimate Movies, sports Matches, IPL and Latest Shows.*..[ *read more* ](apps/thoptv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thoptv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thoptv) | -| | [***thorium-client***](apps/thorium-client.md) | *A locked-down electron kiosk for Thorium.*..[ *read more* ](apps/thorium-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thorium-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thorium-client) | -| | [***thorium-reader***](apps/thorium-reader.md) | *Desktop application to read ebooks.*..[ *read more* ](apps/thorium-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thorium-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thorium-reader) | -| | [***thorium***](apps/thorium.md) | *Web Browser, a Chromium fork including Widevine and FFmpeg support.*..[ *read more* ](apps/thorium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thorium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thorium) | -| | [***thunderbird-beta***](apps/thunderbird-beta.md) | *Free and open source eMail client, Beta Edition.*..[ *read more* ](apps/thunderbird-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thunderbird-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thunderbird-beta) | -| | [***thunderbird-nightly***](apps/thunderbird-nightly.md) | *Free and open source eMail client, Nightly Edition.*..[ *read more* ](apps/thunderbird-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thunderbird-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thunderbird-nightly) | -| | [***thunderbird***](apps/thunderbird.md) | *Free and open source eMail client, Stable.*..[ *read more* ](apps/thunderbird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thunderbird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thunderbird) | -| | [***ticker***](apps/ticker.md) | *Terminal stock ticker with live updates and position tracking.*..[ *read more* ](apps/ticker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ticker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ticker) | -| | [***ticktick***](apps/ticktick.md) | *A To-Do List and Calendar to keep you organized.*..[ *read more* ](apps/ticktick.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ticktick) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ticktick) | -| | [***tidal-hifi***](apps/tidal-hifi.md) | *The web version of listen.tidal.com running in electron.*..[ *read more* ](apps/tidal-hifi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tidal-hifi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tidal-hifi) | -| | [***tidybit***](apps/tidybit.md) | *TidyBit is a simple handy tool that can organize messy collection of files and move them to a chosen folder.*..[ *read more* ](apps/tidybit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tidybit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tidybit) | -| | [***tilde-podcast***](apps/tilde-podcast.md) | *Podcast client to listen to all you favorite podcasts.*..[ *read more* ](apps/tilde-podcast.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tilde-podcast) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tilde-podcast) | -| | [***tiled***](apps/tiled.md) | *Tile map editor.*..[ *read more* ](apps/tiled.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tiled) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tiled) | -| | [***tilinggenerator***](apps/tilinggenerator.md) | *Generator of regular and irregular tilings.*..[ *read more* ](apps/tilinggenerator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tilinggenerator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tilinggenerator) | -| | [***timenaut***](apps/timenaut.md) | *Desktop time tracking application.*..[ *read more* ](apps/timenaut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/timenaut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/timenaut) | -| | [***timeout***](apps/timeout.md) | *Run a command with a time limit. This is part of "am-utils" suite.*..[ *read more* ](apps/timeout.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/timeout) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/timeout) | -| | [***tipitaka-pali-reader***](apps/tipitaka-pali-reader.md) | *A Pali Reading app made in Flutter.*..[ *read more* ](apps/tipitaka-pali-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tipitaka-pali-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tipitaka-pali-reader) | -| | [***tixati***](apps/tixati.md) | *A New and Powerful P2P System 100% Free, Simple and Easy to Use Bittorrent Client.*..[ *read more* ](apps/tixati.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tixati) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tixati) | -| | [***tkmm***](apps/tkmm.md) | *TotK Mod Manager, a mod manager and merger for Tears of the Kingdom.*..[ *read more* ](apps/tkmm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tkmm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tkmm) | -| | [***tlock***](apps/tlock.md) | *Two-Factor Authentication Tokens Manager in Terminal.*..[ *read more* ](apps/tlock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tlock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tlock) | -| | [***tlum***](apps/tlum.md) | *Tlum - open-source cross-platform language learning application leverages the power of natural language processing to pinpoint pronunciation gaps and enhance articulation, machine learning to boost vocabulary proficiency.*..[ *read more* ](apps/tlum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tlum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tlum) | -| | [***tmon***](apps/tmon.md) | *A simple CLI tool for monitoring/reporting CPU temperatures.*..[ *read more* ](apps/tmon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tmon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tmon) | -| | [***tmux***](apps/tmux.md) | *Tmux AppImage build via Docker.*..[ *read more* ](apps/tmux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tmux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tmux) | -| | [***tnt***](apps/tnt.md) | *A computer-assisted translation tool.*..[ *read more* ](apps/tnt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tnt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tnt) | -| | [***tockler***](apps/tockler.md) | *An application that tracks your time by monitoring.*..[ *read more* ](apps/tockler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tockler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tockler) | -| | [***tod***](apps/tod.md) | *An unofficial Todoist command line client written in Rust.*..[ *read more* ](apps/tod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tod) | -| | [***todesktop***](apps/todesktop.md) | *Take your web app codebase and transform it into a cross platform desktop app with native functionality.*..[ *read more* ](apps/todesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/todesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/todesktop) | -| | [***todo-bash***](apps/todo-bash.md) | *Todo list for the Bash command line.*..[ *read more* ](apps/todo-bash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/todo-bash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/todo-bash) | -| | [***todoist***](apps/todoist.md) | *The to-do list to organize work & life.*..[ *read more* ](apps/todoist.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/todoist) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/todoist) | -| | [***todorant***](apps/todorant.md) | *Todorant releases.*..[ *read more* ](apps/todorant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/todorant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/todorant) | -| | [***todorust***](apps/todorust.md) | *Simple ToDoList made in rust.*..[ *read more* ](apps/todorust.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/todorust) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/todorust) | -| | [***toerings***](apps/toerings.md) | *A clone of Conky Seamod using Tauri.*..[ *read more* ](apps/toerings.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/toerings) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/toerings) | -| | [***toipe***](apps/toipe.md) | *yet another typing test, but crab flavoured.*..[ *read more* ](apps/toipe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/toipe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/toipe) | -| | [***tokodon***](apps/tokodon.md) | *Unofficial, a modern client for Mastodon and other decentralized servers that implement its API (such as Pixelfed).*..[ *read more* ](apps/tokodon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tokodon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tokodon) | -| | [***tomatox***](apps/tomatox.md) | *An online free VIP video analysis player, in chinese.*..[ *read more* ](apps/tomatox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tomatox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tomatox) | -| | [***tonuino-toolbox***](apps/tonuino-toolbox.md) | *SD card manager for your Tonuino.*..[ *read more* ](apps/tonuino-toolbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tonuino-toolbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tonuino-toolbox) | -| | [***toolblex***](apps/toolblex.md) | *Bluetooth Low Energy (and Classic) device scanner and analyzer.*..[ *read more* ](apps/toolblex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/toolblex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/toolblex) | -| | [***top***](apps/top.md) | *Display Linux processes. This is part of "am-utils" suite.*..[ *read more* ](apps/top.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/top) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/top) | -| | [***topgrade***](apps/topgrade.md) | *Upgrade all the things, this is the universal upgrade manager.*..[ *read more* ](apps/topgrade.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/topgrade) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/topgrade) | -| | [***tor-browser-alpha***](apps/tor-browser-alpha.md) | *Privacy-oriented Web Browser for sites blocked in your country.*..[ *read more* ](apps/tor-browser-alpha.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tor-browser-alpha) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tor-browser-alpha) | -| | [***tor-browser***](apps/tor-browser.md) | *Privacy-oriented Web Browser for sites blocked in your country.*..[ *read more* ](apps/tor-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tor-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tor-browser) | -| | [***torcs***](apps/torcs.md) | *The 3D Open Racing Car Game and Simulator.*..[ *read more* ](apps/torcs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/torcs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/torcs) | -| | [***torrents_digger***](apps/torrents_digger.md) | *Torrents Digger searches already available torrents from internet.*..[ *read more* ](apps/torrents_digger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/torrents_digger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/torrents_digger) | -| | [***torrenttools***](apps/torrenttools.md) | *Cli tool to inspect/create/edit BitTorrent metafiles.*..[ *read more* ](apps/torrenttools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/torrenttools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/torrenttools) | -| | [***toru***](apps/toru.md) | *Bittorrent streaming CLI tool. Stream anime torrents real-time.*..[ *read more* ](apps/toru.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/toru) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/toru) | -| | [***torzu***](apps/torzu.md) | *Unofficial AppImage of Torzu (fork of yuzu), with optimized builds for modern cpus.*..[ *read more* ](apps/torzu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/torzu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/torzu) | -| | [***touch***](apps/touch.md) | *Change file timestamps. This is part of "am-utils" suite.*..[ *read more* ](apps/touch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/touch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/touch) | -| | [***touchhle***](apps/touchhle.md) | *Unofficial, High-level emulator for iPhone OS apps.*..[ *read more* ](apps/touchhle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/touchhle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/touchhle) | -| | [***tput***](apps/tput.md) | *tput - initialize a terminal, exercise its capabilities, or query terminfo database. This is part of "am-utils" suite.*..[ *read more* ](apps/tput.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tput) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tput) | -| | [***tr***](apps/tr.md) | *Translate or delete characters. This is part of "am-utils" suite.*..[ *read more* ](apps/tr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tr) | -| | [***trackaudio***](apps/trackaudio.md) | *A next generation Audio-For-VATSIM ATC Client.*..[ *read more* ](apps/trackaudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trackaudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trackaudio) | -| | [***trans***](apps/trans.md) | *CLI translator using Google/Bing/Yandex Translate, etc...*..[ *read more* ](apps/trans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trans) | -| | [***transfernow***](apps/transfernow.md) | *TransferNow is a simple, quick and secure free solution to send large files and big documents up to 250 GB per transfer. No registration required.*..[ *read more* ](apps/transfernow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transfernow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transfernow) | -| | [***transformer***](apps/transformer.md) | *A command-line utility for splitting large files into chunks/pieces and merging them back together.*..[ *read more* ](apps/transformer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transformer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transformer) | -| | [***translatium***](apps/translatium.md) | *Translate Any Languages like a Pro.*..[ *read more* ](apps/translatium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/translatium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/translatium) | -| | [***transmission-gtk***](apps/transmission-gtk.md) | *Unofficial. Fast, easy, and free BitTorrent client, GTK+ GUI.*..[ *read more* ](apps/transmission-gtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transmission-gtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transmission-gtk) | -| | [***transmission-qt***](apps/transmission-qt.md) | *Unofficial, Fast, easy, and free BitTorrent client, Qt GUI.*..[ *read more* ](apps/transmission-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transmission-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transmission-qt) | -| | [***transmissionic***](apps/transmissionic.md) | *Remote for Transmission Daemon.*..[ *read more* ](apps/transmissionic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transmissionic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transmissionic) | -| | [***trelby***](apps/trelby.md) | *Unofficial, Trelby is simple, fast and elegantly laid out to make screenwriting simple.*..[ *read more* ](apps/trelby.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trelby) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trelby) | -| | [***trenchbroom***](apps/trenchbroom.md) | *A modern, cross-platform level editor for Quake engine based games.*..[ *read more* ](apps/trenchbroom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trenchbroom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trenchbroom) | -| | [***trezor-suite***](apps/trezor-suite.md) | *Trezor Suite desktop application.*..[ *read more* ](apps/trezor-suite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trezor-suite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trezor-suite) | -| | [***trgui-ng***](apps/trgui-ng.md) | *Remote GUI for Transmission torrent daemon.*..[ *read more* ](apps/trgui-ng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trgui-ng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trgui-ng) | -| | [***triagem-touch***](apps/triagem-touch.md) | *Novo SGA triage client.*..[ *read more* ](apps/triagem-touch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/triagem-touch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/triagem-touch) | -| | [***trilium***](apps/trilium.md) | *Build your personal knowledge base with Trilium Notes.*..[ *read more* ](apps/trilium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trilium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trilium) | -| | [***trinity-desktop***](apps/trinity-desktop.md) | *Desktop wallet for IOTA.*..[ *read more* ](apps/trinity-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trinity-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trinity-desktop) | -| | [***tropy***](apps/tropy.md) | *Research photo management.*..[ *read more* ](apps/tropy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tropy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tropy) | -| | [***true***](apps/true.md) | *Do nothing, successfully. This is part of "am-utils" suite.*..[ *read more* ](apps/true.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/true) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/true) | -| | [***truncate***](apps/truncate.md) | *Shrink or extend the size of a file to the specified. This is part of "am-utils" suite.*..[ *read more* ](apps/truncate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/truncate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/truncate) | -| | [***tsort***](apps/tsort.md) | *Perform a topological sort. This is part of "am-utils" suite.*..[ *read more* ](apps/tsort.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tsort) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tsort) | -| | [***tssh***](apps/tssh.md) | *trzsz-ssh is an alternative to ssh client, offers additional features.*..[ *read more* ](apps/tssh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tssh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tssh) | -| | [***tt***](apps/tt.md) | *A simple Time Tracker to stay basic and intuitive.*..[ *read more* ](apps/tt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tt) | -| | [***tts-now***](apps/tts-now.md) | *A chinese text-to-speech assistant based on the speech synthesi.*..[ *read more* ](apps/tts-now.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tts-now) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tts-now) | -| | [***ttth***](apps/ttth.md) | *An electron based desktop app for online services.*..[ *read more* ](apps/ttth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ttth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ttth) | -| | [***tty***](apps/tty.md) | *Print the file name of the terminal connected to standard. This is part of "am-utils" suite.*..[ *read more* ](apps/tty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tty) | -| | [***ttyper***](apps/ttyper.md) | *Terminal-based typing test.*..[ *read more* ](apps/ttyper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ttyper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ttyper) | -| | [***tumblr-downloader-gui***](apps/tumblr-downloader-gui.md) | *Download Tumblr posts that you liked.*..[ *read more* ](apps/tumblr-downloader-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tumblr-downloader-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tumblr-downloader-gui) | -| | [***tumblr-scraper***](apps/tumblr-scraper.md) | *Scrape a Tumblr profile for user uploadede posts.*..[ *read more* ](apps/tumblr-scraper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tumblr-scraper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tumblr-scraper) | -| | [***tunepack***](apps/tunepack.md) | *Finding and download HQ audio files.*..[ *read more* ](apps/tunepack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tunepack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tunepack) | -| | [***tura***](apps/tura.md) | *Tura is an open-source, local-first AI coding agent that works with existing AI subscriptions and coding tools.*..[ *read more* ](apps/tura.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tura) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tura) | -| | [***turbowarp***](apps/turbowarp.md) | *Scratch mod with a compiler to run projects faster.*..[ *read more* ](apps/turbowarp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/turbowarp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/turbowarp) | -| | [***tusk***](apps/tusk.md) | *Evernote desktop app.*..[ *read more* ](apps/tusk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tusk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tusk) | -| | [***tutanota-enhanced***](apps/tutanota-enhanced.md) | *Unofficial AppImage for Tutanota, an email service with a strong focus on security and privacy that lets you encrypt emails, contacts and calendar entries on all your devices.*..[ *read more* ](apps/tutanota-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tutanota-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tutanota-enhanced) | -| | [***tutanota***](apps/tutanota.md) | *Tuta is an email service with a strong focus on security and privacy that lets you encrypt emails, contacts and calendar entries on all your devices.*..[ *read more* ](apps/tutanota.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tutanota) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tutanota) | -| | [***tux-manager***](apps/tux-manager.md) | *A Linux Task Manager alternative built with Qt6, inspired by the Windows Task Manager but designed to go further - providing deep visibility into system processes, performance metrics, users, and services.*..[ *read more* ](apps/tux-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tux-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tux-manager) | -| | [***tuxfootball***](apps/tuxfootball.md) | *Unofficial, is a great 2D football game for Windows and Linux.*..[ *read more* ](apps/tuxfootball.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tuxfootball) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tuxfootball) | -| | [***tuxplorer***](apps/tuxplorer.md) | *Tuxplorer is a terminal based file explorer.*..[ *read more* ](apps/tuxplorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tuxplorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tuxplorer) | -| | [***tuxpuck***](apps/tuxpuck.md) | *Unofficial, hockey-like table game.*..[ *read more* ](apps/tuxpuck.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tuxpuck) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tuxpuck) | -| | [***twake***](apps/twake.md) | *Desktop App for Twake.*..[ *read more* ](apps/twake.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/twake) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/twake) | -| | [***tweaksophia***](apps/tweaksophia.md) | *An app to automatically renew the books of the SophiA system.*..[ *read more* ](apps/tweaksophia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tweaksophia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tweaksophia) | -| | [***tweet-tray***](apps/tweet-tray.md) | *Tweet quickly from the desktop without any distractions.*..[ *read more* ](apps/tweet-tray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tweet-tray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tweet-tray) | -| | [***twetter***](apps/twetter.md) | *Client for the pubsub app.*..[ *read more* ](apps/twetter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/twetter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/twetter) | -| | [***twitch-wrapper***](apps/twitch-wrapper.md) | *An Electron wrapper for Twitch.tv.*..[ *read more* ](apps/twitch-wrapper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/twitch-wrapper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/twitch-wrapper) | -| | [***typioca***](apps/typioca.md) | *Cozy typing speed tester in terminal.*..[ *read more* ](apps/typioca.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/typioca) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/typioca) | -| | [***uad-ng***](apps/uad-ng.md) | *GUI Rust wrapper for ADB to debloat non-rooted Android devices.*..[ *read more* ](apps/uad-ng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uad-ng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uad-ng) | -| | [***ubiquity***](apps/ubiquity.md) | *A cross-platform markdown editor.*..[ *read more* ](apps/ubiquity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ubiquity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ubiquity) | -| | [***ubports-installer***](apps/ubports-installer.md) | *A simple tool to install Ubuntu Touch on UBports devices*..[ *read more* ](apps/ubports-installer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ubports-installer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ubports-installer) | -| | [***uefitool***](apps/uefitool.md) | *Unofficial, UEFI firmware image viewer and editor.*..[ *read more* ](apps/uefitool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uefitool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uefitool) | -| | [***ueli***](apps/ueli.md) | *Cross-Platform Keystroke Launcher.*..[ *read more* ](apps/ueli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ueli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ueli) | -| | [***uhk.agent***](apps/uhk.agent.md) | *Configuration app of the Ultimate Hacking Keyboard.*..[ *read more* ](apps/uhk.agent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uhk.agent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uhk.agent) | -| | [***uivonim***](apps/uivonim.md) | *Fork of the Veonim Neovim GUI.*..[ *read more* ](apps/uivonim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uivonim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uivonim) | -| | [***ul***](apps/ul.md) | *Translate underline sequences for terminals. This is part of "am-utils" suite.*..[ *read more* ](apps/ul.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ul) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ul) | -| | [***ultragrid***](apps/ultragrid.md) | *UltraGrid low-latency audio/video network transmission system.*..[ *read more* ](apps/ultragrid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ultragrid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ultragrid) | -| | [***ultrascreen***](apps/ultrascreen.md) | *Share your screens with friends.*..[ *read more* ](apps/ultrascreen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ultrascreen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ultrascreen) | -| | [***umount***](apps/umount.md) | *Unmount filesystems. This is part of "am-utils" suite.*..[ *read more* ](apps/umount.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/umount) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/umount) | -| | [***ums***](apps/ums.md) | *Universal Media Server. A DLNA, UPnP and HTTP(S) Media Server.*..[ *read more* ](apps/ums.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ums) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ums) | -| | [***uname***](apps/uname.md) | *Print system information. This is part of "am-utils" suite.*..[ *read more* ](apps/uname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uname) | -| | [***uncompress***](apps/uncompress.md) | *Zcat - compress and expand data. This is part of "am-utils" suite.*..[ *read more* ](apps/uncompress.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uncompress) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uncompress) | -| | [***uncov***](apps/uncov.md) | *A tool that collects and processes code coverage reports.*..[ *read more* ](apps/uncov.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uncov) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uncov) | -| | [***undertaker141***](apps/undertaker141.md) | *A free and open-source game-center for linux. Pre-configured Wine and Native Games for Linux.*..[ *read more* ](apps/undertaker141.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/undertaker141) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/undertaker141) | -| | [***unetbootin***](apps/unetbootin.md) | *Install Linux/BSD distributions to a partition or USB drive.*..[ *read more* ](apps/unetbootin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unetbootin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unetbootin) | -| | [***unexpand***](apps/unexpand.md) | *Convert spaces to tabs. This is part of "am-utils" suite.*..[ *read more* ](apps/unexpand.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unexpand) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unexpand) | -| | [***ungoogled-chromium***](apps/ungoogled-chromium.md) | *Chromium Web Browser without Google services.*..[ *read more* ](apps/ungoogled-chromium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ungoogled-chromium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ungoogled-chromium) | -| | [***uniq***](apps/uniq.md) | *Report or omit repeated lines. This is part of "am-utils" suite.*..[ *read more* ](apps/uniq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uniq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uniq) | -| | [***unishellect***](apps/unishellect.md) | *JSON parser file and menu customizez Hyper-inspired.*..[ *read more* ](apps/unishellect.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unishellect) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unishellect) | -| | [***unityhub***](apps/unityhub.md) | *Unofficial AppImage for Unity Hub.*..[ *read more* ](apps/unityhub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unityhub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unityhub) | -| | [***unleashedrecomp***](apps/unleashedrecomp.md) | *Unofficial AppImage of UnleashedRecomp (Sonic Unleashed port)*..[ *read more* ](apps/unleashedrecomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unleashedrecomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unleashedrecomp) | -| | [***unlink***](apps/unlink.md) | *Call the unlink function to remove the specified file. This is part of "am-utils" suite.*..[ *read more* ](apps/unlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unlink) | -| | [***unofficial-homestuck-collection***](apps/unofficial-homestuck-collection.md) | *An offline collection of Homestuck and its related works.*..[ *read more* ](apps/unofficial-homestuck-collection.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unofficial-homestuck-collection) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unofficial-homestuck-collection) | -| | [***unofficial-zalo***](apps/unofficial-zalo.md) | *Unofficial Zalo App.*..[ *read more* ](apps/unofficial-zalo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unofficial-zalo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unofficial-zalo) | -| | [***unreel***](apps/unreel.md) | *A GUI to create Reveal presentations.*..[ *read more* ](apps/unreel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unreel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unreel) | -| | [***unshare***](apps/unshare.md) | *Run program in new namespaces. This is part of "am-utils" suite.*..[ *read more* ](apps/unshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unshare) | -| | [***unveil***](apps/unveil.md) | *Unveil Rs is a tool to create presentations from markdown inspired by reveal.js, mdbook and zola.*..[ *read more* ](apps/unveil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unveil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unveil) | -| | [***unxz***](apps/unxz.md) | *Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of "am-utils" suite.*..[ *read more* ](apps/unxz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unxz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unxz) | -| | [***unyo***](apps/unyo.md) | *Anime streaming and Manga reader desktop app without ads.*..[ *read more* ](apps/unyo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unyo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unyo) | -| | [***unzip***](apps/unzip.md) | *For extracting and viewing files in .zip archives. This is part of "am-utils" suite.*..[ *read more* ](apps/unzip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unzip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unzip) | -| | [***updatedeployqt***](apps/updatedeployqt.md) | *Tool to deploy auto update for qt applications.*..[ *read more* ](apps/updatedeployqt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/updatedeployqt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/updatedeployqt) | -| | [***upgit***](apps/upgit.md) | *CLI, another upload hub that supports clipboard. It works well with Typora, Snipaste, VSCode.*..[ *read more* ](apps/upgit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/upgit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/upgit) | -| | [***upnote***](apps/upnote.md) | *Stay focused and productive with a clean and clutter-free note space.*..[ *read more* ](apps/upnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/upnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/upnote) | -| | [***upnotes***](apps/upnotes.md) | *A notes app for software developers.*..[ *read more* ](apps/upnotes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/upnotes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/upnotes) | -| | [***upscayl***](apps/upscayl.md) | *Free and Open Source AI Image Upscaler.*..[ *read more* ](apps/upscayl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/upscayl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/upscayl) | -| | [***uptime***](apps/uptime.md) | *Tell how long the system has been running.. This is part of "am-utils" suite.*..[ *read more* ](apps/uptime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uptime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uptime) | -| | [***urbanterror***](apps/urbanterror.md) | *A team-based tactical game shooter based on the Quake 3 Engine.*..[ *read more* ](apps/urbanterror.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/urbanterror) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/urbanterror) | -| | [***users***](apps/users.md) | *Print the user names of users currently logged in to the. This is part of "am-utils" suite.*..[ *read more* ](apps/users.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/users) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/users) | -| | [***utilso***](apps/utilso.md) | *Regex Tester, JWT Verify, Image Converter, Format JSON, Decode...*..[ *read more* ](apps/utilso.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/utilso) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/utilso) | -| | [***uv***](apps/uv.md) | *An extremely fast Python package and project manager, written in Rust.*..[ *read more* ](apps/uv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uv) | -| | [***uwufetch***](apps/uwufetch.md) | *A meme system info tool for Linux, based on nyan/uwu trend.*..[ *read more* ](apps/uwufetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uwufetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uwufetch) | -| | [***uyou***](apps/uyou.md) | *This is a todo list with electron.*..[ *read more* ](apps/uyou.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uyou) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uyou) | -| | [***uzdoom***](apps/uzdoom.md) | *UZDoom is a feature centric port for all Doom engine games, based on GZDoom, adding an advanced renderer and powerful scripting capabilities.*..[ *read more* ](apps/uzdoom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uzdoom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uzdoom) | -| | [***v2ray-desktop***](apps/v2ray-desktop.md) | *V2Ray GUI client for Linux.*..[ *read more* ](apps/v2ray-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/v2ray-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/v2ray-desktop) | -| | [***valeronoi***](apps/valeronoi.md) | *Companion app for Valetudo for generating WiFi heat maps.*..[ *read more* ](apps/valeronoi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/valeronoi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/valeronoi) | -| | [***vapour***](apps/vapour.md) | *An alternative open source Steam client.*..[ *read more* ](apps/vapour.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vapour) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vapour) | -| | [***varia***](apps/varia.md) | *Unofficial. Aria2-based advanced download manager with support for downloading files, torrents, video and audio + support for Chromium and Firefox extension.*..[ *read more* ](apps/varia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/varia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/varia) | -| | [***vcard-studio***](apps/vcard-studio.md) | *A contact management application with support for vCard file format (.vcf).*..[ *read more* ](apps/vcard-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vcard-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vcard-studio) | -| | [***vcloudcam***](apps/vcloudcam.md) | *Solution for the camera systems of gas and fuel stations.*..[ *read more* ](apps/vcloudcam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vcloudcam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vcloudcam) | -| | [***vcmi***](apps/vcmi.md) | *Unofficial AppImage of vcmi open-source engine for Heroes of Might and Magic III*..[ *read more* ](apps/vcmi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vcmi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vcmi) | -| | [***vdir***](apps/vdir.md) | *List directory contents. This is part of "am-utils" suite.*..[ *read more* ](apps/vdir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vdir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vdir) | -| | [***vechain***](apps/vechain.md) | *A browser that empowers DApps on VeChain.*..[ *read more* ](apps/vechain.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vechain) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vechain) | -| | [***vector***](apps/vector.md) | *Vector is a decentralized communication platform built on the Nostr Protocol.*..[ *read more* ](apps/vector.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vector) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vector) | -| | [***vegeta***](apps/vegeta.md) | *HTTP load testing tool and library. It's over 9000!*..[ *read more* ](apps/vegeta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vegeta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vegeta) | -| | [***ventoy***](apps/ventoy.md) | *Tool to create bootable USB drive for ISO/WIM/IMG/VHDx/EFI files.*..[ *read more* ](apps/ventoy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ventoy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ventoy) | -| | [***veracrypt***](apps/veracrypt.md) | *VeraCrypt is a free open source disk encryption software.*..[ *read more* ](apps/veracrypt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/veracrypt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/veracrypt) | -| | [***verto***](apps/verto.md) | *A multi-currency crypto wallet with support for EOS & VTX.*..[ *read more* ](apps/verto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/verto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/verto) | -| | [***vesktop***](apps/vesktop.md) | *Vesktop gives you the performance of web Discord.*..[ *read more* ](apps/vesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vesktop) | -| | [***vgmtrans***](apps/vgmtrans.md) | *A tool to convert proprietary, sequenced videogame music.*..[ *read more* ](apps/vgmtrans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vgmtrans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vgmtrans) | -| | [***vhc-viewer-wayland***](apps/vhc-viewer-wayland.md) | *Vulkan Hardware Capability Viewer.*..[ *read more* ](apps/vhc-viewer-wayland.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vhc-viewer-wayland) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vhc-viewer-wayland) | -| | [***vhc-viewer-x11***](apps/vhc-viewer-x11.md) | *Vulkan Hardware Capability Viewer.*..[ *read more* ](apps/vhc-viewer-x11.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vhc-viewer-x11) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vhc-viewer-x11) | -| | [***vhs***](apps/vhs.md) | *Your CLI home video recorder.*..[ *read more* ](apps/vhs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vhs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vhs) | -| | [***via-desktop***](apps/via-desktop.md) | *VIA Desktop is an Electron application designed to provide an offline experience for VIA.*..[ *read more* ](apps/via-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/via-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/via-desktop) | -| | [***via***](apps/via.md) | *Your keyboard's best friend.*..[ *read more* ](apps/via.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/via) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/via) | -| | [***vial***](apps/vial.md) | *GUI and a QMK fork for configuring your keyboard in real time.*..[ *read more* ](apps/vial.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vial) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vial) | -| | [***vibeprint-studio***](apps/vibeprint-studio.md) | *Unofficial AppImage of Vibeprint Studio.*..[ *read more* ](apps/vibeprint-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vibeprint-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vibeprint-studio) | -| | [***viber-enhanced***](apps/viber-enhanced.md) | *Unofficial. Enhanced AppImage of proprietary cross-platform IM and VoIP software.*..[ *read more* ](apps/viber-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viber-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viber-enhanced) | -| | [***viber***](apps/viber.md) | *Proprietary cross-platform IM and VoIP software.*..[ *read more* ](apps/viber.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viber) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viber) | -| | [***vice***](apps/vice.md) | *Unofficial AppImage of VICE.*..[ *read more* ](apps/vice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vice) | -| | [***vicinae***](apps/vicinae.md) | *A high-performance, native launcher for your desktop built with C++ and Qt. Native, fast, extensible.*..[ *read more* ](apps/vicinae.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vicinae) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vicinae) | -| | [***vicut***](apps/vicut.md) | *A Vim-based, scriptable, headless text editor for the command line.*..[ *read more* ](apps/vicut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vicut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vicut) | -| | [***vidbee***](apps/vidbee.md) | *Download videos from almost any website worldwide.*..[ *read more* ](apps/vidbee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vidbee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vidbee) | -| | [***vidcutter***](apps/vidcutter.md) | *Simple and fast video cutter and joiner.*..[ *read more* ](apps/vidcutter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vidcutter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vidcutter) | -| | [***viddy***](apps/viddy.md) | *A modern watch command line utility. Time machine and pager etc.*..[ *read more* ](apps/viddy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viddy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viddy) | -| | [***video-hub***](apps/video-hub.md) | *A fastest way to browse and search for videos on your computer.*..[ *read more* ](apps/video-hub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/video-hub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/video-hub) | -| | [***video-trimmer***](apps/video-trimmer.md) | *Unofficial. Simple video trimming, with option to trim precisely or to trim without loosing video quality.*..[ *read more* ](apps/video-trimmer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/video-trimmer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/video-trimmer) | -| | [***videomass***](apps/videomass.md) | *Free, open source and cross-platform GUI for FFmpeg.*..[ *read more* ](apps/videomass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/videomass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/videomass) | -| | [***vieb***](apps/vieb.md) | *Vim Inspired Electron Browser.*..[ *read more* ](apps/vieb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vieb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vieb) | -| | [***vifm***](apps/vifm.md) | *File manager with curses interface providing Vim-like environment.*..[ *read more* ](apps/vifm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vifm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vifm) | -| | [***vigad***](apps/vigad.md) | *Extract live-data from your screen.*..[ *read more* ](apps/vigad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vigad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vigad) | -| | [***vikunja***](apps/vikunja.md) | *The open-source, self-hostable to-do app.*..[ *read more* ](apps/vikunja.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vikunja) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vikunja) | -| | [***vimeo-dl***](apps/vimeo-dl.md) | *A cli tool to download private videos on vimeo. Written in golang.*..[ *read more* ](apps/vimeo-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vimeo-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vimeo-dl) | -| | [***viper-browser***](apps/viper-browser.md) | *Fast and lightweight Qt web browser.*..[ *read more* ](apps/viper-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viper-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viper-browser) | -| | [***viper***](apps/viper.md) | *Launcher and Updater for TF2 Northstar.*..[ *read more* ](apps/viper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viper) | -| | [***vipster***](apps/vipster.md) | *Visual periodic structure editor.*..[ *read more* ](apps/vipster.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vipster) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vipster) | -| | [***vircadia***](apps/vircadia.md) | *Open Source continuation of the High Fidelity metaverse.*..[ *read more* ](apps/vircadia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vircadia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vircadia) | -| | [***virt-manager***](apps/virt-manager.md) | *Unofficial AppImage of virt-manager, interface for managing virtual machines.*..[ *read more* ](apps/virt-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/virt-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/virt-manager) | -| | [***virtscreen***](apps/virtscreen.md) | *Make your iPad/tablet/computer into a secondary monitor on Linux.*..[ *read more* ](apps/virtscreen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/virtscreen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/virtscreen) | -| | [***virtualbox***](apps/virtualbox.md) | *Powerful x86 virtualization for enterprise as well as home use.*..[ *read more* ](apps/virtualbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/virtualbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/virtualbox) | -| | [***visipics***](apps/visipics.md) | *Windows software to find and remove duplicate pictures. Unofficial AppImage built using "wine32-deploy" and powered by "wine".*..[ *read more* ](apps/visipics.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/visipics) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/visipics) | -| | [***visual-define-xml-editor***](apps/visual-define-xml-editor.md) | *Editor for CDISC Define-XML standard.*..[ *read more* ](apps/visual-define-xml-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/visual-define-xml-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/visual-define-xml-editor) | -| | [***visual-lvm***](apps/visual-lvm.md) | *Visual LVM the remote gui lvm manager for all linux platform.*..[ *read more* ](apps/visual-lvm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/visual-lvm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/visual-lvm) | -| | [***visual-studio-code***](apps/visual-studio-code.md) | *Unofficial AppImage of Visual Studio Code.*..[ *read more* ](apps/visual-studio-code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/visual-studio-code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/visual-studio-code) | -| | [***visualboyadvance-m***](apps/visualboyadvance-m.md) | *Unofficial AppImage of VisualBoyAdvance-M.*..[ *read more* ](apps/visualboyadvance-m.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/visualboyadvance-m) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/visualboyadvance-m) | -| | [***visualfamilytree***](apps/visualfamilytree.md) | *Create a family tree with information and pictures.*..[ *read more* ](apps/visualfamilytree.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/visualfamilytree) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/visualfamilytree) | -| | [***vita3k***](apps/vita3k.md) | *Experimental PlayStation Vita emulator.*..[ *read more* ](apps/vita3k.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vita3k) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vita3k) | -| | [***vitomu***](apps/vitomu.md) | *Easy to use video to audio converter.*..[ *read more* ](apps/vitomu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vitomu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vitomu) | -| | [***viu***](apps/viu.md) | *Terminal image viewer with native support for iTerm and Kitty.*..[ *read more* ](apps/viu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viu) | -| | [***vivaldi-snapshot***](apps/vivaldi-snapshot.md) | *Unofficial. Advanced Web Browser, Testing Version.*..[ *read more* ](apps/vivaldi-snapshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vivaldi-snapshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vivaldi-snapshot) | -| | [***vivaldi-stable***](apps/vivaldi-stable.md) | *Unofficial. Advanced Web Browser, Stable Version.*..[ *read more* ](apps/vivaldi-stable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vivaldi-stable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vivaldi-stable) | -| | [***vivifyscrum***](apps/vivifyscrum.md) | *Agile Tool for Professionals.*..[ *read more* ](apps/vivifyscrum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vivifyscrum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vivifyscrum) | -| | [***vizgraph***](apps/vizgraph.md) | *A simple tool for Using Graphviz.*..[ *read more* ](apps/vizgraph.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vizgraph) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vizgraph) | -| | [***vk-desktop***](apps/vk-desktop.md) | *Cross-platform client VKontakte.*..[ *read more* ](apps/vk-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vk-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vk-desktop) | -| | [***vk-music-fs***](apps/vk-music-fs.md) | *Listen to the music from VK.*..[ *read more* ](apps/vk-music-fs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vk-music-fs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vk-music-fs) | -| | [***vkdt***](apps/vkdt.md) | *Raw photography workflow that sucks less, enabling real-time support for animations, timelapses, raw video, and heavy lifting algorithms like image alignment and better highlight inpainting.*..[ *read more* ](apps/vkdt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vkdt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vkdt) | -| | [***vkquake***](apps/vkquake.md) | *Vulkan Quake game port based on QuakeSpasm.*..[ *read more* ](apps/vkquake.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vkquake) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vkquake) | -| | [***vlc-git***](apps/vlc-git.md) | *Unofficial. Free and Open Source Video & Media player, GIT version.*..[ *read more* ](apps/vlc-git.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vlc-git) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vlc-git) | -| | [***vlc***](apps/vlc.md) | *Unofficial. Free and Open Source Video & Media player for Audio, streaming and more.*..[ *read more* ](apps/vlc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vlc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vlc) | -| | [***vnote***](apps/vnote.md) | *Note-taking application for pleasant Markdown.*..[ *read more* ](apps/vnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vnote) | -| | [***vocabsieve***](apps/vocabsieve.md) | *Simple sentence mining tool for language learning.*..[ *read more* ](apps/vocabsieve.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vocabsieve) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vocabsieve) | -| | [***voicevox***](apps/voicevox.md) | *Offical Frontend for the free VOICEVOX TTS Engine.*..[ *read more* ](apps/voicevox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/voicevox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/voicevox) | -| | [***vokoscreenng***](apps/vokoscreenng.md) | *Unofficial, a powerful screencast creator.*..[ *read more* ](apps/vokoscreenng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vokoscreenng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vokoscreenng) | -| | [***volaris***](apps/volaris.md) | *Volaris-Gui is the wrapper for Volaris, a secure file encryption software.*..[ *read more* ](apps/volaris.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/volaris) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/volaris) | -| | [***vpaint***](apps/vpaint.md) | *Experimental vector graphics and 2D animation editor.*..[ *read more* ](apps/vpaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vpaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vpaint) | -| | [***vrcft-avalonia***](apps/vrcft-avalonia.md) | *Cross-platform VRCFaceTracking made with Avalonia.*..[ *read more* ](apps/vrcft-avalonia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vrcft-avalonia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vrcft-avalonia) | -| | [***vrcx***](apps/vrcx.md) | *Friendship management tool for VRChat.*..[ *read more* ](apps/vrcx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vrcx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vrcx) | -| | [***vrest-ng***](apps/vrest-ng.md) | *Zero code API test automation solution.*..[ *read more* ](apps/vrest-ng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vrest-ng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vrest-ng) | -| | [***vrew***](apps/vrew.md) | *Your first video editor, your easiest choice.*..[ *read more* ](apps/vrew.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vrew) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vrew) | -| | [***vscodium***](apps/vscodium.md) | *Community-driven, freely-licensed binary distribution of MS VSCode.*..[ *read more* ](apps/vscodium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vscodium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vscodium) | -| | [***vt***](apps/vt.md) | *VirusTotal Command Line Interface.*..[ *read more* ](apps/vt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vt) | -| | [***vtm***](apps/vtm.md) | *Text-based desktop environment.*..[ *read more* ](apps/vtm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vtm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vtm) | -| | [***vue-calc***](apps/vue-calc.md) | *A Simple VueJS's Calculator built with ElectronJS.*..[ *read more* ](apps/vue-calc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vue-calc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vue-calc) | -| | [***vuerd***](apps/vuerd.md) | *A desktop ERD app.*..[ *read more* ](apps/vuerd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vuerd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vuerd) | -| | [***vup***](apps/vup.md) | *Private and decentralized cloud storage.*..[ *read more* ](apps/vup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vup) | -| | [***w2vgrep***](apps/w2vgrep.md) | *semantic-grep for words with similar meaning to the query.*..[ *read more* ](apps/w2vgrep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/w2vgrep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/w2vgrep) | -| | [***walc***](apps/walc.md) | *WhatsApp Linux Client, Unofficial.*..[ *read more* ](apps/walc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/walc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/walc) | -| | [***walk***](apps/walk.md) | *Terminal file manager.*..[ *read more* ](apps/walk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/walk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/walk) | -| | [***walker***](apps/walker.md) | *Multi-Purpose Launcher with a lot of features. Highly Customizable and fast.*..[ *read more* ](apps/walker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/walker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/walker) | -| | [***wallettech***](apps/wallettech.md) | *BytechCoin GUI Wallet.*..[ *read more* ](apps/wallettech.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wallettech) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wallettech) | -| | [***warp-terminal***](apps/warp-terminal.md) | *Terminal reimagined with AI and collaborative tools.*..[ *read more* ](apps/warp-terminal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/warp-terminal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/warp-terminal) | -| | [***warp***](apps/warp.md) | *Unofficial. Fast and secure file transfer through internet or local network exchanging a word-based code.*..[ *read more* ](apps/warp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/warp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/warp) | -| | [***warteschlangensimulator***](apps/warteschlangensimulator.md) | *A free, platform independent, discrete-event, stochastic simulator which allows to model queueing systems in form of flowcharts.*..[ *read more* ](apps/warteschlangensimulator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/warteschlangensimulator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/warteschlangensimulator) | -| | [***wasistlos***](apps/wasistlos.md) | *Unofficial, WhatsApp Linux Client, formerly known as "whatsapp-for-linux".*..[ *read more* ](apps/wasistlos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wasistlos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wasistlos) | -| | [***watch***](apps/watch.md) | *Watches for changes in a directory tree and reruns a command in an acme win or just on the terminal. This is part of "am-utils" suite.*..[ *read more* ](apps/watch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/watch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/watch) | -| | [***watched***](apps/watched.md) | *A media player and a browser for Excellent entertainment.*..[ *read more* ](apps/watched.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/watched) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/watched) | -| | [***watchflower***](apps/watchflower.md) | *Read and plot datas from your Xiaomi devices.*..[ *read more* ](apps/watchflower.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/watchflower) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/watchflower) | -| | [***watchit***](apps/watchit.md) | *Open movies everywhere.*..[ *read more* ](apps/watchit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/watchit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/watchit) | -| | [***waterfox***](apps/waterfox.md) | *A privacy-focused web browser engineered to give you speed, control, and peace of mind on the internet.*..[ *read more* ](apps/waterfox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/waterfox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/waterfox) | -| | [***waydroid-helper***](apps/waydroid-helper.md) | *App that provides a user-friendly way to configure Waydroid and install extensions, including Magisk and ARM translation (android).*..[ *read more* ](apps/waydroid-helper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/waydroid-helper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/waydroid-helper) | -| | [***wazo-desktop***](apps/wazo-desktop.md) | *Wazo desktop client for wazo VOIP server.*..[ *read more* ](apps/wazo-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wazo-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wazo-desktop) | -| | [***wc***](apps/wc.md) | *Print newline, word, and byte counts for each file. This is part of "am-utils" suite.*..[ *read more* ](apps/wc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wc) | -| | [***weakauras***](apps/weakauras.md) | *App to provide missing link between Wago.io and World of Warcraft.*..[ *read more* ](apps/weakauras.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/weakauras) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/weakauras) | -| | [***weatherdump***](apps/weatherdump.md) | *A WeatherDump GUI.*..[ *read more* ](apps/weatherdump.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/weatherdump) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/weatherdump) | -| | [***webamp-desktop-enhanced***](apps/webamp-desktop-enhanced.md) | *Unofficial, experimental cross-platform desktop version of Winamp 2.9 reimplementation in electron.*..[ *read more* ](apps/webamp-desktop-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webamp-desktop-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webamp-desktop-enhanced) | -| | [***webamp***](apps/webamp.md) | *Winamp Player 2.9 reimplementation in HTML5 and JS.*..[ *read more* ](apps/webamp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webamp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webamp) | -| | [***webcamoid***](apps/webcamoid.md) | *Unofficial. A multi-platform camera capture app focused on providing all major features required by power users with a very simple and intuitive interface.*..[ *read more* ](apps/webcamoid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webcamoid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webcamoid) | -| | [***webcord-enhanced***](apps/webcord-enhanced.md) | *Unofficial, A Discord and Fosscord client implemented without Discord API.*..[ *read more* ](apps/webcord-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webcord-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webcord-enhanced) | -| | [***webcord***](apps/webcord.md) | *A Discord and Fosscord client implemented without Discord API.*..[ *read more* ](apps/webcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webcord) | -| | [***webdesktop***](apps/webdesktop.md) | *WebDesktop make apps with just a text editor and nodejs.*..[ *read more* ](apps/webdesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webdesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webdesktop) | -| | [***webkitty***](apps/webkitty.md) | *Local web development IDE.*..[ *read more* ](apps/webkitty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webkitty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webkitty) | -| | [***webrecorder***](apps/webrecorder.md) | *A complete packaging of Webrecorder hosted service in Electron.*..[ *read more* ](apps/webrecorder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webrecorder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webrecorder) | -| | [***weektodo***](apps/weektodo.md) | *WeekToDo is a Free and Open Source Weekly Planner.*..[ *read more* ](apps/weektodo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/weektodo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/weektodo) | -| | [***westeroscraftlauncher***](apps/westeroscraftlauncher.md) | *Custom launcher for modded Minecraft, game.*..[ *read more* ](apps/westeroscraftlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/westeroscraftlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/westeroscraftlauncher) | -| | [***wethr***](apps/wethr.md) | *Command line weather tool.*..[ *read more* ](apps/wethr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wethr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wethr) | -| | [***wewechat***](apps/wewechat.md) | *Unofficial WeChat client built with React, MobX and Electron.*..[ *read more* ](apps/wewechat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wewechat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wewechat) | -| | [***wexond***](apps/wexond.md) | *Extensible, fast and innovative web browser with material UI.*..[ *read more* ](apps/wexond.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wexond) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wexond) | -| | [***wezterm-nightly***](apps/wezterm-nightly.md) | *A GPU-accelerated terminal emulator and multiplexer.*..[ *read more* ](apps/wezterm-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wezterm-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wezterm-nightly) | -| | [***wezterm***](apps/wezterm.md) | *A GPU-accelerated terminal emulator and multiplexer.*..[ *read more* ](apps/wezterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wezterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wezterm) | -| | [***wget***](apps/wget.md) | *Network utility to retrieve files from the web. This is part of "am-utils" suite.*..[ *read more* ](apps/wget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wget) | -| | [***whalebird***](apps/whalebird.md) | *An Electron based Mastodon client.*..[ *read more* ](apps/whalebird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whalebird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whalebird) | -| | [***whatsdesk***](apps/whatsdesk.md) | *Unofficial, An unofficial client of WhatsApp.*..[ *read more* ](apps/whatsdesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whatsdesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whatsdesk) | -| | [***whatsie***](apps/whatsie.md) | *Unofficial, feature rich WhatsApp web client based on Qt WebEngine.*..[ *read more* ](apps/whatsie.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whatsie) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whatsie) | -| | [***whatstron***](apps/whatstron.md) | *Unofficial WhatsApp desktop client for Linux.*..[ *read more* ](apps/whatstron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whatstron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whatstron) | -| | [***whirlpool-gui***](apps/whirlpool-gui.md) | *Desktop GUI for Whirlpool by Samourai-Wallet.*..[ *read more* ](apps/whirlpool-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whirlpool-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whirlpool-gui) | -| | [***whispering***](apps/whispering.md) | *Press shortcut → speak → get text. Free and open source. More local-first apps soon ❤️.*..[ *read more* ](apps/whispering.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whispering) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whispering) | -| | [***who***](apps/who.md) | *Show who is logged on. This is part of "am-utils" suite.*..[ *read more* ](apps/who.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/who) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/who) | -| | [***whoami***](apps/whoami.md) | *Print effective user name. This is part of "am-utils" suite.*..[ *read more* ](apps/whoami.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whoami) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whoami) | -| | [***whu-library-seat***](apps/whu-library-seat.md) | *Wuhan University Library Assistant, for Jinan University.*..[ *read more* ](apps/whu-library-seat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whu-library-seat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whu-library-seat) | -| | [***wick-editor***](apps/wick-editor.md) | *A free and open-source tool for creating games, animations and everything in-between!*..[ *read more* ](apps/wick-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wick-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wick-editor) | -| | [***widelands***](apps/widelands.md) | *Real-time strategy game with singleplayer campaigns.*..[ *read more* ](apps/widelands.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/widelands) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/widelands) | -| | [***wiiu-downloader***](apps/wiiu-downloader.md) | *Allows to download encrypted wiiu files from nintendo's official servers.*..[ *read more* ](apps/wiiu-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wiiu-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wiiu-downloader) | -| | [***wikilynx***](apps/wikilynx.md) | *A simple game browser made using Qt C++ for playing wikipedia speed-runs the right way.*..[ *read more* ](apps/wikilynx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wikilynx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wikilynx) | -| | [***win11-clipboard-history***](apps/win11-clipboard-history.md) | *A beautiful, Windows 11-style Clipboard History Manager for Linux.*..[ *read more* ](apps/win11-clipboard-history.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/win11-clipboard-history) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/win11-clipboard-history) | -| | [***winboat***](apps/winboat.md) | *Run Windows apps on 🐧 Linux with ✨ seamless integration.*..[ *read more* ](apps/winboat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/winboat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/winboat) | -| | [***window-pet***](apps/window-pet.md) | *Pet overlay app that lets you have adorable companion such as pets, anime characters on your screen.*..[ *read more* ](apps/window-pet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/window-pet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/window-pet) | -| | [***windows2usb***](apps/windows2usb.md) | *Flash Drive burning utility, MBR/GPT, BIOS/UEFI, FAT32/NTFS.*..[ *read more* ](apps/windows2usb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/windows2usb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/windows2usb) | -| | [***windows95***](apps/windows95.md) | *Unofficial. Windows 95 in Electron.*..[ *read more* ](apps/windows95.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/windows95) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/windows95) | -| | [***windusb-gui***](apps/windusb-gui.md) | *A modern, Rust-based graphical tool for creating bootable Windows USB installers on Linux.*..[ *read more* ](apps/windusb-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/windusb-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/windusb-gui) | -| | [***wine-devel***](apps/wine-devel.md) | *Unofficial. Compatibility layer to run x86_64 Windows programs, Dev Edition.*..[ *read more* ](apps/wine-devel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-devel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-devel) | -| | [***wine-stable***](apps/wine-stable.md) | *Unofficial. Compatibility layer to run x86_64 Windows programs, Stable.*..[ *read more* ](apps/wine-stable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-stable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-stable) | -| | [***wine-staging-ge-proton***](apps/wine-staging-ge-proton.md) | *Unofficial. Run x86_64 Windows programs, Staging GE Proton.*..[ *read more* ](apps/wine-staging-ge-proton.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-staging-ge-proton) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-staging-ge-proton) | -| | [***wine-staging***](apps/wine-staging.md) | *Unofficial. Compatibility layer to run x86_64 Windows programs, Staging.*..[ *read more* ](apps/wine-staging.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-staging) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-staging) | -| | [***wine***](apps/wine.md) | *Unofficial. Run Windows programs, select a version from mmtrt/WINE_AppImage.*..[ *read more* ](apps/wine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine) | -| | [***wine32-deploy***](apps/wine32-deploy.md) | *Tool for creating AppImages for 32-bit Microsoft Windows apps.*..[ *read more* ](apps/wine32-deploy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine32-deploy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine32-deploy) | -| | [***winrar***](apps/winrar.md) | *Unofficial, data compression, encryption and archiving tool.*..[ *read more* ](apps/winrar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/winrar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/winrar) | -| | [***wipeout-rewrite***](apps/wipeout-rewrite.md) | *Unofficial, re-implementation of the 1995 PSX game wipEout.*..[ *read more* ](apps/wipeout-rewrite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wipeout-rewrite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wipeout-rewrite) | -| | [***wire***](apps/wire.md) | *The most secure collaboration platform.*..[ *read more* ](apps/wire.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wire) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wire) | -| | [***wireframesketcher***](apps/wireframesketcher.md) | *A wireframing tool that helps designers, developers and product managers. A desktop app and a plug-in for any Eclipse IDE.*..[ *read more* ](apps/wireframesketcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wireframesketcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wireframesketcher) | -| | [***wireguard-gui***](apps/wireguard-gui.md) | *A wireguard client GUI for Debian/Linux made with nextauri.*..[ *read more* ](apps/wireguard-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wireguard-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wireguard-gui) | -| | [***wireshark***](apps/wireshark.md) | *Unofficial, the world's most popular network protocol analyze.*..[ *read more* ](apps/wireshark.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wireshark) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wireshark) | -| | [***wishdemo***](apps/wishdemo.md) | *A μ Tcl/Tk distribution statically linked, AppImage.*..[ *read more* ](apps/wishdemo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wishdemo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wishdemo) | -| | [***wives***](apps/wives.md) | *A beautiful, modern & feature-rich Terminal Emulator.*..[ *read more* ](apps/wives.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wives) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wives) | -| | [***wiznoteplus***](apps/wiznoteplus.md) | *The third party that supports the plug-in is Zhinote client.*..[ *read more* ](apps/wiznoteplus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wiznoteplus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wiznoteplus) | -| | [***wkp***](apps/wkp.md) | *A CLI tool designed to fetch Wikipedia excerpts written in Rust.*..[ *read more* ](apps/wkp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wkp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wkp) | -| | [***wled-gui***](apps/wled-gui.md) | *Cross-platform desktop app for WLED.*..[ *read more* ](apps/wled-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wled-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wled-gui) | -| | [***wlx-overlay-s***](apps/wlx-overlay-s.md) | *Access your Wayland/X11 desktop from Monado/WiVRn/SteamVR.*..[ *read more* ](apps/wlx-overlay-s.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wlx-overlay-s) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wlx-overlay-s) | -| | [***wnr***](apps/wnr.md) | *Work/Rest Timer. Stricter. Prettier. More features.*..[ *read more* ](apps/wnr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wnr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wnr) | -| | [***woke***](apps/woke.md) | *A REST client with grand ambitions and limited scope.*..[ *read more* ](apps/woke.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/woke) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/woke) | -| | [***wolai***](apps/wolai.md) | *A new form of document/note/information system, in chinese.*..[ *read more* ](apps/wolai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wolai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wolai) | -| | [***wonderlab***](apps/wonderlab.md) | *A new generation Minecraft launcher.*..[ *read more* ](apps/wonderlab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wonderlab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wonderlab) | -| | [***wonderwall***](apps/wonderwall.md) | *Wallpaper manager for Linux.*..[ *read more* ](apps/wonderwall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wonderwall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wonderwall) | -| | [***woocommerce-pos***](apps/woocommerce-pos.md) | *Electron Desktop App for WooCommerce POS*..[ *read more* ](apps/woocommerce-pos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/woocommerce-pos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/woocommerce-pos) | -| | [***woof-doom***](apps/woof-doom.md) | *Woof! is a continuation of the Boom/MBF bloodline of Doom source ports.*..[ *read more* ](apps/woof-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/woof-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/woof-doom) | -| | [***wootility***](apps/wootility.md) | *Utility for configuring Wooting keyboards.*..[ *read more* ](apps/wootility.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wootility) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wootility) | -| | [***wooting-analog-midi***](apps/wooting-analog-midi.md) | *Virtual MIDI device for, Wooting analog keyboards.*..[ *read more* ](apps/wooting-analog-midi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wooting-analog-midi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wooting-analog-midi) | -| | [***wootomation***](apps/wootomation.md) | *The official Wooting Macros software.*..[ *read more* ](apps/wootomation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wootomation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wootomation) | -| | [***wora***](apps/wora.md) | *A beautiful player for audiophiles.*..[ *read more* ](apps/wora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wora) | -| | [***workflowy***](apps/workflowy.md) | *A notetaking tool.*..[ *read more* ](apps/workflowy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/workflowy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/workflowy) | -| | [***wournal***](apps/wournal.md) | *Simple "digitial paper" for note taking and PDF annotation. Heavily inspired by Xournal.*..[ *read more* ](apps/wournal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wournal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wournal) | -| | [***wowup***](apps/wowup.md) | *WowUp the World of Warcraft addon updater.*..[ *read more* ](apps/wowup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wowup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wowup) | -| | [***wox***](apps/wox.md) | *A cross-platform launcher that simply works.*..[ *read more* ](apps/wox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wox) | -| | [***wps-office***](apps/wps-office.md) | *Unofficial, Office suite built from the official .deb package.*..[ *read more* ](apps/wps-office.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wps-office) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wps-office) | -| | [***wrapbox***](apps/wrapbox.md) | *An Electron wrapper for web pages.*..[ *read more* ](apps/wrapbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wrapbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wrapbox) | -| | [***wsjtz***](apps/wsjtz.md) | *AppImage of WSJT-Z – fork of WSJT-X with automation features.*..[ *read more* ](apps/wsjtz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wsjtz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wsjtz) | -| | [***wsocks***](apps/wsocks.md) | *A light websocket based proxy.*..[ *read more* ](apps/wsocks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wsocks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wsocks) | -| | [***wsrx***](apps/wsrx.md) | *Controlled TCP-over-WebSocket forwarding tunnel.*..[ *read more* ](apps/wsrx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wsrx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wsrx) | -| | [***wtfutil***](apps/wtfutil.md) | *The personal information dashboard for your terminal.*..[ *read more* ](apps/wtfutil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wtfutil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wtfutil) | -| | [***wthrr***](apps/wthrr.md) | *Weather companion for the terminal.*..[ *read more* ](apps/wthrr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wthrr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wthrr) | -| | [***wxmaxima***](apps/wxmaxima.md) | *A document based interface for the computer algebra system Maxima.*..[ *read more* ](apps/wxmaxima.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wxmaxima) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wxmaxima) | -| | [***wxmedit***](apps/wxmedit.md) | *A cross-platform Text/Hex Editor, an improved version of MadEdit.*..[ *read more* ](apps/wxmedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wxmedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wxmedit) | -| | [***wyrmhole***](apps/wyrmhole.md) | *A cross-platform GUI wrapper for the p2p magic-wormhole.rs library.*..[ *read more* ](apps/wyrmhole.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wyrmhole) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wyrmhole) | -| | [***x-loc***](apps/x-loc.md) | *Extra localizations/translations manager for Stardew Valley.*..[ *read more* ](apps/x-loc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/x-loc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/x-loc) | -| | [***x-minecraft-launcher***](apps/x-minecraft-launcher.md) | *An Open Source Minecraft Launcher with Modern UX.*..[ *read more* ](apps/x-minecraft-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/x-minecraft-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/x-minecraft-launcher) | -| | [***x-pixiv***](apps/x-pixiv.md) | *CLI, pixiv downloader.*..[ *read more* ](apps/x-pixiv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/x-pixiv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/x-pixiv) | -| | [***xapkdetector***](apps/xapkdetector.md) | *APK/DEX detector that shows an information about build tools, libraries and protection of APK/DEX files.*..[ *read more* ](apps/xapkdetector.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xapkdetector) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xapkdetector) | -| | [***xargs***](apps/xargs.md) | *Build and execute command lines from standard input. This is part of "am-utils" suite.*..[ *read more* ](apps/xargs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xargs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xargs) | -| | [***xash3d-fwgs-enhanced***](apps/xash3d-fwgs-enhanced.md) | *Unofficial, a game engine aimed to provide compatibility with Half-Life Engine and extend it.*..[ *read more* ](apps/xash3d-fwgs-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xash3d-fwgs-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xash3d-fwgs-enhanced) | -| | [***xash3d-fwgs***](apps/xash3d-fwgs.md) | *A game engine aimed to provide compatibility with Half-Life Engine and extend it.*..[ *read more* ](apps/xash3d-fwgs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xash3d-fwgs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xash3d-fwgs) | -| | [***xbooxp***](apps/xbooxp.md) | *A nifty software to upload homebrew apps into your Game Boy Advance (GBA) using an xboo cable.*..[ *read more* ](apps/xbooxp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xbooxp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xbooxp) | -| | [***xbydriver***](apps/xbydriver.md) | *Xiaobaiyang Cloud Drive - Powered by Alibaba Cloud Drive.*..[ *read more* ](apps/xbydriver.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xbydriver) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xbydriver) | -| | [***xchat***](apps/xchat.md) | *Chat with other people using Internet Relay Chat.*..[ *read more* ](apps/xchat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xchat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xchat) | -| | [***xclock***](apps/xclock.md) | *Unofficial AppImage of xclock.*..[ *read more* ](apps/xclock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xclock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xclock) | -| | [***xcloud-desktop***](apps/xcloud-desktop.md) | *An unofficial desktop app for the XCloud web beta.*..[ *read more* ](apps/xcloud-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xcloud-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xcloud-desktop) | -| | [***xde***](apps/xde.md) | *The Expo Development Environment.*..[ *read more* ](apps/xde.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xde) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xde) | -| | [***xdelta3-cross-gui***](apps/xdelta3-cross-gui.md) | *A cross-platform GUI for creating xDelta3 patches.*..[ *read more* ](apps/xdelta3-cross-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xdelta3-cross-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xdelta3-cross-gui) | -| | [***xdg-ninja***](apps/xdg-ninja.md) | *Script that checks your $HOME for unwanted files and directories.*..[ *read more* ](apps/xdg-ninja.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xdg-ninja) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xdg-ninja) | -| | [***xelfviewer***](apps/xelfviewer.md) | *A multiplatform ELF file viewer/editor.*..[ *read more* ](apps/xelfviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xelfviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xelfviewer) | -| | [***xemu-enhanced***](apps/xemu-enhanced.md) | *Unofficial, original Xbox Emulator for Windows, macOS, and Linux (Active Development).*..[ *read more* ](apps/xemu-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xemu-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xemu-enhanced) | -| | [***xemu***](apps/xemu.md) | *Original Xbox Emulator.*..[ *read more* ](apps/xemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xemu) | -| | [***xenia-canary***](apps/xenia-canary.md) | *Unofficial AppImage of xenia-canary Xbox360 emulator.*..[ *read more* ](apps/xenia-canary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xenia-canary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xenia-canary) | -| | [***xenia-edge***](apps/xenia-edge.md) | *Xbox 360 Emulator Research Project, fork of the Xenia emulator, with the aim of quicker iteration and improvements to Vulkan backend.*..[ *read more* ](apps/xenia-edge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xenia-edge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xenia-edge) | -| | [***xeyes***](apps/xeyes.md) | *Unofficial, a "follow the mouse" X demo, using the X SHAPE extension.*..[ *read more* ](apps/xeyes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xeyes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xeyes) | -| | [***xgetter***](apps/xgetter.md) | *Download video on Youtube, Facebook, X(Twitter), Instagram, Tiktok, Bilibili, Douyin and more.*..[ *read more* ](apps/xgetter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xgetter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xgetter) | -| | [***xilinota***](apps/xilinota.md) | *Note-taking app boasting instant syncing among devices and direct keeping of markdown files.*..[ *read more* ](apps/xilinota.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xilinota) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xilinota) | -| | [***xiphos***](apps/xiphos.md) | *Unofficial, a Bible study tool using GTK.*..[ *read more* ](apps/xiphos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xiphos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xiphos) | -| | [***xl-converter***](apps/xl-converter.md) | *Powerful image converter with support for multithreading.*..[ *read more* ](apps/xl-converter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xl-converter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xl-converter) | -| | [***xlights***](apps/xlights.md) | *A sequencer for Lights and sequences manager.*..[ *read more* ](apps/xlights.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xlights) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xlights) | -| | [***xm8***](apps/xm8.md) | *PC-8801 emulator.*..[ *read more* ](apps/xm8.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xm8) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xm8) | -| | [***xmachoviewer***](apps/xmachoviewer.md) | *XMachOViewer is a Mach-O viewer.*..[ *read more* ](apps/xmachoviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xmachoviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xmachoviewer) | -| | [***xmedcon***](apps/xmedcon.md) | *An open-source toolkit for medical image conversion.*..[ *read more* ](apps/xmedcon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xmedcon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xmedcon) | -| | [***xmoto***](apps/xmoto.md) | *A challenging 2D motocross platform game, where physics play an important role.*..[ *read more* ](apps/xmoto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xmoto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xmoto) | -| | [***xnconvert***](apps/xnconvert.md) | *A fast, powerful and free cross-platform batch image converter.*..[ *read more* ](apps/xnconvert.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xnconvert) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xnconvert) | -| | [***xnviewmp***](apps/xnviewmp.md) | *Graphic viewer, browser, converter.*..[ *read more* ](apps/xnviewmp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xnviewmp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xnviewmp) | -| | [***xonsh***](apps/xonsh.md) | *Python-powered, cross-platform, Unix-gazing shell.*..[ *read more* ](apps/xonsh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xonsh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xonsh) | -| | [***xopcodecalc***](apps/xopcodecalc.md) | *Opcode calculator / ASM calculator.*..[ *read more* ](apps/xopcodecalc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xopcodecalc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xopcodecalc) | -| | [***xoreos***](apps/xoreos.md) | *Unofficial, A reimplementation of BioWare's Aurora engine.*..[ *read more* ](apps/xoreos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xoreos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xoreos) | -| | [***xournal++***](apps/xournal++.md) | *A C++ handwriting notetaking software with PDF annotation support.*..[ *read more* ](apps/xournal++.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xournal++) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xournal++) | -| | [***xournal++nightly***](apps/xournal++nightly.md) | *C++ notetaking software with PDF annotation support, DEV.*..[ *read more* ](apps/xournal++nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xournal++nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xournal++nightly) | -| | [***xournalpp***](apps/xournalpp.md) | *Unofficial. Handwriting notetaking software with PDF annotation support. Written in C++ with GTK3.*..[ *read more* ](apps/xournalpp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xournalpp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xournalpp) | -| | [***xpeviewer***](apps/xpeviewer.md) | *PE file viewer/editor.*..[ *read more* ](apps/xpeviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xpeviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xpeviewer) | -| | [***xpipe***](apps/xpipe.md) | *Your entire server infrastructure at your fingertips. Manage all your servers from your local desktop. No remote setup required.*..[ *read more* ](apps/xpipe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xpipe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xpipe) | -| | [***xplist***](apps/xplist.md) | *Cross-platform Plist Editor.*..[ *read more* ](apps/xplist.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xplist) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xplist) | -| | [***xplorer***](apps/xplorer.md) | *Xplorer, a customizable, modern file manager.*..[ *read more* ](apps/xplorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xplorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xplorer) | -| | [***xsnow***](apps/xsnow.md) | *Unofficial, let it snow on your desktop.*..[ *read more* ](apps/xsnow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xsnow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xsnow) | -| | [***xtomarkdown***](apps/xtomarkdown.md) | *A cross-platform GUI application for converting documents to Markdown.*..[ *read more* ](apps/xtomarkdown.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xtomarkdown) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xtomarkdown) | -| | [***xtool***](apps/xtool.md) | *Cross-platform Xcode replacement. Build and deploy iOS apps with SwiftPM.*..[ *read more* ](apps/xtool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xtool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xtool) | -| | [***xtuber***](apps/xtuber.md) | *Simple YouTube Downloader.*..[ *read more* ](apps/xtuber.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xtuber) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xtuber) | -| | [***xxh***](apps/xxh.md) | *Bring your favorite shell wherever you go through the ssh.*..[ *read more* ](apps/xxh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xxh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xxh) | -| | [***xyce***](apps/xyce.md) | *Xyce Parallel Electronic Simulator.*..[ *read more* ](apps/xyce.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xyce) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xyce) | -| | [***xz***](apps/xz.md) | *Library and command line tools for XZ and LZMA compressed files. This is part of "am-utils" suite.*..[ *read more* ](apps/xz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xz) | -| | [***xzcat***](apps/xzcat.md) | *Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of "am-utils" suite.*..[ *read more* ](apps/xzcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xzcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xzcat) | -| | [***yaak***](apps/yaak.md) | *The most intuitive desktop API client. Organize and execute REST, GraphQL, WebSockets, Server Sent Events, and gRPC.*..[ *read more* ](apps/yaak.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yaak) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yaak) | -| | [***yaf***](apps/yaf.md) | *Yet another system CLI fetch that is minimal and customizable.*..[ *read more* ](apps/yaf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yaf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yaf) | -| | [***yaka***](apps/yaka.md) | *No fuss todo-list manager with full keyboard navigation.*..[ *read more* ](apps/yaka.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yaka) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yaka) | -| | [***yakit-legacy***](apps/yakit-legacy.md) | *Cyber Security ALL-IN-ONE Platform (legacy).*..[ *read more* ](apps/yakit-legacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yakit-legacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yakit-legacy) | -| | [***yakit***](apps/yakit.md) | *Cyber Security ALL-IN-ONE Platform.*..[ *read more* ](apps/yakit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yakit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yakit) | -| | [***yam***](apps/yam.md) | *Unofficial Game Updater for the F95Zone platform.*..[ *read more* ](apps/yam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yam) | -| | [***yamagi-quake-ii***](apps/yamagi-quake-ii.md) | *Unofficial, an enhanced client for id Software's Quake II.*..[ *read more* ](apps/yamagi-quake-ii.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yamagi-quake-ii) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yamagi-quake-ii) | -| | [***yamata-launcher***](apps/yamata-launcher.md) | *A multi-platform game launcher designed to unify game catalogs, downloads, and libraries from multiple ecosystems into a single, extensible application.*..[ *read more* ](apps/yamata-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yamata-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yamata-launcher) | -| | [***yana***](apps/yana.md) | *Note-taking app with nested documents, text search/editor, code...*..[ *read more* ](apps/yana.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yana) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yana) | -| | [***yandex-browser-beta***](apps/yandex-browser-beta.md) | *Unofficial Yandex Browser AppImage, Beta.*..[ *read more* ](apps/yandex-browser-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yandex-browser-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yandex-browser-beta) | -| | [***yandex-browser-corporate***](apps/yandex-browser-corporate.md) | *Unofficial Yandex Browser AppImage, Corporate.*..[ *read more* ](apps/yandex-browser-corporate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yandex-browser-corporate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yandex-browser-corporate) | -| | [***yandex-browser***](apps/yandex-browser.md) | *Unofficial Yandex Browser AppImage, Stable.*..[ *read more* ](apps/yandex-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yandex-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yandex-browser) | -| | [***yandex-music***](apps/yandex-music.md) | *Personal recommendations, mixes for any occasion and the latest musical releases.*..[ *read more* ](apps/yandex-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yandex-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yandex-music) | -| | [***yangdownloader***](apps/yangdownloader.md) | *Downloads best-quality audio and video from YouTube.*..[ *read more* ](apps/yangdownloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yangdownloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yangdownloader) | -| | [***yank-note***](apps/yank-note.md) | *A Hackable Markdown Note Application for Programmers.*..[ *read more* ](apps/yank-note.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yank-note) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yank-note) | -| | [***yaya***](apps/yaya.md) | *Yet Another Yahtzee-esque Application.*..[ *read more* ](apps/yaya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yaya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yaya) | -| | [***yazi***](apps/yazi.md) | *Blazing fast terminal file manager written in Rust.*..[ *read more* ](apps/yazi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yazi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yazi) | -| | [***yes***](apps/yes.md) | *Output a string repeatedly until killed. This is part of "am-utils" suite.*..[ *read more* ](apps/yes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yes) | -| | [***yesplaymusic***](apps/yesplaymusic.md) | *A third party music player for Netease Music.*..[ *read more* ](apps/yesplaymusic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yesplaymusic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yesplaymusic) | -| | [***yet-another-open-file-converter***](apps/yet-another-open-file-converter.md) | *Simple Open Source Video and Image Conventer.*..[ *read more* ](apps/yet-another-open-file-converter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yet-another-open-file-converter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yet-another-open-file-converter) | -| | [***ym-desktop***](apps/ym-desktop.md) | *The YouTube music desktop app.*..[ *read more* ](apps/ym-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ym-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ym-desktop) | -| | [***ymir***](apps/ymir.md) | *Unofficial, Sega Saturn emulator.*..[ *read more* ](apps/ymir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ymir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ymir) | -| | [***yolx***](apps/yolx.md) | *A modern download tool developed with Flutter, powered by Aria 2 at its core.*..[ *read more* ](apps/yolx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yolx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yolx) | -| | [***youplaytx***](apps/youplaytx.md) | *A full-screen, dual-pane YouTube audio player for the terminal.*..[ *read more* ](apps/youplaytx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youplaytx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youplaytx) | -| | [***youtube-download***](apps/youtube-download.md) | *GUI and CLI for downloading YouTube video/audio.*..[ *read more* ](apps/youtube-download.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-download) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-download) | -| | [***youtube-downloader***](apps/youtube-downloader.md) | *Download video/audio from youtube (and instagram) videos.*..[ *read more* ](apps/youtube-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-downloader) | -| | [***youtube-music***](apps/youtube-music.md) | *Unofficial. Amazing electron wrapper for YouTube Music featuring plugins.*..[ *read more* ](apps/youtube-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-music) | -| | [***youtube-tui***](apps/youtube-tui.md) | *An aesthetically pleasing YouTube TUI CLI written in Rust.*..[ *read more* ](apps/youtube-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-tui) | -| | [***youtubeanddownloader***](apps/youtubeanddownloader.md) | *An app to use youtube and download videos as mp3s or mp4s.*..[ *read more* ](apps/youtubeanddownloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtubeanddownloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtubeanddownloader) | -| | [***youtubesearchfilter***](apps/youtubesearchfilter.md) | *YouTube searches with/without a pre-filter from CLI.*..[ *read more* ](apps/youtubesearchfilter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtubesearchfilter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtubesearchfilter) | -| | [***yt-dlandcut***](apps/yt-dlandcut.md) | *Download and cut Youtube videos by providing url and time range.*..[ *read more* ](apps/yt-dlandcut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yt-dlandcut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yt-dlandcut) | -| | [***yt-dlg***](apps/yt-dlg.md) | *A front-end GUI of the popular youtube-dl written in wxPython.*..[ *read more* ](apps/yt-dlg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yt-dlg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yt-dlg) | -| | [***yt-dlp***](apps/yt-dlp.md) | *A feature-rich command-line audio/video downloader.*..[ *read more* ](apps/yt-dlp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yt-dlp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yt-dlp) | -| | [***ytarchive***](apps/ytarchive.md) | *Garbage Youtube livestream downloader CLI.*..[ *read more* ](apps/ytarchive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytarchive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytarchive) | -| | [***ytdownloader***](apps/ytdownloader.md) | *App for downloading Videos and Audios from hundreds of sites.*..[ *read more* ](apps/ytdownloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytdownloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytdownloader) | -| | [***ytermusic***](apps/ytermusic.md) | *An in terminal youtube music client with focus on privacy, simplicity and performance.*..[ *read more* ](apps/ytermusic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytermusic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytermusic) | -| | [***ytmdesktop***](apps/ytmdesktop.md) | *A Desktop App for YouTube Music.*..[ *read more* ](apps/ytmdesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytmdesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytmdesktop) | -| | [***ytmdesktop2***](apps/ytmdesktop2.md) | *Unofficial Youtube Music Desktop App, with LastFM support.*..[ *read more* ](apps/ytmdesktop2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytmdesktop2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytmdesktop2) | -| | [***yts-streaming***](apps/yts-streaming.md) | *Stream or play yts and torrent movies.*..[ *read more* ](apps/yts-streaming.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yts-streaming) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yts-streaming) | -| | [***ytsage***](apps/ytsage.md) | *Modern YouTube downloader with a clean PySide6 interface. Download videos in any quality, extract audio, fetch subtitles, sponsorBlock, and view video metadata. Built with yt-dlp for reliable performance.*..[ *read more* ](apps/ytsage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytsage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytsage) | -| | [***yubikey-manager***](apps/yubikey-manager.md) | *Configure your YubiKey over all USB transports.*..[ *read more* ](apps/yubikey-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yubikey-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yubikey-manager) | -| | [***yup***](apps/yup.md) | *Arch Linux AUR Helper with ncurses functionality and better searching and sorting.*..[ *read more* ](apps/yup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yup) | -| | [***yuview***](apps/yuview.md) | *YUV player with an advanced analytic toolset.*..[ *read more* ](apps/yuview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yuview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yuview) | -| | [***zap***](apps/zap.md) | *Delightful command line AppImage package manager for appimage.github.io.*..[ *read more* ](apps/zap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zap) | -| | [***zapdesktop***](apps/zapdesktop.md) | *Desktop application for the lightning network.*..[ *read more* ](apps/zapdesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zapdesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zapdesktop) | -| | [***zapzap-enhanced***](apps/zapzap-enhanced.md) | *Unofficial AppImage of ZapZap WhatsApp client.*..[ *read more* ](apps/zapzap-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zapzap-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zapzap-enhanced) | -| | [***zapzap***](apps/zapzap.md) | *WhatsApp desktop application written in Pyqt6 + PyQt6-WebEngine.*..[ *read more* ](apps/zapzap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zapzap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zapzap) | -| | [***zcat***](apps/zcat.md) | *Zcat - compress or expand files. This is part of "am-utils" suite.*..[ *read more* ](apps/zcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zcat) | -| | [***zed***](apps/zed.md) | *High-performance, multiplayer code editor from the creators of Atom.*..[ *read more* ](apps/zed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zed) | -| | [***zegarek***](apps/zegarek.md) | *A simple clock with millisecond resolution.*..[ *read more* ](apps/zegarek.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zegarek) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zegarek) | -| | [***zegrapher***](apps/zegrapher.md) | *Math graphing software.*..[ *read more* ](apps/zegrapher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zegrapher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zegrapher) | -| | [***zelda64-recompiled***](apps/zelda64-recompiled.md) | *Unofficial, a native port of the N64 Legend of Zelda games, statically recompiled.*..[ *read more* ](apps/zelda64-recompiled.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zelda64-recompiled) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zelda64-recompiled) | -| | [***zellij***](apps/zellij.md) | *A terminal workspace with batteries included.*..[ *read more* ](apps/zellij.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zellij) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zellij) | -| | [***zen-app-manager***](apps/zen-app-manager.md) | *Zen App Manager is a modern and lightweight startup manager that lets you manage startup applications from a single location.*..[ *read more* ](apps/zen-app-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zen-app-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zen-app-manager) | -| | [***zen-browser***](apps/zen-browser.md) | *Experience tranquillity while browsing the web without tracking.*..[ *read more* ](apps/zen-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zen-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zen-browser) | -| | [***zenity***](apps/zenity.md) | *Unofficial, A CLI utility that creates dialog boxes, GTK3 version.*..[ *read more* ](apps/zenity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zenity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zenity) | -| | [***zenkit***](apps/zenkit.md) | *A platform for collaboration and project management.*..[ *read more* ](apps/zenkit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zenkit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zenkit) | -| | [***zenroomstudio***](apps/zenroomstudio.md) | *Extensible IDE which targets multiple dev platforms.*..[ *read more* ](apps/zenroomstudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zenroomstudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zenroomstudio) | -| | [***zettlr***](apps/zettlr.md) | *A Markdown Editor for the 21st century.*..[ *read more* ](apps/zettlr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zettlr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zettlr) | -| | [***zfind***](apps/zfind.md) | *Search files, even inside tar/zip/7z/rar using a SQL-WHERE filter.*..[ *read more* ](apps/zfind.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zfind) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zfind) | -| | [***zfxtop***](apps/zfxtop.md) | *[WIP] fetch top for gen Z with X written by bubbletea enjoyer.*..[ *read more* ](apps/zfxtop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zfxtop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zfxtop) | -| | [***zk***](apps/zk.md) | *A plain text note-taking assistant*..[ *read more* ](apps/zk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zk) | -| | [***zmk-studio***](apps/zmk-studio.md) | *ZMK Firmware. Modern, open source keyboard firmware.*..[ *read more* ](apps/zmk-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zmk-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zmk-studio) | -| | [***zmninja***](apps/zmninja.md) | *Ionic app for Home/Commerical Security Surveillance.*..[ *read more* ](apps/zmninja.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zmninja) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zmninja) | -| | [***znax***](apps/znax.md) | *Znax is a cross platform puzzle / arcade game using SDL2 libraries.*..[ *read more* ](apps/znax.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/znax) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/znax) | -| | [***znote***](apps/znote.md) | *A Beautiful markdown editor inspired by Jupyter.*..[ *read more* ](apps/znote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/znote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/znote) | -| | [***zod-engine***](apps/zod-engine.md) | *Unofficial, an open source remake of the 1996 game Z by the Bitmap Brothers.*..[ *read more* ](apps/zod-engine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zod-engine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zod-engine) | -| | [***zograscope***](apps/zograscope.md) | *Syntax-aware diff that provides a number of additional tools.*..[ *read more* ](apps/zograscope.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zograscope) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zograscope) | -| | [***zoo-design-studio***](apps/zoo-design-studio.md) | *The Zoo Design Studio app.*..[ *read more* ](apps/zoo-design-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zoo-design-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zoo-design-studio) | -| | [***zoom***](apps/zoom.md) | *Unofficial. Video Conferencing and Web Conferencing Service.*..[ *read more* ](apps/zoom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zoom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zoom) | -| | [***zotero***](apps/zotero.md) | *Collect, organize, cite, and share your research sources.*..[ *read more* ](apps/zotero.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zotero) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zotero) | -| | [***zoxide***](apps/zoxide.md) | *A smarter cd command. Supports all major shells.*..[ *read more* ](apps/zoxide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zoxide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zoxide) | -| | [***zramen***](apps/zramen.md) | *Manage zram swap space.*..[ *read more* ](apps/zramen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zramen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zramen) | -| | [***zsnes***](apps/zsnes.md) | *Unofficial, a Super Nintendo emulator.*..[ *read more* ](apps/zsnes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zsnes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zsnes) | -| | [***zsync***](apps/zsync.md) | *Partial/differential file download client over HTTP. This is part of "am-utils" suite.*..[ *read more* ](apps/zsync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zsync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zsync) | -| | [***zsync2***](apps/zsync2.md) | *A rewrite of the advanced file download/sync tool zsync.*..[ *read more* ](apps/zsync2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zsync2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zsync2) | -| | [***zulip***](apps/zulip.md) | *Zulip Desktop Client for Linux.*..[ *read more* ](apps/zulip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zulip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zulip) | -| | [***zx-poly***](apps/zx-poly.md) | *a multi-CPU ZX-Spectrum 128 concept platform.*..[ *read more* ](apps/zx-poly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zx-poly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zx-poly) | -| | [***zxinfo-file-browser***](apps/zxinfo-file-browser.md) | *Organize and manage your emulator files for ZX Spectrum.*..[ *read more* ](apps/zxinfo-file-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zxinfo-file-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zxinfo-file-browser) | -| | [***zy-player***](apps/zy-player.md) | *Video resource player, simple, ad-free and high-value.*..[ *read more* ](apps/zy-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zy-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zy-player) | -| | [***zyfun***](apps/zyfun.md) | *ZyPlayer. Cross-platform desktop video player, free and visually appealing.*..[ *read more* ](apps/zyfun.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zyfun) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zyfun) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Home](index.md) | -| --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/apps/.template b/apps/.template index 7b41cdb07..c286e4e3a 100644 --- a/apps/.template +++ b/apps/.template @@ -1,10 +1,10 @@ -# NAME - - DESCRIPTION - - ![Screenshot](URL) - - SITE: URL +# some app +description of your app. +only use **bold**, *italic*, ++underline++, lists markdown here +- do not add links or images here +- use SOURCES field if you package someone else's app - | [Applications](https://portable-linux-apps.github.io/apps.html) | [Home](https://portable-linux-apps.github.io) - | --- | --- | +# SCREENSHOTS: https://coyoteclan.github.io/Portable-Linux-Apps.github.io/contribute_ss.png https://coyoteclan.github.io/Portable-Linux-Apps.github.io/contribute_ss.png +# SITES: https://someapp.io +# SOURCES: https://github.com/name/someapp-appimage +# BUTTONS: Label_of_Button::https://discord.gg Donation_Link::https://someapp.io/donate \ No newline at end of file diff --git a/assets/css/app.css b/assets/css/app.css new file mode 100644 index 000000000..65e939c0a --- /dev/null +++ b/assets/css/app.css @@ -0,0 +1,278 @@ +.app-detail-header { + display: flex; + align-items: center; + gap: 1rem; + padding: 2rem 1.5rem; + max-width: var(--max-width); + margin: 0 auto; +} + +.app-detail-header img { + width: 80px; + height: 80px; + object-fit: contain; +} + +.app-detail-header div { + flex: 1; +} + +.app-detail-header h1 { + font-size: 1.75rem; + font-weight: 800; + margin-bottom: 0.25rem; +} + +.app-detail-header .app-meta { + font-size: 0.875rem; + color: var(--color-text-muted); +} + +.app-detail-header .app-meta a { + color: var(--color-accent); +} + +.install-btn { + flex-shrink: 0; + padding: 0.5rem 1.25rem; + background: var(--color-accent); + color: #fff; + font-size: 0.875rem; + font-weight: 600; + border: none; + border-radius: var(--radius); + text-decoration: none; + transition: background 0.15s; +} + +.install-btn:hover { + background: var(--color-accent-hover); + text-decoration: none; + color: #fff; +} + +.app-body-content { + max-width: var(--max-width); + margin: 0 auto; + padding: 0 1.5rem 2.5rem; + line-height: 1.7; + font-size: 0.9375rem; + color: var(--color-text-muted); +} + +.app-body-content p { + margin-bottom: 0.75rem; +} + +.app-body-content ul, +.app-body-content ol { + margin: 0 0 0.75rem 1.25rem; +} + +.app-body-content li { + margin-bottom: 0.25rem; +} + +.app-body-content img { + max-width: 100%; + height: auto; + display: block; + margin: 1rem auto; +} + +.app-body-content table { + border-collapse: collapse; + margin: 1rem auto; +} + +.app-body-content table td { + padding: 4px; + text-align: center; +} + +.app-body-content table img { + margin: 0; +} + +.gallery { + max-width: var(--max-width); + margin: 0 auto; + padding: 0 1.5rem 2rem; + text-align: center; +} + +.gallery h2 { + font-size: 1.125rem; + font-weight: 700; + margin-bottom: 0.75rem; + text-align: left; +} + +.gallery-inner { + position: relative; + display: flex; + align-items: center; + justify-content: center; + gap: 0.5rem; +} + +.gallery-inner img { + max-width: 100%; + max-height: 480px; + border-radius: var(--radius); + border: 1px solid var(--color-border); + object-fit: contain; + flex: 1; + opacity: 1; + transform: translateX(0); + transition: opacity 0.16s ease, transform 0.16s ease; + will-change: opacity, transform; +} + +.gallery-inner img.gal-transition { + opacity: 0; +} + +.gallery-inner img.gal-transition.gal-next { + transform: translateX(10px); +} + +.gallery-inner img.gal-transition.gal-prev { + transform: translateX(-10px); +} + +.gallery-btn { + flex-shrink: 0; + width: 40px; + height: 40px; + border-radius: 50%; + border: 1px solid var(--color-border); + background: var(--color-surface); + color: var(--color-text); + font-size: 1.25rem; + cursor: pointer; + display: flex; + align-items: center; + justify-content: center; + transition: border-color 0.15s, background 0.15s; + user-select: none; +} + +.gallery-btn:hover { + border-color: var(--color-accent); + background: var(--color-bg); +} + +.gallery-btn:disabled { + opacity: 0.3; + cursor: default; + border-color: var(--color-border); +} + +.gallery-dots { + display: flex; + justify-content: center; + gap: 6px; + margin-top: 0.75rem; +} + +.gallery-dot { + width: 8px; + height: 8px; + border-radius: 50%; + border: 1px solid var(--color-border); + background: transparent; + cursor: pointer; + padding: 0; + transition: background 0.15s; +} + +.gallery-dot.active { + background: var(--color-accent); + border-color: var(--color-accent); +} + +.app-links-section { + max-width: var(--max-width); + margin: 0 auto; + padding: 0 1.5rem 2.5rem; +} + +.app-links-section h2 { + font-size: 1.125rem; + font-weight: 700; + margin-bottom: 0.75rem; +} + +.app-links-section ul { + list-style: none; + display: flex; + flex-wrap: wrap; + gap: 0.5rem; +} + +.app-links-section li a { + display: inline-block; + padding: 0.375rem 0.75rem; + border: 1px solid var(--color-border); + border-radius: var(--radius); + font-size: 0.8125rem; + font-weight: 500; + transition: border-color 0.15s, background 0.15s; +} + +.app-links-section li a:hover { + border-color: var(--color-accent); + background: var(--color-surface); + text-decoration: none; +} + +.button-list { + list-style: none; + display: flex; + flex-wrap: wrap; + gap: 0.5rem; +} + +.app-button { + display: inline-block; + padding: 0.5rem 1.25rem; + background: var(--color-accent); + color: #fff; + font-size: 0.875rem; + font-weight: 600; + border: none; + border-radius: var(--radius); + text-decoration: none; + transition: background 0.15s; +} + +.app-button:hover { + background: var(--color-accent-hover); + text-decoration: none; + color: #fff; +} + +#back-link { + display: inline-block; + margin: 1rem 1.5rem 0; + max-width: var(--max-width); + width: calc(100% - 3rem); + font-size: 0.875rem; + color: var(--color-text-muted); +} + +#back-link:hover { + color: var(--color-accent); +} + +.error-box { + text-align: center; + padding: 4rem 1.5rem; + color: var(--color-text-muted); +} + +.error-box h2 { + color: var(--color-text); + margin-bottom: 0.5rem; +} diff --git a/assets/css/faq.css b/assets/css/faq.css new file mode 100644 index 000000000..2a2056150 --- /dev/null +++ b/assets/css/faq.css @@ -0,0 +1,132 @@ +.faq-page details { + margin-bottom: 0.5rem; + border: 1px solid var(--color-border); + border-radius: var(--radius); + background: var(--color-bg); +} + +.faq-page details[open] { + background: var(--color-surface); +} + +.faq-page summary { + cursor: pointer; + padding: 0.75rem 1rem; + list-style: none; + display: flex; + align-items: center; + gap: 0.5rem; + user-select: none; +} + +.faq-page summary::-webkit-details-marker { + display: none; +} + +.faq-page summary::before { + content: '+'; + font-size: 1.125rem; + font-weight: 700; + color: var(--color-accent); + flex-shrink: 0; + width: 1.25rem; + text-align: center; + transition: transform 0.2s; +} + +.faq-page details[open] > summary::before { + content: '\2212'; +} + +.faq-page summary h2 { + margin: 0; + font-size: 1.125rem; +} + +.faq-page summary:hover { + background: var(--color-surface); +} + +.faq-page details[open] > summary:hover { + background: transparent; +} + +.faq-page details > :not(summary) { + padding: 0 1.5rem 1rem; +} + +.faq-page ol { + padding-left: 1.25rem; + margin-bottom: 1rem; +} + +.faq-page ol li { + margin-bottom: 0.5rem; +} + +.faq-page pre { + background: var(--color-bg); + border: 1px solid var(--color-border); + border-radius: var(--radius); + padding: 0.75rem 1rem; + margin: 0.5rem 0; + overflow-x: auto; + font-family: "SF Mono", "Cascadia Code", "Fira Code", "Consolas", monospace; + font-size: 0.8125rem; + line-height: 1.5; + color: var(--color-text); +} + +.faq-page code { + background: var(--color-bg); + border: 1px solid var(--color-border); + border-radius: 3px; + padding: 0.125rem 0.375rem; + font-family: "SF Mono", "Cascadia Code", "Fira Code", "Consolas", monospace; + font-size: 0.8125rem; + color: var(--color-accent); +} + +.faq-page h2 { + font-size: 1.375rem; + font-weight: 700; + margin-top: 2.5rem; + margin-bottom: 1rem; +} + +.faq-page h3 { + font-size: 1.125rem; + font-weight: 600; + margin-top: 1.5rem; + margin-bottom: 0.75rem; +} + +.faq-page p, +.faq-page li { + color: var(--color-text-muted); + margin-bottom: 0.75rem; +} + +.faq-page ul { + list-style: none; + margin-bottom: 1rem; +} + +.faq-page ul li { + padding-left: 1.5rem; + position: relative; +} + +.faq-page ul li::before { + content: '\2022'; + position: absolute; + left: 0.5rem; + color: var(--color-text-muted); +} + +.faq-page hr, +.wiki-page hr { + border: none; + border-top: 1px solid var(--color-border); + margin: 2rem 0; +} diff --git a/assets/css/index.css b/assets/css/index.css new file mode 100644 index 000000000..18bc69154 --- /dev/null +++ b/assets/css/index.css @@ -0,0 +1,119 @@ +/* Hero */ +.hero { + background: var(--color-hero-bg); + color: var(--color-hero-text); + text-align: center; + padding: 4rem 1.5rem 3rem; +} + +.hero-subtitle { + font-size: 0.875rem; + color: var(--color-hero-muted); + margin-bottom: 1rem; + max-width: 640px; + margin-left: auto; + margin-right: auto; +} + +.hero h1 { + font-size: 2.5rem; + font-weight: 800; + letter-spacing: 0.05em; + margin-bottom: 0.5rem; +} + +.hero-tagline { + font-size: 1.125rem; + font-style: italic; + color: var(--color-hero-muted); + margin-bottom: 2rem; +} + +/* Stats */ +.stats { + text-align: center; + padding: 1.5rem 1.5rem; + border-bottom: 1px solid var(--color-border); + font-size: 0.875rem; + color: var(--color-text-muted); +} + +.stats strong { + color: var(--color-text); +} + +/* CTAs */ +.ctas { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 1.5rem; + max-width: var(--max-width); + margin: 2rem auto; + padding: 0 1.5rem; +} + +.cta-card { + display: flex; + flex-direction: column; + align-items: center; + text-align: center; + padding: 1.5rem; + border: 1px solid var(--color-border); + border-radius: var(--radius); + transition: border-color 0.15s; +} + +.cta-card:hover { + border-color: var(--color-accent); + text-decoration: none; +} + +.cta-card img { + margin-bottom: 0.75rem; +} + +.cta-card span { + font-weight: 600; + font-size: 0.9375rem; +} + +@media (max-width: 640px) { + .ctas { + grid-template-columns: 1fr; + } +} + +/* Categories */ +.categories-list { + display: flex; + flex-wrap: wrap; + gap: 0.5rem; + list-style: none; +} + +.categories-list li { + margin: 0; +} + +.category-link { + display: inline-block; + padding: 0.375rem 0.75rem; + border: 1px solid var(--color-border); + border-radius: var(--radius); + font-size: 0.8125rem; + font-weight: 500; + color: var(--color-text); + transition: border-color 0.15s, background 0.15s; +} + +.category-link:hover { + border-color: var(--color-accent); + background: var(--color-surface); + text-decoration: none; +} + +/* About */ +.about p { + color: var(--color-text-muted); + margin-bottom: 1rem; +} diff --git a/assets/css/style.css b/assets/css/style.css new file mode 100644 index 000000000..d441325b7 --- /dev/null +++ b/assets/css/style.css @@ -0,0 +1,282 @@ +/* === Reset === */ +*, *::before, *::after { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +/* === Variables === */ +:root { + --color-bg: #0d1117; + --color-surface: #161b22; + --color-text: #e6edf3; + --color-text-muted: #8b949e; + --color-accent: #58a6ff; + --color-accent-hover: #79c0ff; + --color-border: #30363d; + --color-hero-bg: #010409; + --color-hero-text: #f0f6fc; + --color-hero-muted: #8b949e; + --color-footer-bg: #010409; + --color-footer-text: #8b949e; + --radius: 4px; + --max-width: 960px; + --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, + Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, + sans-serif; +} + +html { + font-size: 16px; + -webkit-text-size-adjust: 100%; + scroll-behavior: smooth; +} + +body { + font-family: var(--font-family); + color: var(--color-text); + background: var(--color-bg); + line-height: 1.6; + display: flex; + flex-direction: column; + min-height: 100vh; +} + +main { + flex: 1; +} + +a { + color: var(--color-accent); + text-decoration: none; +} + +a:hover { + color: var(--color-accent-hover); + text-decoration: underline; +} + +img { + max-width: 100%; + height: auto; + display: block; +} + +/* === Nav === */ +nav { + display: flex; + justify-content: center; + gap: 2rem; + padding: 1rem 1.5rem; + border-bottom: 1px solid var(--color-border); + font-size: 0.875rem; +} + +nav a { + color: var(--color-text-muted); + font-weight: 500; +} + +nav a:hover { + color: var(--color-text); + text-decoration: none; +} + +/* === Sections === */ +section { + max-width: var(--max-width); + margin: 0 auto; + padding: 2.5rem 1.5rem; +} + +section h2 { + font-size: 1.25rem; + font-weight: 700; + margin-bottom: 1rem; +} + +.section-divider { + border: none; + border-top: 1px solid var(--color-border); + max-width: var(--max-width); + margin: 0 auto; +} + +/* === App list (cards) === */ +.app-list { + display: flex; + flex-direction: column; + background: var(--color-border); + border: 1px solid var(--color-border); + border-radius: var(--radius); + overflow: hidden; +} + +.app-item { + display: flex; + align-items: center; + gap: 0.75rem; + padding: 0.625rem 0.75rem; + background: var(--color-bg); + border-left: 3px solid transparent; + transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s; + position: relative; + z-index: 0; +} + +.app-item:hover { + transform: translateX(6px); + border-left-color: var(--color-accent); + box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.35); + background: var(--color-surface); + z-index: 1; +} + +.app-icon { + flex-shrink: 0; + display: block; +} + +.app-body { + flex: 1; + min-width: 0; +} + +.app-name { + font-size: 0.875rem; + font-weight: 600; + color: var(--color-accent); +} + +.app-name:hover { + color: var(--color-accent-hover); +} + +.app-desc { + font-size: 0.8125rem; + color: var(--color-text-muted); + margin: 0; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.app-links { + flex-shrink: 0; + display: flex; + gap: 0.375rem; +} + +.install-link { + font-size: 0.75rem; + padding: 0.125rem 0.5rem; + border: 1px solid var(--color-border); + border-radius: var(--radius); + color: var(--color-text-muted); +} + +.install-link:hover { + color: var(--color-accent); + border-color: var(--color-accent); + text-decoration: none; +} + +.category-meta { + color: var(--color-text-muted); + font-size: 0.875rem; + margin-bottom: 1rem; +} + +.search-box { + margin-bottom: 1rem; +} + +#search-input { + width: 100%; + max-width: 480px; + padding: 0.5em 0.75em; + font-size: 0.9375rem; + border: 1px solid var(--color-border); + border-radius: var(--radius); + background: var(--color-bg); + color: var(--color-text); + box-sizing: border-box; +} + +#search-input:focus { + outline: none; + border-color: var(--color-accent); +} + +@media (max-width: 640px) { + .app-item { + flex-wrap: wrap; + } + .app-desc { + white-space: normal; + } + .app-links { + width: 100%; + padding-left: 3.75rem; + } +} + +/* === Back to top === */ +#back-to-top { + position: fixed; + bottom: 1.5rem; + right: 1.5rem; + width: 2.5rem; + height: 2.5rem; + display: flex; + align-items: center; + justify-content: center; + background: var(--color-surface); + border: 1px solid var(--color-border); + border-radius: 50%; + color: var(--color-text-muted); + font-size: 1.25rem; + line-height: 1; + text-decoration: none; + padding-bottom: 2px; + opacity: 0; + transition: opacity 0.2s, border-color 0.2s; + z-index: 100; + pointer-events: none; +} + +#back-to-top.btt-visible { + opacity: 1; + pointer-events: auto; +} + +#back-to-top:hover { + border-color: var(--color-accent); + color: var(--color-accent); +} + +/* === Footer === */ +footer { + background: var(--color-footer-bg); + color: var(--color-footer-text); + text-align: center; + padding: 2.5rem 1.5rem; + font-size: 0.8125rem; + line-height: 2; +} + +footer a { + color: var(--color-hero-text); +} + +footer a:hover { + color: var(--color-accent); +} + +.footer-links { + display: flex; + justify-content: center; + flex-wrap: wrap; + gap: 1rem; + margin-bottom: 0.5rem; +} diff --git a/assets/css/style.scss b/assets/css/style.scss deleted file mode 100644 index 0b4c9075f..000000000 --- a/assets/css/style.scss +++ /dev/null @@ -1,244 +0,0 @@ ---- ---- - -@import "{{ site.theme }}"; - -/* Category grid (used by the auto-generated category list on home, apps, - appimages and every category page; emitted by am2pla-site in the AM repo). - Shared layout; theme-specific colors live in the @media blocks below. */ -.cat-grid { - /* Flex (not grid) so pills pack tight to their content width; a small - gap controls inter-pill spacing, and .cat-sep bullets emitted between - pills by am2pla-site give a visual separator at that tight spacing. */ - display: flex; - flex-wrap: wrap; - align-items: center; - gap: 0.25em 0.35em; - margin: 0.75em 0; -} - -.cat-pill { - padding: 0.15em 0.55em; - border: 1px solid; - border-radius: 999px; - text-align: center; - text-decoration: none; - font-size: 0.85em; - line-height: 1.4; - white-space: nowrap; -} - -.cat-pill--all { - font-weight: bold; -} - -.cat-sep { - font-size: 0.85em; - user-select: none; -} - -/* Hamburger toggle. The checkbox is always hidden; the label is hidden on - desktop and shown on narrow viewports, where it controls grid visibility - via the :checked sibling trick. No JavaScript needed. */ -#cat-menu-toggle { - display: none; -} -.cat-menu-button { - display: none; -} - -@media (max-width: 600px) { - .cat-menu-button { - display: inline-block; - padding: 0.5em 0.9em; - border: 1px solid; - border-radius: 999px; - cursor: pointer; - user-select: none; - font-size: 0.95em; - margin: 0.5em 0; - } - .cat-menu .cat-grid { - display: none; - } - #cat-menu-toggle:checked ~ .cat-grid { - display: flex; - } -} - -/* Default body styles */ -body { - background-color: white; /* Default background color for light theme */ - color: black; /* Default text color for light theme */ -} - -/* Default link styles */ -a { - color: blue; /* Default link color */ - text-decoration: none; - transition: color 0.3s; /* Smooth transition for hover effect */ -} - -/* Light theme styles */ -@media (prefers-color-scheme: light) { - body { - background-color: white; /* Background color for light theme */ - color: black; /* Text color for light theme */ - } - - a { - color: blue; /* Link color for light theme */ - } - - table { - background-color: white; /* Table background for light theme */ - color: black; /* Table text color for light theme */ - } - - th { - background-color: #f0f0f0; /* Light gray background for table headers */ - color: black; /* Header text color */ - } - - td { - background-color: white; /* Background color for table cells */ - } - - .cat-pill { - background-color: #f6f8fa; - border-color: #d0d7de; - color: #0969da; - } - .cat-pill:hover { - background-color: #eaeef2; - } - .cat-pill--all { - background-color: #ddf4ff; - border-color: #0969da; - } - .cat-pill--all:hover { - background-color: #b6e3ff; - } - .cat-menu-button { - background-color: #f6f8fa; - border-color: #d0d7de; - color: #0969da; - } - .cat-menu-button:hover { - background-color: #eaeef2; - } - .cat-sep { - color: #999; - } -} - -/* Dark theme styles */ -@media (prefers-color-scheme: dark) { - body { - background-color: #010211; /* Dark background color */ - color: #ebdddd; /* Light text color for dark theme */ - } - - a { - color: #5d93e8; - } - - a:hover { - color: lightgreen; - } - - h1 { - color: #45c1c1; - font: icon; - } - - hr { - height: 0.2em; - margin: 12px 0; - } - - .markdown-body h1 { - padding-bottom: 1em; - border-bottom: 5px solid #2b343f; - } - - .markdown-body h2 { - padding-bottom: 1em; - font-size: 1.5em; - border-bottom: 2.5px solid #2b343f; - } - - .markdown-body h3 { - font-size: 1.1em; - } - - .markdown-body h4 { - font-size: 1.05em; - font-style: italic; - color: #dbd9cd; - } - - .markdown-body h6 { - font-size: 0.8em; - color: #d8dbdf; - } - - .markdown-body hr { - background-color: #2b343f; - } - - .markdown-body pre { - background-color: #000; - } - - pre { - color: #128418; - font-style: italic; - font-weight: bold; - } - - table { - background-color: #010211; /* Dark background for table */ - color: #e0e0e0; /* Table text color for dark theme */ - font-style: italic; - } - - th { - background-color: #000; /* Darker gray background for table headers */ - color: #e0e0e0; /* Header text color for dark theme */ - } - - td { - background-color: #110e1b; /* Dark background for table cells */ - border: 1px solid #35333b; - } - - .cat-pill { - background-color: #1a1d27; - border-color: #2b343f; - color: #5d93e8; - } - .cat-pill:hover { - background-color: #232733; - color: lightgreen; - } - .cat-pill--all { - background-color: #0d2238; - border-color: #5d93e8; - } - .cat-pill--all:hover { - background-color: #143052; - } - .cat-menu-button { - background-color: #1a1d27; - border-color: #2b343f; - color: #5d93e8; - } - .cat-menu-button:hover { - background-color: #232733; - color: lightgreen; - } - .cat-sep { - color: #555; - } -} diff --git a/assets/css/wiki.css b/assets/css/wiki.css new file mode 100644 index 000000000..ddd4ed691 --- /dev/null +++ b/assets/css/wiki.css @@ -0,0 +1,33 @@ +.wiki-page h2 { + font-size: 1.375rem; + font-weight: 700; + margin-top: 2.5rem; + margin-bottom: 1rem; +} + +.wiki-page h3 { + font-size: 1.125rem; + font-weight: 600; + margin-top: 1.5rem; + margin-bottom: 0.75rem; +} + +.wiki-page p, +.wiki-page li { + color: var(--color-text-muted); + margin-bottom: 0.5rem; +} + +.wiki-page ul { + margin-bottom: 1rem; + padding-left: 1.5rem; +} + +.wiki-page ul ul { + margin-bottom: 0; + margin-top: 0.25rem; +} + +.wiki-page a { + color: var(--color-accent); +} diff --git a/assets/js/app_page.js b/assets/js/app_page.js new file mode 100644 index 000000000..42f6de21a --- /dev/null +++ b/assets/js/app_page.js @@ -0,0 +1,253 @@ +(function() { + var params = new URLSearchParams(window.location.search); + var name = params.get('name'); + var root = document.getElementById('app-root'); + + if (!name) { + root.innerHTML = '

No app specified

Use ?name=appname in the URL.

'; + return; + } + + fetch('apps/' + encodeURIComponent(name) + '.json') + .then(function(r) { + if (!r.ok) throw new Error('Not found'); + return r.json(); + }) + .then(function(app) { + var html = ''; + + // Header with icon, name, sites + var iconUrl = 'icons/' + encodeURIComponent(name) + '.png'; + html += '
'; + html += ''; + html += '
'; + html += '

' + escapeHtml(app.name || name) + '

'; + html += '
'; + html += '
'; + html += 'Install'; + html += '
'; + + // Description + html += '
'; + if (app.description) { + html += markdownToHtml(app.description); + } + html += '
'; + + // Screenshots gallery + if (app.screenshots && app.screenshots.length) { + html += ''; + } + + // Buttons + if (app.buttons && app.buttons.length) { + html += ''; + } + + // Sites + if (app.sites && app.sites.length) { + html += ''; + } + + // Sources + if (app.sources && app.sources.length) { + html += ''; + } + + root.innerHTML = html; + + // Gallery carousel + if (app.screenshots && app.screenshots.length > 1) { + var galIdx = 0; + var galBusy = false; + var galImg = document.getElementById('gal-img'); + var galPrev = document.getElementById('gal-prev'); + var galNext = document.getElementById('gal-next'); + var galDots = document.getElementById('gal-dots'); + var shots = app.screenshots; + + // Preload every screenshot up front so later swaps come from + // the browser cache instead of waiting on the network. + for (var p = 0; p < shots.length; p++) { + var pre = new Image(); + pre.src = shots[p]; + } + + for (var i = 0; i < shots.length; i++) { + var dot = document.createElement('button'); + dot.className = 'gallery-dot' + (i === 0 ? ' active' : ''); + dot.setAttribute('aria-label', 'Screenshot ' + (i + 1)); + (function(idx) { + dot.addEventListener('click', function() { + if (idx !== galIdx) showGal(idx, idx > galIdx ? 'next' : 'prev'); + }); + })(i); + galDots.appendChild(dot); + } + + function updateControls(idx) { + galPrev.disabled = idx === 0; + galNext.disabled = idx === shots.length - 1; + var dots = galDots.children; + for (var j = 0; j < dots.length; j++) { + dots[j].className = 'gallery-dot' + (j === idx ? ' active' : ''); + } + } + + function showGal(idx, dir) { + if (galBusy || idx === galIdx) return; + galBusy = true; + galIdx = idx; + updateControls(idx); + + // Fade/slide the current image out first... + galImg.classList.add('gal-transition', dir === 'prev' ? 'gal-prev' : 'gal-next'); + + setTimeout(function() { + galImg.src = shots[idx]; + + function reveal() { + // Force a reflow so removing the class re-triggers the transition. + void galImg.offsetWidth; + galImg.classList.remove('gal-transition', 'gal-prev', 'gal-next'); + galBusy = false; + } + + // Thanks to preloading this is almost always already cached, + // so it resolves on the very next frame rather than stalling. + if (galImg.complete) { + requestAnimationFrame(reveal); + } else { + galImg.onload = reveal; + } + }, 160); + } + + galPrev.addEventListener('click', function() { + if (galIdx > 0) showGal(galIdx - 1, 'prev'); + }); + galNext.addEventListener('click', function() { + if (galIdx < shots.length - 1) showGal(galIdx + 1, 'next'); + }); + document.addEventListener('keydown', function(e) { + if (e.key === 'ArrowLeft' && galIdx > 0) showGal(galIdx - 1, 'prev'); + if (e.key === 'ArrowRight' && galIdx < shots.length - 1) showGal(galIdx + 1, 'next'); + }); + } else if (app.screenshots && app.screenshots.length === 1) { + var p = document.getElementById('gal-prev'); + var n = document.getElementById('gal-next'); + if (p) p.style.display = 'none'; + if (n) n.style.display = 'none'; + } + + // Update page title + document.title = (app.name || name).toUpperCase() + ' - PORTABLE LINUX APPS'; + }) + .catch(function(err) { + root.innerHTML = '

App not found

Could not load data for ' + escapeHtml(name) + '.

'; + }); + + function escapeHtml(s) { + var div = document.createElement('div'); + div.appendChild(document.createTextNode(s)); + return div.innerHTML; + } + + // Minimal markdown -> HTML for descriptions. + // Supports only: **bold**, *italic*, ++underline++, and - / * / 1. lists. + // Everything else is treated as plain text (and HTML-escaped first, + // so no other tags can sneak in through the JSON data). + function inlineMarkdown(s) { + s = s.replace(/\*\*(.+?)\*\*/g, '$1'); + s = s.replace(/__(.+?)__/g, '$1'); + s = s.replace(/\+\+(.+?)\+\+/g, '$1'); + s = s.replace(/\*(.+?)\*/g, '$1'); + s = s.replace(/_(.+?)_/g, '$1'); + return s; + } + + function markdownToHtml(text) { + var lines = escapeHtml(text).split('\n'); + var blocks = []; + var i = 0; + + while (i < lines.length) { + var line = lines[i]; + var trimmed = line.trim(); + + // Skip completely empty lines – they should not produce
+ if (trimmed === '') { + i++; + continue; + } + + var ulRe = /^[-*]\s+(.*)$/; + var olRe = /^\d+\.\s+(.*)$/; + var ulMatch = line.match(ulRe); + var olMatch = !ulMatch && line.match(olRe); + + if (ulMatch || olMatch) { + var tag = ulMatch ? 'ul' : 'ol'; + var re = ulMatch ? ulRe : olRe; + var items = []; + + // Collect all consecutive list items, skipping blank lines + while (i < lines.length) { + var currentLine = lines[i]; + var trimmedCurrent = currentLine.trim(); + + // Skip blank lines inside the list – they do not break it + if (trimmedCurrent === '') { + i++; + continue; + } + + var m = currentLine.match(re); + if (!m) break; // non-list, non-empty line ends the list + + items.push('
  • ' + inlineMarkdown(m[1]) + '
  • '); + i++; + } + + if (items.length) { + blocks.push('<' + tag + '>' + items.join('') + ''); + } + // i is now positioned at the line that broke the list (or at end) + } else { + // Normal text block + blocks.push(inlineMarkdown(line)); + i++; + } + } + + return blocks.join('
    '); + } +})(); + +var btt = document.getElementById('back-to-top'); +window.addEventListener('scroll', function() { + btt.classList.toggle('btt-visible', window.scrollY > 300); +}); diff --git a/assets/js/script.js b/assets/js/script.js new file mode 100644 index 000000000..9c92dc688 --- /dev/null +++ b/assets/js/script.js @@ -0,0 +1,82 @@ +var appNodes = []; + +function escapeHtml(s) { + return s.replace(/&/g,'&').replace(//g,'>').replace(/"/g,'"'); +} + +function renderApps(data) { + var container = document.getElementById('app-list'); + var html = '
    '; + for (var i = 0; i < data.length; i++) { + var app = data[i]; + html += '
    '; + html += ''; + html += '
    '; + html += '' + escapeHtml(app.name) + ''; + html += '

    ' + escapeHtml(app.description) + '

    '; + html += '
    '; + html += ''; + html += '
    '; + } + html += '
    '; + container.innerHTML = html; + + appNodes = []; + var items = container.querySelectorAll('.app-item'); + for (var j = 0; j < items.length; j++) { + appNodes.push(items[j]); + } +} + +document.addEventListener('DOMContentLoaded', function() { + var el = document.getElementById('app-list'); + if (!el) return; + var jsonUrl = el.getAttribute('data-json'); + if (!jsonUrl) return; + + fetch(jsonUrl) + .then(function(r) { return r.json() }) + .then(function(data) { + var meta = document.getElementById('category-meta'); + if (meta) meta.textContent = 'Here are listed ' + data.length + ' apps for this category.'; + + var cache = []; + for (var i = 0; i < data.length; i++) { + cache.push({ + name: data[i].name.toLowerCase(), + desc: data[i].description ? data[i].description.toLowerCase() : '' + }); + } + + renderApps(data); + + var input = document.getElementById('search-input'); + if (input) { + var timer; + input.addEventListener('input', function() { + clearTimeout(timer); + var self = this; + timer = setTimeout(function() { + var terms = self.value.toLowerCase().split(/\s+/).filter(Boolean); + for (var k = 0; k < appNodes.length; k++) { + var show = !terms.length || terms.every(function(t) { return cache[k].name.indexOf(t) !== -1 || cache[k].desc.indexOf(t) !== -1; }); + appNodes[k].style.display = show ? '' : 'none'; + } + }, 150); + }); + } + + var btt = document.getElementById('back-to-top'); + if (btt) { + window.addEventListener('scroll', function() { + btt.classList.toggle('btt-visible', window.scrollY > 300); + }); + } + }) + .catch(function(err) { + document.getElementById('app-list').innerHTML = '

    Failed to load apps.

    '; + }); +}); diff --git a/assets/js/search.js b/assets/js/search.js deleted file mode 100644 index 0568a8c5c..000000000 --- a/assets/js/search.js +++ /dev/null @@ -1,178 +0,0 @@ -(function () { - 'use strict'; - - function escapeHtml(s) { - return String(s).replace(/[&<>"']/g, function (c) { - return ({ '&': '&', '<': '<', '>': '>', '"': '"', "'": ''' })[c]; - }); - } - - // Filters the rows of the big apps table in-place. - function initTableFilter() { - var input = document.getElementById('app-search-input'); - var counter = document.getElementById('app-search-count'); - var archSel = document.getElementById('app-search-arch'); - if (!input) return; - - // Locate the apps table by its header cells; the search box may be at the - // top of the page (via the `category` layout) or inline near the table. - var table = null; - var tables = document.getElementsByTagName('table'); - for (var t = 0; t < tables.length && !table; t++) { - var headerRow = tables[t].rows[0]; - if (!headerRow) continue; - for (var c = 0; c < headerRow.cells.length; c++) { - if (/package\s*name/i.test(headerRow.cells[c].textContent || '')) { - table = tables[t]; - break; - } - } - } - if (!table) return; - - var rows = Array.prototype.slice.call(table.tBodies[0] ? table.tBodies[0].rows : table.rows); - if (rows.length && rows[0].cells[0] && rows[0].cells[0].tagName === 'TH') rows.shift(); - - var haystacks = rows.map(function (row) { - return (row.textContent || '').toLowerCase(); - }); - // Per-row architecture list from the hidden .arch-data marker emitted by - // am2pla-site. Rows without it (pages generated before the arch filter) - // default to x86_64, which every listed app supports. - var rowArchs = rows.map(function (row) { - var el = row.querySelector('.arch-data'); - return el ? (el.getAttribute('data-arch') || 'x86_64') : 'x86_64'; - }); - var total = rows.length; - - function update() { - var q = input.value.trim().toLowerCase(); - // Whitespace-separated terms, ANDed. Empty query matches every row. - var terms = q.split(/\s+/).filter(Boolean); - var arch = archSel ? archSel.value : ''; - var visible = 0; - for (var i = 0; i < rows.length; i++) { - var hay = haystacks[i]; - var match = terms.every(function (t) { return hay.indexOf(t) !== -1; }) - && (!arch || rowArchs[i].split(/\s+/).indexOf(arch) !== -1); - rows[i].style.display = match ? '' : 'none'; - if (match) visible++; - } - counter.textContent = (q === '' && !arch) - ? '(' + total + ' apps)' - : '(' + visible + ' of ' + total + ' shown)'; - } - - input.addEventListener('input', update); - if (archSel) archSel.addEventListener('change', update); - - var params = new URLSearchParams(window.location.search); - var initialQ = params.get('q'); - if (initialQ) { - input.value = initialQ; - input.focus(); - } - var initialArch = params.get('arch'); - if (initialArch && archSel) archSel.value = initialArch; - update(); - } - - // Fetches apps.json and renders a short list of matches with links. - function initJsonSearch() { - var MAX_RESULTS = 20; - var APPS_URL = 'apps.json'; - var APPS_PAGE = 'apps.html'; - - var input = document.getElementById('home-search-input'); - var status = document.getElementById('home-search-status'); - var results = document.getElementById('home-search-results'); - var more = document.getElementById('home-search-more'); - var archSel = document.getElementById('home-search-arch'); - if (!input) return; - - var apps = null; - var pending = null; - - function load() { - if (apps || pending) return pending; - pending = fetch(APPS_URL).then(function (r) { return r.json(); }).then(function (data) { - apps = data; - status.textContent = apps.length + ' apps in the database.'; - if (input.value.trim()) render(input.value.trim()); - }).catch(function () { - status.textContent = 'Could not load the app database. Try again later.'; - }); - return pending; - } - - function render(q) { - results.innerHTML = ''; - more.innerHTML = ''; - if (!apps) return; - var arch = archSel ? archSel.value : ''; - if (!q) { - status.textContent = apps.length + ' apps in the database.'; - return; - } - // Whitespace-separated terms, ANDed against name + description. - var terms = q.toLowerCase().split(/\s+/).filter(Boolean); - var matches = []; - for (var i = 0; i < apps.length; i++) { - var a = apps[i]; - var hay = (a.packageName + ' ' + (a.description || '')).toLowerCase(); - var archOk = !arch || (a.arch || ['x86_64']).indexOf(arch) !== -1; - if (archOk && terms.every(function (t) { return hay.indexOf(t) !== -1; })) matches.push(a); - } - if (!matches.length) { - status.textContent = 'No apps match "' + q + '".'; - return; - } - status.textContent = matches.length + ' match' + (matches.length === 1 ? '' : 'es') - + (matches.length > MAX_RESULTS ? ' (showing first ' + MAX_RESULTS + ')' : '') + ':'; - var shown = matches.slice(0, MAX_RESULTS); - var html = ''; - for (var j = 0; j < shown.length; j++) { - var m = shown[j]; - var safeName = escapeHtml(m.packageName); - var safeDesc = escapeHtml((m.description || '').replace(/\.\.\.$/, '')); - var safeIcon = escapeHtml(m.icon || ''); - html += '
  • ' - + '' - + '' - + '' + safeName + '' - + '
    ' + safeDesc + '' - + '
    ' - + '
  • '; - } - results.innerHTML = html; - if (matches.length > MAX_RESULTS) { - more.innerHTML = 'See all ' + matches.length + ' matches on the apps page →'; - } - } - - input.addEventListener('focus', load); - input.addEventListener('input', function () { - if (apps) render(input.value.trim()); - else load(); - }); - if (archSel) archSel.addEventListener('change', function () { - if (apps) render(input.value.trim()); - else load(); - }); - - load(); - } - - function init() { - initTableFilter(); - initJsonSearch(); - } - - if (document.readyState === 'loading') { - document.addEventListener('DOMContentLoaded', init); - } else { - init(); - } -})(); diff --git a/audio.md b/audio.md deleted file mode 100644 index b3be19986..000000000 --- a/audio.md +++ /dev/null @@ -1,298 +0,0 @@ -# AUDIO - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **169** programs and **1** items for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***432hz-player***](apps/432hz-player.md) | *Because most music is recorded in 440hz, Audio Player.*..[ *read more* ](apps/432hz-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/432hz-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/432hz-player) | -| | [***acestep-cpp-ui***](apps/acestep-cpp-ui.md) | *AceStep-cpp UI, 100% local and free Suno alternative powered by acestep-cpp. Native C++ bundle for local AI music generation with 0% python.*..[ *read more* ](apps/acestep-cpp-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/acestep-cpp-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/acestep-cpp-ui) | -| | [***amarok***](apps/amarok.md) | *Unofficial, powerful music player that lets you rediscover your music.*..[ *read more* ](apps/amarok.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amarok) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amarok) | -| | [***amplitude-soundboard***](apps/amplitude-soundboard.md) | *A sleek, cross-platform soundboard, available.*..[ *read more* ](apps/amplitude-soundboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amplitude-soundboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amplitude-soundboard) | -| | [***amusiz***](apps/amusiz.md) | *Unofficial and unpretentious Amazon Music client.*..[ *read more* ](apps/amusiz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amusiz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amusiz) | -| | [***anavis***](apps/anavis.md) | *Tool to visualize musical form.*..[ *read more* ](apps/anavis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anavis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anavis) | -| | [***antra***](apps/antra.md) | *A desktop music library builder. Resolves Spotify / Apple Music / Amazon Music URLs → get lossless audio → auto-tags, transcodes, and organizes. No subscriptions. No compromises.*..[ *read more* ](apps/antra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antra) | -| | [***arcdlp***](apps/arcdlp.md) | *Open-source desktop video downloader powered by yt-dlp and electron. Download videos and audio from YouTube, Vimeo, Twitter, and thousands of sites.*..[ *read more* ](apps/arcdlp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arcdlp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arcdlp) | -| | [***astrofox***](apps/astrofox.md) | *Audio reactive motion graphics program.*..[ *read more* ](apps/astrofox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/astrofox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/astrofox) | -| | [***asunder***](apps/asunder.md) | *Unofficial. Audio CD ripper and encoder, WAV, MP3, OGG, FLAC, Opus, AAC....*..[ *read more* ](apps/asunder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/asunder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/asunder) | -| | [***audacious***](apps/audacious.md) | *Unofficial. An open source audio and music player, descendant of XMMS.*..[ *read more* ](apps/audacious.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audacious) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audacious) | -| | [***audacity***](apps/audacity.md) | *Multiplatform Audio Editor.*..[ *read more* ](apps/audacity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audacity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audacity) | -| | [***audacity-enhanced***](apps/audacity-enhanced.md) | *Unofficial, multiplatform Audio Editor.*..[ *read more* ](apps/audacity-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audacity-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audacity-enhanced) | -| | [***audapolis***](apps/audapolis.md) | *An editor for spoken-word audio with automatic transcription.*..[ *read more* ](apps/audapolis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audapolis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audapolis) | -| | [***audio-sharing***](apps/audio-sharing.md) | *Unofficial. Share audio from the desktop on local network using RTSP protocol.*..[ *read more* ](apps/audio-sharing.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audio-sharing) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audio-sharing) | -| | [***audiomoth-configuration-app***](apps/audiomoth-configuration-app.md) | *An Electron-based application capable of configuring the functionality of the AudioMoth recording device and setting the onboard clock.*..[ *read more* ](apps/audiomoth-configuration-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-configuration-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-configuration-app) | -| | [***audiomoth-flash-app***](apps/audiomoth-flash-app.md) | *An Electron-based application designed to flash the AudioMoth recording device with new firmware.*..[ *read more* ](apps/audiomoth-flash-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-flash-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-flash-app) | -| | [***audiomoth-gps-sync-app***](apps/audiomoth-gps-sync-app.md) | *An Electron-based application to generate WAV files synchronised with GPS time from the files generated by the AudioMoth-GPS-Sync firmware.*..[ *read more* ](apps/audiomoth-gps-sync-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-gps-sync-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-gps-sync-app) | -| | [***audiomoth-live-app***](apps/audiomoth-live-app.md) | *An Electron-based application for recording and analysing live audio from high sample rate microphones, including the AudioMoth USB Microphone.*..[ *read more* ](apps/audiomoth-live-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-live-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-live-app) | -| | [***audiomoth-time-app***](apps/audiomoth-time-app.md) | *An Electron-based application capable of setting the on-board clock of the AudioMoth recording device.*..[ *read more* ](apps/audiomoth-time-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-time-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-time-app) | -| | [***audiomoth-usb-microphone-app***](apps/audiomoth-usb-microphone-app.md) | *An Electron-based application capable of configuring the functionality of the AudioMoth-USB-Microphone firmware.*..[ *read more* ](apps/audiomoth-usb-microphone-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiomoth-usb-microphone-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiomoth-usb-microphone-app) | -| | [***audiorelay***](apps/audiorelay.md) | *Stream audio between your devices. Turn your phone into a microphone or speakers for PC.*..[ *read more* ](apps/audiorelay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiorelay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiorelay) | -| | [***auryo***](apps/auryo.md) | *An audio/music desktop client for SoundCloud.*..[ *read more* ](apps/auryo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/auryo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/auryo) | -| | [***blob-dl***](apps/blob-dl.md) | *Blob-dl is a yt-dlp CLI interface used to download video and audio files from YouTube.*..[ *read more* ](apps/blob-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blob-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blob-dl) | -| | [***bloomee***](apps/bloomee.md) | *Music app designed to bring you ad-free tunes from various sources.*..[ *read more* ](apps/bloomee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bloomee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bloomee) | -| | [***bodacious***](apps/bodacious.md) | *A bodacious music player.*..[ *read more* ](apps/bodacious.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bodacious) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bodacious) | -| | [***cadmus***](apps/cadmus.md) | *Pulse Audio real-time noise suppression plugin.*..[ *read more* ](apps/cadmus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cadmus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cadmus) | -| | [***castersoundboard***](apps/castersoundboard.md) | *Soundboard for hot-keying and playing back sounds.*..[ *read more* ](apps/castersoundboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/castersoundboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/castersoundboard) | -| | [***cinelerra***](apps/cinelerra.md) | *CINELERRA-GG is a software program NLE, Non-Linear Editor, that provides a way to edit, record, and play audio or video media. It can also be used to transcode media from one format to another or to correct and retouch photos.*..[ *read more* ](apps/cinelerra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cinelerra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cinelerra) | -| | [***classipod***](apps/classipod.md) | *A local music player app designed to capture the nostalgic essence of the iconic iPod Classic.*..[ *read more* ](apps/classipod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/classipod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/classipod) | -| | [***clementine***](apps/clementine.md) | *Unofficial AppImage of the Clementine music player.*..[ *read more* ](apps/clementine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clementine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clementine) | -| | [***clementineremote***](apps/clementineremote.md) | *Remote for Clementine Music Player.*..[ *read more* ](apps/clementineremote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clementineremote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clementineremote) | -| | [***code-radio***](apps/code-radio.md) | *A command line music radio client for coderadio.freecodecamp.org, written in Rust.*..[ *read more* ](apps/code-radio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code-radio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code-radio) | -| | [***converter432hz***](apps/converter432hz.md) | *Converts and re-encodes music to 432hz.*..[ *read more* ](apps/converter432hz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/converter432hz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/converter432hz) | -| | [***deadbeef***](apps/deadbeef.md) | *Unofficial AppImage of the DeaDBeeF music player (Stable version).*..[ *read more* ](apps/deadbeef.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deadbeef) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deadbeef) | -| | [***deadbeef-nightly***](apps/deadbeef-nightly.md) | *Unofficial AppImage of the DeaDBeeF music player (Nightly version).*..[ *read more* ](apps/deadbeef-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deadbeef-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deadbeef-nightly) | -| | [***deezer***](apps/deezer.md) | *A linux port of Deezer, allows downloading your songs, music.*..[ *read more* ](apps/deezer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deezer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deezer) | -| | [***diffuse***](apps/diffuse.md) | *Music player, connects to your cloud/distributed storage.*..[ *read more* ](apps/diffuse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diffuse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diffuse) | -| | [***dopamine-preview***](apps/dopamine-preview.md) | *The audio player that keeps it simple.*..[ *read more* ](apps/dopamine-preview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dopamine-preview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dopamine-preview) | -| | [***downline***](apps/downline.md) | *A cross-platform video and audio downloader.*..[ *read more* ](apps/downline.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/downline) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/downline) | -| | [***duskplayer***](apps/duskplayer.md) | *A minimal music player built on electron.*..[ *read more* ](apps/duskplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duskplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duskplayer) | -| | [***electronwmd***](apps/electronwmd.md) | *Upload music to NetMD MiniDisc devices.*..[ *read more* ](apps/electronwmd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electronwmd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electronwmd) | -| | [***feishin***](apps/feishin.md) | *Sonixd Rewrite, a desktop music player.*..[ *read more* ](apps/feishin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/feishin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/feishin) | -| | [***ffmpeg***](apps/ffmpeg.md) | *Unofficial, A complete, cross-platform solution to record, convert and stream audio and video.*..[ *read more* ](apps/ffmpeg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffmpeg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffmpeg) | -| | [***firetail***](apps/firetail.md) | *An open source music player.*..[ *read more* ](apps/firetail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firetail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firetail) | -| | [***flacon***](apps/flacon.md) | *Audio File Encoder. Extracts audio tracks from audio CDs.*..[ *read more* ](apps/flacon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flacon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flacon) | -| | [***flb***](apps/flb.md) | *A beautiful Feature Rich Music Player and Downloader,cross platform.*..[ *read more* ](apps/flb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flb) | -| | [***flippy-qualitative-testbench***](apps/flippy-qualitative-testbench.md) | *Music sheet reader.*..[ *read more* ](apps/flippy-qualitative-testbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flippy-qualitative-testbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flippy-qualitative-testbench) | -| | [***focusatwill***](apps/focusatwill.md) | *Combines neuroscience and music to boost productivity.*..[ *read more* ](apps/focusatwill.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focusatwill) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focusatwill) | -| | [***foobar2000***](apps/foobar2000.md) | *Unofficial, an advanced freeware audio player for Windows, includes WINE.*..[ *read more* ](apps/foobar2000.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foobar2000) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foobar2000) | -| | [***fooyin***](apps/fooyin.md) | *Unofficial, a customisable music player.*..[ *read more* ](apps/fooyin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fooyin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fooyin) | -| | [***freac***](apps/freac.md) | *fre:ac, free audio converter and CD ripper for various encoders.*..[ *read more* ](apps/freac.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freac) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freac) | -| | [***friture***](apps/friture.md) | *Real-time audio visualizations, spectrum, spectrogram, etc..*..[ *read more* ](apps/friture.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/friture) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/friture) | -| | [***gapless***](apps/gapless.md) | *Unofficial. Simple music player with blur and gapless playback.*..[ *read more* ](apps/gapless.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gapless) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gapless) | -| | [***giada***](apps/giada.md) | *Hardcore audio music production tool and drum machine for DJs.*..[ *read more* ](apps/giada.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/giada) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/giada) | -| | [***gsequencer***](apps/gsequencer.md) | *Tree based audio processing engine.*..[ *read more* ](apps/gsequencer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gsequencer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gsequencer) | -| | [***harmonoid***](apps/harmonoid.md) | *Plays & manages your music library. Looks beautiful & juicy. Playlists, visuals, synced lyrics, pitch shift, volume boost & more.*..[ *read more* ](apps/harmonoid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/harmonoid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/harmonoid) | -| | [***helio***](apps/helio.md) | *One music sequencer for all major platforms, desktop and mobile.*..[ *read more* ](apps/helio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helio) | -| | [***hydrogen-music***](apps/hydrogen-music.md) | *The advanced drum machine.*..[ *read more* ](apps/hydrogen-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hydrogen-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hydrogen-music) | -| | [***impact***](apps/impact.md) | *Music Management and Playback.*..[ *read more* ](apps/impact.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/impact) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/impact) | -| | [***jellyamp***](apps/jellyamp.md) | *A client for listening to music from a Jellyfin server.*..[ *read more* ](apps/jellyamp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jellyamp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jellyamp) | -| | [***kid3***](apps/kid3.md) | *Unofficial, efficient audio tagger that supports a large variety of file formats.*..[ *read more* ](apps/kid3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kid3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kid3) | -| | [***kiku***](apps/kiku.md) | *Play music from youtube on desktop. Supports local api, invidious and piped as source.*..[ *read more* ](apps/kiku.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kiku) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kiku) | -| | [***krecorder***](apps/kdeutils.md) | *An audio recording application. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kwave***](apps/kwave.md) | *A sound & audio editor designed for the KDE Desktop Environment.*..[ *read more* ](apps/kwave.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kwave) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kwave) | -| | [***libation***](apps/libation.md) | *Unofficial, application for downloading and managing your Audible audiobooks.*..[ *read more* ](apps/libation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/libation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/libation) | -| | [***listen1-desktop***](apps/listen1-desktop.md) | *One for all free music in China.*..[ *read more* ](apps/listen1-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/listen1-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/listen1-desktop) | -| | [***lmms***](apps/lmms.md) | *FL Studio® alternative that allows you to produce music with the PC.*..[ *read more* ](apps/lmms.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lmms) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lmms) | -| | [***losslesscut***](apps/losslesscut.md) | *The swiss army knife of lossless video/audio editing.*..[ *read more* ](apps/losslesscut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/losslesscut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/losslesscut) | -| | [***lovelive***](apps/lovelive.md) | *A LoveLiver Music Player.*..[ *read more* ](apps/lovelive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lovelive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lovelive) | -| | [***lx-music-desktop***](apps/lx-music-desktop.md) | *一个基于electron的音乐软件.*..[ *read more* ](apps/lx-music-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lx-music-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lx-music-desktop) | -| | [***mcpodcast***](apps/mcpodcast.md) | *Electron app for tasks around Podcast mp3 files.*..[ *read more* ](apps/mcpodcast.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mcpodcast) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mcpodcast) | -| | [***media-downloader***](apps/media-downloader.md) | *Cross-platform audio/video downloader.*..[ *read more* ](apps/media-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/media-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/media-downloader) | -| | [***mellowplayer***](apps/mellowplayer.md) | *Cloud music integration for your desktop.*..[ *read more* ](apps/mellowplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mellowplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mellowplayer) | -| | [***melodie***](apps/melodie.md) | *Simple-as-pie music player.*..[ *read more* ](apps/melodie.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/melodie) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/melodie) | -| | [***milkytracker***](apps/milkytracker.md) | *An FT2 compatible music tracker.*..[ *read more* ](apps/milkytracker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/milkytracker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/milkytracker) | -| | [***mkvtoolnix***](apps/mkvtoolnix.md) | *Matroska files creator and tools.*..[ *read more* ](apps/mkvtoolnix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mkvtoolnix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mkvtoolnix) | -| | [***mlv-app***](apps/mlv-app.md) | *All in one MLV processing app, audio/video.*..[ *read more* ](apps/mlv-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mlv-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mlv-app) | -| | [***modv***](apps/modv.md) | *Modular audio visualisation powered by JavaScript.*..[ *read more* ](apps/modv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/modv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/modv) | -| | [***moosync***](apps/moosync.md) | *Music player capable of playing local audio or from Youtube/Spotify.*..[ *read more* ](apps/moosync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moosync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moosync) | -| | [***mp3-tagger***](apps/mp3-tagger.md) | *An Electron app to edit metadata of mp3 files.*..[ *read more* ](apps/mp3-tagger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mp3-tagger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mp3-tagger) | -| | [***mp4grep***](apps/mp4grep.md) | *CLI for transcribing and searching audio/video files.*..[ *read more* ](apps/mp4grep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mp4grep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mp4grep) | -| | [***muffon***](apps/muffon.md) | *Music streaming browser,retrieves audio, video and metadata.*..[ *read more* ](apps/muffon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/muffon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/muffon) | -| | [***muse***](apps/muse.md) | *A digital audio workstation with support for both Audio and MIDI.*..[ *read more* ](apps/muse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/muse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/muse) | -| | [***museeks***](apps/museeks.md) | *A simple, clean and cross-platform music player.*..[ *read more* ](apps/museeks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/museeks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/museeks) | -| | [***musescore***](apps/musescore.md) | *An open source and free music notation software.*..[ *read more* ](apps/musescore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/musescore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/musescore) | -| | [***music-assistant***](apps/music-assistant.md) | *The desktop companion app for Music Assistant.*..[ *read more* ](apps/music-assistant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-assistant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-assistant) | -| | [***music-blocks***](apps/music-blocks.md) | *.Exploring Math, Music, and Programming.*..[ *read more* ](apps/music-blocks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-blocks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-blocks) | -| | [***music-kitten***](apps/music-kitten.md) | *Use your own soundtrack in Counter-Strike.*..[ *read more* ](apps/music-kitten.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-kitten) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-kitten) | -| | [***music-player***](apps/music-player.md) | *Desktop Electron app for playing and downloading music.*..[ *read more* ](apps/music-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-player) | -| | [***music-quiz***](apps/music-quiz.md) | *Jepardy like game, guess as many songs as possible.*..[ *read more* ](apps/music-quiz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-quiz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-quiz) | -| | [***musicalypse***](apps/musicalypse.md) | *Audio/Music player and server built with Web technologies.*..[ *read more* ](apps/musicalypse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/musicalypse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/musicalypse) | -| | [***nautune***](apps/nautune.md) | *Poseidon's Music Player for Jellyfin.*..[ *read more* ](apps/nautune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nautune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nautune) | -| | [***nootka***](apps/nootka.md) | *Application for learning musical score notation.*..[ *read more* ](apps/nootka.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nootka) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nootka) | -| | [***nora***](apps/nora.md) | *An elegant music player built using Electron and React.*..[ *read more* ](apps/nora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nora) | -| | [***nuclear***](apps/nuclear.md) | *Streaming music player that finds free music for you.*..[ *read more* ](apps/nuclear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nuclear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nuclear) | -| | [***ocenaudio***](apps/ocenaudio.md) | *Unofficial. Multiplatform Audio Editor.*..[ *read more* ](apps/ocenaudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ocenaudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ocenaudio) | -| | [***onionmediax***](apps/onionmediax.md) | *OnionMedia X. Convert and download videos and music quickly and easily.*..[ *read more* ](apps/onionmediax.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onionmediax) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onionmediax) | -| | [***onthespot***](apps/onthespot.md) | *A GUI music downloader for Apple Music, Bandcamp, Deezer, Qobuz, Spotify, Tidal, and More.*..[ *read more* ](apps/onthespot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onthespot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onthespot) | -| | [***opal***](apps/opal.md) | *Plays relaxing music in the background.*..[ *read more* ](apps/opal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opal) | -| | [***openaudible***](apps/openaudible.md) | *Download and manage your Audible audiobooks.*..[ *read more* ](apps/openaudible.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openaudible) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openaudible) | -| | [***openstream-music***](apps/openstream-music.md) | *The OpenStream Music source.*..[ *read more* ](apps/openstream-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openstream-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openstream-music) | -| | [***ossia-score***](apps/ossia-score.md) | *Sequencer for audio-visual artists for interactive shows.*..[ *read more* ](apps/ossia-score.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ossia-score) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ossia-score) | -| | [***pano-scrobbler***](apps/pano-scrobbler.md) | *Feature packed cross-platform music tracker for Last.fm, ListenBrainz, Libre.fm, Pleroma and other compatible services.*..[ *read more* ](apps/pano-scrobbler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pano-scrobbler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pano-scrobbler) | -| | [***parabolic***](apps/parabolic.md) | *Unofficial, Download web video and audio.*..[ *read more* ](apps/parabolic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parabolic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parabolic) | -| | [***pathephone***](apps/pathephone.md) | *Distributed audio player.*..[ *read more* ](apps/pathephone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pathephone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pathephone) | -| | [***pavucontrol-qt***](apps/pavucontrol-qt.md) | *Qt port of pavucontrol Pulseaudio mixer, unofficial AppImage.*..[ *read more* ](apps/pavucontrol-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pavucontrol-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pavucontrol-qt) | -| | [***pear-desktop***](apps/pear-desktop.md) | *An extension for music player.*..[ *read more* ](apps/pear-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pear-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pear-desktop) | -| | [***pelusica***](apps/pelusica.md) | *Action game, control the blue dot with your keyboard/create music.*..[ *read more* ](apps/pelusica.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pelusica) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pelusica) | -| | [***picard-daily***](apps/picard-daily.md) | *Inofficial daily development builds for MusicBrainz Picard.*..[ *read more* ](apps/picard-daily.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picard-daily) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picard-daily) | -| | [***playbox***](apps/playbox.md) | *An audio playback system for the live production industry.*..[ *read more* ](apps/playbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playbox) | -| | [***playme***](apps/playme.md) | *Elegant YouTube Music desktop app.*..[ *read more* ](apps/playme.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playme) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playme) | -| | [***plexamp***](apps/plexamp.md) | *The best little audio player on the planet.*..[ *read more* ](apps/plexamp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plexamp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plexamp) | -| | [***powerliminals-player***](apps/powerliminals-player.md) | *Powerliminal audios in the background, Audio player.*..[ *read more* ](apps/powerliminals-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/powerliminals-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/powerliminals-player) | -| | [***puddletag***](apps/puddletag.md) | *Unofficial, Powerful, simple, audio tag editor for GNU/Linux.*..[ *read more* ](apps/puddletag.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/puddletag) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/puddletag) | -| | [***punes***](apps/punes.md) | *Qt-based Nintendo Entertaiment System emulator and NSF/NSF2/NSFe Music Player.*..[ *read more* ](apps/punes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/punes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/punes) | -| | [***qmidictl***](apps/qmidictl.md) | *MIDI Remote Controller via UDP/IP Multicast.*..[ *read more* ](apps/qmidictl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmidictl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmidictl) | -| | [***qmidinet***](apps/qmidinet.md) | *MIDI Network Gateway via UDP/IP Multicast.*..[ *read more* ](apps/qmidinet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmidinet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmidinet) | -| | [***qmplay2***](apps/qmplay2.md) | *Video and audio player whit support of most formats and codecs.*..[ *read more* ](apps/qmplay2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmplay2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmplay2) | -| | [***qmplay2-enhanced***](apps/qmplay2-enhanced.md) | *Unofficial, a video and audio player which can play most formats and codecs.*..[ *read more* ](apps/qmplay2-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmplay2-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmplay2-enhanced) | -| | [***qt-dab***](apps/qt-dab.md) | *Listening to terrestrial Digital Audio Broadcasting.*..[ *read more* ](apps/qt-dab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qt-dab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qt-dab) | -| | [***reaper***](apps/reaper.md) | *A complete digital audio production app, offering a full multitrack audio and MIDI recording, editing, processing, mixing and mastering toolset.*..[ *read more* ](apps/reaper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/reaper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/reaper) | -| | [***reco***](apps/reco.md) | *Unofficial, An audio recorder focused on being concise and simple to use*..[ *read more* ](apps/reco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/reco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/reco) | -| | [***rendertune***](apps/rendertune.md) | *Electron app that uses ffmpeg to combine audio.+image files into video files.*..[ *read more* ](apps/rendertune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rendertune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rendertune) | -| | [***rhythmbox***](apps/rhythmbox.md) | *The popular Audio Player Rhythmbox.*..[ *read more* ](apps/rhythmbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rhythmbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rhythmbox) | -| | [***saucedacity***](apps/saucedacity.md) | *Audio editor based on Audacity focusing on general improvements.*..[ *read more* ](apps/saucedacity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/saucedacity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/saucedacity) | -| | [***sayonara***](apps/sayonara.md) | *Music player and music library admininstration.*..[ *read more* ](apps/sayonara.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sayonara) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sayonara) | -| | [***sayonara-player-enhanced***](apps/sayonara-player-enhanced.md) | *Unofficial, a small, clear and fast audio player.*..[ *read more* ](apps/sayonara-player-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sayonara-player-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sayonara-player-enhanced) | -| | [***sharp-tune***](apps/sharp-tune.md) | *Music player build upon the node using the electron.*..[ *read more* ](apps/sharp-tune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sharp-tune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sharp-tune) | -| | [***smf-dsp***](apps/smf-dsp.md) | *Standard MIDI file player.*..[ *read more* ](apps/smf-dsp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smf-dsp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smf-dsp) | -| | [***smplayer***](apps/smplayer.md) | *Media Player with built-in codecs for all audio and video formats.*..[ *read more* ](apps/smplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smplayer) | -| | [***sonicvisualiser***](apps/sonicvisualiser.md) | *Viewing and analysing the contents of music audio files.*..[ *read more* ](apps/sonicvisualiser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sonicvisualiser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sonicvisualiser) | -| | [***sonixd***](apps/sonixd.md) | *A full-featured Subsonic/Jellyfin compatible desktop music player.*..[ *read more* ](apps/sonixd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sonixd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sonixd) | -| | [***sonusmix***](apps/sonusmix.md) | *Next-gen Pipewire audio routing tool.*..[ *read more* ](apps/sonusmix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sonusmix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sonusmix) | -| | [***splayer***](apps/splayer.md) | *A simple music player that supports word-by-word lyrics, song downloads, comment section display, music cloud storage and playlist management, music spectrum analysis, and basic mobile adaptation. NetEase Cloud Music.*..[ *read more* ](apps/splayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/splayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/splayer) | -| | [***spmp***](apps/spmp.md) | *A YouTube Music client with a focus on customisation of colours and song metadata.*..[ *read more* ](apps/spmp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spmp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spmp) | -| | [***spotify***](apps/spotify.md) | *Unofficial. A proprietary music streaming service.*..[ *read more* ](apps/spotify.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify) | -| | [***spotify-candidate***](apps/spotify-candidate.md) | *Unofficial. A proprietary music streaming service.*..[ *read more* ](apps/spotify-candidate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-candidate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-candidate) | -| | [***spotify-edge***](apps/spotify-edge.md) | *Unofficial. A proprietary music streaming service.*..[ *read more* ](apps/spotify-edge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-edge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-edge) | -| | [***strawberry***](apps/strawberry.md) | *Unofficial AppImage of the strawberry music player.*..[ *read more* ](apps/strawberry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strawberry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strawberry) | -| | [***supersonic***](apps/supersonic.md) | *A lightweight and full-featured cross-platform desktop client for self-hosted music servers.*..[ *read more* ](apps/supersonic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supersonic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supersonic) | -| | [***tag-editor***](apps/tag-editor.md) | *Tag Editor, supports MP4, ID3, Vorbis, Opus, FLAC and Matroska.*..[ *read more* ](apps/tag-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tag-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tag-editor) | -| | [***tagger***](apps/tagger.md) | *Unofficial. Simple audio tagger with support for various audio formats.*..[ *read more* ](apps/tagger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tagger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tagger) | -| | [***tauon***](apps/tauon.md) | *Unofficial, a music player for the desktop.*..[ *read more* ](apps/tauon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tauon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tauon) | -| | [***tenacity***](apps/tenacity.md) | *An easy-to-use, cross-platform multi-track audio editor/recorder.*..[ *read more* ](apps/tenacity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tenacity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tenacity) | -| | [***trackaudio***](apps/trackaudio.md) | *A next generation Audio-For-VATSIM ATC Client.*..[ *read more* ](apps/trackaudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trackaudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trackaudio) | -| | [***tunepack***](apps/tunepack.md) | *Finding and download HQ audio files.*..[ *read more* ](apps/tunepack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tunepack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tunepack) | -| | [***ultragrid***](apps/ultragrid.md) | *UltraGrid low-latency audio/video network transmission system.*..[ *read more* ](apps/ultragrid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ultragrid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ultragrid) | -| | [***varia***](apps/varia.md) | *Unofficial. Aria2-based advanced download manager with support for downloading files, torrents, video and audio + support for Chromium and Firefox extension.*..[ *read more* ](apps/varia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/varia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/varia) | -| | [***vgmtrans***](apps/vgmtrans.md) | *A tool to convert proprietary, sequenced videogame music.*..[ *read more* ](apps/vgmtrans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vgmtrans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vgmtrans) | -| | [***vitomu***](apps/vitomu.md) | *Easy to use video to audio converter.*..[ *read more* ](apps/vitomu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vitomu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vitomu) | -| | [***vk-music-fs***](apps/vk-music-fs.md) | *Listen to the music from VK.*..[ *read more* ](apps/vk-music-fs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vk-music-fs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vk-music-fs) | -| | [***vlc***](apps/vlc.md) | *Unofficial. Free and Open Source Video & Media player for Audio, streaming and more.*..[ *read more* ](apps/vlc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vlc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vlc) | -| | [***wooting-analog-midi***](apps/wooting-analog-midi.md) | *Virtual MIDI device for, Wooting analog keyboards.*..[ *read more* ](apps/wooting-analog-midi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wooting-analog-midi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wooting-analog-midi) | -| | [***wora***](apps/wora.md) | *A beautiful player for audiophiles.*..[ *read more* ](apps/wora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wora) | -| | [***yandex-music***](apps/yandex-music.md) | *Personal recommendations, mixes for any occasion and the latest musical releases.*..[ *read more* ](apps/yandex-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yandex-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yandex-music) | -| | [***yangdownloader***](apps/yangdownloader.md) | *Downloads best-quality audio and video from YouTube.*..[ *read more* ](apps/yangdownloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yangdownloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yangdownloader) | -| | [***yesplaymusic***](apps/yesplaymusic.md) | *A third party music player for Netease Music.*..[ *read more* ](apps/yesplaymusic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yesplaymusic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yesplaymusic) | -| | [***ym-desktop***](apps/ym-desktop.md) | *The YouTube music desktop app.*..[ *read more* ](apps/ym-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ym-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ym-desktop) | -| | [***youplaytx***](apps/youplaytx.md) | *A full-screen, dual-pane YouTube audio player for the terminal.*..[ *read more* ](apps/youplaytx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youplaytx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youplaytx) | -| | [***youtube-download***](apps/youtube-download.md) | *GUI and CLI for downloading YouTube video/audio.*..[ *read more* ](apps/youtube-download.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-download) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-download) | -| | [***youtube-downloader***](apps/youtube-downloader.md) | *Download video/audio from youtube (and instagram) videos.*..[ *read more* ](apps/youtube-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-downloader) | -| | [***youtube-music***](apps/youtube-music.md) | *Unofficial. Amazing electron wrapper for YouTube Music featuring plugins.*..[ *read more* ](apps/youtube-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-music) | -| | [***youtubeanddownloader***](apps/youtubeanddownloader.md) | *An app to use youtube and download videos as mp3s or mp4s.*..[ *read more* ](apps/youtubeanddownloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtubeanddownloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtubeanddownloader) | -| | [***yt-dlp***](apps/yt-dlp.md) | *A feature-rich command-line audio/video downloader.*..[ *read more* ](apps/yt-dlp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yt-dlp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yt-dlp) | -| | [***ytdownloader***](apps/ytdownloader.md) | *App for downloading Videos and Audios from hundreds of sites.*..[ *read more* ](apps/ytdownloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytdownloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytdownloader) | -| | [***ytermusic***](apps/ytermusic.md) | *An in terminal youtube music client with focus on privacy, simplicity and performance.*..[ *read more* ](apps/ytermusic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytermusic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytermusic) | -| | [***ytmdesktop***](apps/ytmdesktop.md) | *A Desktop App for YouTube Music.*..[ *read more* ](apps/ytmdesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytmdesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytmdesktop) | -| | [***ytmdesktop2***](apps/ytmdesktop2.md) | *Unofficial Youtube Music Desktop App, with LastFM support.*..[ *read more* ](apps/ytmdesktop2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytmdesktop2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytmdesktop2) | -| | [***ytsage***](apps/ytsage.md) | *Modern YouTube downloader with a clean PySide6 interface. Download videos in any quality, extract audio, fetch subtitles, sponsorBlock, and view video metadata. Built with yt-dlp for reliable performance.*..[ *read more* ](apps/ytsage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytsage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytsage) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/categories/.gitkeep b/categories/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/comic.md b/comic.md deleted file mode 100644 index 248404ecf..000000000 --- a/comic.md +++ /dev/null @@ -1,161 +0,0 @@ -# COMIC - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **33** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***akuse***](apps/akuse.md) | *Simple and easy to use anime streaming desktop app without ads.*..[ *read more* ](apps/akuse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/akuse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/akuse) | -| | [***ani-cli***](apps/ani-cli.md) | *A cli tool to browse and play anime.*..[ *read more* ](apps/ani-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ani-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ani-cli) | -| | [***animecoin***](apps/animecoin.md) | *Animecoin is a free open source peer-to-peer electronic cash system that is completely decentralized, without the need for a central server or trusted parties. Users hold the crypto keys to their own money and transact directly with each other, with the help of a P2P network to check for double-spending.*..[ *read more* ](apps/animecoin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animecoin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animecoin) | -| | [***animeko***](apps/animeko.md) | *A one-stop platform for finding, following, and watching anime, featuring danmaku (bullet comments) and cloud-based collection synchronization (Bangumi), offline caching, BitTorrent, and cloud-based danmaku filtering.*..[ *read more* ](apps/animeko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animeko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animeko) | -| | [***animos***](apps/animos.md) | *Anime-streaming desktop application without any ads.*..[ *read more* ](apps/animos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animos) | -| | [***aniship***](apps/aniship.md) | *Allows for easy viewing of anime on PCs and laptops.*..[ *read more* ](apps/aniship.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aniship) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aniship) | -| | [***baijimangaviewer***](apps/baijimangaviewer.md) | *Manga viewer that uses Material Design.*..[ *read more* ](apps/baijimangaviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/baijimangaviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/baijimangaviewer) | -| | [***comic-book-reader***](apps/comic-book-reader.md) | *Reader and converter for cbz, cbr, epub and pdf files.*..[ *read more* ](apps/comic-book-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comic-book-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comic-book-reader) | -| | [***comic-reader***](apps/comic-reader.md) | *Electron based comic reader.*..[ *read more* ](apps/comic-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comic-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comic-reader) | -| | [***comics-downloader***](apps/comics-downloader.md) | *Tool to download comics and manga in pdf/epub/cbr/cbz from a website.*..[ *read more* ](apps/comics-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comics-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comics-downloader) | -| | [***comictagger***](apps/comictagger.md) | *A multi-platform app for writing metadata to digital comics.*..[ *read more* ](apps/comictagger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comictagger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comictagger) | -| | [***cosmic-comics***](apps/cosmic-comics.md) | *Web Server based Comics / Manga Collectionner & viewer.*..[ *read more* ](apps/cosmic-comics.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cosmic-comics) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cosmic-comics) | -| | [***daisy***](apps/daisy.md) | *A beautiful, easy-to-use, ad-free manga and light novel client that supports both. (Anime Home).*..[ *read more* ](apps/daisy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/daisy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/daisy) | -| | [***fukayo***](apps/fukayo.md) | *Manga reader.*..[ *read more* ](apps/fukayo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fukayo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fukayo) | -| | [***goanime***](apps/goanime.md) | *A TUI tool to browse, stream, and download anime in English and Portuguese.*..[ *read more* ](apps/goanime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goanime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goanime) | -| | [***houdoku***](apps/houdoku.md) | *Manga reader and library manager for the desktop.*..[ *read more* ](apps/houdoku.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/houdoku) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/houdoku) | -| | [***kcc***](apps/kcc.md) | *KCC (Kindle Comic Converter) is a comic and manga converter for ebook readers.*..[ *read more* ](apps/kcc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kcc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kcc) | -| | [***kindling-cli***](apps/kindling-cli.md) | *Kindle toolkit for dictionaries, books, comics.*..[ *read more* ](apps/kindling-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kindling-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kindling-cli) | -| | [***manga-tui***](apps/manga-tui.md) | *Terminal-based manga reader and downloader with image support.*..[ *read more* ](apps/manga-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/manga-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/manga-tui) | -| | [***mangadesk***](apps/mangadesk.md) | *Terminal client for MangaDex.*..[ *read more* ](apps/mangadesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangadesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangadesk) | -| | [***mangal***](apps/mangal.md) | *Most advanced, yet simple CLI manga downloader in the universe!*..[ *read more* ](apps/mangal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangal) | -| | [***mangayomi***](apps/mangayomi.md) | *Free and open source application for reading manga, novels, and watching animes available.*..[ *read more* ](apps/mangayomi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangayomi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangayomi) | -| | [***matm***](apps/matm.md) | *Watch anime, movies, tv shows and read manga from comfort of the cli.*..[ *read more* ](apps/matm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/matm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/matm) | -| | [***migu***](apps/migu.md) | *Stream anime torrents, real-time with no waiting for downloads.*..[ *read more* ](apps/migu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/migu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/migu) | -| | [***oneanime***](apps/oneanime.md) | *A clean, ad-free anime viewing app. A third-party client for Anime1 with subtitles and a Material You-compliant interface.*..[ *read more* ](apps/oneanime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oneanime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oneanime) | -| | [***opencomic***](apps/opencomic.md) | *Comic and Manga reader, written with Node.js and using Electron.*..[ *read more* ](apps/opencomic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencomic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencomic) | -| | [***owte***](apps/owte.md) | *Anime girl dancing on your screen.*..[ *read more* ](apps/owte.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/owte) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/owte) | -| | [***picacg-qt***](apps/picacg-qt.md) | *PicACG Comic PC Client For Linux.*..[ *read more* ](apps/picacg-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picacg-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picacg-qt) | -| | [***pikapika***](apps/pikapika.md) | *A comic browser.*..[ *read more* ](apps/pikapika.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pikapika) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pikapika) | -| | [***seanime***](apps/seanime.md) | *Open-source media server with a web interface and desktop app for anime and manga.*..[ *read more* ](apps/seanime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seanime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seanime) | -| | [***toru***](apps/toru.md) | *Bittorrent streaming CLI tool. Stream anime torrents real-time.*..[ *read more* ](apps/toru.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/toru) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/toru) | -| | [***unyo***](apps/unyo.md) | *Anime streaming and Manga reader desktop app without ads.*..[ *read more* ](apps/unyo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unyo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unyo) | -| | [***window-pet***](apps/window-pet.md) | *Pet overlay app that lets you have adorable companion such as pets, anime characters on your screen.*..[ *read more* ](apps/window-pet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/window-pet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/window-pet) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/command-line.md b/command-line.md deleted file mode 100644 index 956ee6ad9..000000000 --- a/command-line.md +++ /dev/null @@ -1,728 +0,0 @@ -# COMMAND LINE - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **901** programs and **10** items for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***7z***](apps/7z.md) | *Archiver with a high compression ratio. This is part of "am-utils" suite.*..[ *read more* ](apps/7z.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/7z) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/7z) | -| | [***7zip***](apps/7zip.md) | *7-Zip is a file archiver with a high compression ratio.*..[ *read more* ](apps/7zip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/7zip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/7zip) | -| | [***adb***](apps/platform-tools.md) | *Command-line tool for communicating with Android devices or emulators. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***addr2line***](apps/addr2line.md) | *Or symbol+offset into file names and. This is part of "am-utils" suite.*..[ *read more* ](apps/addr2line.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/addr2line) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/addr2line) | -| | [***advanced-rest-client***](apps/advanced-rest-client.md) | *Advanced REST Client and API console, by Mulesoft.*..[ *read more* ](apps/advanced-rest-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/advanced-rest-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/advanced-rest-client) | -| | [***afetch***](apps/afetch.md) | *A CLI system information tool written in Rust.*..[ *read more* ](apps/afetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/afetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/afetch) | -| | [***aichat***](apps/aichat.md) | *AIO AI CLI tool integrating 20+ AI platforms, including OpenAI.*..[ *read more* ](apps/aichat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aichat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aichat) | -| | [***aim***](apps/aim.md) | *A command line download/upload tool with resume.*..[ *read more* ](apps/aim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aim) | -| | [***aisap***](apps/aisap.md) | *Tool to make sandboxing AppImages easy through bwrap/bubblewrap.*..[ *read more* ](apps/aisap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aisap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aisap) | -| | [***alacritty***](apps/alacritty.md) | *Unofficial. A modern terminal emulator that comes with sensible defaults, but allows for extensive configuration.*..[ *read more* ](apps/alacritty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alacritty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alacritty) | -| | [***albafetch***](apps/albafetch.md) | *CLI, faster neofetch alternative, written in C. Still improving.*..[ *read more* ](apps/albafetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/albafetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/albafetch) | -| | [***alien-tec-ui***](apps/alien-tec-ui.md) | *Alien-Tec Tron Matrix Like Shell Terminal User Interface.*..[ *read more* ](apps/alien-tec-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alien-tec-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alien-tec-ui) | -| | [***alpine-flatimage***](apps/alpine-flatimage.md) | *A hybrid of Flatpak sandboxing with AppImage portability.*..[ *read more* ](apps/alpine-flatimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alpine-flatimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alpine-flatimage) | -| | [***alr2appimage***](apps/alr2appimage.md) | *Tool for building an AppImage from an Alire crate.*..[ *read more* ](apps/alr2appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alr2appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alr2appimage) | -| | [***amfora***](apps/amfora.md) | *A fancy terminal browser for the Gemini protocol.*..[ *read more* ](apps/amfora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amfora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amfora) | -| | [***android-tools***](apps/android-tools.md) | *Unofficial AppImage for the Android Platform tools, adb, fastboot, etc.*..[ *read more* ](apps/android-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/android-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/android-tools) | -| | [***ani-cli***](apps/ani-cli.md) | *A cli tool to browse and play anime.*..[ *read more* ](apps/ani-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ani-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ani-cli) | -| | [***antidot***](apps/antidot.md) | *Cleans up your $HOME from those pesky dotfiles.*..[ *read more* ](apps/antidot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antidot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antidot) | -| | [***appimage-builder***](apps/appimage-builder.md) | *GNU/Linux packaging solution using the AppImage format.*..[ *read more* ](apps/appimage-builder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimage-builder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimage-builder) | -| | [***appimagecraft***](apps/appimagecraft.md) | *Powerful build script generator with a focus on AppImages.*..[ *read more* ](apps/appimagecraft.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagecraft) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagecraft) | -| | [***appimagelauncher***](apps/appimagelauncher.md) | *CLI helper for running and integrating AppImages.*..[ *read more* ](apps/appimagelauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagelauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagelauncher) | -| | [***appimagelint***](apps/appimagelint.md) | *Check AppImages for compatibility, best practices etc.*..[ *read more* ](apps/appimagelint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagelint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagelint) | -| | [***appimagen***](apps/appimagen.md) | *A script that generates a custom AppImage from a PPA.*..[ *read more* ](apps/appimagen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagen) | -| | [***appimagetool***](apps/appimagetool.md) | *Tool to generate an AppImage from an existing AppDir.*..[ *read more* ](apps/appimagetool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagetool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagetool) | -| | [***appimageupdate***](apps/appimageupdate.md) | *A Rust implementation of AppImageUpdate, a tool for updating AppImages using efficient delta updates using zsync.*..[ *read more* ](apps/appimageupdate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimageupdate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimageupdate) | -| | [***appimageupdatetool***](apps/appimageupdatetool.md) | *Tool to update an AppImage using embedded information.*..[ *read more* ](apps/appimageupdatetool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimageupdatetool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimageupdatetool) | -| | [***appimg***](apps/appimg.md) | *Appimg is a lightweight command-line tool that helps you manage AppImage files on Linux.*..[ *read more* ](apps/appimg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimg) | -| | [***appinstall***](apps/appinstall.md) | *AppImage Installer, a tool integrate AppImages to a linux desktop environment.*..[ *read more* ](apps/appinstall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appinstall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appinstall) | -| | [***aptly***](apps/aptly.md) | *Debian repository management CLI tool.*..[ *read more* ](apps/aptly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aptly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aptly) | -| | [***ar***](apps/ar.md) | *Create, modify, and extract from .deb archives. This is part of "am-utils" suite.*..[ *read more* ](apps/ar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ar) | -| | [***arch***](apps/arch.md) | *Hardware name (same as uname -m). This is part of "am-utils" suite.*..[ *read more* ](apps/arch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arch) | -| | [***arch-deployer***](apps/arch-deployer.md) | *A script to bulk download an Arch Linux package with all its dependencies to be converted in AppImage.*..[ *read more* ](apps/arch-deployer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arch-deployer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arch-deployer) | -| | [***arch-flatimage***](apps/arch-flatimage.md) | *A hybrid of Flatpak sandboxing with AppImage portability.*..[ *read more* ](apps/arch-flatimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arch-flatimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arch-flatimage) | -| | [***archimage-cli***](apps/archimage-cli.md) | *Build AppImage packages using JuNest, Arch Linux.*..[ *read more* ](apps/archimage-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archimage-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archimage-cli) | -| | [***archimede***](apps/archimede.md) | *Unobtrusive directory information fetcher.*..[ *read more* ](apps/archimede.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archimede) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archimede) | -| | [***aretext***](apps/aretext.md) | *Minimalist text editor with vim-compatible key bindings.*..[ *read more* ](apps/aretext.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aretext) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aretext) | -| | [***as***](apps/as.md) | *GNU assembler.. This is part of "am-utils" suite.*..[ *read more* ](apps/as.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/as) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/as) | -| | [***atuin***](apps/atuin.md) | *Magical shell history.*..[ *read more* ](apps/atuin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/atuin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/atuin) | -| | [***azaharplus-pkg-extractor***](apps/azaharplus-pkg-extractor.md) | *Standalone PKG extractor CLI based on code that used to be in ShadPS4 PlayStation 4 emulator written in C++.*..[ *read more* ](apps/azaharplus-pkg-extractor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/azaharplus-pkg-extractor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/azaharplus-pkg-extractor) | -| | [***b2sum***](apps/b2sum.md) | *Check BLAKE2 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/b2sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/b2sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/b2sum) | -| | [***bandwhich***](apps/bandwhich.md) | *Terminal bandwidth utilization tool.*..[ *read more* ](apps/bandwhich.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bandwhich) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bandwhich) | -| | [***base32***](apps/base32.md) | *Base32 encode/decode data and print to standard. This is part of "am-utils" suite.*..[ *read more* ](apps/base32.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/base32) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/base32) | -| | [***base64***](apps/base64.md) | *Base64 encode/decode data and print to standard. This is part of "am-utils" suite.*..[ *read more* ](apps/base64.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/base64) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/base64) | -| | [***basename***](apps/basename.md) | *Strip directory and suffix from filenames. This is part of "am-utils" suite.*..[ *read more* ](apps/basename.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basename) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basename) | -| | [***basenc***](apps/basenc.md) | *Encode and decode with multiple base encodings.. This is part of "am-utils" suite.*..[ *read more* ](apps/basenc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basenc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basenc) | -| | [***bat***](apps/bat.md) | *A "cat" clone with wings.*..[ *read more* ](apps/bat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bat) | -| | [***bat-extras***](apps/bat-extras.md) | *Bash scripts that integrate bat with various command line tools.*..[ *read more* ](apps/bat-extras.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bat-extras) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bat-extras) | -| | [***battop***](apps/battop.md) | *CLI, interactive batteries viewer.*..[ *read more* ](apps/battop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/battop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/battop) | -| | [***beatconnect-client***](apps/beatconnect-client.md) | *Beatconnect power for osu irc.*..[ *read more* ](apps/beatconnect-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beatconnect-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beatconnect-client) | -| | [***beatmapexporter***](apps/beatmapexporter.md) | *osu!lazer beatmap exporter utility. Allowing mass export of beatmaps from the new osu!lazer file storage back into .osz files.*..[ *read more* ](apps/beatmapexporter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beatmapexporter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beatmapexporter) | -| | [***beatsaber-mod-manager***](apps/beatsaber-mod-manager.md) | *Yet another mod installer for Beat Saber, heavily inspired by ModAssistant.*..[ *read more* ](apps/beatsaber-mod-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beatsaber-mod-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beatsaber-mod-manager) | -| | [***bemoji***](apps/bemoji.md) | *Emoji picker for bemenu/wofi/rofi/dmenu, remembers your favorites.*..[ *read more* ](apps/bemoji.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bemoji) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bemoji) | -| | [***bench-cli***](apps/bench-cli.md) | *CLI tool to benchmark commands, written in `Fortran`.*..[ *read more* ](apps/bench-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bench-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bench-cli) | -| | [***bin***](apps/bin.md) | *Effortless binary manager.*..[ *read more* ](apps/bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bin) | -| | [***binclock***](apps/binclock.md) | *Binary clock in terminal.*..[ *read more* ](apps/binclock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/binclock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/binclock) | -| | [***binfinder***](apps/binfinder.md) | *Find binary files not installed through package manager.*..[ *read more* ](apps/binfinder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/binfinder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/binfinder) | -| | [***bk***](apps/bk.md) | *Terminal Epub reader.*..[ *read more* ](apps/bk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bk) | -| | [***blimp***](apps/blimp.md) | *Customizable terminal UI for monitoring weather information, application status, network latency, and more.*..[ *read more* ](apps/blimp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blimp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blimp) | -| | [***blob-dl***](apps/blob-dl.md) | *Blob-dl is a yt-dlp CLI interface used to download video and audio files from YouTube.*..[ *read more* ](apps/blob-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blob-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blob-dl) | -| | [***bluetuith***](apps/bluetuith.md) | *A TUI bluetooth manager for Linux.*..[ *read more* ](apps/bluetuith.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bluetuith) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bluetuith) | -| | [***bottom***](apps/bottom.md) | *Yet another cross-platform graphical process/system monitor.*..[ *read more* ](apps/bottom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottom) | -| | [***boxxy***](apps/boxxy.md) | *Put bad Linux applications in a box with only their files.*..[ *read more* ](apps/boxxy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boxxy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boxxy) | -| | [***brutespray***](apps/brutespray.md) | *Bruteforcing from various scanner output. Automatically attempts default creds on found services.*..[ *read more* ](apps/brutespray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brutespray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brutespray) | -| | [***btop***](apps/btop.md) | *A command line utility to monitor system resources, like Htop.*..[ *read more* ](apps/btop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/btop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/btop) | -| | [***bunnyfetch***](apps/bunnyfetch.md) | *A small and fast tool for getting info about your system.*..[ *read more* ](apps/bunnyfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bunnyfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bunnyfetch) | -| | [***busybox***](apps/busybox.md) | *AppImage of BusyBox, a tool that combines stripped-down versions of many common UNIX utilities into a single, small executable.*..[ *read more* ](apps/busybox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/busybox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/busybox) | -| | [***bzip2***](apps/bzip2.md) | *A high-quality data compression program. This is part of "am-utils" suite.*..[ *read more* ](apps/bzip2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bzip2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bzip2) | -| | [***c++filt***](apps/c++filt.md) | *And Java symbols. This is part of "am-utils" suite.*..[ *read more* ](apps/c++filt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/c++filt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/c++filt) | -| | [***carbonyl***](apps/carbonyl.md) | *Chromium running inside your terminal.*..[ *read more* ](apps/carbonyl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/carbonyl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/carbonyl) | -| | [***cask***](apps/cask.md) | *A universal, distributed binary file manager.*..[ *read more* ](apps/cask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cask) | -| | [***cat***](apps/cat.md) | *Concatenate files and print on the standard output. This is part of "am-utils" suite.*..[ *read more* ](apps/cat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cat) | -| | [***cbird***](apps/cbird.md) | *Command-line program for Content-Based Image Retrieval of images and videos. Includes tools for general search and de-duplication.*..[ *read more* ](apps/cbird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cbird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cbird) | -| | [***chcon***](apps/chcon.md) | *Security context. This is part of "am-utils" suite.*..[ *read more* ](apps/chcon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chcon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chcon) | -| | [***cheat***](apps/cheat.md) | *Create and view interactive cheatsheets on the command-line.*..[ *read more* ](apps/cheat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cheat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cheat) | -| | [***checkra1n***](apps/checkra1n.md) | *Jailbreak for iPhone 5s through iPhone X, iOS 12.0 and up*..[ *read more* ](apps/checkra1n.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/checkra1n) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/checkra1n) | -| | [***chess-tui***](apps/chess-tui.md) | *Play chess from your terminal.*..[ *read more* ](apps/chess-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chess-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chess-tui) | -| | [***chgrp***](apps/chgrp.md) | *Change group ownership. This is part of "am-utils" suite.*..[ *read more* ](apps/chgrp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chgrp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chgrp) | -| | [***chmod***](apps/chmod.md) | *Change file mode bits. This is part of "am-utils" suite.*..[ *read more* ](apps/chmod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chmod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chmod) | -| | [***chown***](apps/chown.md) | *Change file owner and group. This is part of "am-utils" suite.*..[ *read more* ](apps/chown.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chown) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chown) | -| | [***chroot***](apps/chroot.md) | *Run command or interactive shell with special root. This is part of "am-utils" suite.*..[ *read more* ](apps/chroot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chroot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chroot) | -| | [***cicada***](apps/cicada.md) | *An old-school bash-like Unix shell written in Rust.*..[ *read more* ](apps/cicada.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cicada) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cicada) | -| | [***cksum***](apps/cksum.md) | *Compute and verify file checksums. This is part of "am-utils" suite.*..[ *read more* ](apps/cksum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cksum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cksum) | -| | [***clear***](apps/clear.md) | *Clear the terminal screen. This is part of "am-utils" suite.*..[ *read more* ](apps/clear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clear) | -| | [***clifm***](apps/clifm.md) | *The shell-like, command line terminal file manager simple, fast, extensible, and lightweight as hell.*..[ *read more* ](apps/clifm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clifm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clifm) | -| | [***clipse***](apps/clipse.md) | *Configurable TUI clipboard manager for Unix.*..[ *read more* ](apps/clipse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clipse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clipse) | -| | [***code-radio***](apps/code-radio.md) | *A command line music radio client for coderadio.freecodecamp.org, written in Rust.*..[ *read more* ](apps/code-radio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code-radio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code-radio) | -| | [***codebook-lsp***](apps/codebook-lsp.md) | *Codebook, code-aware spell checker with language server implementation.*..[ *read more* ](apps/codebook-lsp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/codebook-lsp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/codebook-lsp) | -| | [***col***](apps/col.md) | *Line feeds from input. This is part of "am-utils" suite.*..[ *read more* ](apps/col.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/col) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/col) | -| | [***colcrt***](apps/colcrt.md) | *Output for CRT previewing. This is part of "am-utils" suite.*..[ *read more* ](apps/colcrt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colcrt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colcrt) | -| | [***colorstatic-bash***](apps/colorstatic-bash.md) | *CLI to generate a random colorful "Static"/"Matrix".*..[ *read more* ](apps/colorstatic-bash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colorstatic-bash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colorstatic-bash) | -| | [***colrm***](apps/colrm.md) | *From a file. This is part of "am-utils" suite.*..[ *read more* ](apps/colrm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colrm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colrm) | -| | [***column***](apps/column.md) | *Columnate lists. This is part of "am-utils" suite.*..[ *read more* ](apps/column.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/column) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/column) | -| | [***comics-downloader***](apps/comics-downloader.md) | *Tool to download comics and manga in pdf/epub/cbr/cbz from a website.*..[ *read more* ](apps/comics-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comics-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comics-downloader) | -| | [***comm***](apps/comm.md) | *Compare two sorted files line by line. This is part of "am-utils" suite.*..[ *read more* ](apps/comm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comm) | -| | [***contour***](apps/contour.md) | *Modern C++ Terminal Emulator.*..[ *read more* ](apps/contour.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/contour) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/contour) | -| | [***conty***](apps/conty.md) | *Easy to use unprivileged and portable Arch Linux container.*..[ *read more* ](apps/conty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/conty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/conty) | -| | [***cool-retro-term***](apps/cool-retro-term.md) | *Use the command line the old way.*..[ *read more* ](apps/cool-retro-term.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cool-retro-term) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cool-retro-term) | -| | [***coreterminal***](apps/coreterminal.md) | *A terminal emulator for C Suite.*..[ *read more* ](apps/coreterminal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coreterminal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coreterminal) | -| | [***cowitness***](apps/cowitness.md) | *A powerful web app testing tool that enhances the accuracy and efficiency of your testing efforts.*..[ *read more* ](apps/cowitness.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cowitness) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cowitness) | -| | [***cp***](apps/cp.md) | *Copy files and directories. This is part of "am-utils" suite.*..[ *read more* ](apps/cp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cp) | -| | [***cpufetch***](apps/cpufetch.md) | *Simple yet fancy CPU architecture fetching tool.*..[ *read more* ](apps/cpufetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cpufetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cpufetch) | -| | [***crabfetch***](apps/crabfetch.md) | *Extremely fast, featureful and customizable command-line fetcher.*..[ *read more* ](apps/crabfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crabfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crabfetch) | -| | [***croc***](apps/croc.md) | *Easily and securely send things from one computer to another.*..[ *read more* ](apps/croc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/croc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/croc) | -| | [***crock***](apps/crock.md) | *Crock is rock clock.*..[ *read more* ](apps/crock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crock) | -| | [***csplit***](apps/csplit.md) | *File into sections determined by context. This is part of "am-utils" suite.*..[ *read more* ](apps/csplit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/csplit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/csplit) | -| | [***ctop***](apps/ctop.md) | *Top-like interface for container metrics.*..[ *read more* ](apps/ctop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ctop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ctop) | -| | [***curl***](apps/curl.md) | *Command line tool and library for transferring data with URLs. This is part of "am-utils" suite.*..[ *read more* ](apps/curl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/curl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/curl) | -| | [***curlie***](apps/curlie.md) | *The power of curl, the ease of use of httpie.*..[ *read more* ](apps/curlie.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/curlie) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/curlie) | -| | [***cursor-cli***](apps/cursor-cli.md) | *Unofficial, AI-assisted development CLI tool.*..[ *read more* ](apps/cursor-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cursor-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cursor-cli) | -| | [***cut***](apps/cut.md) | *From each line of files. This is part of "am-utils" suite.*..[ *read more* ](apps/cut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cut) | -| | [***cutechess***](apps/cutechess.md) | *Cute Chess is a GUI, a CLI and a library for playing chess.*..[ *read more* ](apps/cutechess.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cutechess) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cutechess) | -| | [***date***](apps/date.md) | *A header-only library which builds upon . This is part of "am-utils" suite.*..[ *read more* ](apps/date.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/date) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/date) | -| | [***dbee***](apps/dbee.md) | *Fast & Minimalistic Database Browser.*..[ *read more* ](apps/dbee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbee) | -| | [***dbin***](apps/dbin.md) | *Poor man's package manager. About 3000 statically linked binaries in the repos!*..[ *read more* ](apps/dbin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbin) | -| | [***dd***](apps/dd.md) | *Convert and copy a file. This is part of "am-utils" suite.*..[ *read more* ](apps/dd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dd) | -| | [***deb2appimage***](apps/deb2appimage.md) | *Build AppImages from deb packages on any distro.*..[ *read more* ](apps/deb2appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deb2appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deb2appimage) | -| | [***deeplx***](apps/deeplx.md) | *DeepL Free API, No TOKEN required.*..[ *read more* ](apps/deeplx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deeplx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deeplx) | -| | [***delta***](apps/delta.md) | *A syntax-highlighting pager for git, diff, grep, and blame output.*..[ *read more* ](apps/delta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/delta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/delta) | -| | [***devclean***](apps/devclean.md) | *A CLI and Desktop GUI app to clean dev dependencies (node_modules, cache) and more.*..[ *read more* ](apps/devclean.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devclean) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devclean) | -| | [***devtoys***](apps/devtoys.md) | *A Swiss Army knife for developers.*..[ *read more* ](apps/devtoys.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devtoys) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devtoys) | -| | [***df***](apps/df.md) | *Report file system space usage. This is part of "am-utils" suite.*..[ *read more* ](apps/df.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/df) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/df) | -| | [***didder***](apps/didder.md) | *An extensive, fast, and accurate command-line image dithering tool.*..[ *read more* ](apps/didder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/didder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/didder) | -| | [***diff***](apps/diff.md) | *Compare files line by line. This is part of "am-utils" suite.*..[ *read more* ](apps/diff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diff) | -| | [***dir***](apps/dir.md) | *List directory contents. This is part of "am-utils" suite.*..[ *read more* ](apps/dir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dir) | -| | [***dircolors***](apps/dircolors.md) | *For ls. This is part of "am-utils" suite.*..[ *read more* ](apps/dircolors.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dircolors) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dircolors) | -| | [***dirname***](apps/dirname.md) | *Strip last component from file name. This is part of "am-utils" suite.*..[ *read more* ](apps/dirname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dirname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dirname) | -| | [***discord-bot-client***](apps/discord-bot-client.md) | *A patched version of discord, with bot login & Vencord support.*..[ *read more* ](apps/discord-bot-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/discord-bot-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/discord-bot-client) | -| | [***diskonaut***](apps/diskonaut.md) | *Terminal disk space navigator.*..[ *read more* ](apps/diskonaut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diskonaut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diskonaut) | -| | [***doggo***](apps/doggo.md) | *Command-line DNS Client for Humans. Written in Golang*..[ *read more* ](apps/doggo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doggo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doggo) | -| | [***dooit***](apps/dooit.md) | *An awesome TUI todo manager.*..[ *read more* ](apps/dooit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dooit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dooit) | -| | [***dra***](apps/dra.md) | *A command line tool to download release assets from GitHub.*..[ *read more* ](apps/dra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dra) | -| | [***dragdrop***](apps/dragdrop.md) | *Small drag-and-drop file source for the command line.*..[ *read more* ](apps/dragdrop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dragdrop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dragdrop) | -| | [***draw***](apps/draw.md) | *Draw in your terminal.*..[ *read more* ](apps/draw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/draw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/draw) | -| | [***dstask***](apps/dstask.md) | *Git powered terminal-based todo/note manager, markdown note page per task.*..[ *read more* ](apps/dstask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dstask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dstask) | -| | [***dtmate***](apps/dtmate.md) | *CLI to compute difference between date, time or duration.*..[ *read more* ](apps/dtmate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dtmate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dtmate) | -| | [***du***](apps/du.md) | *Estimate file space usage. This is part of "am-utils" suite.*..[ *read more* ](apps/du.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/du) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/du) | -| | [***dua***](apps/dua.md) | *View disk space usage and delete unwanted data, fast.*..[ *read more* ](apps/dua.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dua) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dua) | -| | [***duf***](apps/duf.md) | *Disk Usage/Free Utility, a better 'df' alternative.*..[ *read more* ](apps/duf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duf) | -| | [***dune***](apps/dune.md) | *A shell by the beach.*..[ *read more* ](apps/dune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dune) | -| | [***dust***](apps/dust.md) | *A more intuitive version of du in rust.*..[ *read more* ](apps/dust.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dust) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dust) | -| | [***dysk***](apps/dysk.md) | *A linux utility to get information on filesystems, like df but better.*..[ *read more* ](apps/dysk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dysk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dysk) | -| | [***echo***](apps/echo.md) | *Display a line of text. This is part of "am-utils" suite.*..[ *read more* ](apps/echo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/echo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/echo) | -| | [***edex-ui***](apps/edex-ui.md) | *A cross-platform, customizable science fiction terminal emulator.*..[ *read more* ](apps/edex-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/edex-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/edex-ui) | -| | [***eget***](apps/eget.md) | *Easily install prebuilt binaries from GitHub.*..[ *read more* ](apps/eget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eget) | -| | [***elfedit***](apps/elfedit.md) | *Header and program property of ELF files. This is part of "am-utils" suite.*..[ *read more* ](apps/elfedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elfedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elfedit) | -| | [***elvish***](apps/elvish.md) | *Powerful modern shell scripting.*..[ *read more* ](apps/elvish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elvish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elvish) | -| | [***env***](apps/env.md) | *Run a program in a modified environment. This is part of "am-utils" suite.*..[ *read more* ](apps/env.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/env) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/env) | -| | [***etc1tool***](apps/platform-tools.md) | *Utility for compressing and decompressing ETC1 texture files. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***expand***](apps/expand.md) | *Convert tabs to spaces. This is part of "am-utils" suite.*..[ *read more* ](apps/expand.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/expand) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/expand) | -| | [***expr***](apps/expr.md) | *Evaluate expressions. This is part of "am-utils" suite.*..[ *read more* ](apps/expr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/expr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/expr) | -| | [***extraterm***](apps/extraterm.md) | *The swiss army chainsaw of terminal emulators.*..[ *read more* ](apps/extraterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/extraterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/extraterm) | -| | [***eza***](apps/eza.md) | *A modern, maintained replacement for ls.*..[ *read more* ](apps/eza.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eza) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eza) | -| | [***factor***](apps/factor.md) | *A general purpose, dynamically typed, stack-based programming language.. This is part of "am-utils" suite.*..[ *read more* ](apps/factor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/factor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/factor) | -| | [***fakedata***](apps/fakedata.md) | *CLI utility for fake data generation.*..[ *read more* ](apps/fakedata.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fakedata) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fakedata) | -| | [***false***](apps/false.md) | *Do nothing, unsuccessfully. This is part of "am-utils" suite.*..[ *read more* ](apps/false.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/false) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/false) | -| | [***fastboot***](apps/platform-tools.md) | *Android bootloader tool for flashing, unlocking, and managing firmware. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***fastcompmgr***](apps/fastcompmgr.md) | *A fast compositor for X11.*..[ *read more* ](apps/fastcompmgr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fastcompmgr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fastcompmgr) | -| | [***fastfetch***](apps/fastfetch.md) | *Like neofetch, but much faster because written mostly in C.*..[ *read more* ](apps/fastfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fastfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fastfetch) | -| | [***fcp***](apps/fcp.md) | *CLI, a significantly faster alternative to the classic Unix cp(1) command, copying large files and directories in a fraction of the time.*..[ *read more* ](apps/fcp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fcp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fcp) | -| | [***fd***](apps/fd.md) | *A simple, fast and user-friendly alternative to 'find'.*..[ *read more* ](apps/fd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fd) | -| | [***fdroidcl***](apps/fdroidcl.md) | *A command-line F-Droid desktop client.*..[ *read more* ](apps/fdroidcl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fdroidcl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fdroidcl) | -| | [***fetchit***](apps/fetchit.md) | *A system fetch tool for Linux, written in Rust.*..[ *read more* ](apps/fetchit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fetchit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fetchit) | -| | [***ffsend***](apps/ffsend.md) | *Easily and securely share files from the command line. A fully featured Firefox Send client.*..[ *read more* ](apps/ffsend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffsend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffsend) | -| | [***file***](apps/file.md) | *Determine the type of a file from its contents. This is part of "am-utils" suite.*..[ *read more* ](apps/file.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file) | -| | [***filen-cli***](apps/filen-cli.md) | *Filen CLI for Windows, macOS and Linux*..[ *read more* ](apps/filen-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filen-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filen-cli) | -| | [***find***](apps/find.md) | *Files in a directory hierarchy. This is part of "am-utils" suite.*..[ *read more* ](apps/find.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/find) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/find) | -| | [***fish***](apps/fish.md) | *The user-friendly command line shell.*..[ *read more* ](apps/fish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fish) | -| | [***fishterm***](apps/fishterm.md) | *A open-soruce Terminal remote access.*..[ *read more* ](apps/fishterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fishterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fishterm) | -| | [***fixit***](apps/fixit.md) | *A utility to fix mistakes in your commands.*..[ *read more* ](apps/fixit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fixit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fixit) | -| | [***flyctl***](apps/flyctl.md) | *Command line tools for fly.io services.*..[ *read more* ](apps/flyctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flyctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flyctl) | -| | [***fman***](apps/fman.md) | *TUI CLI File Manager.*..[ *read more* ](apps/fman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fman) | -| | [***fmt***](apps/fmt.md) | *Text formatter. This is part of "am-utils" suite.*..[ *read more* ](apps/fmt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fmt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fmt) | -| | [***focus***](apps/focus.md) | *A fully featured productivity timer for the command line, based on the Pomodoro Technique.*..[ *read more* ](apps/focus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focus) | -| | [***fold***](apps/fold.md) | *Wrap each input line to fit in specified width. This is part of "am-utils" suite.*..[ *read more* ](apps/fold.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fold) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fold) | -| | [***foot***](apps/foot.md) | *Unofficial, A fast, lightweight and minimalistic Wayland terminal emulator (This AppImage can work on x11 as well).*..[ *read more* ](apps/foot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foot) | -| | [***freefilesync***](apps/freefilesync.md) | *folder comparison and synchronization software.*..[ *read more* ](apps/freefilesync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freefilesync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freefilesync) | -| | [***freeze***](apps/freeze.md) | *Generate images of code and terminal output.*..[ *read more* ](apps/freeze.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freeze) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freeze) | -| | [***freshfetch***](apps/freshfetch.md) | *An alternative to Neofetch in Rust with a focus on customization.*..[ *read more* ](apps/freshfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freshfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freshfetch) | -| | [***fx***](apps/fx.md) | *Terminal JSON viewer & processor.*..[ *read more* ](apps/fx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fx) | -| | [***fzf***](apps/fzf.md) | *A command-line fuzzy finder.*..[ *read more* ](apps/fzf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fzf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fzf) | -| | [***gallery-dl***](apps/gallery-dl.md) | *Command-line program to download image galleries and collections from several image hosting sites.*..[ *read more* ](apps/gallery-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gallery-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gallery-dl) | -| | [***gallery-dl-nightly***](apps/gallery-dl-nightly.md) | *Command-line program to download image galleries and collections from several image hosting sites, nightly build.*..[ *read more* ](apps/gallery-dl-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gallery-dl-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gallery-dl-nightly) | -| | [***gawk***](apps/gawk.md) | *GNU version of awk. This is part of "am-utils" suite.*..[ *read more* ](apps/gawk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gawk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gawk) | -| | [***gemget***](apps/gemget.md) | *Command line downloader for the Gemini protocol.*..[ *read more* ](apps/gemget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gemget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gemget) | -| | [***genact***](apps/genact.md) | *A nonsense activity generator.*..[ *read more* ](apps/genact.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/genact) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/genact) | -| | [***gert***](apps/gert.md) | *A command line tool to download media from Reddit.*..[ *read more* ](apps/gert.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gert) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gert) | -| | [***gh***](apps/gh.md) | *GitHub’s official command line tool.*..[ *read more* ](apps/gh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gh) | -| | [***gh-eco***](apps/gh-eco.md) | *gh cli extension to explore the ecosystem.*..[ *read more* ](apps/gh-eco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gh-eco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gh-eco) | -| | [***ghdl***](apps/ghdl.md) | *A much more convenient way to download GitHub release binaries on the command line.*..[ *read more* ](apps/ghdl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghdl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghdl) | -| | [***ghostty***](apps/ghostty.md) | *Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Stable)*..[ *read more* ](apps/ghostty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty) | -| | [***ghostty-glfw***](apps/ghostty-glfw.md) | *Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (glfw version)*..[ *read more* ](apps/ghostty-glfw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty-glfw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty-glfw) | -| | [***ghostty-glfw-nightly***](apps/ghostty-glfw-nightly.md) | *Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Tip, Nightly) (glfw version)*..[ *read more* ](apps/ghostty-glfw-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty-glfw-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty-glfw-nightly) | -| | [***ghostty-nightly***](apps/ghostty-nightly.md) | *Unofficial, 👻 ⚙️ AppImage for Ghostty Terminal Emulator (Tip, Nightly)*..[ *read more* ](apps/ghostty-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghostty-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghostty-nightly) | -| | [***ghrel***](apps/ghrel.md) | *Download and verify GitHub release.*..[ *read more* ](apps/ghrel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghrel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghrel) | -| | [***gickup***](apps/gickup.md) | *Backup your Git repositories with ease.*..[ *read more* ](apps/gickup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gickup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gickup) | -| | [***git-cliff***](apps/git-cliff.md) | *A highly customizable Changelog Generator that follows Conventional Commit specifications.*..[ *read more* ](apps/git-cliff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-cliff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-cliff) | -| | [***git-credential-oauth***](apps/git-credential-oauth.md) | *A Git credential helper that securely authenticates to GitHub, GitLab and BitBucket using OAuth.*..[ *read more* ](apps/git-credential-oauth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-credential-oauth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-credential-oauth) | -| | [***git-side***](apps/git-side.md) | *A Git subcommand that versions files and directories that should not live in the main repository, using a per-project bare repository invisible to Git.*..[ *read more* ](apps/git-side.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-side) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-side) | -| | [***gitleaks***](apps/gitleaks.md) | *Protect and discover secrets using Gitleaks.*..[ *read more* ](apps/gitleaks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitleaks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitleaks) | -| | [***gitql***](apps/gitql.md) | *A git query language.*..[ *read more* ](apps/gitql.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitql) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitql) | -| | [***gitui***](apps/gitui.md) | *Blazing fast terminal-ui for git written in rust.*..[ *read more* ](apps/gitui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitui) | -| | [***glab***](apps/glab.md) | *A GitLab CLI tool bringing GitLab to your command line.*..[ *read more* ](apps/glab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glab) | -| | [***glow***](apps/glow.md) | *Render markdown on the CLI, with pizzazz!*..[ *read more* ](apps/glow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glow) | -| | [***gncdu***](apps/gncdu.md) | *Implements NCurses Disk Usage(ncdu) with golang.*..[ *read more* ](apps/gncdu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gncdu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gncdu) | -| | [***go-pd***](apps/go-pd.md) | *A free easy to use pixeldrain.com go client pkg and CLI upload tool.*..[ *read more* ](apps/go-pd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-pd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-pd) | -| | [***go-spotify-cli***](apps/go-spotify-cli.md) | *Control Spotify with CLI commands.*..[ *read more* ](apps/go-spotify-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-spotify-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-spotify-cli) | -| | [***goanime***](apps/goanime.md) | *A TUI tool to browse, stream, and download anime in English and Portuguese.*..[ *read more* ](apps/goanime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goanime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goanime) | -| | [***gobuster***](apps/gobuster.md) | *A high-performance directory/file, DNS and virtual host brute-forcing tool written in Go. It's designed to be fast, reliable, and easy to use for security professionals and penetration testers.*..[ *read more* ](apps/gobuster.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gobuster) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gobuster) | -| | [***gojq***](apps/gojq.md) | *Pure Go implementation of jq.*..[ *read more* ](apps/gojq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gojq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gojq) | -| | [***gokey***](apps/gokey.md) | *A simple vaultless password manager in Go.*..[ *read more* ](apps/gokey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gokey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gokey) | -| | [***goodls***](apps/goodls.md) | *This is a CLI tool to download shared files and folders from Google Drive.*..[ *read more* ](apps/goodls.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goodls) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goodls) | -| | [***gooseberry***](apps/gooseberry.md) | *A command line utility to generate a knowledge base from Hypothesis annotations.*..[ *read more* ](apps/gooseberry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gooseberry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gooseberry) | -| | [***gopass***](apps/gopass.md) | *The slightly more awesome standard unix password manager for teams.*..[ *read more* ](apps/gopass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gopass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gopass) | -| | [***gost-shred***](apps/gost-shred.md) | *GOST R 50739-95 Data Sanitization Method (2 passes).*..[ *read more* ](apps/gost-shred.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gost-shred) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gost-shred) | -| | [***got***](apps/got.md) | *Simple golang package and CLI tool to download large files faster than cURL and Wget!*..[ *read more* ](apps/got.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/got) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/got) | -| | [***gotimer***](apps/gotimer.md) | *A simple terminal based digital timer for Pomodoro.*..[ *read more* ](apps/gotimer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gotimer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gotimer) | -| | [***goto***](apps/goto.md) | *A simple terminal SSH manager that lists favorite SSH servers.*..[ *read more* ](apps/goto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goto) | -| | [***gp-archive***](apps/gp-archive.md) | *Archive profiling experiment data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-archive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-archive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-archive) | -| | [***gp-collect-app***](apps/gp-collect-app.md) | *Collect application performance profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-collect-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-collect-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-collect-app) | -| | [***gp-display-html***](apps/gp-display-html.md) | *Generate HTML reports from profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-display-html.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-display-html) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-display-html) | -| | [***gp-display-src***](apps/gp-display-src.md) | *Display source code annotated with profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-display-src.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-display-src) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-display-src) | -| | [***gp-display-text***](apps/gp-display-text.md) | *Display profiling data in plain text format. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-display-text.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-display-text) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-display-text) | -| | [***gpg-tui***](apps/gpg-tui.md) | *CLI, manage your GnuPG keys with ease!*..[ *read more* ](apps/gpg-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpg-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpg-tui) | -| | [***gping***](apps/gping.md) | *Ping, but with a graph.*..[ *read more* ](apps/gping.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gping) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gping) | -| | [***gprof***](apps/gprof.md) | *Graph profile data. This is part of "am-utils" suite.*..[ *read more* ](apps/gprof.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprof) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprof) | -| | [***gprofng***](apps/gprofng.md) | *Generation GNU application profiling tool. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng) | -| | [***gprofng-archive***](apps/gprofng-archive.md) | *Experiment data. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-archive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-archive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-archive) | -| | [***gprofng-collect-app***](apps/gprofng-collect-app.md) | *Data for the target. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-collect-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-collect-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-collect-app) | -| | [***gprofng-display-html***](apps/gprofng-display-html.md) | *HTML based directory structure. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-display-html.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-display-html) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-display-html) | -| | [***gprofng-display-src***](apps/gprofng-display-src.md) | *Code and optionally. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-display-src.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-display-src) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-display-src) | -| | [***gprofng-display-text***](apps/gprofng-display-text.md) | *Performance data in plain text. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-display-text.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-display-text) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-display-text) | -| | [***gprofng-gmon***](apps/gprofng-gmon.md) | *Display or convert GNU gmon profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-gmon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-gmon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-gmon) | -| | [***grep***](apps/grep.md) | *A string search utility. This is part of "am-utils" suite.*..[ *read more* ](apps/grep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grep) | -| | [***gron***](apps/gron.md) | *Make JSON greppable! Transform JSON into discrete assignments to grep.*..[ *read more* ](apps/gron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gron) | -| | [***gron.awk***](apps/gron.awk.md) | *True JSON parser in pure Awk. fast with Gawk/Mawk/GoAWK.*..[ *read more* ](apps/gron.awk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gron.awk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gron.awk) | -| | [***groups***](apps/groups.md) | *Print the groups a user is in. This is part of "am-utils" suite.*..[ *read more* ](apps/groups.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/groups) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/groups) | -| | [***gum***](apps/gum.md) | *A tool for glamorous shell scripts.*..[ *read more* ](apps/gum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gum) | -| | [***handlr***](apps/handlr.md) | *fork of the original handlr, with support for regular expressions.*..[ *read more* ](apps/handlr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/handlr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/handlr) | -| | [***hascard***](apps/hascard.md) | *Flashcard TUI CLI with markdown cards.*..[ *read more* ](apps/hascard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hascard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hascard) | -| | [***hctl***](apps/hctl.md) | *A tool to control your Home Assistant devices from the command-line.*..[ *read more* ](apps/hctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hctl) | -| | [***hd***](apps/hd.md) | *Small hex dumper utility (with optional HexII output). This is part of "am-utils" suite.*..[ *read more* ](apps/hd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hd) | -| | [***head***](apps/head.md) | *Output the first part of files. This is part of "am-utils" suite.*..[ *read more* ](apps/head.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/head) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/head) | -| | [***hexdump***](apps/hexdump.md) | *Display file contents in hexadecimal format. This is part of "am-utils" suite.*..[ *read more* ](apps/hexdump.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hexdump) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hexdump) | -| | [***hide.me***](apps/hide.me.md) | *Hide.me CLI VPN client for Linux.*..[ *read more* ](apps/hide.me.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hide.me) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hide.me) | -| | [***hilbish***](apps/hilbish.md) | *The Moon-powered shell! A comfy and extensible shell for Lua fans!*..[ *read more* ](apps/hilbish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hilbish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hilbish) | -| | [***himalaya***](apps/himalaya.md) | *CLI to manage emails.*..[ *read more* ](apps/himalaya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/himalaya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/himalaya) | -| | [***hostid***](apps/hostid.md) | *Print the numeric identifier for the current host. This is part of "am-utils" suite.*..[ *read more* ](apps/hostid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hostid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hostid) | -| | [***hprof-conv***](apps/platform-tools.md) | *Converts Android HPROF heap dumps to standard Java HPROF format. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***htop***](apps/htop.md) | *Unofficial, CLI utility to monitor system resources.*..[ *read more* ](apps/htop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/htop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/htop) | -| | [***humanlog***](apps/humanlog.md) | *Logs for humans to read.*..[ *read more* ](apps/humanlog.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/humanlog) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/humanlog) | -| | [***hyper***](apps/hyper.md) | *A terminal built on web technologies.*..[ *read more* ](apps/hyper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyper) | -| | [***hyperfine***](apps/hyperfine.md) | *A command-line benchmarking tool.*..[ *read more* ](apps/hyperfine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperfine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperfine) | -| | [***i3***](apps/i3.md) | *Unofficial, A tiling window manager for X11.*..[ *read more* ](apps/i3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/i3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/i3) | -| | [***i3-auto-layout***](apps/i3-auto-layout.md) | *Automatic, optimal tiling for i3wm. Fork of dead version.*..[ *read more* ](apps/i3-auto-layout.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/i3-auto-layout) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/i3-auto-layout) | -| | [***i3lock-color***](apps/i3lock-color.md) | *The world's most popular non-default computer lockscreen.*..[ *read more* ](apps/i3lock-color.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/i3lock-color) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/i3lock-color) | -| | [***id***](apps/id.md) | *Print real and effective user and group IDs. This is part of "am-utils" suite.*..[ *read more* ](apps/id.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/id) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/id) | -| | [***imagemagick-clang***](apps/imagemagick-clang.md) | *CLI to create, edit, compose, or convert digital images.*..[ *read more* ](apps/imagemagick-clang.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imagemagick-clang) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imagemagick-clang) | -| | [***imagemagick-gcc***](apps/imagemagick-gcc.md) | *CLI to create, edit, compose, or convert digital images.*..[ *read more* ](apps/imagemagick-gcc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imagemagick-gcc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imagemagick-gcc) | -| | [***imgcat***](apps/imgcat.md) | *Display images and gifs in your terminal.*..[ *read more* ](apps/imgcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imgcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imgcat) | -| | [***install***](apps/install.md) | *Copy files and set attributes. This is part of "am-utils" suite.*..[ *read more* ](apps/install.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/install) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/install) | -| | [***inxi***](apps/inxi.md) | *A full featured CLI system information tool.*..[ *read more* ](apps/inxi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/inxi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/inxi) | -| | [***jgenesis-cli***](apps/jgenesis-cli.md) | *Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (CLI).*..[ *read more* ](apps/jgenesis-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jgenesis-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jgenesis-cli) | -| | [***jless***](apps/jless.md) | *CLI JSON viewer designed for reading, exploring, and searching.*..[ *read more* ](apps/jless.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jless) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jless) | -| | [***jnv***](apps/jnv.md) | *Interactive JSON filter using jq.*..[ *read more* ](apps/jnv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jnv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jnv) | -| | [***join***](apps/join.md) | *Of two files on a common field. This is part of "am-utils" suite.*..[ *read more* ](apps/join.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/join) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/join) | -| | [***jottem***](apps/jottem.md) | *A lean, low friction terminal app for managing markdown notes.*..[ *read more* ](apps/jottem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jottem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jottem) | -| | [***jq***](apps/jq.md) | *Command-line JSON processor.*..[ *read more* ](apps/jq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jq) | -| | [***jqp***](apps/jqp.md) | *A TUI playground to experiment with jq.*..[ *read more* ](apps/jqp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jqp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jqp) | -| | [***junest***](apps/junest.md) | *Arch Linux based distro that runs rootless on any other Linux distro.*..[ *read more* ](apps/junest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/junest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/junest) | -| | [***kalc***](apps/kalc.md) | *Complex numbers, 2d/3d graphing, arbitrary precision cli calculator.*..[ *read more* ](apps/kalc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kalc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kalc) | -| | [***kalker***](apps/kalker.md) | *Scientific calculator with math syntax for user-defined variables.*..[ *read more* ](apps/kalker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kalker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kalker) | -| | [***kboard***](apps/kboard.md) | *Terminal game to practice keyboard typing.*..[ *read more* ](apps/kboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kboard) | -| | [***kibi***](apps/kibi.md) | *A text editor in ≤1024 lines of code, written in Rust.*..[ *read more* ](apps/kibi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kibi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kibi) | -| | [***kill***](apps/kill.md) | *Terminate a process. This is part of "am-utils" suite.*..[ *read more* ](apps/kill.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kill) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kill) | -| | [***killall***](apps/killall.md) | *Kill processes by name. This is part of "am-utils" suite.*..[ *read more* ](apps/killall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/killall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/killall) | -| | [***kimitzu-client***](apps/kimitzu-client.md) | *Kimitzu Client.*..[ *read more* ](apps/kimitzu-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kimitzu-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kimitzu-client) | -| | [***kindling-cli***](apps/kindling-cli.md) | *Kindle toolkit for dictionaries, books, comics.*..[ *read more* ](apps/kindling-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kindling-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kindling-cli) | -| | [***kitty***](apps/kitty.md) | *Cross-platform, fast, feature-rich, GPU based terminal (also provides "kitten" CLI utility).*..[ *read more* ](apps/kitty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kitty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kitty) | -| | [***kmon***](apps/kmon.md) | *Linux Kernel Manager and Activity Monitor.*..[ *read more* ](apps/kmon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kmon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kmon) | -| | [***kmonad***](apps/kmonad.md) | *An advanced keyboard manager.*..[ *read more* ](apps/kmonad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kmonad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kmonad) | -| | [***koboldcpp***](apps/koboldcpp.md) | *Simple 1-file way to run GGML and GGUF models with KoboldAI's UI.*..[ *read more* ](apps/koboldcpp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koboldcpp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koboldcpp) | -| | [***kondo***](apps/kondo.md) | *Cleans dependencies and build artifacts from your projects.*..[ *read more* ](apps/kondo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kondo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kondo) | -| | [***kure***](apps/kure.md) | *CLI password manager with sessions.*..[ *read more* ](apps/kure.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kure) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kure) | -| | [***lan-mouse***](apps/lan-mouse.md) | *Mouse & keyboard sharing via LAN.*..[ *read more* ](apps/lan-mouse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lan-mouse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lan-mouse) | -| | [***lazygit***](apps/lazygit.md) | *Simple terminal UI for git commands.*..[ *read more* ](apps/lazygit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lazygit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lazygit) | -| | [***ld***](apps/ld.md) | *Standalone Linker Compiler. This is part of "am-utils" suite.*..[ *read more* ](apps/ld.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ld) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ld) | -| | [***ld.bfd***](apps/ld.bfd.md) | *The GNU linker with BFD libraries. This is part of "am-utils" suite.*..[ *read more* ](apps/ld.bfd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ld.bfd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ld.bfd) | -| | [***less***](apps/less.md) | *A terminal based program for viewing text files. This is part of "am-utils" suite.*..[ *read more* ](apps/less.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/less) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/less) | -| | [***lexido***](apps/lexido.md) | *A terminal assistant, powered by Generative AI.*..[ *read more* ](apps/lexido.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lexido) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lexido) | -| | [***lf***](apps/lf.md) | *lf, as in "list files" is a terminal file manager written in Go.*..[ *read more* ](apps/lf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lf) | -| | [***link***](apps/link.md) | *Call the link function to create a link to a file. This is part of "am-utils" suite.*..[ *read more* ](apps/link.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/link) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/link) | -| | [***linuxdeploy***](apps/linuxdeploy.md) | *AppDir creation and maintenance tool. Featuring flexible plugin system.*..[ *read more* ](apps/linuxdeploy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxdeploy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxdeploy) | -| | [***linuxdeployqt***](apps/linuxdeployqt.md) | *Convert a linux program to an AppDir or an AppImage.*..[ *read more* ](apps/linuxdeployqt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxdeployqt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxdeployqt) | -| | [***litime***](apps/litime.md) | *A terminal literature clock telling time with quotes from literature.*..[ *read more* ](apps/litime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/litime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/litime) | -| | [***ln***](apps/ln.md) | *Make links between files. This is part of "am-utils" suite.*..[ *read more* ](apps/ln.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ln) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ln) | -| | [***lobe-chat***](apps/lobe-chat.md) | *LobeHub - an open-source, modern design AI Agent Workspace. Supports multiple AI providers, Knowledge Base (file upload / RAG ), one click install MCP Marketplace and Artifacts / Thinking. One-click FREE deployment of your private AI Agent application.*..[ *read more* ](apps/lobe-chat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lobe-chat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lobe-chat) | -| | [***lockbook-cli***](apps/lockbook-cli.md) | *The private, polished note-taking platform, CLI.*..[ *read more* ](apps/lockbook-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lockbook-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lockbook-cli) | -| | [***logname***](apps/logname.md) | *Print user's login name. This is part of "am-utils" suite.*..[ *read more* ](apps/logname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/logname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/logname) | -| | [***look***](apps/look.md) | *Beginning with a given string. This is part of "am-utils" suite.*..[ *read more* ](apps/look.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/look) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/look) | -| | [***lovesay***](apps/lovesay.md) | *Cowsay, but full of love and now a little rusty.*..[ *read more* ](apps/lovesay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lovesay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lovesay) | -| | [***lowfi***](apps/lowfi.md) | *An extremely simple lofi player. CLI.*..[ *read more* ](apps/lowfi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lowfi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lowfi) | -| | [***ls***](apps/ls.md) | *List directory contents. This is part of "am-utils" suite.*..[ *read more* ](apps/ls.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ls) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ls) | -| | [***lsd***](apps/lsd.md) | *The next gen ls command.*..[ *read more* ](apps/lsd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lsd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lsd) | -| | [***lunar-client***](apps/lunar-client.md) | *Free Minecraft Client, a modpack for all versions of Minecraft.*..[ *read more* ](apps/lunar-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lunar-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lunar-client) | -| | [***macchina***](apps/macchina.md) | *A system information frontend with an emphasis on performance.*..[ *read more* ](apps/macchina.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/macchina) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/macchina) | -| | [***make_f2fs***](apps/platform-tools.md) | *Creates F2FS filesystems optimized for flash storage. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***make_f2fs_casefold***](apps/platform-tools.md) | *Creates F2FS filesystems with case-insensitive filename support. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***manga-tui***](apps/manga-tui.md) | *Terminal-based manga reader and downloader with image support.*..[ *read more* ](apps/manga-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/manga-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/manga-tui) | -| | [***mangadesk***](apps/mangadesk.md) | *Terminal client for MangaDex.*..[ *read more* ](apps/mangadesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangadesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangadesk) | -| | [***mangal***](apps/mangal.md) | *Most advanced, yet simple CLI manga downloader in the universe!*..[ *read more* ](apps/mangal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangal) | -| | [***matm***](apps/matm.md) | *Watch anime, movies, tv shows and read manga from comfort of the cli.*..[ *read more* ](apps/matm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/matm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/matm) | -| | [***mawk***](apps/mawk.md) | *And text processing language. This is part of "am-utils" suite.*..[ *read more* ](apps/mawk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mawk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mawk) | -| | [***mcfly***](apps/mcfly.md) | *Fly through your shell history. Great Scott!*..[ *read more* ](apps/mcfly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mcfly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mcfly) | -| | [***md5sum***](apps/md5sum.md) | *Compute and check MD5 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/md5sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/md5sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/md5sum) | -| | [***mdcat***](apps/mdcat.md) | *Command line, "cat" for markdown.*..[ *read more* ](apps/mdcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mdcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mdcat) | -| | [***mednafen***](apps/mednafen.md) | *Unofficial AppImage. Mednafen is a portable, utilizing OpenGL and SDL, argument(command-line)-driven multi-system emulator.*..[ *read more* ](apps/mednafen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mednafen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mednafen) | -| | [***menyoki***](apps/menyoki.md) | *Screen{shot,cast} and perform ImageOps on the command line.*..[ *read more* ](apps/menyoki.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/menyoki) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/menyoki) | -| | [***mk***](apps/mk.md) | *Interactive Task Runner for Makefile.*..[ *read more* ](apps/mk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mk) | -| | [***mkdir***](apps/mkdir.md) | *Make directories. This is part of "am-utils" suite.*..[ *read more* ](apps/mkdir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mkdir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mkdir) | -| | [***mke2fs***](apps/platform-tools.md) | *Creates ext2/ext3/ext4 Linux filesystems. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***mkfifo***](apps/mkfifo.md) | *Make FIFOs (named pipes). This is part of "am-utils" suite.*..[ *read more* ](apps/mkfifo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mkfifo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mkfifo) | -| | [***mknod***](apps/mknod.md) | *Make block or character special files. This is part of "am-utils" suite.*..[ *read more* ](apps/mknod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mknod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mknod) | -| | [***mktemp***](apps/mktemp.md) | *Create a temporary file or directory. This is part of "am-utils" suite.*..[ *read more* ](apps/mktemp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mktemp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mktemp) | -| | [***more***](apps/more.md) | *Display the contents of a file in a terminal. This is part of "am-utils" suite.*..[ *read more* ](apps/more.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/more) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/more) | -| | [***mount***](apps/mount.md) | *Mount a filesystem. This is part of "am-utils" suite.*..[ *read more* ](apps/mount.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mount) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mount) | -| | [***mp4grep***](apps/mp4grep.md) | *CLI for transcribing and searching audio/video files.*..[ *read more* ](apps/mp4grep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mp4grep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mp4grep) | -| | [***multimc***](apps/multimc.md) | *A Minecraft launcher.*..[ *read more* ](apps/multimc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/multimc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/multimc) | -| | [***mv***](apps/mv.md) | *Move (rename) files. This is part of "am-utils" suite.*..[ *read more* ](apps/mv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mv) | -| | [***nami***](apps/nami.md) | *A clean and tidy decentralized package manager.*..[ *read more* ](apps/nami.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nami) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nami) | -| | [***nap***](apps/nap.md) | *Code spippets in your terminal.*..[ *read more* ](apps/nap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nap) | -| | [***navi***](apps/navi.md) | *An interactive cheatsheet tool for the command-line.*..[ *read more* ](apps/navi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/navi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/navi) | -| | [***nazuna***](apps/nazuna.md) | *Download Twitter videos using your terminal!*..[ *read more* ](apps/nazuna.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nazuna) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nazuna) | -| | [***neko***](apps/neko.md) | *Neko is a cross-platform cursor-chasing cat.*..[ *read more* ](apps/neko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neko) | -| | [***nerdfetch***](apps/nerdfetch.md) | *A POSIX *nix fetch script using Nerdfonts.*..[ *read more* ](apps/nerdfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nerdfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nerdfetch) | -| | [***nice***](apps/nice.md) | *Run a program with modified scheduling priority. This is part of "am-utils" suite.*..[ *read more* ](apps/nice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nice) | -| | [***nitch***](apps/nitch.md) | *Incredibly fast system fetch written in nim.*..[ *read more* ](apps/nitch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nitch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nitch) | -| | [***nix-portable***](apps/nix-portable.md) | *Use nix on any linux system, rootless and configuration free.*..[ *read more* ](apps/nix-portable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nix-portable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nix-portable) | -| | [***nl***](apps/nl.md) | *Number lines of files. This is part of "am-utils" suite.*..[ *read more* ](apps/nl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nl) | -| | [***nm***](apps/nm.md) | *From object files. This is part of "am-utils" suite.*..[ *read more* ](apps/nm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nm) | -| | [***nnn***](apps/nnn.md) | *n³ The unorthodox terminal file manager*..[ *read more* ](apps/nnn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nnn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nnn) | -| | [***node***](apps/node.md) | *This is the official suite of Node.js tools, also known as "NodeJS", a JavaScript runtime built on Chrome's V8 JavaScript engine.*..[ *read more* ](apps/node.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/node) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/node) | -| | [***nohup***](apps/nohup.md) | *Run a command immune to hangups, with output to a. This is part of "am-utils" suite.*..[ *read more* ](apps/nohup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nohup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nohup) | -| | [***noter***](apps/noter.md) | *Simple serial terminal application.*..[ *read more* ](apps/noter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/noter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/noter) | -| | [***notify-send***](apps/notify-send.md) | *A program to send desktop notifications. This is part of "am-utils" suite.*..[ *read more* ](apps/notify-send.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notify-send) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notify-send) | -| | [***npm***](apps/node.md) | *Package manager for Node.js dependencies and modules. This is part of "node".*..[ *read more* ](apps/node.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/node) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/node) | -| | [***nproc***](apps/nproc.md) | *Print the number of processing units available. This is part of "am-utils" suite.*..[ *read more* ](apps/nproc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nproc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nproc) | -| | [***npx***](apps/node.md) | *Runs commands from npm packages without manual installation. This is part of "node".*..[ *read more* ](apps/node.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/node) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/node) | -| | [***nu***](apps/nu.md) | *A new type of shell.*..[ *read more* ](apps/nu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nu) | -| | [***numfmt***](apps/numfmt.md) | *From/to human-readable strings. This is part of "am-utils" suite.*..[ *read more* ](apps/numfmt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/numfmt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/numfmt) | -| | [***nyaa***](apps/nyaa.md) | *A nyaa.si tui tool for browsing and downloading torrents.*..[ *read more* ](apps/nyaa.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nyaa) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nyaa) | -| | [***nyan***](apps/nyan.md) | *CLI, colored "cat" command.*..[ *read more* ](apps/nyan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nyan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nyan) | -| | [***objcopy***](apps/objcopy.md) | *Translate object files. This is part of "am-utils" suite.*..[ *read more* ](apps/objcopy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/objcopy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/objcopy) | -| | [***objdump***](apps/objdump.md) | *From object files. This is part of "am-utils" suite.*..[ *read more* ](apps/objdump.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/objdump) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/objdump) | -| | [***obsidian-cli***](apps/obsidian-cli.md) | *Interact with Obsidian in the terminal. Open, search, create, update, move and delete notes!*..[ *read more* ](apps/obsidian-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/obsidian-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/obsidian-cli) | -| | [***od***](apps/od.md) | *Dump files in octal and other formats. This is part of "am-utils" suite.*..[ *read more* ](apps/od.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/od) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/od) | -| | [***oh***](apps/oh.md) | *A new Unix shell.*..[ *read more* ](apps/oh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oh) | -| | [***ollama***](apps/ollama.md) | *Get up and running with Llama 3, Mistral, Gemma, and other LLMs.*..[ *read more* ](apps/ollama.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ollama) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ollama) | -| | [***omekasy***](apps/omekasy.md) | *Command line application that converts alphanumeric characters to various styles 𝚍𝚎𝚏𝚒𝚗𝚎𝚍 𝚒𝚗 𝚄𝚗𝚒𝚌𝚘𝚍𝚎.*..[ *read more* ](apps/omekasy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omekasy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omekasy) | -| | [***onefetch***](apps/onefetch.md) | *Command-line Git information tool.*..[ *read more* ](apps/onefetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onefetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onefetch) | -| | [***openapi-tui***](apps/openapi-tui.md) | *Terminal UI to list, browse and run APIs defined with openapi.*..[ *read more* ](apps/openapi-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openapi-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openapi-tui) | -| | [***opencode***](apps/opencode.md) | *The open source coding agent.*..[ *read more* ](apps/opencode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencode) | -| | [***opencode-cli***](apps/opencode-cli.md) | *Unofficial AppImage of the opencode CLI utility. The open source coding agent.*..[ *read more* ](apps/opencode-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencode-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencode-cli) | -| | [***oras***](apps/oras.md) | *OCI registry client managing content like artifacts, images, packages.*..[ *read more* ](apps/oras.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oras) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oras) | -| | [***ots***](apps/ots.md) | *Share end-to-end encrypted secrets with others via a one-time URL.*..[ *read more* ](apps/ots.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ots) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ots) | -| | [***outline-client***](apps/outline-client.md) | *Lean on the Cordova and Electron frameworks.*..[ *read more* ](apps/outline-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/outline-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/outline-client) | -| | [***paclear***](apps/paclear.md) | *CLI, paclear is a clear command with PAC-MAN animation.*..[ *read more* ](apps/paclear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paclear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paclear) | -| | [***paket***](apps/paket.md) | *A simple and fast package manager for the Fish shell written in Rust.*..[ *read more* ](apps/paket.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paket) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paket) | -| | [***paper***](apps/paper.md) | *A CLI Tool to set a random wallpaper from Unsplash.com.*..[ *read more* ](apps/paper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paper) | -| | [***paste***](apps/paste.md) | *Merge lines of files. This is part of "am-utils" suite.*..[ *read more* ](apps/paste.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paste) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paste) | -| | [***pastel***](apps/pastel.md) | *A command-line tool to generate, analyze, convert and manipulate colors.*..[ *read more* ](apps/pastel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pastel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pastel) | -| | [***pathchk***](apps/pathchk.md) | *File names are valid or portable. This is part of "am-utils" suite.*..[ *read more* ](apps/pathchk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pathchk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pathchk) | -| | [***pay-respects***](apps/pay-respects.md) | *Terminal command correction, alternative to thefuck written in Rust.*..[ *read more* ](apps/pay-respects.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pay-respects) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pay-respects) | -| | [***pboy***](apps/pboy.md) | *A small .pdf management tool with a command-line UI.*..[ *read more* ](apps/pboy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pboy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pboy) | -| | [***pdf-diff***](apps/pdf-diff.md) | *A CLI tool for visualizing differences between two pdf files.*..[ *read more* ](apps/pdf-diff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf-diff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf-diff) | -| | [***peep***](apps/peep.md) | *The CLI text viewer tool that works like less command on small pane within the terminal window.*..[ *read more* ](apps/peep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/peep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/peep) | -| | [***pet***](apps/pet.md) | *Simple command-line snippet manager.*..[ *read more* ](apps/pet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pet) | -| | [***pfetch-rs***](apps/pfetch-rs.md) | *A rewrite of the pfetch system information tool in Rust.*..[ *read more* ](apps/pfetch-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pfetch-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pfetch-rs) | -| | [***pget***](apps/pget.md) | *The fastest, resumable file download CLI client.*..[ *read more* ](apps/pget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pget) | -| | [***pho***](apps/pho.md) | *The AppImage Manager that Linux always deserved.*..[ *read more* ](apps/pho.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pho) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pho) | -| | [***picterm***](apps/picterm.md) | *CLI, TUI image viewer.*..[ *read more* ](apps/picterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picterm) | -| | [***pingu***](apps/pingu.md) | *CLI, ping command but with pingu.*..[ *read more* ](apps/pingu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pingu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pingu) | -| | [***pinky***](apps/pinky.md) | *Lightweight finger. This is part of "am-utils" suite.*..[ *read more* ](apps/pinky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pinky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pinky) | -| | [***pipes-rs***](apps/pipes-rs.md) | *An over-engineered rewrite of pipes.sh in Rust. CLI.*..[ *read more* ](apps/pipes-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pipes-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pipes-rs) | -| | [***pixfetch***](apps/pixfetch.md) | *Another CLI fetch program with pixelized images written in Rust.*..[ *read more* ](apps/pixfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixfetch) | -| | [***pkg2appimage***](apps/pkg2appimage.md) | *Utility to convert .yml recipes to AppDir, see appimagetool.*..[ *read more* ](apps/pkg2appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pkg2appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pkg2appimage) | -| | [***platform-tools***](apps/platform-tools.md) | *Official Suite of command line utilities to manage Android devices.*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***playerctl***](apps/playerctl.md) | *Unofficial, MPRIS media player command-line controller.*..[ *read more* ](apps/playerctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playerctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playerctl) | -| | [***plotly-orca***](apps/plotly-orca.md) | *CLI generating static images of interactive charts.*..[ *read more* ](apps/plotly-orca.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plotly-orca) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plotly-orca) | -| | [***png2svg***](apps/png2svg.md) | *CLI, convert small PNG images to SVG Tiny 1.2.*..[ *read more* ](apps/png2svg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/png2svg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/png2svg) | -| | [***podman***](apps/podman.md) | *Free & open source tool to manage containers, pods, and images.*..[ *read more* ](apps/podman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/podman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/podman) | -| | [***podman-desktop-companion***](apps/podman-desktop-companion.md) | *Podman command line interface.*..[ *read more* ](apps/podman-desktop-companion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/podman-desktop-companion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/podman-desktop-companion) | -| | [***pokeget-rs***](apps/pokeget-rs.md) | *A better rust version of pokeget. CLI.*..[ *read more* ](apps/pokeget-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokeget-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokeget-rs) | -| | [***pokego***](apps/pokego.md) | *Command-line tool that lets you display Pokémon sprites in color directly in your terminal.*..[ *read more* ](apps/pokego.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokego) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokego) | -| | [***pokete***](apps/pokete.md) | *A terminal based Pokemon like game.*..[ *read more* ](apps/pokete.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokete) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokete) | -| | [***polar***](apps/polar.md) | *One-click Bitcoin Lightning networks for local app development.*..[ *read more* ](apps/polar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/polar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/polar) | -| | [***pop***](apps/pop.md) | *Send emails from your terminal.*..[ *read more* ](apps/pop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pop) | -| | [***portable2appimage***](apps/portable2appimage.md) | *Convert standalone, self-contained portable apps into AppImage packages.*..[ *read more* ](apps/portable2appimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/portable2appimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/portable2appimage) | -| | [***pr***](apps/pr.md) | *Files for printing. This is part of "am-utils" suite.*..[ *read more* ](apps/pr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pr) | -| | [***printenv***](apps/printenv.md) | *Print all or part of environment. This is part of "am-utils" suite.*..[ *read more* ](apps/printenv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/printenv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/printenv) | -| | [***printf***](apps/printf.md) | *Format and print data. This is part of "am-utils" suite.*..[ *read more* ](apps/printf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/printf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/printf) | -| | [***procs***](apps/procs.md) | *A modern replacement for ps written in Rust.*..[ *read more* ](apps/procs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/procs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/procs) | -| | [***procspin***](apps/procspin.md) | *CLI to create a process/progress animation with text.*..[ *read more* ](apps/procspin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/procspin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/procspin) | -| | [***ptx***](apps/ptx.md) | *Permuted index of file contents. This is part of "am-utils" suite.*..[ *read more* ](apps/ptx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ptx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ptx) | -| | [***pwd***](apps/pwd.md) | *Print name of current/working directory. This is part of "am-utils" suite.*..[ *read more* ](apps/pwd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pwd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pwd) | -| | [***qpdf***](apps/qpdf.md) | *CLI tool to perform content-preserving transformations on PDF files.*..[ *read more* ](apps/qpdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qpdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qpdf) | -| | [***qrscan***](apps/qrscan.md) | *Scan a QR code in the terminal using the system camera or an image.*..[ *read more* ](apps/qrscan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qrscan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qrscan) | -| | [***qterminal***](apps/qterminal.md) | *Unofficial. A lightweight Qt terminal emulator based on QTermWidget.*..[ *read more* ](apps/qterminal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qterminal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qterminal) | -| | [***quarto-cli***](apps/quarto-cli.md) | *Scientific and technical publishing system built on Pandoc.*..[ *read more* ](apps/quarto-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quarto-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quarto-cli) | -| | [***ranlib***](apps/ranlib.md) | *Index to an archive. This is part of "am-utils" suite.*..[ *read more* ](apps/ranlib.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ranlib) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ranlib) | -| | [***raspberry-pi-imager-cli***](apps/raspberry-pi-imager-cli.md) | *The home of Raspberry Pi Imager, a user-friendly tool for creating bootable media for Raspberry Pi devices. CLI edition.*..[ *read more* ](apps/raspberry-pi-imager-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/raspberry-pi-imager-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/raspberry-pi-imager-cli) | -| | [***rbw***](apps/rbw.md) | *Unofficial Bitwarden password manager cli.*..[ *read more* ](apps/rbw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rbw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rbw) | -| | [***rclip***](apps/rclip.md) | *AI-Powered Semantic Photo Search for the Command Line.*..[ *read more* ](apps/rclip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rclip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rclip) | -| | [***rclone***](apps/rclone.md) | *"rsync for cloud storage", CLI that supports Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Wasabi, Google Cloud Storage, Azure Blob, Azure Files, Yandex Files.*..[ *read more* ](apps/rclone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rclone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rclone) | -| | [***readelf***](apps/readelf.md) | *About ELF files. This is part of "am-utils" suite.*..[ *read more* ](apps/readelf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readelf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readelf) | -| | [***readlink***](apps/readlink.md) | *Print resolved symbolic links or canonical file. This is part of "am-utils" suite.*..[ *read more* ](apps/readlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readlink) | -| | [***realpath***](apps/realpath.md) | *Print the resolved path. This is part of "am-utils" suite.*..[ *read more* ](apps/realpath.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/realpath) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/realpath) | -| | [***rebos***](apps/rebos.md) | *Rebos is a tool that aims at mimicking what NixOS does (repeatability), for any Linux distribution.*..[ *read more* ](apps/rebos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rebos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rebos) | -| | [***rev***](apps/rev.md) | *Reverse lines characterwise. This is part of "am-utils" suite.*..[ *read more* ](apps/rev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rev) | -| | [***revealgo***](apps/revealgo.md) | *Markdown driven presentation tool written in Go!*..[ *read more* ](apps/revealgo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/revealgo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/revealgo) | -| | [***rimage***](apps/rimage.md) | *This is CLI tool inspired by squoosh.*..[ *read more* ](apps/rimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rimage) | -| | [***ripgrep***](apps/ripgrep.md) | *Search directories for regex pattern while respecting gitignore.*..[ *read more* ](apps/ripgrep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ripgrep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ripgrep) | -| | [***ripgrep-all***](apps/ripgrep-all.md) | *A ripgrep version to also search in documents and archives.*..[ *read more* ](apps/ripgrep-all.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ripgrep-all) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ripgrep-all) | -| | [***rm***](apps/rm.md) | *Remove files or directories. This is part of "am-utils" suite.*..[ *read more* ](apps/rm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rm) | -| | [***rmdir***](apps/rmdir.md) | *Remove empty directories. This is part of "am-utils" suite.*..[ *read more* ](apps/rmdir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rmdir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rmdir) | -| | [***rmw***](apps/rmw.md) | *A safe-remove utility for the command line.*..[ *read more* ](apps/rmw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rmw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rmw) | -| | [***rocketfetch***](apps/rocketfetch.md) | *A WIP command line system information tool written with multithreading in rust for performance with toml file configuration.*..[ *read more* ](apps/rocketfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rocketfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rocketfetch) | -| | [***rrip***](apps/rrip.md) | *Bulk image downloader for reddit.*..[ *read more* ](apps/rrip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rrip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rrip) | -| | [***rucola***](apps/rucola.md) | *Terminal-based markdown note manager.*..[ *read more* ](apps/rucola.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rucola) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rucola) | -| | [***runcon***](apps/runcon.md) | *With specified security context. This is part of "am-utils" suite.*..[ *read more* ](apps/runcon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/runcon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/runcon) | -| | [***rustdict***](apps/rustdict.md) | *A dictionary CLI tool in Rust inspired by BetaPictoris's dict.*..[ *read more* ](apps/rustdict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rustdict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rustdict) | -| | [***rustypaste***](apps/rustypaste.md) | *A minimal file upload/pastebin service.*..[ *read more* ](apps/rustypaste.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rustypaste) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rustypaste) | -| | [***s***](apps/s.md) | *Open a web search in your terminal.*..[ *read more* ](apps/s.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/s) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/s) | -| | [***sas***](apps/sas.md) | *Tool to sandbox AppImages with bubblewrap easily.*..[ *read more* ](apps/sas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sas) | -| | [***school-sections***](apps/school-sections.md) | *This project was generated with Angular CLI v1.7.4.*..[ *read more* ](apps/school-sections.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/school-sections) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/school-sections) | -| | [***scummvm***](apps/scummvm.md) | *Unofficial, A 'virtual machine' for several classic graphical point-and-click adventure games*..[ *read more* ](apps/scummvm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scummvm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scummvm) | -| | [***sd***](apps/sd.md) | *Intuitive find & replace CLI, sed alternative.*..[ *read more* ](apps/sd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sd) | -| | [***seafile-cli***](apps/seafile-cli.md) | *Seafile CLI version. Beyond just syncing and sharing files, it lets you add custom file properties and organize your files in different views. With AI-powered automation for generating properties, Seafile offers a smarter, more efficient way to manage your files.*..[ *read more* ](apps/seafile-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seafile-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seafile-cli) | -| | [***sed***](apps/sed.md) | *GNU stream editor for filtering and transforming text. This is part of "am-utils" suite.*..[ *read more* ](apps/sed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sed) | -| | [***senpa-io-client***](apps/senpa-io-client.md) | *Official Client for Senpa.io*..[ *read more* ](apps/senpa-io-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/senpa-io-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/senpa-io-client) | -| | [***seq***](apps/seq.md) | *Print a sequence of numbers. This is part of "am-utils" suite.*..[ *read more* ](apps/seq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seq) | -| | [***sfbrename-cli***](apps/sfbrename-cli.md) | *Bulk file renamer.*..[ *read more* ](apps/sfbrename-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sfbrename-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sfbrename-cli) | -| | [***sh***](apps/sh.md) | *GNU Bourne-Again Shell, the de facto standard shell on Linux. This is part of "am-utils" suite.*..[ *read more* ](apps/sh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sh) | -| | [***sha1sum***](apps/sha1sum.md) | *Compute and check SHA1 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha1sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha1sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha1sum) | -| | [***sha224sum***](apps/sha224sum.md) | *Check SHA224 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha224sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha224sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha224sum) | -| | [***sha256sum***](apps/sha256sum.md) | *Compute and check SHA256 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha256sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha256sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha256sum) | -| | [***sha384sum***](apps/sha384sum.md) | *Check SHA384 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha384sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha384sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha384sum) | -| | [***sha512sum***](apps/sha512sum.md) | *Compute and check SHA512 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha512sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha512sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha512sum) | -| | [***shellcheck***](apps/shellcheck.md) | *ShellCheck, a static analysis tool for shell scripts.*..[ *read more* ](apps/shellcheck.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shellcheck) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shellcheck) | -| | [***shellharden***](apps/shellharden.md) | *The corrective bash syntax highlighter.*..[ *read more* ](apps/shellharden.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shellharden) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shellharden) | -| | [***shradiko***](apps/shradiko.md) | *Make Portable AppImages from Distro Packages.*..[ *read more* ](apps/shradiko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shradiko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shradiko) | -| | [***shred***](apps/shred.md) | *Overwrite a file to hide its contents, and optionally. This is part of "am-utils" suite.*..[ *read more* ](apps/shred.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shred) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shred) | -| | [***shuf***](apps/shuf.md) | *Generate random permutations. This is part of "am-utils" suite.*..[ *read more* ](apps/shuf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shuf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shuf) | -| | [***sidenote***](apps/sidenote.md) | *A CLI tool that helps to manage plain text notes per working directory.*..[ *read more* ](apps/sidenote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sidenote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sidenote) | -| | [***simplechroot***](apps/simplechroot.md) | *Simple command line chroot with ease.*..[ *read more* ](apps/simplechroot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simplechroot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simplechroot) | -| | [***size***](apps/size.md) | *Sizes and total size of binary files. This is part of "am-utils" suite.*..[ *read more* ](apps/size.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/size) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/size) | -| | [***sleep***](apps/sleep.md) | *Delay for a specified amount of time. This is part of "am-utils" suite.*..[ *read more* ](apps/sleep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sleep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sleep) | -| | [***smassh***](apps/smassh.md) | *Smassh your Keyboard, TUI Edition.*..[ *read more* ](apps/smassh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smassh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smassh) | -| | [***soar***](apps/soar.md) | *A fast, modern package manager for Static Binaries, Portable Formats, AppImage, AppBundle, FlatImage, Runimage & More.*..[ *read more* ](apps/soar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soar) | -| | [***soft-serve***](apps/soft-serve.md) | *The mighty, self-hostable Git server for the command line.*..[ *read more* ](apps/soft-serve.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soft-serve) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soft-serve) | -| | [***sort***](apps/sort.md) | *Sort lines of text files. This is part of "am-utils" suite.*..[ *read more* ](apps/sort.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sort) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sort) | -| | [***split***](apps/split.md) | *Divide a file into multiple smaller files. This is part of "am-utils" suite.*..[ *read more* ](apps/split.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/split) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/split) | -| | [***spm***](apps/spm.md) | *A simple CLI package manager written in bash mainly for AppImages.*..[ *read more* ](apps/spm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spm) | -| | [***spotifetch***](apps/spotifetch.md) | *A simple and beautiful CLI fetch tool for spotify, now rusty.*..[ *read more* ](apps/spotifetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotifetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotifetch) | -| | [***spotify-dl***](apps/spotify-dl.md) | *A command-line utility to download songs and playlists directly from Spotify's servers.*..[ *read more* ](apps/spotify-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-dl) | -| | [***spotify-player***](apps/spotify-player.md) | *A Spotify player in the terminal with full feature parity.*..[ *read more* ](apps/spotify-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-player) | -| | [***spotify-tui***](apps/spotify-tui.md) | *Spotify for the terminal written in Rust.*..[ *read more* ](apps/spotify-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-tui) | -| | [***sptlrx***](apps/sptlrx.md) | *Synchronized lyrics in your terminal.*..[ *read more* ](apps/sptlrx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sptlrx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sptlrx) | -| | [***sqlite3***](apps/platform-tools.md) | *Command-line tool for managing SQLite databases. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***st***](apps/st.md) | *Unofficial AppImage of the suckless terminal st.*..[ *read more* ](apps/st.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/st) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/st) | -| | [***st+***](apps/st+.md) | *A beautiful, SIXEL-capable, lightweight terminal (~100KB) with just-enough essential features for rock-solid stability in daily usage. Features integration with nerd-fonts and Gogh color schemes.*..[ *read more* ](apps/st+.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/st+) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/st+) | -| | [***starship***](apps/starship.md) | *The minimal, blazing-fast, and infinitely customizable prompt for any shell.*..[ *read more* ](apps/starship.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/starship) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/starship) | -| | [***stat***](apps/stat.md) | *Display file or file system status. This is part of "am-utils" suite.*..[ *read more* ](apps/stat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stat) | -| | [***stdbuf***](apps/stdbuf.md) | *With modified buffering operations for its. This is part of "am-utils" suite.*..[ *read more* ](apps/stdbuf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stdbuf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stdbuf) | -| | [***steam-tui***](apps/steam-tui.md) | *Rust TUI client for steamcmd.*..[ *read more* ](apps/steam-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steam-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steam-tui) | -| | [***stew***](apps/stew.md) | *An independent package manager for compiled binaries.*..[ *read more* ](apps/stew.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stew) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stew) | -| | [***strace***](apps/strace.md) | *Trace system calls and signals. This is part of "am-utils" suite.*..[ *read more* ](apps/strace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strace) | -| | [***strans***](apps/strans.md) | *A powerful command-line utility.*..[ *read more* ](apps/strans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strans) | -| | [***streamlink***](apps/streamlink.md) | *Command-line which pipes video streams from various services.*..[ *read more* ](apps/streamlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/streamlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/streamlink) | -| | [***strings***](apps/strings.md) | *Strings is another bad static string library, written in C. This is part of "am-utils" suite.*..[ *read more* ](apps/strings.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strings) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strings) | -| | [***strip***](apps/strip.md) | *And other data from object files. This is part of "am-utils" suite.*..[ *read more* ](apps/strip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strip) | -| | [***stty***](apps/stty.md) | *Change and print terminal line settings. This is part of "am-utils" suite.*..[ *read more* ](apps/stty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stty) | -| | [***sum***](apps/sum.md) | *Checksum and count the blocks in a file. This is part of "am-utils" suite.*..[ *read more* ](apps/sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sum) | -| | [***superfile***](apps/superfile.md) | *Pretty fancy and modern terminal file manager.*..[ *read more* ](apps/superfile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superfile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superfile) | -| | [***swapoff***](apps/swapoff.md) | *Enable/disable devices and files for paging and. This is part of "am-utils" suite.*..[ *read more* ](apps/swapoff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swapoff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swapoff) | -| | [***swapon***](apps/swapon.md) | *Enable/disable devices and files for paging and. This is part of "am-utils" suite.*..[ *read more* ](apps/swapon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swapon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swapon) | -| | [***swish***](apps/swish.md) | *Command Line Interface for Swisstransfer Infomaniak's free service.*..[ *read more* ](apps/swish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swish) | -| | [***switchshuttle***](apps/switchshuttle.md) | *Run predefined commands in various terminal applications.*..[ *read more* ](apps/switchshuttle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/switchshuttle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/switchshuttle) | -| | [***sync***](apps/sync.md) | *Backup and synchronization service. This is part of "am-utils" suite.*..[ *read more* ](apps/sync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sync) | -| | [***sysz***](apps/sysz.md) | *An fzf terminal UI for systemctl.*..[ *read more* ](apps/sysz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sysz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sysz) | -| | [***tabby***](apps/tabby.md) | *A terminal for a more modern age*..[ *read more* ](apps/tabby.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tabby) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tabby) | -| | [***tac***](apps/tac.md) | *Concatenate and print files in reverse. This is part of "am-utils" suite.*..[ *read more* ](apps/tac.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tac) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tac) | -| | [***tachoparser***](apps/tachoparser.md) | *Unofficial AppImage of tachoparser, CLI and GUI application for reading DDD tachograph cards.*..[ *read more* ](apps/tachoparser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tachoparser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tachoparser) | -| | [***tail***](apps/tail.md) | *Output the last part of files. This is part of "am-utils" suite.*..[ *read more* ](apps/tail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tail) | -| | [***tar***](apps/tar.md) | *Utility used to store, backup, and transport files. This is part of "am-utils" suite.*..[ *read more* ](apps/tar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tar) | -| | [***taskell***](apps/taskell.md) | *Command-line Kanban board/task manager with support for Trello boards and GitHub projects.*..[ *read more* ](apps/taskell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/taskell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/taskell) | -| | [***tb***](apps/tb.md) | *Tasks, boards & notes for the command-line habitat.*..[ *read more* ](apps/tb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tb) | -| | [***tdlib-rs***](apps/tdlib-rs.md) | *Rust wrapper around the Telegram Database Library.*..[ *read more* ](apps/tdlib-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tdlib-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tdlib-rs) | -| | [***tee***](apps/tee.md) | *Read from standard input and write to standard output and. This is part of "am-utils" suite.*..[ *read more* ](apps/tee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tee) | -| | [***tere***](apps/tere.md) | *Terminal file explorer.*..[ *read more* ](apps/tere.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tere) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tere) | -| | [***termora***](apps/termora.md) | *A terminal emulator and SSH client.*..[ *read more* ](apps/termora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/termora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/termora) | -| | [***termshot***](apps/termshot.md) | *Creates screenshots based on terminal command output.*..[ *read more* ](apps/termshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/termshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/termshot) | -| | [***tess***](apps/tess.md) | *A hackable, simple, rapid and beautiful terminal.*..[ *read more* ](apps/tess.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tess) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tess) | -| | [***test***](apps/test.md) | *Check file types and compare values. This is part of "am-utils" suite.*..[ *read more* ](apps/test.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/test) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/test) | -| | [***testdisk***](apps/testdisk.md) | *TestDisk & PhotoRec, tools to recover lost partitions and files.*..[ *read more* ](apps/testdisk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/testdisk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/testdisk) | -| | [***textnote***](apps/textnote.md) | *Simple tool for creating and organizing daily notes on the command line.*..[ *read more* ](apps/textnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/textnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/textnote) | -| | [***tgpt***](apps/tgpt.md) | *AI Chatbots in terminal without needing API keys.*..[ *read more* ](apps/tgpt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tgpt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tgpt) | -| | [***the-way***](apps/the-way.md) | *A code snippets manager for your terminal.*..[ *read more* ](apps/the-way.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/the-way) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/the-way) | -| | [***thorium-client***](apps/thorium-client.md) | *A locked-down electron kiosk for Thorium.*..[ *read more* ](apps/thorium-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thorium-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thorium-client) | -| | [***ticker***](apps/ticker.md) | *Terminal stock ticker with live updates and position tracking.*..[ *read more* ](apps/ticker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ticker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ticker) | -| | [***timeout***](apps/timeout.md) | *Run a command with a time limit. This is part of "am-utils" suite.*..[ *read more* ](apps/timeout.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/timeout) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/timeout) | -| | [***tlock***](apps/tlock.md) | *Two-Factor Authentication Tokens Manager in Terminal.*..[ *read more* ](apps/tlock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tlock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tlock) | -| | [***tmon***](apps/tmon.md) | *A simple CLI tool for monitoring/reporting CPU temperatures.*..[ *read more* ](apps/tmon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tmon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tmon) | -| | [***tod***](apps/tod.md) | *An unofficial Todoist command line client written in Rust.*..[ *read more* ](apps/tod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tod) | -| | [***todo-bash***](apps/todo-bash.md) | *Todo list for the Bash command line.*..[ *read more* ](apps/todo-bash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/todo-bash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/todo-bash) | -| | [***toipe***](apps/toipe.md) | *yet another typing test, but crab flavoured.*..[ *read more* ](apps/toipe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/toipe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/toipe) | -| | [***top***](apps/top.md) | *Display Linux processes. This is part of "am-utils" suite.*..[ *read more* ](apps/top.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/top) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/top) | -| | [***topgrade***](apps/topgrade.md) | *Upgrade all the things, this is the universal upgrade manager.*..[ *read more* ](apps/topgrade.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/topgrade) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/topgrade) | -| | [***torrenttools***](apps/torrenttools.md) | *Cli tool to inspect/create/edit BitTorrent metafiles.*..[ *read more* ](apps/torrenttools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/torrenttools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/torrenttools) | -| | [***toru***](apps/toru.md) | *Bittorrent streaming CLI tool. Stream anime torrents real-time.*..[ *read more* ](apps/toru.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/toru) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/toru) | -| | [***touch***](apps/touch.md) | *Change file timestamps. This is part of "am-utils" suite.*..[ *read more* ](apps/touch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/touch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/touch) | -| | [***tput***](apps/tput.md) | *tput - initialize a terminal, exercise its capabilities, or query terminfo database. This is part of "am-utils" suite.*..[ *read more* ](apps/tput.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tput) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tput) | -| | [***tr***](apps/tr.md) | *Translate or delete characters. This is part of "am-utils" suite.*..[ *read more* ](apps/tr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tr) | -| | [***trans***](apps/trans.md) | *CLI translator using Google/Bing/Yandex Translate, etc...*..[ *read more* ](apps/trans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trans) | -| | [***transformer***](apps/transformer.md) | *A command-line utility for splitting large files into chunks/pieces and merging them back together.*..[ *read more* ](apps/transformer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transformer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transformer) | -| | [***true***](apps/true.md) | *Do nothing, successfully. This is part of "am-utils" suite.*..[ *read more* ](apps/true.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/true) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/true) | -| | [***truncate***](apps/truncate.md) | *Shrink or extend the size of a file to the specified. This is part of "am-utils" suite.*..[ *read more* ](apps/truncate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/truncate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/truncate) | -| | [***tsort***](apps/tsort.md) | *Perform a topological sort. This is part of "am-utils" suite.*..[ *read more* ](apps/tsort.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tsort) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tsort) | -| | [***tssh***](apps/tssh.md) | *trzsz-ssh is an alternative to ssh client, offers additional features.*..[ *read more* ](apps/tssh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tssh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tssh) | -| | [***tty***](apps/tty.md) | *Print the file name of the terminal connected to standard. This is part of "am-utils" suite.*..[ *read more* ](apps/tty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tty) | -| | [***ttyper***](apps/ttyper.md) | *Terminal-based typing test.*..[ *read more* ](apps/ttyper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ttyper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ttyper) | -| | [***tuxplorer***](apps/tuxplorer.md) | *Tuxplorer is a terminal based file explorer.*..[ *read more* ](apps/tuxplorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tuxplorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tuxplorer) | -| | [***typioca***](apps/typioca.md) | *Cozy typing speed tester in terminal.*..[ *read more* ](apps/typioca.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/typioca) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/typioca) | -| | [***ul***](apps/ul.md) | *Translate underline sequences for terminals. This is part of "am-utils" suite.*..[ *read more* ](apps/ul.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ul) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ul) | -| | [***umount***](apps/umount.md) | *Unmount filesystems. This is part of "am-utils" suite.*..[ *read more* ](apps/umount.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/umount) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/umount) | -| | [***uname***](apps/uname.md) | *Print system information. This is part of "am-utils" suite.*..[ *read more* ](apps/uname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uname) | -| | [***uncompress***](apps/uncompress.md) | *Zcat - compress and expand data. This is part of "am-utils" suite.*..[ *read more* ](apps/uncompress.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uncompress) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uncompress) | -| | [***unexpand***](apps/unexpand.md) | *Convert spaces to tabs. This is part of "am-utils" suite.*..[ *read more* ](apps/unexpand.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unexpand) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unexpand) | -| | [***uniq***](apps/uniq.md) | *Report or omit repeated lines. This is part of "am-utils" suite.*..[ *read more* ](apps/uniq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uniq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uniq) | -| | [***unlink***](apps/unlink.md) | *Call the unlink function to remove the specified file. This is part of "am-utils" suite.*..[ *read more* ](apps/unlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unlink) | -| | [***unshare***](apps/unshare.md) | *Run program in new namespaces. This is part of "am-utils" suite.*..[ *read more* ](apps/unshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unshare) | -| | [***unveil***](apps/unveil.md) | *Unveil Rs is a tool to create presentations from markdown inspired by reveal.js, mdbook and zola.*..[ *read more* ](apps/unveil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unveil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unveil) | -| | [***unxz***](apps/unxz.md) | *Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of "am-utils" suite.*..[ *read more* ](apps/unxz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unxz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unxz) | -| | [***unzip***](apps/unzip.md) | *For extracting and viewing files in .zip archives. This is part of "am-utils" suite.*..[ *read more* ](apps/unzip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unzip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unzip) | -| | [***upgit***](apps/upgit.md) | *CLI, another upload hub that supports clipboard. It works well with Typora, Snipaste, VSCode.*..[ *read more* ](apps/upgit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/upgit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/upgit) | -| | [***uptime***](apps/uptime.md) | *Tell how long the system has been running.. This is part of "am-utils" suite.*..[ *read more* ](apps/uptime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uptime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uptime) | -| | [***users***](apps/users.md) | *Print the user names of users currently logged in to the. This is part of "am-utils" suite.*..[ *read more* ](apps/users.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/users) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/users) | -| | [***uv***](apps/uv.md) | *An extremely fast Python package and project manager, written in Rust.*..[ *read more* ](apps/uv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uv) | -| | [***uwufetch***](apps/uwufetch.md) | *A meme system info tool for Linux, based on nyan/uwu trend.*..[ *read more* ](apps/uwufetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uwufetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uwufetch) | -| | [***vdir***](apps/vdir.md) | *List directory contents. This is part of "am-utils" suite.*..[ *read more* ](apps/vdir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vdir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vdir) | -| | [***vegeta***](apps/vegeta.md) | *HTTP load testing tool and library. It's over 9000!*..[ *read more* ](apps/vegeta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vegeta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vegeta) | -| | [***vhs***](apps/vhs.md) | *Your CLI home video recorder.*..[ *read more* ](apps/vhs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vhs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vhs) | -| | [***vicut***](apps/vicut.md) | *A Vim-based, scriptable, headless text editor for the command line.*..[ *read more* ](apps/vicut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vicut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vicut) | -| | [***viddy***](apps/viddy.md) | *A modern watch command line utility. Time machine and pager etc.*..[ *read more* ](apps/viddy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viddy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viddy) | -| | [***vimeo-dl***](apps/vimeo-dl.md) | *A cli tool to download private videos on vimeo. Written in golang.*..[ *read more* ](apps/vimeo-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vimeo-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vimeo-dl) | -| | [***viu***](apps/viu.md) | *Terminal image viewer with native support for iTerm and Kitty.*..[ *read more* ](apps/viu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viu) | -| | [***vt***](apps/vt.md) | *VirusTotal Command Line Interface.*..[ *read more* ](apps/vt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vt) | -| | [***vtm***](apps/vtm.md) | *Text-based desktop environment.*..[ *read more* ](apps/vtm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vtm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vtm) | -| | [***w2vgrep***](apps/w2vgrep.md) | *semantic-grep for words with similar meaning to the query.*..[ *read more* ](apps/w2vgrep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/w2vgrep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/w2vgrep) | -| | [***walk***](apps/walk.md) | *Terminal file manager.*..[ *read more* ](apps/walk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/walk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/walk) | -| | [***warp-terminal***](apps/warp-terminal.md) | *Terminal reimagined with AI and collaborative tools.*..[ *read more* ](apps/warp-terminal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/warp-terminal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/warp-terminal) | -| | [***watch***](apps/watch.md) | *Watches for changes in a directory tree and reruns a command in an acme win or just on the terminal. This is part of "am-utils" suite.*..[ *read more* ](apps/watch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/watch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/watch) | -| | [***wc***](apps/wc.md) | *Print newline, word, and byte counts for each file. This is part of "am-utils" suite.*..[ *read more* ](apps/wc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wc) | -| | [***wethr***](apps/wethr.md) | *Command line weather tool.*..[ *read more* ](apps/wethr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wethr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wethr) | -| | [***wezterm***](apps/wezterm.md) | *A GPU-accelerated terminal emulator and multiplexer.*..[ *read more* ](apps/wezterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wezterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wezterm) | -| | [***wezterm-nightly***](apps/wezterm-nightly.md) | *A GPU-accelerated terminal emulator and multiplexer.*..[ *read more* ](apps/wezterm-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wezterm-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wezterm-nightly) | -| | [***wget***](apps/wget.md) | *Network utility to retrieve files from the web. This is part of "am-utils" suite.*..[ *read more* ](apps/wget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wget) | -| | [***who***](apps/who.md) | *Show who is logged on. This is part of "am-utils" suite.*..[ *read more* ](apps/who.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/who) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/who) | -| | [***whoami***](apps/whoami.md) | *Print effective user name. This is part of "am-utils" suite.*..[ *read more* ](apps/whoami.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whoami) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whoami) | -| | [***win11-clipboard-history***](apps/win11-clipboard-history.md) | *A beautiful, Windows 11-style Clipboard History Manager for Linux.*..[ *read more* ](apps/win11-clipboard-history.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/win11-clipboard-history) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/win11-clipboard-history) | -| | [***wine***](apps/wine.md) | *Unofficial. Run Windows programs, select a version from mmtrt/WINE_AppImage.*..[ *read more* ](apps/wine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine) | -| | [***wine32-deploy***](apps/wine32-deploy.md) | *Tool for creating AppImages for 32-bit Microsoft Windows apps.*..[ *read more* ](apps/wine32-deploy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine32-deploy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine32-deploy) | -| | [***wives***](apps/wives.md) | *A beautiful, modern & feature-rich Terminal Emulator.*..[ *read more* ](apps/wives.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wives) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wives) | -| | [***wkp***](apps/wkp.md) | *A CLI tool designed to fetch Wikipedia excerpts written in Rust.*..[ *read more* ](apps/wkp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wkp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wkp) | -| | [***wtfutil***](apps/wtfutil.md) | *The personal information dashboard for your terminal.*..[ *read more* ](apps/wtfutil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wtfutil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wtfutil) | -| | [***x-pixiv***](apps/x-pixiv.md) | *CLI, pixiv downloader.*..[ *read more* ](apps/x-pixiv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/x-pixiv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/x-pixiv) | -| | [***xargs***](apps/xargs.md) | *Build and execute command lines from standard input. This is part of "am-utils" suite.*..[ *read more* ](apps/xargs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xargs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xargs) | -| | [***xbooxp***](apps/xbooxp.md) | *A nifty software to upload homebrew apps into your Game Boy Advance (GBA) using an xboo cable.*..[ *read more* ](apps/xbooxp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xbooxp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xbooxp) | -| | [***xdg-ninja***](apps/xdg-ninja.md) | *Script that checks your $HOME for unwanted files and directories.*..[ *read more* ](apps/xdg-ninja.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xdg-ninja) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xdg-ninja) | -| | [***xz***](apps/xz.md) | *Library and command line tools for XZ and LZMA compressed files. This is part of "am-utils" suite.*..[ *read more* ](apps/xz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xz) | -| | [***xzcat***](apps/xzcat.md) | *Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of "am-utils" suite.*..[ *read more* ](apps/xzcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xzcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xzcat) | -| | [***yaf***](apps/yaf.md) | *Yet another system CLI fetch that is minimal and customizable.*..[ *read more* ](apps/yaf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yaf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yaf) | -| | [***yazi***](apps/yazi.md) | *Blazing fast terminal file manager written in Rust.*..[ *read more* ](apps/yazi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yazi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yazi) | -| | [***yes***](apps/yes.md) | *Output a string repeatedly until killed. This is part of "am-utils" suite.*..[ *read more* ](apps/yes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yes) | -| | [***youtube-download***](apps/youtube-download.md) | *GUI and CLI for downloading YouTube video/audio.*..[ *read more* ](apps/youtube-download.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-download) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-download) | -| | [***youtube-tui***](apps/youtube-tui.md) | *An aesthetically pleasing YouTube TUI CLI written in Rust.*..[ *read more* ](apps/youtube-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-tui) | -| | [***yt-dlp***](apps/yt-dlp.md) | *A feature-rich command-line audio/video downloader.*..[ *read more* ](apps/yt-dlp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yt-dlp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yt-dlp) | -| | [***ytarchive***](apps/ytarchive.md) | *Garbage Youtube livestream downloader CLI.*..[ *read more* ](apps/ytarchive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytarchive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytarchive) | -| | [***ytermusic***](apps/ytermusic.md) | *An in terminal youtube music client with focus on privacy, simplicity and performance.*..[ *read more* ](apps/ytermusic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytermusic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytermusic) | -| | [***yup***](apps/yup.md) | *Arch Linux AUR Helper with ncurses functionality and better searching and sorting.*..[ *read more* ](apps/yup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yup) | -| | [***zap***](apps/zap.md) | *Delightful command line AppImage package manager for appimage.github.io.*..[ *read more* ](apps/zap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zap) | -| | [***zcat***](apps/zcat.md) | *Zcat - compress or expand files. This is part of "am-utils" suite.*..[ *read more* ](apps/zcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zcat) | -| | [***zellij***](apps/zellij.md) | *A terminal workspace with batteries included.*..[ *read more* ](apps/zellij.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zellij) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zellij) | -| | [***zenity***](apps/zenity.md) | *Unofficial, A CLI utility that creates dialog boxes, GTK3 version.*..[ *read more* ](apps/zenity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zenity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zenity) | -| | [***zfind***](apps/zfind.md) | *Search files, even inside tar/zip/7z/rar using a SQL-WHERE filter.*..[ *read more* ](apps/zfind.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zfind) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zfind) | -| | [***zfxtop***](apps/zfxtop.md) | *[WIP] fetch top for gen Z with X written by bubbletea enjoyer.*..[ *read more* ](apps/zfxtop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zfxtop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zfxtop) | -| | [***zk***](apps/zk.md) | *A plain text note-taking assistant*..[ *read more* ](apps/zk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zk) | -| | [***zoxide***](apps/zoxide.md) | *A smarter cd command. Supports all major shells.*..[ *read more* ](apps/zoxide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zoxide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zoxide) | -| | [***zramen***](apps/zramen.md) | *Manage zram swap space.*..[ *read more* ](apps/zramen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zramen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zramen) | -| | [***zsync***](apps/zsync.md) | *Partial/differential file download client over HTTP. This is part of "am-utils" suite.*..[ *read more* ](apps/zsync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zsync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zsync) | -| | [***zsync2***](apps/zsync2.md) | *A rewrite of the advanced file download/sync tool zsync.*..[ *read more* ](apps/zsync2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zsync2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zsync2) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/communication.md b/communication.md deleted file mode 100644 index d9916c8b9..000000000 --- a/communication.md +++ /dev/null @@ -1,214 +0,0 @@ -# COMMUNICATION - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **86** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***abaddon***](apps/abaddon.md) | *Unofficial, an alternative Discord client with voice support made with C++ and GTK 3.*..[ *read more* ](apps/abaddon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/abaddon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/abaddon) | -| | [***altus***](apps/altus.md) | *Client for WhatsApp Web with themes & multiple account support.*..[ *read more* ](apps/altus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altus) | -| | [***armcord***](apps/armcord.md) | *Custom client designed to enhance your Discord experience.*..[ *read more* ](apps/armcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/armcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/armcord) | -| | [***bastyon***](apps/bastyon.md) | *Decentralized social network based on the blockchain.*..[ *read more* ](apps/bastyon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bastyon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bastyon) | -| | [***betterbird***](apps/betterbird.md) | *Unofficial, Betterbird is a fine-tuned version of Mozilla Thunderbird, a free and open-source email client.*..[ *read more* ](apps/betterbird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/betterbird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/betterbird) | -| | [***botclient***](apps/botclient.md) | *A discord botclient built with Electron and React.*..[ *read more* ](apps/botclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/botclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/botclient) | -| | [***bts-ce-lite***](apps/bts-ce-lite.md) | *Telecommunication network management application.*..[ *read more* ](apps/bts-ce-lite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bts-ce-lite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bts-ce-lite) | -| | [***caprine***](apps/caprine.md) | *Unofficial, elegant privacy focused Facebook Messenger app.*..[ *read more* ](apps/caprine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/caprine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/caprine) | -| | [***chatterino2***](apps/chatterino2.md) | *Second installment of the Twitch chat client.*..[ *read more* ](apps/chatterino2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatterino2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatterino2) | -| | [***chatterino2-nightly***](apps/chatterino2-nightly.md) | *Second installment of the Twitch chat client.*..[ *read more* ](apps/chatterino2-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chatterino2-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chatterino2-nightly) | -| | [***circle-z***](apps/circle-z.md) | *A chat client for online math courses.*..[ *read more* ](apps/circle-z.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/circle-z) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/circle-z) | -| | [***datcord***](apps/datcord.md) | *Discord client.*..[ *read more* ](apps/datcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/datcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/datcord) | -| | [***deskthing***](apps/deskthing.md) | *The Discord Thing, Trello Thing, The Weather Thing, The Macro Thing, just not The Car Thing anymore.*..[ *read more* ](apps/deskthing.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deskthing) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deskthing) | -| | [***dinox***](apps/dinox.md) | *DinoX - Modern XMPP Chat Client with Video Calls, Voice Messages & OMEMO Encryption.*..[ *read more* ](apps/dinox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dinox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dinox) | -| | [***discord***](apps/discord.md) | *Unofficial. All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.*..[ *read more* ](apps/discord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/discord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/discord) | -| | [***discord-bot-client***](apps/discord-bot-client.md) | *A patched version of discord, with bot login & Vencord support.*..[ *read more* ](apps/discord-bot-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/discord-bot-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/discord-bot-client) | -| | [***discord-qt***](apps/discord-qt.md) | *Unofficial. Discord client powered by Node.JS and Qt Widgets.*..[ *read more* ](apps/discord-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/discord-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/discord-qt) | -| | [***dissent***](apps/dissent.md) | *Tiny native Discord app.*..[ *read more* ](apps/dissent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dissent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dissent) | -| | [***dorion***](apps/dorion.md) | *Tiny alternative Discord client with a smaller footprint, snappier startup, themes, plugins and more!*..[ *read more* ](apps/dorion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dorion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dorion) | -| | [***elk***](apps/elk.md) | *Native version of Elk, a nimble Mastodon web.*..[ *read more* ](apps/elk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elk) | -| | [***equibop***](apps/equibop.md) | *Equibop is a custom Discord App aiming to give you better performance and improve linux support.*..[ *read more* ](apps/equibop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/equibop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/equibop) | -| | [***fluffychat***](apps/fluffychat.md) | *The cutest instant messenger in the matrix.*..[ *read more* ](apps/fluffychat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fluffychat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fluffychat) | -| | [***fluxer***](apps/fluxer.md) | *A free and open source instant messaging and VoIP platform built for friends, groups, and communities.*..[ *read more* ](apps/fluxer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fluxer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fluxer) | -| | [***forkgram***](apps/forkgram.md) | *Fork of Telegram Desktop messaging app.*..[ *read more* ](apps/forkgram.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/forkgram) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/forkgram) | -| | [***franz***](apps/franz.md) | *Messaging app for WhatsApp, Slack, Telegram, HipChat and much more.*..[ *read more* ](apps/franz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/franz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/franz) | -| | [***goofcord***](apps/goofcord.md) | *Take control of your Discord experience with GoofCord.*..[ *read more* ](apps/goofcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goofcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goofcord) | -| | [***hamsket***](apps/hamsket.md) | *Free and Open Source messaging and emailing app.*..[ *read more* ](apps/hamsket.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hamsket) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hamsket) | -| | [***hermesmessenger***](apps/hermesmessenger.md) | *Desktop client version for Hermes Messenger.*..[ *read more* ](apps/hermesmessenger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hermesmessenger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hermesmessenger) | -| | [***himalaya***](apps/himalaya.md) | *CLI to manage emails.*..[ *read more* ](apps/himalaya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/himalaya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/himalaya) | -| | [***hyperspace***](apps/hyperspace.md) | *A fluffy client for Mastodon in React.*..[ *read more* ](apps/hyperspace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperspace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperspace) | -| | [***jfcord***](apps/jfcord.md) | *An Jellyfin rich presence client for Discord.*..[ *read more* ](apps/jfcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jfcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jfcord) | -| | [***legcord***](apps/legcord.md) | *Legcord is a custom client designed to enhance your Discord experience while keeping everything lightweight.*..[ *read more* ](apps/legcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/legcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/legcord) | -| | [***mages***](apps/mages.md) | *Multiplatform Matrix chat client (experimental CMP+rust app).*..[ *read more* ](apps/mages.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mages) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mages) | -| | [***mbcord***](apps/mbcord.md) | *An Emby/Jellyfin rich presence client for Discord.*..[ *read more* ](apps/mbcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mbcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mbcord) | -| | [***mirage***](apps/mirage.md) | *Matrix chat client for encrypted and decentralized communication.*..[ *read more* ](apps/mirage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mirage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mirage) | -| | [***overlayed***](apps/overlayed.md) | *A modern, open-source, and free voice chat overlay for Discord.*..[ *read more* ](apps/overlayed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/overlayed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/overlayed) | -| | [***pop***](apps/pop.md) | *Send emails from your terminal.*..[ *read more* ](apps/pop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pop) | -| | [***qortal-ui***](apps/qortal-ui.md) | *Decentralize the world, data storage, communications.*..[ *read more* ](apps/qortal-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qortal-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qortal-ui) | -| | [***qtox***](apps/qtox.md) | *Qt 5 based Tox instant messenger for secure communication.*..[ *read more* ](apps/qtox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtox) | -| | [***quiet***](apps/quiet.md) | *A private, p2p alternative to Slack and Discord built on Tor & IPFS*..[ *read more* ](apps/quiet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quiet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quiet) | -| | [***rambox***](apps/rambox.md) | *Free and Open Source messaging and emailing app.*..[ *read more* ](apps/rambox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rambox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rambox) | -| | [***ripcord***](apps/ripcord.md) | *Chat client for group-centric services like Slack and Discord.*..[ *read more* ](apps/ripcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ripcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ripcord) | -| | [***robrix***](apps/robrix.md) | *A multi-platform Matrix chat client written in Rust, using the Makepad UI toolkit and the Robius app dev framework.*..[ *read more* ](apps/robrix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/robrix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/robrix) | -| | [***root***](apps/root.md) | *Voice, video, and chat plus powerful apps that help your community organize, grow, and thrive. An alternative to Discord.*..[ *read more* ](apps/root.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/root) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/root) | -| | [***sengi***](apps/sengi.md) | *A multi-account desktop client for Mastodon and Pleroma.*..[ *read more* ](apps/sengi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sengi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sengi) | -| | [***session-desktop***](apps/session-desktop.md) | *Onion routing based messenger.*..[ *read more* ](apps/session-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/session-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/session-desktop) | -| | [***signal***](apps/signal.md) | *Unofficial AppImage package for Signal (communication).*..[ *read more* ](apps/signal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/signal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/signal) | -| | [***skype***](apps/skype.md) | *Unofficial. VoIP-based videoconferencing, voice calls and instant messaging app.*..[ *read more* ](apps/skype.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/skype) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/skype) | -| | [***snapshot-slider***](apps/snapshot-slider.md) | *Present/print/email Snapshots of modern mathematics.*..[ *read more* ](apps/snapshot-slider.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snapshot-slider) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snapshot-slider) | -| | [***socnetv***](apps/socnetv.md) | *Social Network Analysis and Visualization software.*..[ *read more* ](apps/socnetv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/socnetv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/socnetv) | -| | [***soundcloud-rpc***](apps/soundcloud-rpc.md) | *A SoundCloud client with Discord Rich Presence and AdBlock.*..[ *read more* ](apps/soundcloud-rpc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soundcloud-rpc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soundcloud-rpc) | -| | [***spacebar***](apps/spacebar.md) | *Themeable and extendable discord-compatible native Spacebar client.*..[ *read more* ](apps/spacebar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spacebar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spacebar) | -| | [***spacebar-debug***](apps/spacebar-debug.md) | *Extendable discord-compatible native Spacebar client, debug.*..[ *read more* ](apps/spacebar-debug.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spacebar-debug) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spacebar-debug) | -| | [***speek***](apps/speek.md) | *Privacy focused messenger.*..[ *read more* ](apps/speek.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/speek) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/speek) | -| | [***steem-messenger***](apps/steem-messenger.md) | *Messer for Steem.*..[ *read more* ](apps/steem-messenger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steem-messenger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steem-messenger) | -| | [***sup***](apps/sup.md) | *A Slack client with WhatsApp like UI.*..[ *read more* ](apps/sup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sup) | -| | [***tc***](apps/tc.md) | *A desktop chat client for Twitch.*..[ *read more* ](apps/tc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tc) | -| | [***tdlib-rs***](apps/tdlib-rs.md) | *Rust wrapper around the Telegram Database Library.*..[ *read more* ](apps/tdlib-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tdlib-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tdlib-rs) | -| | [***teams***](apps/teams.md) | *Unofficial, Business communication platform developed by Microsoft.*..[ *read more* ](apps/teams.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teams) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teams) | -| | [***teamviewer***](apps/teamviewer.md) | *Deliver remote IT support to your customers and colleagues, anytime, anywhere. Communication, network.*..[ *read more* ](apps/teamviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teamviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teamviewer) | -| | [***teledrive***](apps/teledrive.md) | *Automatically backup Telegram Saved Messages.*..[ *read more* ](apps/teledrive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teledrive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teledrive) | -| | [***telegram***](apps/telegram.md) | *Official desktop version of Telegram messaging app.*..[ *read more* ](apps/telegram.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/telegram) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/telegram) | -| | [***thedesk***](apps/thedesk.md) | *Mastodon Client for PC.*..[ *read more* ](apps/thedesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thedesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thedesk) | -| | [***thunderbird***](apps/thunderbird.md) | *Free and open source eMail client, Stable.*..[ *read more* ](apps/thunderbird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thunderbird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thunderbird) | -| | [***thunderbird-beta***](apps/thunderbird-beta.md) | *Free and open source eMail client, Beta Edition.*..[ *read more* ](apps/thunderbird-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thunderbird-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thunderbird-beta) | -| | [***thunderbird-nightly***](apps/thunderbird-nightly.md) | *Free and open source eMail client, Nightly Edition.*..[ *read more* ](apps/thunderbird-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thunderbird-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thunderbird-nightly) | -| | [***tokodon***](apps/tokodon.md) | *Unofficial, a modern client for Mastodon and other decentralized servers that implement its API (such as Pixelfed).*..[ *read more* ](apps/tokodon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tokodon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tokodon) | -| | [***tutanota***](apps/tutanota.md) | *Tuta is an email service with a strong focus on security and privacy that lets you encrypt emails, contacts and calendar entries on all your devices.*..[ *read more* ](apps/tutanota.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tutanota) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tutanota) | -| | [***tutanota-enhanced***](apps/tutanota-enhanced.md) | *Unofficial AppImage for Tutanota, an email service with a strong focus on security and privacy that lets you encrypt emails, contacts and calendar entries on all your devices.*..[ *read more* ](apps/tutanota-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tutanota-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tutanota-enhanced) | -| | [***vector***](apps/vector.md) | *Vector is a decentralized communication platform built on the Nostr Protocol.*..[ *read more* ](apps/vector.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vector) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vector) | -| | [***vesktop***](apps/vesktop.md) | *Vesktop gives you the performance of web Discord.*..[ *read more* ](apps/vesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vesktop) | -| | [***viber***](apps/viber.md) | *Proprietary cross-platform IM and VoIP software.*..[ *read more* ](apps/viber.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viber) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viber) | -| | [***viber-enhanced***](apps/viber-enhanced.md) | *Unofficial. Enhanced AppImage of proprietary cross-platform IM and VoIP software.*..[ *read more* ](apps/viber-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viber-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viber-enhanced) | -| | [***walc***](apps/walc.md) | *WhatsApp Linux Client, Unofficial.*..[ *read more* ](apps/walc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/walc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/walc) | -| | [***wasistlos***](apps/wasistlos.md) | *Unofficial, WhatsApp Linux Client, formerly known as "whatsapp-for-linux".*..[ *read more* ](apps/wasistlos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wasistlos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wasistlos) | -| | [***wazo-desktop***](apps/wazo-desktop.md) | *Wazo desktop client for wazo VOIP server.*..[ *read more* ](apps/wazo-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wazo-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wazo-desktop) | -| | [***webcord***](apps/webcord.md) | *A Discord and Fosscord client implemented without Discord API.*..[ *read more* ](apps/webcord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webcord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webcord) | -| | [***webcord-enhanced***](apps/webcord-enhanced.md) | *Unofficial, A Discord and Fosscord client implemented without Discord API.*..[ *read more* ](apps/webcord-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/webcord-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/webcord-enhanced) | -| | [***wewechat***](apps/wewechat.md) | *Unofficial WeChat client built with React, MobX and Electron.*..[ *read more* ](apps/wewechat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wewechat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wewechat) | -| | [***whalebird***](apps/whalebird.md) | *An Electron based Mastodon client.*..[ *read more* ](apps/whalebird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whalebird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whalebird) | -| | [***whatsdesk***](apps/whatsdesk.md) | *Unofficial, An unofficial client of WhatsApp.*..[ *read more* ](apps/whatsdesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whatsdesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whatsdesk) | -| | [***whatsie***](apps/whatsie.md) | *Unofficial, feature rich WhatsApp web client based on Qt WebEngine.*..[ *read more* ](apps/whatsie.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whatsie) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whatsie) | -| | [***whatstron***](apps/whatstron.md) | *Unofficial WhatsApp desktop client for Linux.*..[ *read more* ](apps/whatstron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whatstron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whatstron) | -| | [***zapzap***](apps/zapzap.md) | *WhatsApp desktop application written in Pyqt6 + PyQt6-WebEngine.*..[ *read more* ](apps/zapzap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zapzap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zapzap) | -| | [***zapzap-enhanced***](apps/zapzap-enhanced.md) | *Unofficial AppImage of ZapZap WhatsApp client.*..[ *read more* ](apps/zapzap-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zapzap-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zapzap-enhanced) | -| | [***zoom***](apps/zoom.md) | *Unofficial. Video Conferencing and Web Conferencing Service.*..[ *read more* ](apps/zoom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zoom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zoom) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/contribute_ss.png b/contribute_ss.png new file mode 100644 index 000000000..2cb96825c Binary files /dev/null and b/contribute_ss.png differ diff --git a/disk.md b/disk.md deleted file mode 100644 index b8e51bb7a..000000000 --- a/disk.md +++ /dev/null @@ -1,148 +0,0 @@ -# DISK - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **18** programs and **2** items for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***baobab***](apps/baobab.md) | *A graphical directory tree analyzer for the GNOME desktop environment, to keep your disk usage and available space under control.*..[ *read more* ](apps/baobab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/baobab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/baobab) | -| | [***diskfmt***](apps/diskfmt.md) | *A disk formatting utility for linux that is similar to the windows format utility.*..[ *read more* ](apps/diskfmt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diskfmt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diskfmt) | -| | [***diskonaut***](apps/diskonaut.md) | *Terminal disk space navigator.*..[ *read more* ](apps/diskonaut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diskonaut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diskonaut) | -| | [***dua***](apps/dua.md) | *View disk space usage and delete unwanted data, fast.*..[ *read more* ](apps/dua.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dua) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dua) | -| | [***duf***](apps/duf.md) | *Disk Usage/Free Utility, a better 'df' alternative.*..[ *read more* ](apps/duf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duf) | -| | [***etcher***](apps/etcher.md) | *Flash OS images to SD cards and USB drives, Balena Etcher.*..[ *read more* ](apps/etcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/etcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/etcher) | -| | [***filelight***](apps/filelight.md) | *Unofficial. View disk usage information, by KDE.*..[ *read more* ](apps/filelight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filelight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filelight) | -| | [***gncdu***](apps/gncdu.md) | *Implements NCurses Disk Usage(ncdu) with golang.*..[ *read more* ](apps/gncdu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gncdu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gncdu) | -| | [***isoimagewriter***](apps/kdeutils.md) | *Write an ISO Image to a USB Disk. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdf***](apps/kdeutils.md) | *view Disk Usage. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdiskmark***](apps/kdiskmark.md) | *A simple open-source disk benchmark tool for Linux distros.*..[ *read more* ](apps/kdiskmark.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdiskmark) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdiskmark) | -| | [***liketaskmanager***](apps/liketaskmanager.md) | *Process/performances monitor, CPU, RAM, Disks and Network.*..[ *read more* ](apps/liketaskmanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/liketaskmanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/liketaskmanager) | -| | [***mission-center***](apps/mission-center.md) | *Monitor your CPU, Memory, Disk, Network and GPU usage.*..[ *read more* ](apps/mission-center.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mission-center) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mission-center) | -| | [***pika-backup***](apps/pika-backup.md) | *Doing backups the easy way. Plugin your USB drive and let the Pika do the rest for you.*..[ *read more* ](apps/pika-backup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pika-backup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pika-backup) | -| | [***qdiskinfo***](apps/qdiskinfo.md) | *QDiskInfo is a frontend for smartctl. It provides a user experience similar to CrystalDiskInfo.*..[ *read more* ](apps/qdiskinfo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qdiskinfo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qdiskinfo) | -| | [***squirrel-disk***](apps/squirrel-disk.md) | *Cross-Platform and Super Fast Disk Usage Analysis Tool.*..[ *read more* ](apps/squirrel-disk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/squirrel-disk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/squirrel-disk) | -| | [***testdisk***](apps/testdisk.md) | *TestDisk & PhotoRec, tools to recover lost partitions and files.*..[ *read more* ](apps/testdisk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/testdisk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/testdisk) | -| | [***unetbootin***](apps/unetbootin.md) | *Install Linux/BSD distributions to a partition or USB drive.*..[ *read more* ](apps/unetbootin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unetbootin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unetbootin) | -| | [***ventoy***](apps/ventoy.md) | *Tool to create bootable USB drive for ISO/WIM/IMG/VHDx/EFI files.*..[ *read more* ](apps/ventoy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ventoy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ventoy) | -| | [***veracrypt***](apps/veracrypt.md) | *VeraCrypt is a free open source disk encryption software.*..[ *read more* ](apps/veracrypt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/veracrypt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/veracrypt) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/education.md b/education.md deleted file mode 100644 index a9f0d19c4..000000000 --- a/education.md +++ /dev/null @@ -1,193 +0,0 @@ -# EDUCATION - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **65** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***alexandria***](apps/alexandria.md) | *eBook reader built with Tauri, Epub.js, and Typescript.*..[ *read more* ](apps/alexandria.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alexandria) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alexandria) | -| | [***ayandict***](apps/ayandict.md) | *Simple yet advanced multi-lingual cross-platform offline dictionary for desktop, using Qt and Go.*..[ *read more* ](apps/ayandict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ayandict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ayandict) | -| | [***banban***](apps/banban.md) | *A productivity app inspired by GitHub Projects Kanban.*..[ *read more* ](apps/banban.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/banban) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/banban) | -| | [***biblemultithelife***](apps/biblemultithelife.md) | *Bible multi languages, free, offline, no advertising.*..[ *read more* ](apps/biblemultithelife.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biblemultithelife) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biblemultithelife) | -| | [***biblemultithesonofman***](apps/biblemultithesonofman.md) | *Offline Bible for Terminal.*..[ *read more* ](apps/biblemultithesonofman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biblemultithesonofman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biblemultithesonofman) | -| | [***bibletime***](apps/bibletime.md) | *Unofficial, a Bible study application based on the Sword library and Qt toolkit.*..[ *read more* ](apps/bibletime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bibletime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bibletime) | -| | [***book-manager***](apps/book-manager.md) | *Simple desktop app to manage personal library.*..[ *read more* ](apps/book-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/book-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/book-manager) | -| | [***bookdb***](apps/bookdb.md) | *A book catalog database for personal collections. Can import data from Readerware 4.*..[ *read more* ](apps/bookdb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bookdb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bookdb) | -| | [***brainverse***](apps/brainverse.md) | *Electronic Lab Notebook for Reproducible Neuro Imaging Research.*..[ *read more* ](apps/brainverse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brainverse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brainverse) | -| | [***calibre***](apps/calibre.md) | *Unofficial. The one stop solution to all your e-book needs.*..[ *read more* ](apps/calibre.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calibre) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calibre) | -| | [***calibre-beta***](apps/calibre-beta.md) | *Unofficial. The one stop solution to all your e-book needs. Beta version.*..[ *read more* ](apps/calibre-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calibre-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calibre-beta) | -| | [***calibre-preview***](apps/calibre-preview.md) | *Unofficial. The one stop solution to all your e-book needs. Preview version.*..[ *read more* ](apps/calibre-preview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calibre-preview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calibre-preview) | -| | [***caprine***](apps/caprine.md) | *Unofficial, elegant privacy focused Facebook Messenger app.*..[ *read more* ](apps/caprine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/caprine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/caprine) | -| | [***carta***](apps/carta.md) | *Cube Analysis and Rendering Tool for Astronomy.*..[ *read more* ](apps/carta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/carta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/carta) | -| | [***celestia***](apps/celestia.md) | *Real time 3D space simulator.*..[ *read more* ](apps/celestia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celestia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celestia) | -| | [***celestia-dev***](apps/celestia-dev.md) | *Real time 3D space simulator, developer edition.*..[ *read more* ](apps/celestia-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celestia-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celestia-dev) | -| | [***celestia-enanched***](apps/celestia-enanched.md) | *Unofficial. Real-time 3D space simulator with extra detailed maps.*..[ *read more* ](apps/celestia-enanched.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celestia-enanched) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celestia-enanched) | -| | [***cerebro***](apps/cerebro.md) | *Open-source productivity booster with a brain.*..[ *read more* ](apps/cerebro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cerebro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cerebro) | -| | [***circle-z***](apps/circle-z.md) | *A chat client for online math courses.*..[ *read more* ](apps/circle-z.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/circle-z) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/circle-z) | -| | [***ciyue***](apps/ciyue.md) | *A simple mdict dictionary.*..[ *read more* ](apps/ciyue.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ciyue) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ciyue) | -| | [***codebook-lsp***](apps/codebook-lsp.md) | *Codebook, code-aware spell checker with language server implementation.*..[ *read more* ](apps/codebook-lsp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/codebook-lsp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/codebook-lsp) | -| | [***cosmonium***](apps/cosmonium.md) | *3D astronomy and space exploration program.*..[ *read more* ](apps/cosmonium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cosmonium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cosmonium) | -| | [***elements***](apps/elements.md) | *App which displays the periodic table, Education, Science.*..[ *read more* ](apps/elements.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elements) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elements) | -| | [***fbreader***](apps/fbreader.md) | *Your Favourite eBook Reader*..[ *read more* ](apps/fbreader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fbreader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fbreader) | -| | [***flawesome***](apps/flawesome.md) | *Flawesome is a modern productivity tool.*..[ *read more* ](apps/flawesome.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flawesome) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flawesome) | -| | [***focus***](apps/focus.md) | *A fully featured productivity timer for the command line, based on the Pomodoro Technique.*..[ *read more* ](apps/focus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focus) | -| | [***focusatwill***](apps/focusatwill.md) | *Combines neuroscience and music to boost productivity.*..[ *read more* ](apps/focusatwill.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focusatwill) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focusatwill) | -| | [***frappebooks***](apps/frappebooks.md) | *Book-keeping software for small-businesses and freelancers.*..[ *read more* ](apps/frappebooks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/frappebooks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/frappebooks) | -| | [***gaiasky***](apps/gaiasky.md) | *Gaia Sky, a real-time 3D space simulator & astronomy visualisation.*..[ *read more* ](apps/gaiasky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gaiasky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gaiasky) | -| | [***gnome-pomodoro***](apps/gnome-pomodoro.md) | *A productivity tool designed to help you manage your time effectively using the Pomodoro Technique.*..[ *read more* ](apps/gnome-pomodoro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-pomodoro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-pomodoro) | -| | [***goldendict***](apps/goldendict.md) | *A feature-rich dictionary lookup program.*..[ *read more* ](apps/goldendict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goldendict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goldendict) | -| | [***goldendict-ng***](apps/goldendict-ng.md) | *Unofficial, an advanced dictionary lookup program, supporting many formats.*..[ *read more* ](apps/goldendict-ng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goldendict-ng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goldendict-ng) | -| | [***hdict***](apps/hdict.md) | *Offline dictionary reader for StarDict, Slob, Mdict and Dictd dictionaries.*..[ *read more* ](apps/hdict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hdict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hdict) | -| | [***kalker***](apps/kalker.md) | *Scientific calculator with math syntax for user-defined variables.*..[ *read more* ](apps/kalker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kalker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kalker) | -| | [***kindling-cli***](apps/kindling-cli.md) | *Kindle toolkit for dictionaries, books, comics.*..[ *read more* ](apps/kindling-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kindling-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kindling-cli) | -| | [***kmymoney***](apps/kmymoney.md) | *KMyMoney is a cross-platform personal finance manager build on KDE frameworks technologies for your desktop and notebook environment.*..[ *read more* ](apps/kmymoney.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kmymoney) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kmymoney) | -| | [***koodo-reader***](apps/koodo-reader.md) | *Modern ebook manager and reader with sync & backup capacities.*..[ *read more* ](apps/koodo-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koodo-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koodo-reader) | -| | [***lunatask***](apps/lunatask.md) | *All-in-one encrypted to-do list, notebook, habit and mood tracker.*..[ *read more* ](apps/lunatask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lunatask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lunatask) | -| | [***mathcha-notebook***](apps/mathcha-notebook.md) | *Desktop version of Mathcha, built for your privacy.*..[ *read more* ](apps/mathcha-notebook.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mathcha-notebook) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mathcha-notebook) | -| | [***memento***](apps/memento.md) | *A video player for studying Japanese.*..[ *read more* ](apps/memento.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/memento) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/memento) | -| | [***mupdf***](apps/mupdf.md) | *Lightweight PDF, XPS, and E-book viewer.*..[ *read more* ](apps/mupdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mupdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mupdf) | -| | [***music-blocks***](apps/music-blocks.md) | *.Exploring Math, Music, and Programming.*..[ *read more* ](apps/music-blocks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-blocks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-blocks) | -| | [***notemaster***](apps/notemaster.md) | *Note-taking app to help boost productivity.*..[ *read more* ](apps/notemaster.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notemaster) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notemaster) | -| | [***ocvwarp***](apps/ocvwarp.md) | *Warping images and videos for planetarium fulldome display.*..[ *read more* ](apps/ocvwarp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ocvwarp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ocvwarp) | -| | [***odicto***](apps/odicto.md) | *An offline English dictionary app for desktop.*..[ *read more* ](apps/odicto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/odicto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/odicto) | -| | [***openlibextended***](apps/openlibextended.md) | *An Open source app to download and read books from shadow library (Anna’s Archive).*..[ *read more* ](apps/openlibextended.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openlibextended) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openlibextended) | -| | [***pyglossary***](apps/pyglossary.md) | *Unofficial, A tool for converting dictionary files aka glossaries.*..[ *read more* ](apps/pyglossary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pyglossary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pyglossary) | -| | [***quran-companion***](apps/quran-companion.md) | *Free and open-source desktop Quran reader and player.*..[ *read more* ](apps/quran-companion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quran-companion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quran-companion) | -| | [***readest***](apps/readest.md) | *Readest is a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience.*..[ *read more* ](apps/readest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readest) | -| | [***readest-enhanced***](apps/readest-enhanced.md) | *Unofficial, an enhanced version of Readest, a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience.*..[ *read more* ](apps/readest-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readest-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readest-enhanced) | -| | [***remnote***](apps/remnote.md) | *Make flashcards in your notes. Cut study time in half. Use evidence-based memory techniques to create flashcards that resurface at the best time for retention.*..[ *read more* ](apps/remnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/remnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/remnote) | -| | [***rustdict***](apps/rustdict.md) | *A dictionary CLI tool in Rust inspired by BetaPictoris's dict.*..[ *read more* ](apps/rustdict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rustdict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rustdict) | -| | [***ser-player***](apps/ser-player.md) | *Video player for SER files used for astronomy-imaging.*..[ *read more* ](apps/ser-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ser-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ser-player) | -| | [***sigil***](apps/sigil.md) | *Sigil is a multi-platform EPUB ebook editor.*..[ *read more* ](apps/sigil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sigil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sigil) | -| | [***smath-studio***](apps/smath-studio.md) | *Tiny, but powerful mathematical program with WYSIWYG editor.*..[ *read more* ](apps/smath-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smath-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smath-studio) | -| | [***snapshot-slider***](apps/snapshot-slider.md) | *Present/print/email Snapshots of modern mathematics.*..[ *read more* ](apps/snapshot-slider.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snapshot-slider) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snapshot-slider) | -| | [***stellarium***](apps/stellarium.md) | *Planetarium that shows a realistic sky in 3D.*..[ *read more* ](apps/stellarium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stellarium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stellarium) | -| | [***studymd***](apps/studymd.md) | *Flashcards from Markdown.*..[ *read more* ](apps/studymd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/studymd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/studymd) | -| | [***superproductivity***](apps/superproductivity.md) | *An advanced todo list app with integrated Timeboxing.*..[ *read more* ](apps/superproductivity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superproductivity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superproductivity) | -| | [***thorium-reader***](apps/thorium-reader.md) | *Desktop application to read ebooks.*..[ *read more* ](apps/thorium-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thorium-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thorium-reader) | -| | [***tweaksophia***](apps/tweaksophia.md) | *An app to automatically renew the books of the SophiA system.*..[ *read more* ](apps/tweaksophia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tweaksophia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tweaksophia) | -| | [***whu-library-seat***](apps/whu-library-seat.md) | *Wuhan University Library Assistant, for Jinan University.*..[ *read more* ](apps/whu-library-seat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whu-library-seat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whu-library-seat) | -| | [***xgetter***](apps/xgetter.md) | *Download video on Youtube, Facebook, X(Twitter), Instagram, Tiktok, Bilibili, Douyin and more.*..[ *read more* ](apps/xgetter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xgetter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xgetter) | -| | [***xiphos***](apps/xiphos.md) | *Unofficial, a Bible study tool using GTK.*..[ *read more* ](apps/xiphos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xiphos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xiphos) | -| | [***zegrapher***](apps/zegrapher.md) | *Math graphing software.*..[ *read more* ](apps/zegrapher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zegrapher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zegrapher) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/emulator.md b/emulator.md deleted file mode 100644 index 5b3911cbf..000000000 --- a/emulator.md +++ /dev/null @@ -1,224 +0,0 @@ -# EMULATOR - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **95** programs and **1** items for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***86box***](apps/86box.md) | *Emulator of x86-based machines based on PCem.*..[ *read more* ](apps/86box.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/86box) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/86box) | -| | [***86box-enhanced***](apps/86box-enhanced.md) | *Unofficial, emulator of x86-based machines based on PCem.*..[ *read more* ](apps/86box-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/86box-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/86box-enhanced) | -| | [***adb***](apps/platform-tools.md) | *Command-line tool for communicating with Android devices or emulators. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***amiberry***](apps/amiberry.md) | *Unofficial, optimized Amiga emulator.*..[ *read more* ](apps/amiberry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amiberry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amiberry) | -| | [***ares***](apps/ares.md) | *AppImage for the ares emulator.*..[ *read more* ](apps/ares.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ares) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ares) | -| | [***ares-emu***](apps/ares-emu.md) | *Unofficial AppImage of the ares emulator.*..[ *read more* ](apps/ares-emu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ares-emu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ares-emu) | -| | [***azaharplus***](apps/azaharplus.md) | *A fork of the Azahar 3DS emulator with extra features an open-source 3DS emulator project based on Citra.*..[ *read more* ](apps/azaharplus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/azaharplus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/azaharplus) | -| | [***azaharplus-pkg-extractor***](apps/azaharplus-pkg-extractor.md) | *Standalone PKG extractor CLI based on code that used to be in ShadPS4 PlayStation 4 emulator written in C++.*..[ *read more* ](apps/azaharplus-pkg-extractor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/azaharplus-pkg-extractor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/azaharplus-pkg-extractor) | -| | [***basilisk2***](apps/basilisk2.md) | *Classic Macintosh emulator BasiliskII.*..[ *read more* ](apps/basilisk2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basilisk2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basilisk2) | -| | [***basiliskii-enhanced***](apps/basiliskii-enhanced.md) | *Unofficial, classic Macintosh emulator BasiliskII.*..[ *read more* ](apps/basiliskii-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basiliskii-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basiliskii-enhanced) | -| | [***blizzard-4***](apps/blizzard-4.md) | *Emulator & toolchain for the Blizzard 4 16-bit computer.*..[ *read more* ](apps/blizzard-4.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blizzard-4) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blizzard-4) | -| | [***botframework-emulator***](apps/botframework-emulator.md) | *Test and debug chat bots built with Bot Framework SDK.*..[ *read more* ](apps/botframework-emulator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/botframework-emulator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/botframework-emulator) | -| | [***brs-emu-app***](apps/brs-emu-app.md) | *BrightScript Emulator, runs on browsers and Electron apps.*..[ *read more* ](apps/brs-emu-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brs-emu-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brs-emu-app) | -| | [***cemu***](apps/cemu.md) | *A Nintendo Wii U emulator that is able to run most Wii U games.*..[ *read more* ](apps/cemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cemu) | -| | [***cemu-enhanced***](apps/cemu-enhanced.md) | *Unofficial AppImage of Cemu, Nintendo Wii U emulator that is able to run most Wii U games, which is able to work on any linux distro.*..[ *read more* ](apps/cemu-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cemu-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cemu-enhanced) | -| | [***clk***](apps/clk.md) | *Unofficial, a latency hating emulator for 8 and 16 bit platforms.*..[ *read more* ](apps/clk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clk) | -| | [***craftos-pc***](apps/craftos-pc.md) | *Advanced ComputerCraft emulator written in C++.*..[ *read more* ](apps/craftos-pc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/craftos-pc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/craftos-pc) | -| | [***desmume***](apps/desmume.md) | *Unofficial AppImage of the DeSmuME emulator.*..[ *read more* ](apps/desmume.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/desmume) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/desmume) | -| | [***dolphin-emu***](apps/dolphin-emu.md) | *Unofficial, GameCube/Nintento Wii emulator with improvements.*..[ *read more* ](apps/dolphin-emu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dolphin-emu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dolphin-emu) | -| | [***dolphin-emu-nightly***](apps/dolphin-emu-nightly.md) | *Unofficial nightly AppImage of the Dolphin emulator.*..[ *read more* ](apps/dolphin-emu-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dolphin-emu-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dolphin-emu-nightly) | -| | [***domterm***](apps/domterm.md) | *DOM/JavaScript-based terminal-emulator/console.*..[ *read more* ](apps/domterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/domterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/domterm) | -| | [***dosbox-x***](apps/dosbox-x.md) | *Unofficial, DOSBox-X is a cross-platform DOS emulator for running many MS-DOS games.*..[ *read more* ](apps/dosbox-x.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dosbox-x) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dosbox-x) | -| | [***duckstation***](apps/duckstation.md) | *PlayStation 1, aka PSX games Emulator.*..[ *read more* ](apps/duckstation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duckstation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duckstation) | -| | [***duckstation-gpl-enhanced***](apps/duckstation-gpl-enhanced.md) | *Unofficial, fast PlayStation 1 emulator when it was still using GPLv3.*..[ *read more* ](apps/duckstation-gpl-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duckstation-gpl-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duckstation-gpl-enhanced) | -| | [***eden***](apps/eden.md) | *An experimental open-source emulator for Nintendo Switch (yuzu fork).*..[ *read more* ](apps/eden.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eden) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eden) | -| | [***eden-nightly***](apps/eden-nightly.md) | *An experimental open-source emulator for Nintendo Switch (yuzu fork, nightly builds).*..[ *read more* ](apps/eden-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eden-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eden-nightly) | -| | [***eka2l1***](apps/eka2l1.md) | *A Symbian OS/N-Gage emulator*..[ *read more* ](apps/eka2l1.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eka2l1) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eka2l1) | -| | [***epsxe***](apps/epsxe.md) | *Unofficial, enhanced PSX emulator.*..[ *read more* ](apps/epsxe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/epsxe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/epsxe) | -| | [***flycast***](apps/flycast.md) | *A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator.*..[ *read more* ](apps/flycast.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flycast) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flycast) | -| | [***flycast-dojo***](apps/flycast-dojo.md) | *Flycast fork, multiplatform Sega Dreamcast, Naomi and Atomiswave emulator for netplay, training & online tournament gameplay.*..[ *read more* ](apps/flycast-dojo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flycast-dojo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flycast-dojo) | -| | [***flycast-enhanced***](apps/flycast-enhanced.md) | *Unofficial, A Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator.*..[ *read more* ](apps/flycast-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flycast-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flycast-enhanced) | -| | [***gameimage***](apps/gameimage.md) | *Pack a runner/emulator/game and it's configs in a single AppImage.*..[ *read more* ](apps/gameimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gameimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gameimage) | -| | [***gearboy***](apps/gearboy.md) | *Unofficial, Game Boy / Gameboy Color emulator.*..[ *read more* ](apps/gearboy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearboy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearboy) | -| | [***gearcoleco***](apps/gearcoleco.md) | *Unofficial, ColecoVision emulator.*..[ *read more* ](apps/gearcoleco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearcoleco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearcoleco) | -| | [***geargrafx***](apps/geargrafx.md) | *Unofficial, PC Engine / TurboGrafx-16 / SuperGrafx / PCE CD-ROM² emulator.*..[ *read more* ](apps/geargrafx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geargrafx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geargrafx) | -| | [***gearlynx***](apps/gearlynx.md) | *Unofficial, Atari Lynx emulator.*..[ *read more* ](apps/gearlynx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearlynx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearlynx) | -| | [***gearsystem***](apps/gearsystem.md) | *Unofficial, Sega Master System / Game Gear / SG-1000 emulator.*..[ *read more* ](apps/gearsystem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearsystem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearsystem) | -| | [***hades-emu***](apps/hades-emu.md) | *A Nintendo Game Boy Advance Emulator.*..[ *read more* ](apps/hades-emu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hades-emu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hades-emu) | -| | [***hatari***](apps/hatari.md) | *Unofficial, an Atari ST and STE emulator.*..[ *read more* ](apps/hatari.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hatari) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hatari) | -| | [***iris***](apps/iris.md) | *Sony PlayStation 2 games emulator for Windows, Linux and macOS.*..[ *read more* ](apps/iris.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iris) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iris) | -| | [***iris-enhanced***](apps/iris-enhanced.md) | *Unofficial, Sony PlayStation 2 emulator.*..[ *read more* ](apps/iris-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iris-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iris-enhanced) | -| | [***jgenesis***](apps/jgenesis.md) | *Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (GUI).*..[ *read more* ](apps/jgenesis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jgenesis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jgenesis) | -| | [***jgenesis-cli***](apps/jgenesis-cli.md) | *Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (CLI).*..[ *read more* ](apps/jgenesis-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jgenesis-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jgenesis-cli) | -| | [***kega-fusion***](apps/kega-fusion.md) | *Unofficial, an emulator of classic Sega consoles, including SMS/GG, Genesis/Megadrive and add-ons.*..[ *read more* ](apps/kega-fusion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kega-fusion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kega-fusion) | -| | [***kronos***](apps/kronos.md) | *Unofficial, Sega Saturn emulator.*..[ *read more* ](apps/kronos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kronos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kronos) | -| | [***lutris***](apps/lutris.md) | *Unofficial. Install and play video games from all eras and from most gaming systems, by leveraging and combining existing emulators, WINE included.*..[ *read more* ](apps/lutris.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lutris) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lutris) | -| | [***mame***](apps/mame.md) | *Unofficial AppImage of MAME emulator.*..[ *read more* ](apps/mame.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mame) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mame) | -| | [***mednafen***](apps/mednafen.md) | *Unofficial AppImage. Mednafen is a portable, utilizing OpenGL and SDL, argument(command-line)-driven multi-system emulator.*..[ *read more* ](apps/mednafen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mednafen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mednafen) | -| | [***meganimus***](apps/meganimus.md) | *A launcher for native and emulator games.*..[ *read more* ](apps/meganimus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/meganimus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/meganimus) | -| | [***melonds***](apps/melonds.md) | *DS emulator, sorta.*..[ *read more* ](apps/melonds.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/melonds) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/melonds) | -| | [***melonmix***](apps/melonmix.md) | *KH Melon Mix (DS Emulator) DS emulator, sorta DS emulator, sorta.*..[ *read more* ](apps/melonmix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/melonmix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/melonmix) | -| | [***mgba***](apps/mgba.md) | *Game Boy Advance Emulator.*..[ *read more* ](apps/mgba.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mgba) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mgba) | -| | [***mgba-enhanced***](apps/mgba-enhanced.md) | *Unofficial, Game Boy Advance Emulator.*..[ *read more* ](apps/mgba-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mgba-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mgba-enhanced) | -| | [***mini-vmac***](apps/mini-vmac.md) | *Unofficial, a miniature Macintosh 68K emulator.*..[ *read more* ](apps/mini-vmac.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mini-vmac) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mini-vmac) | -| | [***modemu2k***](apps/modemu2k.md) | *A Hayes AT-command modem emulator that bridges a serial interface to TCP/Telnet.*..[ *read more* ](apps/modemu2k.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/modemu2k) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/modemu2k) | -| | [***neko-project-ii-kai***](apps/neko-project-ii-kai.md) | *Unofficial, a PC-9801 series emulator.*..[ *read more* ](apps/neko-project-ii-kai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neko-project-ii-kai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neko-project-ii-kai) | -| | [***nestopia***](apps/nestopia.md) | *Unofficial, Cross-platform Nestopia NES emulator core with a GUI.*..[ *read more* ](apps/nestopia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nestopia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nestopia) | -| | [***nexen***](apps/nexen.md) | *Multi-system emulator (NES, SNES, GB, GBA, PCE, SMS/GG, WS).*..[ *read more* ](apps/nexen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nexen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nexen) | -| | [***openmsx***](apps/openmsx.md) | *Unofficial, the MSX emulator that aims for perfection.*..[ *read more* ](apps/openmsx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openmsx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openmsx) | -| | [***pcsx-redux-enhanced***](apps/pcsx-redux-enhanced.md) | *Unofficial, modern fork of the pcsxr PlayStation 1 emulator focused on reverse engineering and homebrew development.*..[ *read more* ](apps/pcsx-redux-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcsx-redux-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcsx-redux-enhanced) | -| | [***pcsx2***](apps/pcsx2.md) | *PCSX2 is a free and open-source PlayStation 2 (PS2) emulator, using a combination of MIPS CPU Interpreters, Recompilers and a Virtual Machine which manages hardware states and PS2 system memory. This allows you to play PS2 games on your PC, with many additional features and benefits.*..[ *read more* ](apps/pcsx2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcsx2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcsx2) | -| | [***pcsx2-nightly***](apps/pcsx2-nightly.md) | *PCSX2 is a free and open-source PlayStation 2 (PS2) emulator, using a combination of MIPS CPU Interpreters, Recompilers and a Virtual Machine which manages hardware states and PS2 system memory. This allows you to play PS2 games on your PC, with many additional features and benefits. This is the nightly version.*..[ *read more* ](apps/pcsx2-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcsx2-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcsx2-nightly) | -| | [***play***](apps/play.md) | *Play! is a PlayStation2 games emulator.*..[ *read more* ](apps/play.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/play) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/play) | -| | [***play-enhanced***](apps/play-enhanced.md) | *Unofficial, a PlayStation2 emulator.*..[ *read more* ](apps/play-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/play-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/play-enhanced) | -| | [***ppsspp***](apps/ppsspp.md) | *PSP emulator written in C++.*..[ *read more* ](apps/ppsspp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ppsspp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ppsspp) | -| | [***primehack***](apps/primehack.md) | *Unofficial AppImage of the PrimeHack emulator.*..[ *read more* ](apps/primehack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/primehack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/primehack) | -| | [***punes***](apps/punes.md) | *Qt-based Nintendo Entertaiment System emulator and NSF/NSF2/NSFe Music Player.*..[ *read more* ](apps/punes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/punes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/punes) | -| | [***qemu***](apps/qemu.md) | *Unofficial, a generic and open source machine & userspace emulator and virtualizer, to run a virtual machines.*..[ *read more* ](apps/qemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qemu) | -| | [***retroarch***](apps/retroarch.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch) | -| | [***retroarch-nightly***](apps/retroarch-nightly.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch-nightly) | -| | [***retroarch-qt***](apps/retroarch-qt.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch-qt) | -| | [***retroarch-qt-nightly***](apps/retroarch-qt-nightly.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch-qt-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch-qt-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch-qt-nightly) | -| | [***rmg-enhanced***](apps/rmg-enhanced.md) | *Unofficial AppImage of RMG N64 emulator wtih x86-64-v3 optimizations and smaller size.*..[ *read more* ](apps/rmg-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rmg-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rmg-enhanced) | -| | [***rpcs3***](apps/rpcs3.md) | *An open-source PlayStation 3 emulator/debugger written in C++.*..[ *read more* ](apps/rpcs3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rpcs3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rpcs3) | -| | [***ruffle***](apps/ruffle.md) | *A Flash Player emulator written in Rust.*..[ *read more* ](apps/ruffle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ruffle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ruffle) | -| | [***ryujinx***](apps/ryujinx.md) | *An open-source Nintendo Switch emulator, originally created by gdkchan, written in C#.*..[ *read more* ](apps/ryujinx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ryujinx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ryujinx) | -| | [***ryujinx-canary***](apps/ryujinx-canary.md) | *An open-source Nintendo Switch emulator, originally created by gdkchan, written in C# (Canary builds).*..[ *read more* ](apps/ryujinx-canary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ryujinx-canary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ryujinx-canary) | -| | [***shadps4***](apps/shadps4.md) | *An early PlayStation 4 emulator written in C++.*..[ *read more* ](apps/shadps4.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shadps4) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shadps4) | -| | [***shadps4-qtlauncher***](apps/shadps4-qtlauncher.md) | *The official Qt launcher for shadps4 PlayStation 4 emulator.*..[ *read more* ](apps/shadps4-qtlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shadps4-qtlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shadps4-qtlauncher) | -| | [***sheepshaver***](apps/sheepshaver.md) | *Classic Macintosh emulator SheepShaver.*..[ *read more* ](apps/sheepshaver.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sheepshaver) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sheepshaver) | -| | [***skyemu***](apps/skyemu.md) | *Game Boy Advance, Game Boy, Game Boy Color, and DS Emulator.*..[ *read more* ](apps/skyemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/skyemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/skyemu) | -| | [***snes9x***](apps/snes9x.md) | *Snes9x - Portable Super Nintendo Entertainment System TM emulator.*..[ *read more* ](apps/snes9x.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snes9x) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snes9x) | -| | [***snes9x-enhanced***](apps/snes9x-enhanced.md) | *Unofficial, Snes9x - Portable Super Nintendo Entertainment System TM emulator.*..[ *read more* ](apps/snes9x-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snes9x-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snes9x-enhanced) | -| | [***stella***](apps/stella.md) | *Unofficial, A multi-platform Atari 2600 Emulator.*..[ *read more* ](apps/stella.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stella) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stella) | -| | [***supermodel***](apps/supermodel.md) | *Unofficial, Sega Model 3 arcade emulator.*..[ *read more* ](apps/supermodel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supermodel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supermodel) | -| | [***tetanes***](apps/tetanes.md) | *A cross-platform NES emulator written in Rust using wgpu.*..[ *read more* ](apps/tetanes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tetanes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tetanes) | -| | [***touchhle***](apps/touchhle.md) | *Unofficial, High-level emulator for iPhone OS apps.*..[ *read more* ](apps/touchhle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/touchhle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/touchhle) | -| | [***vita3k***](apps/vita3k.md) | *Experimental PlayStation Vita emulator.*..[ *read more* ](apps/vita3k.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vita3k) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vita3k) | -| | [***xemu***](apps/xemu.md) | *Original Xbox Emulator.*..[ *read more* ](apps/xemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xemu) | -| | [***xemu-enhanced***](apps/xemu-enhanced.md) | *Unofficial, original Xbox Emulator for Windows, macOS, and Linux (Active Development).*..[ *read more* ](apps/xemu-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xemu-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xemu-enhanced) | -| | [***xenia-canary***](apps/xenia-canary.md) | *Unofficial AppImage of xenia-canary Xbox360 emulator.*..[ *read more* ](apps/xenia-canary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xenia-canary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xenia-canary) | -| | [***xenia-edge***](apps/xenia-edge.md) | *Xbox 360 Emulator Research Project, fork of the Xenia emulator, with the aim of quicker iteration and improvements to Vulkan backend.*..[ *read more* ](apps/xenia-edge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xenia-edge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xenia-edge) | -| | [***xm8***](apps/xm8.md) | *PC-8801 emulator.*..[ *read more* ](apps/xm8.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xm8) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xm8) | -| | [***ymir***](apps/ymir.md) | *Unofficial, Sega Saturn emulator.*..[ *read more* ](apps/ymir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ymir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ymir) | -| | [***zsnes***](apps/zsnes.md) | *Unofficial, a Super Nintendo emulator.*..[ *read more* ](apps/zsnes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zsnes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zsnes) | -| | [***zxinfo-file-browser***](apps/zxinfo-file-browser.md) | *Organize and manage your emulator files for ZX Spectrum.*..[ *read more* ](apps/zxinfo-file-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zxinfo-file-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zxinfo-file-browser) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/faq.html b/faq.html new file mode 100644 index 000000000..03caf5541 --- /dev/null +++ b/faq.html @@ -0,0 +1,128 @@ + + + + + + FAQ - PORTABLE LINUX APPS + + + + + + + + + + + + + + + + +
    + +
    +

    FAQ

    +
    + +
    + +
    +

    The install button doesn't work

    +

    The "Install" button on each app page uses the pla-install:// protocol. You need a helper application to handle it.

    +

    Install AM-GUI or AppGallery to register the protocol handler and enable one-click installation. (Under Development)

    +

    Alternatively, install apps manually via AM on the command line.

    +
    + +
    +

    What are the portable linux apps?

    +

    Portable Linux Apps are standalone applications for GNU/Linux that can (theoretically) run everywhere, also on a USB stick. These applications can be AppImage packages (see appimage.org) or standalone archives (for example Firefox, Thunderbird...).

    +
    + +
    +

    How is this site different from other sites that list AppImage packages?

    +

    This catalog aims to survey and list all the AppImages and autonomous programs, and aims to provide a centralized point where you can document yourself on individual apps and where you can easily reach the URLs to the sources, both through the pages dedicated to each app and by reading the "installation scripts".

    +

    Yeah, each app has its own installation script, PKGBUILD style, but with an alternative package manager named "AM", which works like the more classic APT, PacMan/YAY, DNF... and which can therefore place them in specific paths of the filesystem , like any program, and allows updates via a system of scripts called "AM-updater". If an app can't update itself, the dedicated "AM-updater" script will use an application-specific method to always update your favorite apps to the latest version. FOR REAL!

    +

    This catalog is open source. You can edit its pages, update them and see the sources clearly, as a "wiki".

    + +

    About other catalogs

    +

    While I recognize the role they have had so far in supporting the diffusion of AppImage as a packaging format, through the years, as a former user, I would like to underline what led me to open an alternative catalogue:

    +
      +
    • "appimage.github.io" serves more than anything else to catalog the AppImages based on validation processes based on Github Actions (i.e. that the package is compatible with old versions of Ubuntu LTS). From the developer's point of view it's fine, but from the point of view of the user who searches for AppImage packages without going into the depths of the internet, it's totally useless. As a catalog it is limited to showing only that an app exists or has existed in the past, without worrying about obsolete packages that no longer exist, but still listed only "to make up the numbers". Many pages have no buttons to the sources and all pages have no additional information on individual apps, each page is simply a copy/paste message that says that the app "is available as an AppImage which means one app = one file..." etcetera etcetera.
    • +
    • "appimagehub.com" hosts applications not always provided by the original developer, just check the profile of whoever uploaded the application and how many "products" they uploaded. Some admit that they are not the developers, despite having a donation button available, effectively leading them to earning on work of others, and are often greedy enough to not include the real source! These profiles use random hosting services for these applications, and Pling's APIs does not allow you to clearly verify the origin of any package that is downloaded. There is no control over this, and the only validity check of a "product" is the feedback of the users who use it, and which in any case is not sufficient either to guarantee the safety of an app, nor to do justice to the real owner of that package, who was in fact "robbed" of its work.
    • +
    +

    Furthermore, none of them track updates consistently.

    +

    From the aforementioned defects I understood what a catalog of portable applications should NOT do to be reliable.

    +
    + +
    +

    How can I improve the pages on this site?

    +

    All app data is stored as JSON files sourced from the AM application list. Each app has a corresponding file in the apps/ folder with its description, sites, sources and screenshots, generated by the am2pla-site script.

    +
      +
    • app icons must be 128x128 PNG files placed in the icons/ folder, named after the app;
    • +
    • the application lists are automatically generated by this script. Any changes to the lists and descriptions must be made to this file, which is the general list of apps managed by "AM"/"AppMan";
    • +
    +

    For any suggestions, open an issue at https://github.com/ivan-hc/AM or a pull request at https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io

    +
    + +
    +

    How can I add or improve info about an app on this site?

    +

    If you want to improve an app's page in this catalogue (i.e. add more detailed description, screenshots, sites, etc.), read on.

    +

    The app files in apps folder are in a simple markdown-ish format.

    +
      +
    1. Create a text file like this: +
      +# some app
      +description of your app.
      +only use **bold**, *italic*, ++underline++, lists markdown here
      +- do not add links or images here
      +- use SOURCES field if you package someone else's app
      +
      +# SCREENSHOTS: https://coyoteclan.github.io/Portable-Linux-Apps.github.io/contribute_ss.png https://coyoteclan.github.io/Portable-Linux-Apps.github.io/contribute_ss.png
      +# SITES: https://someapp.io
      +# SOURCES: https://github.com/name/someapp-appimage
      +# BUTTONS: Label_of_Button::https://discord.gg Donation_Link::https://someapp.io/donate
      +
      +

      Explanation of the fields:

      +
        +
      • SCREENSHOTS: a space separated list of image URLs
      • +
      • SITES: space separated site URLs that provide the AppImage
      • +
      • SOURCES: if you are packaging someone's else's app, link the git repo(s) here
      • +
      • BUTTONS: space separated button definitions in the form of Button_Title::URL
      • +
      +
    2. +
    3. Copy the app's icon (should be of same name) to icons folder.
    4. +
    +
    + +
    +

    Is there a centralized repository for AppImage packages?

    +

    Depends on what you mean by "centralized package repository", if you mean a repository that stores them all like Debian-based distributions do with DEB packages, no, there are thousands of packages, and they are usually distributed to remote sites and difficult to find.

    +

    If instead you mean an AUR-style repo with scripts that easily find all AppImages, you're in the right place!

    +

    This catalog and its CLI, "AM", make it easy for you to find, install, integrate and update all AppImage packages!

    +

    This catalog is just the frontend for an ever growing database that aims to extend not only to x86_64 architecture apps listed here, but also to all others, from the modern ARM64/aarch64 to oldest i686, as an universal solution for all AppImages and portable programs for GNU/Linux!

    +
    + +

    ← Back to home

    +
    +
    + +
    + + + + diff --git a/file-manager.md b/file-manager.md deleted file mode 100644 index 4861753d2..000000000 --- a/file-manager.md +++ /dev/null @@ -1,154 +0,0 @@ -# FILE MANAGER - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **26** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***camelot***](apps/camelot.md) | *Camelot is cross-platform file manager written in C.*..[ *read more* ](apps/camelot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/camelot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/camelot) | -| | [***cask***](apps/cask.md) | *A universal, distributed binary file manager.*..[ *read more* ](apps/cask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cask) | -| | [***clifm***](apps/clifm.md) | *The shell-like, command line terminal file manager simple, fast, extensible, and lightweight as hell.*..[ *read more* ](apps/clifm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clifm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clifm) | -| | [***cloud-browser***](apps/cloud-browser.md) | *Access to files located in various cloud services.*..[ *read more* ](apps/cloud-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cloud-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cloud-browser) | -| | [***corefm***](apps/corefm.md) | *A lightweight file-manager for C Suite.*..[ *read more* ](apps/corefm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corefm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corefm) | -| | [***dfilemanager***](apps/dfilemanager.md) | *File manager written in Qt and C++.*..[ *read more* ](apps/dfilemanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dfilemanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dfilemanager) | -| | [***doublecmd-gtk***](apps/doublecmd-gtk.md) | *Two-panel file manager, also known as Double Commander.*..[ *read more* ](apps/doublecmd-gtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doublecmd-gtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doublecmd-gtk) | -| | [***doublecmd-qt***](apps/doublecmd-qt.md) | *Two-panel file manager, also known as Double Commander.*..[ *read more* ](apps/doublecmd-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doublecmd-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doublecmd-qt) | -| | [***file-commander***](apps/file-commander.md) | *CLI, cross-platform Total Commander-like orthodox file manager.*..[ *read more* ](apps/file-commander.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file-commander) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file-commander) | -| | [***filebrowser***](apps/filebrowser.md) | *Web File Browser.*..[ *read more* ](apps/filebrowser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filebrowser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filebrowser) | -| | [***filebrowser-quantum***](apps/filebrowser-quantum.md) | *Web File Browser.*..[ *read more* ](apps/filebrowser-quantum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filebrowser-quantum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filebrowser-quantum) | -| | [***fman***](apps/fman.md) | *TUI CLI File Manager.*..[ *read more* ](apps/fman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fman) | -| | [***freeman***](apps/freeman.md) | *A free, extensible, cross-platform file manager for power users.*..[ *read more* ](apps/freeman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freeman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freeman) | -| | [***jdnbtexplorer***](apps/jdnbtexplorer.md) | *A Editor for Minecraft NBT files.*..[ *read more* ](apps/jdnbtexplorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdnbtexplorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdnbtexplorer) | -| | [***lf***](apps/lf.md) | *lf, as in "list files" is a terminal file manager written in Go.*..[ *read more* ](apps/lf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lf) | -| | [***nnn***](apps/nnn.md) | *n³ The unorthodox terminal file manager*..[ *read more* ](apps/nnn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nnn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nnn) | -| | [***rcloneview***](apps/rcloneview.md) | *The ultimate GUI for Cloud Data Sync and File Management. Effortlessly browse, organize, transfer files across your cloud storages.*..[ *read more* ](apps/rcloneview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rcloneview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rcloneview) | -| | [***sigma-file-manager***](apps/sigma-file-manager.md) | *A free, open-source, modern file manager.*..[ *read more* ](apps/sigma-file-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sigma-file-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sigma-file-manager) | -| | [***superfile***](apps/superfile.md) | *Pretty fancy and modern terminal file manager.*..[ *read more* ](apps/superfile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superfile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superfile) | -| | [***tere***](apps/tere.md) | *Terminal file explorer.*..[ *read more* ](apps/tere.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tere) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tere) | -| | [***tuxplorer***](apps/tuxplorer.md) | *Tuxplorer is a terminal based file explorer.*..[ *read more* ](apps/tuxplorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tuxplorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tuxplorer) | -| | [***vifm***](apps/vifm.md) | *File manager with curses interface providing Vim-like environment.*..[ *read more* ](apps/vifm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vifm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vifm) | -| | [***walk***](apps/walk.md) | *Terminal file manager.*..[ *read more* ](apps/walk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/walk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/walk) | -| | [***xplorer***](apps/xplorer.md) | *Xplorer, a customizable, modern file manager.*..[ *read more* ](apps/xplorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xplorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xplorer) | -| | [***yazi***](apps/yazi.md) | *Blazing fast terminal file manager written in Rust.*..[ *read more* ](apps/yazi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yazi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yazi) | -| | [***zxinfo-file-browser***](apps/zxinfo-file-browser.md) | *Organize and manage your emulator files for ZX Spectrum.*..[ *read more* ](apps/zxinfo-file-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zxinfo-file-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zxinfo-file-browser) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/finance.md b/finance.md deleted file mode 100644 index 6d476fd91..000000000 --- a/finance.md +++ /dev/null @@ -1,191 +0,0 @@ -# FINANCE - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **63** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***actual***](apps/actual.md) | *A super fast privacy-focused app for managing your finances.*..[ *read more* ](apps/actual.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/actual) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/actual) | -| | [***alephium-wallet***](apps/alephium-wallet.md) | *The official Alephium wallet for desktop.*..[ *read more* ](apps/alephium-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alephium-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alephium-wallet) | -| | [***altitude***](apps/altitude.md) | *The Altitude wallet by Linda Project Inc.*..[ *read more* ](apps/altitude.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altitude) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altitude) | -| | [***anchor***](apps/anchor.md) | *An EOSIO Light Wallet with simple and advanced tools.*..[ *read more* ](apps/anchor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anchor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anchor) | -| | [***animecoin***](apps/animecoin.md) | *Animecoin is a free open source peer-to-peer electronic cash system that is completely decentralized, without the need for a central server or trusted parties. Users hold the crypto keys to their own money and transact directly with each other, with the help of a P2P network to check for double-spending.*..[ *read more* ](apps/animecoin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animecoin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animecoin) | -| | [***aphelion-wallet***](apps/aphelion-wallet.md) | *Aphelion desktop wallet application built with Electron.*..[ *read more* ](apps/aphelion-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aphelion-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aphelion-wallet) | -| | [***ark.desktop.wallet***](apps/ark.desktop.wallet.md) | *Ark Ecosystem Desktop Wallet.*..[ *read more* ](apps/ark.desktop.wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ark.desktop.wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ark.desktop.wallet) | -| | [***asgardex***](apps/asgardex.md) | *Thorchain wallet desktop app.*..[ *read more* ](apps/asgardex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/asgardex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/asgardex) | -| | [***atomicwallet***](apps/atomicwallet.md) | *Atomic vue-electron.*..[ *read more* ](apps/atomicwallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/atomicwallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/atomicwallet) | -| | [***axe-electrum***](apps/axe-electrum.md) | *Axe Electrum Wallet.*..[ *read more* ](apps/axe-electrum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/axe-electrum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/axe-electrum) | -| | [***bitbox-wallet***](apps/bitbox-wallet.md) | *Cryptocurrency hardware wallet desktop app.*..[ *read more* ](apps/bitbox-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bitbox-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bitbox-wallet) | -| | [***bitshares***](apps/bitshares.md) | *Advanced wallet interface for the BitShares financial blockchain.*..[ *read more* ](apps/bitshares.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bitshares) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bitshares) | -| | [***blockstream-green***](apps/blockstream-green.md) | *Bitcoin wallet compatible with Blockstream Jade.*..[ *read more* ](apps/blockstream-green.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blockstream-green) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blockstream-green) | -| | [***cake-wallet***](apps/cake-wallet.md) | *Easily and safely store, send, receive, and exchange your cryptocurrency.*..[ *read more* ](apps/cake-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cake-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cake-wallet) | -| | [***cashonize***](apps/cashonize.md) | *A cross-platform Bitcoin Cash Wallet.*..[ *read more* ](apps/cashonize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cashonize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cashonize) | -| | [***chain-desktop-wallet***](apps/chain-desktop-wallet.md) | *Crypto.com DeFi Desktop Wallet.*..[ *read more* ](apps/chain-desktop-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chain-desktop-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chain-desktop-wallet) | -| | [***concordium-desktop-wallet***](apps/concordium-desktop-wallet.md) | *The official Concordium Dektop Wallet.*..[ *read more* ](apps/concordium-desktop-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/concordium-desktop-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/concordium-desktop-wallet) | -| | [***cro-chain-desktop-bin***](apps/cro-chain-desktop-bin.md) | *Crypto.com DeFi Desktop Wallet, AppImage version.*..[ *read more* ](apps/cro-chain-desktop-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cro-chain-desktop-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cro-chain-desktop-bin) | -| | [***dbet-wallet***](apps/dbet-wallet.md) | *DBET Wallet.*..[ *read more* ](apps/dbet-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbet-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbet-wallet) | -| | [***defichain-app***](apps/defichain-app.md) | *DefiChain Wallet AppImage.*..[ *read more* ](apps/defichain-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/defichain-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/defichain-app) | -| | [***electrumsvp***](apps/electrumsvp.md) | *Bitcoin BSV wallet, fork of ElectrumSV.*..[ *read more* ](apps/electrumsvp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrumsvp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrumsvp) | -| | [***elphyre-walletshell***](apps/elphyre-walletshell.md) | *Elphyrecoin GUI Wallet.*..[ *read more* ](apps/elphyre-walletshell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elphyre-walletshell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elphyre-walletshell) | -| | [***eqonomize***](apps/eqonomize.md) | *Manage your personal finances.*..[ *read more* ](apps/eqonomize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eqonomize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eqonomize) | -| | [***eximchain-wallet***](apps/eximchain-wallet.md) | *Eximchain Wallet web and electron app.*..[ *read more* ](apps/eximchain-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eximchain-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eximchain-wallet) | -| | [***exodus***](apps/exodus.md) | *Send, receive & exchange cryptocurrency. Bitcoin wallet.*..[ *read more* ](apps/exodus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exodus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exodus) | -| | [***fat-wallet***](apps/fat-wallet.md) | *Wallet for FAT tokens.*..[ *read more* ](apps/fat-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fat-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fat-wallet) | -| | [***firefly-desktop***](apps/firefly-desktop.md) | *The official IOTA and Shimmer wallet.*..[ *read more* ](apps/firefly-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefly-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefly-desktop) | -| | [***frame-eth-dev***](apps/frame-eth-dev.md) | *A privacy focused Ethereum wallet.*..[ *read more* ](apps/frame-eth-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/frame-eth-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/frame-eth-dev) | -| | [***grinplusplus***](apps/grinplusplus.md) | *A C++ Grin Node & Wallet.*..[ *read more* ](apps/grinplusplus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grinplusplus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grinplusplus) | -| | [***guarda***](apps/guarda.md) | *A secure, easy-to-use open source multi-platform cryptocurrency wallet.*..[ *read more* ](apps/guarda.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/guarda) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/guarda) | -| | [***keepkey-desktop***](apps/keepkey-desktop.md) | *An all-in-one suite for using your KeepKey hardware wallet.*..[ *read more* ](apps/keepkey-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keepkey-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keepkey-desktop) | -| | [***keibo-moneytracker-x86-64***](apps/keibo-moneytracker-x86-64.md) | *Track your income and expenses easily.*..[ *read more* ](apps/keibo-moneytracker-x86-64.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keibo-moneytracker-x86-64) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keibo-moneytracker-x86-64) | -| | [***kmymoney***](apps/kmymoney.md) | *KMyMoney is a cross-platform personal finance manager build on KDE frameworks technologies for your desktop and notebook environment.*..[ *read more* ](apps/kmymoney.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kmymoney) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kmymoney) | -| | [***lbry-desktop***](apps/lbry-desktop.md) | *A browser and wallet for LBRY.*..[ *read more* ](apps/lbry-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lbry-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lbry-desktop) | -| | [***ledger-live-desktop***](apps/ledger-live-desktop.md) | *Ledger Wallet crypto app. Secure your crypto assets such as Bitcoin, Ethereum, XRP, Monero, and more. Give yourself peace of mind by knowing that your cryptocurrencies are safe.*..[ *read more* ](apps/ledger-live-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ledger-live-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ledger-live-desktop) | -| | [***lescovex***](apps/lescovex.md) | *Lescovex decentralized exchange, wallet and contract issuer.*..[ *read more* ](apps/lescovex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lescovex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lescovex) | -| | [***lightning***](apps/lightning.md) | *Lightning Wallet Application.*..[ *read more* ](apps/lightning.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lightning) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lightning) | -| | [***lightning-peach-wallet***](apps/lightning-peach-wallet.md) | *Wallet for lightning network*..[ *read more* ](apps/lightning-peach-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lightning-peach-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lightning-peach-wallet) | -| | [***mdl***](apps/mdl.md) | *MDL wallet.*..[ *read more* ](apps/mdl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mdl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mdl) | -| | [***mytonwallet***](apps/mytonwallet.md) | *Feature-rich web wallet and browser extension for TON Network.*..[ *read more* ](apps/mytonwallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mytonwallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mytonwallet) | -| | [***nanovault***](apps/nanovault.md) | *Wallet for interacting with Nano.*..[ *read more* ](apps/nanovault.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nanovault) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nanovault) | -| | [***neon***](apps/neon.md) | *Light wallet for NEO blockchain.*..[ *read more* ](apps/neon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neon) | -| | [***nexus-wallet***](apps/nexus-wallet.md) | *Official interface layers of the Nexus Software Stack.*..[ *read more* ](apps/nexus-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nexus-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nexus-wallet) | -| | [***niffler***](apps/niffler.md) | *A grin gui wallet.*..[ *read more* ](apps/niffler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/niffler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/niffler) | -| | [***nix-bucks***](apps/nix-bucks.md) | *A money tracker. Your income and expenses at your control. Finance.*..[ *read more* ](apps/nix-bucks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nix-bucks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nix-bucks) | -| | [***nunchuk***](apps/nunchuk.md) | *Desktop bitcoin wallet with multisig, hardware, nfc and air-gapped key support.*..[ *read more* ](apps/nunchuk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nunchuk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nunchuk) | -| | [***nym-wallet***](apps/nym-wallet.md) | *Use the Nym network and take advantage of it.*..[ *read more* ](apps/nym-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nym-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nym-wallet) | -| | [***onekey-wallet***](apps/onekey-wallet.md) | *Open source crypto wallet.*..[ *read more* ](apps/onekey-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onekey-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onekey-wallet) | -| | [***owallet***](apps/owallet.md) | *A comprehensive Ontology desktop wallet.*..[ *read more* ](apps/owallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/owallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/owallet) | -| | [***oxen-gui-wallet***](apps/oxen-gui-wallet.md) | *Oxen electron GUI wallet.*..[ *read more* ](apps/oxen-gui-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oxen-gui-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oxen-gui-wallet) | -| | [***parallelcoin***](apps/parallelcoin.md) | *Parallelcoin qt wallet appimage binary.*..[ *read more* ](apps/parallelcoin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parallelcoin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parallelcoin) | -| | [***parity-fether***](apps/parity-fether.md) | *Fether Wallet.*..[ *read more* ](apps/parity-fether.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parity-fether) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parity-fether) | -| | [***radix-wallet***](apps/radix-wallet.md) | *Radix DLT desktop wallet.*..[ *read more* ](apps/radix-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/radix-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/radix-wallet) | -| | [***ryowallet***](apps/ryowallet.md) | *Modern GUI interface for Ryo Currency.*..[ *read more* ](apps/ryowallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ryowallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ryowallet) | -| | [***sheikah***](apps/sheikah.md) | *A Witnet compatible desktop wallet.*..[ *read more* ](apps/sheikah.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sheikah) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sheikah) | -| | [***simpleos***](apps/simpleos.md) | *EOS Blockchain Interface & Wallet.*..[ *read more* ](apps/simpleos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simpleos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simpleos) | -| | [***solarwallet***](apps/solarwallet.md) | *Stellar wallet. Secure and user-friendly.*..[ *read more* ](apps/solarwallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/solarwallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/solarwallet) | -| | [***spark-wallet***](apps/spark-wallet.md) | *A wallet GUI for c-lightning, accessible over web/mobile/pc.*..[ *read more* ](apps/spark-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spark-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spark-wallet) | -| | [***stack-wallet***](apps/stack-wallet.md) | *Stack Wallet, a multicoin, cryptocurrency wallet.*..[ *read more* ](apps/stack-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stack-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stack-wallet) | -| | [***trinity-desktop***](apps/trinity-desktop.md) | *Desktop wallet for IOTA.*..[ *read more* ](apps/trinity-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trinity-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trinity-desktop) | -| | [***verto***](apps/verto.md) | *A multi-currency crypto wallet with support for EOS & VTX.*..[ *read more* ](apps/verto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/verto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/verto) | -| | [***wallettech***](apps/wallettech.md) | *BytechCoin GUI Wallet.*..[ *read more* ](apps/wallettech.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wallettech) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wallettech) | -| | [***whirlpool-gui***](apps/whirlpool-gui.md) | *Desktop GUI for Whirlpool by Samourai-Wallet.*..[ *read more* ](apps/whirlpool-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whirlpool-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whirlpool-gui) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/game.md b/game.md deleted file mode 100644 index 9c6ea0d3c..000000000 --- a/game.md +++ /dev/null @@ -1,499 +0,0 @@ -# GAME - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **332** programs and **39** items for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***0ad***](apps/0ad.md) | *FOSS historical Real Time Strategy, RTS game of ancient warfare.*..[ *read more* ](apps/0ad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/0ad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/0ad) | -| | [***0ad-prerelease***](apps/0ad-prerelease.md) | *FOSS historical Real Time Strategy, RTS game of ancient warfare (Pre-release).*..[ *read more* ](apps/0ad-prerelease.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/0ad-prerelease) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/0ad-prerelease) | -| | [***3d-puzzles***](apps/3d-puzzles.md) | *3D-Puzzles are Rubik, Dogic and Dogic12.*..[ *read more* ](apps/3d-puzzles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/3d-puzzles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/3d-puzzles) | -| | [***aaaaxy***](apps/aaaaxy.md) | *A nonlinear puzzle platformer, game.*..[ *read more* ](apps/aaaaxy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aaaaxy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aaaaxy) | -| | [***adobe-flash-player***](apps/adobe-flash-player.md) | *Unofficial port. Adobe Flash is a mostly discontinued multimedia software platform used for production of animations, rich internet applications, desktop applications, mobile apps, mobile games, and embedded web browser video players. Over 67 billion devices use adobe flash player!*..[ *read more* ](apps/adobe-flash-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/adobe-flash-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/adobe-flash-player) | -| | [***aisleriot***](apps/aisleriot.md) | *Unofficial. A card game featuring over 80 different solitaire-type card games.*..[ *read more* ](apps/aisleriot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aisleriot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aisleriot) | -| | [***akhenaten***](apps/akhenaten.md) | *Unofficial, open-source engine for Pharaoh (+Cleopatra) city-building game.*..[ *read more* ](apps/akhenaten.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/akhenaten) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/akhenaten) | -| | [***alvr***](apps/alvr.md) | *Stream VR games from your PC to your headset via Wi-Fi.*..[ *read more* ](apps/alvr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alvr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alvr) | -| | [***amethyst-mod-manager***](apps/amethyst-mod-manager.md) | *A Linux native mod manager for a variety of games.*..[ *read more* ](apps/amethyst-mod-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amethyst-mod-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amethyst-mod-manager) | -| | [***antimicrox***](apps/antimicrox.md) | *Use a gamepad to control a variety of programs.*..[ *read more* ](apps/antimicrox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antimicrox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antimicrox) | -| | [***arcade-manager***](apps/arcade-manager.md) | *Manage your rom collection, Games/Retropie & Recalbox.*..[ *read more* ](apps/arcade-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arcade-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arcade-manager) | -| | [***archipelago***](apps/archipelago.md) | *Archipelago Multi-Game Randomizer and Server.*..[ *read more* ](apps/archipelago.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archipelago) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archipelago) | -| | [***archisteamfarm***](apps/archisteamfarm.md) | *C# application with primary purpose of farming Steam cards from multiple accounts simultaneously.*..[ *read more* ](apps/archisteamfarm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archisteamfarm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archisteamfarm) | -| | [***arena-tracker***](apps/arena-tracker.md) | *Deck Tracker for Hearthstone game with arena in focus.*..[ *read more* ](apps/arena-tracker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arena-tracker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arena-tracker) | -| | [***arma3-unix-launcher***](apps/arma3-unix-launcher.md) | *ArmA 3 Unix Launcher, game.*..[ *read more* ](apps/arma3-unix-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arma3-unix-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arma3-unix-launcher) | -| | [***armagetronad***](apps/armagetronad.md) | *Multiplayer game in 3d that emulates the movie "Tron".*..[ *read more* ](apps/armagetronad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/armagetronad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/armagetronad) | -| | [***artix***](apps/artix.md) | *One app. All your favorite Artix games.*..[ *read more* ](apps/artix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/artix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/artix) | -| | [***augustus***](apps/augustus.md) | *An open source re-implementation of the game Caesar III.*..[ *read more* ](apps/augustus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/augustus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/augustus) | -| | [***augustus-enhanced***](apps/augustus-enhanced.md) | *Unofficial, a fork of the Julius project that intends to incorporate gameplay changes.*..[ *read more* ](apps/augustus-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/augustus-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/augustus-enhanced) | -| | [***azaharplus-pkg-extractor***](apps/azaharplus-pkg-extractor.md) | *Standalone PKG extractor CLI based on code that used to be in ShadPS4 PlayStation 4 emulator written in C++.*..[ *read more* ](apps/azaharplus-pkg-extractor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/azaharplus-pkg-extractor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/azaharplus-pkg-extractor) | -| | [***badlion***](apps/badlion.md) | *Most Complete All-In-One Mod Library for Minecraft with 100+ Mods.*..[ *read more* ](apps/badlion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/badlion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/badlion) | -| | [***berserkerquake2***](apps/berserkerquake2.md) | *Berserker@Quake2 game engine, ported to SDL2 library.*..[ *read more* ](apps/berserkerquake2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/berserkerquake2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/berserkerquake2) | -| | [***beyond-all-reason***](apps/beyond-all-reason.md) | *3D Real-Time Strategy Total Annihilation Inspired, game.*..[ *read more* ](apps/beyond-all-reason.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beyond-all-reason) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beyond-all-reason) | -| | [***bezique***](apps/bezique.md) | *Plays bezique game against the AI.*..[ *read more* ](apps/bezique.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bezique) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bezique) | -| | [***billard-gl***](apps/billard-gl.md) | *Unofficial. 3D billiards game, play a game of 8-ball or 9-ball.*..[ *read more* ](apps/billard-gl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/billard-gl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/billard-gl) | -| | [***biplanes-revival***](apps/biplanes-revival.md) | *An old cellphone arcade recreated for PC.*..[ *read more* ](apps/biplanes-revival.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biplanes-revival) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biplanes-revival) | -| | [***black-chocobo***](apps/black-chocobo.md) | *FF7 Save Game Editor.*..[ *read more* ](apps/black-chocobo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/black-chocobo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/black-chocobo) | -| | [***blockbench***](apps/blockbench.md) | *Editor for boxy models and pixel art textures like Minecraft.*..[ *read more* ](apps/blockbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blockbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blockbench) | -| | [***boardgamestar***](apps/boardgamestar.md) | *A platform for playing digital boardgames.*..[ *read more* ](apps/boardgamestar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boardgamestar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boardgamestar) | -| | [***boilr***](apps/boilr.md) | *Synchronize games from other platforms into your Steam library.*..[ *read more* ](apps/boilr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boilr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boilr) | -| | [***bomber***](apps/kdegames.md) | *Arcade spaceship game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***bottles***](apps/bottles.md) | *Unofficial. Manage wine prefixes and run Windows software & games in a new way.*..[ *read more* ](apps/bottles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottles) | -| | [***bovo***](apps/kdegames.md) | *Five in a row game from. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***bugdom***](apps/bugdom.md) | *Pangea Software's Bugdom game.*..[ *read more* ](apps/bugdom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bugdom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bugdom) | -| | [***c-evo***](apps/c-evo.md) | *C-evo is an empire building game based on Civilization II, but with a different focus. It aims to be a pure game with all players playing to win.*..[ *read more* ](apps/c-evo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/c-evo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/c-evo) | -| | [***cartridges***](apps/cartridges.md) | *Unofficial. Game launcher, which helps you visualize your game collection and easily launch games.*..[ *read more* ](apps/cartridges.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cartridges) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cartridges) | -| | [***casterr***](apps/casterr.md) | *Screen recorder, easing recording and clipping in-game.*..[ *read more* ](apps/casterr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/casterr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/casterr) | -| | [***cavoke***](apps/cavoke.md) | *Platform to create/host multiplayer turn-based board games.*..[ *read more* ](apps/cavoke.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cavoke) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cavoke) | -| | [***cdogs-sdl***](apps/cdogs-sdl.md) | *Unofficial, classic overhead run-and-gun game.*..[ *read more* ](apps/cdogs-sdl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cdogs-sdl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cdogs-sdl) | -| | [***celeste64***](apps/celeste64.md) | *A game made by the Celeste developers.*..[ *read more* ](apps/celeste64.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celeste64) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celeste64) | -| | [***cemu***](apps/cemu.md) | *A Nintendo Wii U emulator that is able to run most Wii U games.*..[ *read more* ](apps/cemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cemu) | -| | [***cemu-enhanced***](apps/cemu-enhanced.md) | *Unofficial AppImage of Cemu, Nintendo Wii U emulator that is able to run most Wii U games, which is able to work on any linux distro.*..[ *read more* ](apps/cemu-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cemu-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cemu-enhanced) | -| | [***cheatbreaker***](apps/cheatbreaker.md) | *The free FPS boosting modpack for Minecraft 1.7 & 1.8.*..[ *read more* ](apps/cheatbreaker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cheatbreaker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cheatbreaker) | -| | [***chess-tui***](apps/chess-tui.md) | *Play chess from your terminal.*..[ *read more* ](apps/chess-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chess-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chess-tui) | -| | [***chessmd***](apps/chessmd.md) | *Open source chess training software. Play against bots, analyze with engines, explore chess openings, and more.*..[ *read more* ](apps/chessmd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chessmd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chessmd) | -| | [***chromium-bsu***](apps/chromium-bsu.md) | *Unofficial. Fast paced arcade style scrolling space shooter, game.*..[ *read more* ](apps/chromium-bsu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-bsu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-bsu) | -| | [***classicube***](apps/classicube.md) | *Unofficial, Custom Minecraft Classic / ClassiCube client written in C from scratch*..[ *read more* ](apps/classicube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/classicube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/classicube) | -| | [***cncra2yr***](apps/cncra2yr.md) | *C&C Red Alert 2, a real-time strategy game by Westwood Pacific.*..[ *read more* ](apps/cncra2yr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cncra2yr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cncra2yr) | -| | [***coal-launcher***](apps/coal-launcher.md) | *A client to view and play games from the AB Coal website.*..[ *read more* ](apps/coal-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coal-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coal-launcher) | -| | [***crawl-ncurses***](apps/crawl-ncurses.md) | *open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - ncurses version (terminal)*..[ *read more* ](apps/crawl-ncurses.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crawl-ncurses) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crawl-ncurses) | -| | [***crawl-tiles***](apps/crawl-tiles.md) | *open-source, single-player, role-playing roguelike game of exploration and treasure-hunting - graphical version (SDL)*..[ *read more* ](apps/crawl-tiles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crawl-tiles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crawl-tiles) | -| | [***crg-data-tool***](apps/crg-data-tool.md) | *A tool for working with Games Data files from CRG.*..[ *read more* ](apps/crg-data-tool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crg-data-tool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crg-data-tool) | -| | [***crispy-doom***](apps/crispy-doom.md) | *Unofficial, a limit-removing enhanced-resolution Doom source port based on Chocolate Doom.*..[ *read more* ](apps/crispy-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crispy-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crispy-doom) | -| | [***cromagrally***](apps/cromagrally.md) | *The wildest racing game since man invented the wheel!*..[ *read more* ](apps/cromagrally.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cromagrally) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cromagrally) | -| | [***cromagrally-enhanced***](apps/cromagrally-enhanced.md) | *Unofficial, the wildest racing game since man invented the wheel!*..[ *read more* ](apps/cromagrally-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cromagrally-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cromagrally-enhanced) | -| | [***cuberite***](apps/cuberite.md) | *Unofficial, a lightweight, fast and extensible game server for Minecraft.*..[ *read more* ](apps/cuberite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cuberite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cuberite) | -| | [***curseforge***](apps/curseforge.md) | *Discover endless mods for your favorite games, or forge your own and share them with millions.*..[ *read more* ](apps/curseforge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/curseforge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/curseforge) | -| | [***cutechess***](apps/cutechess.md) | *Cute Chess is a GUI, a CLI and a library for playing chess.*..[ *read more* ](apps/cutechess.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cutechess) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cutechess) | -| | [***deadgame-2048***](apps/deadgame-2048.md) | *GUI tool available for ALL platforms.*..[ *read more* ](apps/deadgame-2048.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deadgame-2048) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deadgame-2048) | -| | [***dealers-choice***](apps/dealers-choice.md) | *A cross-platform, networked multiplayer poker game supporting draw, stud, and community-card variants, including Texas.*..[ *read more* ](apps/dealers-choice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dealers-choice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dealers-choice) | -| | [***deerportal***](apps/deerportal.md) | *Full of the diamonds board game.*..[ *read more* ](apps/deerportal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deerportal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deerportal) | -| | [***defold***](apps/defold.md) | *Unofficial, Defold is a completely free to use game engine for development of games.*..[ *read more* ](apps/defold.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/defold) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/defold) | -| | [***dethrace***](apps/dethrace.md) | *Unofficial, reverse engineering the 1997 game "Carmageddon".*..[ *read more* ](apps/dethrace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dethrace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dethrace) | -| | [***dhewm3***](apps/dhewm3.md) | *Unofficial, doom 3 GPL source port.*..[ *read more* ](apps/dhewm3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dhewm3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dhewm3) | -| | [***dinosaurplanetrecompiled***](apps/dinosaurplanetrecompiled.md) | *A static recompilation/native port of the game Dinosaur Planet.*..[ *read more* ](apps/dinosaurplanetrecompiled.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dinosaurplanetrecompiled) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dinosaurplanetrecompiled) | -| | [***discord***](apps/discord.md) | *Unofficial. All-in-one voice and text chat for gamers that's free, secure, and works on both your desktop and phone.*..[ *read more* ](apps/discord.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/discord) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/discord) | -| | [***dolphin-emu***](apps/dolphin-emu.md) | *Unofficial, GameCube/Nintento Wii emulator with improvements.*..[ *read more* ](apps/dolphin-emu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dolphin-emu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dolphin-emu) | -| | [***doom64exultra***](apps/doom64exultra.md) | *Unofficial, A fork of DOOM64EX+ with new stuff and fixes.*..[ *read more* ](apps/doom64exultra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doom64exultra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doom64exultra) | -| | [***dosbox-x***](apps/dosbox-x.md) | *Unofficial, DOSBox-X is a cross-platform DOS emulator for running many MS-DOS games.*..[ *read more* ](apps/dosbox-x.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dosbox-x) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dosbox-x) | -| | [***dr-robotniks-ring-racers***](apps/dr-robotniks-ring-racers.md) | *Unofficial, kart racing video game originally based on SRB2Kart.*..[ *read more* ](apps/dr-robotniks-ring-racers.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dr-robotniks-ring-racers) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dr-robotniks-ring-racers) | -| | [***droidcam***](apps/droidcam.md) | *A DroidCam AppImage for the Steam Deck/SteamOS 3.0.*..[ *read more* ](apps/droidcam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/droidcam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/droidcam) | -| | [***dsda-doom***](apps/dsda-doom.md) | *This is a successor of prboom+ with extra tooling for demo recording and playback, with a focus on speedrunning and quality of life.*..[ *read more* ](apps/dsda-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dsda-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dsda-doom) | -| | [***duckstation***](apps/duckstation.md) | *PlayStation 1, aka PSX games Emulator.*..[ *read more* ](apps/duckstation.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duckstation) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duckstation) | -| | [***duckstation-gpl-enhanced***](apps/duckstation-gpl-enhanced.md) | *Unofficial, fast PlayStation 1 emulator when it was still using GPLv3.*..[ *read more* ](apps/duckstation-gpl-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duckstation-gpl-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duckstation-gpl-enhanced) | -| | [***dusklight***](apps/dusklight.md) | *Dusklight brings a classic adventure to PC and mobile platforms with a variety of fixes and improvements.*..[ *read more* ](apps/dusklight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dusklight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dusklight) | -| | [***dust3d***](apps/dust3d.md) | *3D modeling software for games, 3D printing, and so on.*..[ *read more* ](apps/dust3d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dust3d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dust3d) | -| | [***dwarffortress***](apps/dwarffortress.md) | *A Dwarf Fortress game. Build a fortress and try to help your dwarves survive against a deeply generated world.*..[ *read more* ](apps/dwarffortress.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dwarffortress) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dwarffortress) | -| | [***eden***](apps/eden.md) | *An experimental open-source emulator for Nintendo Switch (yuzu fork).*..[ *read more* ](apps/eden.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eden) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eden) | -| | [***eden-nightly***](apps/eden-nightly.md) | *An experimental open-source emulator for Nintendo Switch (yuzu fork, nightly builds).*..[ *read more* ](apps/eden-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eden-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eden-nightly) | -| | [***eksplode.re***](apps/eksplode.re.md) | *Bomberman game made with Godot under BSD3.*..[ *read more* ](apps/eksplode.re.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eksplode.re) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eksplode.re) | -| | [***en-croissant***](apps/en-croissant.md) | *The Ultimate Chess Toolkit.*..[ *read more* ](apps/en-croissant.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/en-croissant) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/en-croissant) | -| | [***endless-sky***](apps/endless-sky.md) | *Space exploration and combat game.*..[ *read more* ](apps/endless-sky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/endless-sky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/endless-sky) | -| | [***eternal-lands***](apps/eternal-lands.md) | *3D fantasy multiplayer online role playing game.*..[ *read more* ](apps/eternal-lands.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eternal-lands) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eternal-lands) | -| | [***eternalmodmanager***](apps/eternalmodmanager.md) | *A cross platform mod manager for DOOM Eternal.*..[ *read more* ](apps/eternalmodmanager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eternalmodmanager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eternalmodmanager) | -| | [***exsplode.re***](apps/exsplode.re.md) | *A Bomberman game made with Godot under BSD3.*..[ *read more* ](apps/exsplode.re.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exsplode.re) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exsplode.re) | -| | [***extremetuxracer***](apps/extremetuxracer.md) | *Unofficial. 3D racing game with Tux, the Linux penguin.*..[ *read more* ](apps/extremetuxracer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/extremetuxracer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/extremetuxracer) | -| | [***fafarunner***](apps/fafarunner.md) | *A game developed using flutter and flame.*..[ *read more* ](apps/fafarunner.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fafarunner) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fafarunner) | -| | [***farmhand***](apps/farmhand.md) | *A resource management game that puts a farm in your hand.*..[ *read more* ](apps/farmhand.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/farmhand) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/farmhand) | -| | [***flare***](apps/flare.md) | *Fantasy action RPG game using the FLARE engine.*..[ *read more* ](apps/flare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flare) | -| | [***flashpoint***](apps/flashpoint.md) | *Flashpoint Archive is a community effort to preserve games and animations from the web.*..[ *read more* ](apps/flashpoint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flashpoint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flashpoint) | -| | [***flycast-dojo***](apps/flycast-dojo.md) | *Flycast fork, multiplatform Sega Dreamcast, Naomi and Atomiswave emulator for netplay, training & online tournament gameplay.*..[ *read more* ](apps/flycast-dojo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flycast-dojo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flycast-dojo) | -| | [***foobar2000***](apps/foobar2000.md) | *Unofficial, an advanced freeware audio player for Windows, includes WINE.*..[ *read more* ](apps/foobar2000.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foobar2000) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foobar2000) | -| | [***foobillardpp***](apps/foobillardpp.md) | *Unofficial, an OpenGL Billard Game based on foobillard 3.0a with patches and new features.*..[ *read more* ](apps/foobillardpp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foobillardpp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foobillardpp) | -| | [***freetexturepacker***](apps/freetexturepacker.md) | *Creates sprite sheets for you game or site, graphics.*..[ *read more* ](apps/freetexturepacker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freetexturepacker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freetexturepacker) | -| | [***funkin***](apps/funkin.md) | *A rhythm game made with HaxeFlixel*..[ *read more* ](apps/funkin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/funkin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/funkin) | -| | [***funkin-legacy***](apps/funkin-legacy.md) | *Legacy GLibC Linux support for Friday Night Funkin. A rhythm game made with HaxeFlixel.*..[ *read more* ](apps/funkin-legacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/funkin-legacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/funkin-legacy) | -| | [***gameconqueror***](apps/gameconqueror.md) | *Unofficial. Memory scanner designed to isolate the adress of an arbitrary variable in an executing process (gtk GUI).*..[ *read more* ](apps/gameconqueror.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gameconqueror) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gameconqueror) | -| | [***gamehub***](apps/gamehub.md) | *Unified library for all your games from different platforms.*..[ *read more* ](apps/gamehub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gamehub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gamehub) | -| | [***gameimage***](apps/gameimage.md) | *Pack a runner/emulator/game and it's configs in a single AppImage.*..[ *read more* ](apps/gameimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gameimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gameimage) | -| | [***gamescope***](apps/gamescope.md) | *Unofficial AppImage of gamescope.*..[ *read more* ](apps/gamescope.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gamescope) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gamescope) | -| | [***gdevelop***](apps/gdevelop.md) | *Cross-platform game engine designed to be used by everyone.*..[ *read more* ](apps/gdevelop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gdevelop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gdevelop) | -| | [***gdlauncher***](apps/gdlauncher.md) | *Simple, yet powerful Minecraft custom launcher.*..[ *read more* ](apps/gdlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gdlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gdlauncher) | -| | [***gearboy***](apps/gearboy.md) | *Unofficial, Game Boy / Gameboy Color emulator.*..[ *read more* ](apps/gearboy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearboy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearboy) | -| | [***gearsystem***](apps/gearsystem.md) | *Unofficial, Sega Master System / Game Gear / SG-1000 emulator.*..[ *read more* ](apps/gearsystem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gearsystem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gearsystem) | -| | [***geforcenow-electron***](apps/geforcenow-electron.md) | *Desktop client for Nvidia GeForce NOW game streaming.*..[ *read more* ](apps/geforcenow-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geforcenow-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geforcenow-electron) | -| | [***gm-companion***](apps/gm-companion.md) | *A tool for rpg gamemasters.*..[ *read more* ](apps/gm-companion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gm-companion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gm-companion) | -| | [***gnu-freedink***](apps/gnu-freedink.md) | *Unofficial, a portable and enhanced version of the Dink Smallwood game engine.*..[ *read more* ](apps/gnu-freedink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnu-freedink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnu-freedink) | -| | [***godot***](apps/godot.md) | *Multi-platform 2D and 3D game engine with a feature-rich editor.*..[ *read more* ](apps/godot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/godot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/godot) | -| | [***granatier***](apps/kdegames.md) | *Bomberman clone. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***greenlight***](apps/greenlight.md) | *Client for xCloud and Xbox home streaming made in Typescript.*..[ *read more* ](apps/greenlight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/greenlight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/greenlight) | -| | [***hades-emu***](apps/hades-emu.md) | *A Nintendo Game Boy Advance Emulator.*..[ *read more* ](apps/hades-emu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hades-emu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hades-emu) | -| | [***hastyheroes***](apps/hastyheroes.md) | *An endless 2D jumping game.*..[ *read more* ](apps/hastyheroes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hastyheroes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hastyheroes) | -| | [***helion***](apps/helion.md) | *A modern fast paced Doom FPS engine.*..[ *read more* ](apps/helion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helion) | -| | [***helioslauncher***](apps/helioslauncher.md) | *Custom launcher for modded minecraft written in Electron.*..[ *read more* ](apps/helioslauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helioslauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helioslauncher) | -| | [***heroic-games-launcher***](apps/heroic-games-launcher.md) | *A Native GOG and Epic Games Launcher for Linux.*..[ *read more* ](apps/heroic-games-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/heroic-games-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/heroic-games-launcher) | -| | [***highlite***](apps/highlite.md) | *A RuneLite-esque Client for the game High Spell.*..[ *read more* ](apps/highlite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/highlite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/highlite) | -| | [***hmcl***](apps/hmcl.md) | *A Minecraft Launcher which is multi-functional, cross-platform and popular.*..[ *read more* ](apps/hmcl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hmcl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hmcl) | -| | [***hugor***](apps/hugor.md) | *A cross-platform, multimedia interpreter for Hugo adventure games.*..[ *read more* ](apps/hugor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hugor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hugor) | -| | [***hydra***](apps/hydra.md) | *Game launcher with its own embedded bittorrent client.*..[ *read more* ](apps/hydra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hydra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hydra) | -| | [***icestudio***](apps/icestudio.md) | *A real gamechanger in the world of Open Source FPGAs.*..[ *read more* ](apps/icestudio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/icestudio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/icestudio) | -| | [***instead***](apps/instead.md) | *Simple Text Adventures Interpreter.*..[ *read more* ](apps/instead.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/instead) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/instead) | -| | [***international-doom***](apps/international-doom.md) | *Small, functional and simple source ports, created with help, efforts and bits of code from people around the world.*..[ *read more* ](apps/international-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/international-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/international-doom) | -| | [***iqpuzzle***](apps/iqpuzzle.md) | *A challenging pentomino puzzle.*..[ *read more* ](apps/iqpuzzle.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iqpuzzle) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iqpuzzle) | -| | [***iris***](apps/iris.md) | *Sony PlayStation 2 games emulator for Windows, Linux and macOS.*..[ *read more* ](apps/iris.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iris) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iris) | -| | [***iris-enhanced***](apps/iris-enhanced.md) | *Unofficial, Sony PlayStation 2 emulator.*..[ *read more* ](apps/iris-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iris-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iris-enhanced) | -| | [***ironwail***](apps/ironwail.md) | *High-performance QuakeSpasm fork QuakeSpasm. A modern, cross-platform Quake game engine based on FitzQuake.*..[ *read more* ](apps/ironwail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ironwail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ironwail) | -| | [***itch.io***](apps/itch.io.md) | *A simple way to find and share indie games online for free.*..[ *read more* ](apps/itch.io.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/itch.io) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/itch.io) | -| | [***itgmania***](apps/itgmania.md) | *Unofficial, a fork of StepMania 5.1, an advanced cross-platform rhythm game for home and arcade use.*..[ *read more* ](apps/itgmania.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/itgmania) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/itgmania) | -| | [***jdminecraftlauncher***](apps/jdminecraftlauncher.md) | *Unofficial classic styled Minecraft Launcher.*..[ *read more* ](apps/jdminecraftlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdminecraftlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdminecraftlauncher) | -| | [***jdnbtexplorer***](apps/jdnbtexplorer.md) | *A Editor for Minecraft NBT files.*..[ *read more* ](apps/jdnbtexplorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdnbtexplorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdnbtexplorer) | -| | [***jgenesis***](apps/jgenesis.md) | *Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (GUI).*..[ *read more* ](apps/jgenesis.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jgenesis) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jgenesis) | -| | [***jgenesis-cli***](apps/jgenesis-cli.md) | *Sega Genesis, Sega CD, SNES, Master System, Game Gear emulator (CLI).*..[ *read more* ](apps/jgenesis-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jgenesis-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jgenesis-cli) | -| | [***jklubtv***](apps/jklubtv.md) | *Chess Round Robin Tournament Manager.*..[ *read more* ](apps/jklubtv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jklubtv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jklubtv) | -| | [***joy2droidx***](apps/joy2droidx.md) | *Turn Android phones into virtual Xbox 360 controller.*..[ *read more* ](apps/joy2droidx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/joy2droidx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/joy2droidx) | -| | [***julius***](apps/julius.md) | *An open source re-implementation of the Caesar III game.*..[ *read more* ](apps/julius.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/julius) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/julius) | -| | [***kajongg***](apps/kdegames.md) | *An ancient Chinese board game for 4 players. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kapman***](apps/kdegames.md) | *Pac-Man clone. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***katomic***](apps/kdegames.md) | *Edu. game based around molecular geometry. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kblackbox***](apps/kdegames.md) | *A game of hide and seek. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kblocks***](apps/kdegames.md) | *Classic Tetris / falling blocks game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kboard***](apps/kboard.md) | *Terminal game to practice keyboard typing.*..[ *read more* ](apps/kboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kboard) | -| | [***kbounce***](apps/kdegames.md) | *Fill the field game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kbreakout***](apps/kdegames.md) | *Destroy bricks without losing the ball. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kdegames***](apps/kdegames.md) | *Unofficial, Full & updatable KDE Games suite, metapackage.*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kdiamond***](apps/kdegames.md) | *Diamond game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kfourinline***](apps/kdegames.md) | *4 in row game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kgoldrunner***](apps/kdegames.md) | *A game with a runner and gold. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kigo***](apps/kdegames.md) | *Go strategic board game for two players. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***killbots***](apps/kdegames.md) | *Port of the classic console game Robots. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kiriki***](apps/kdegames.md) | *A dice game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kjumpingcube***](apps/kdegames.md) | *A game of dices on a board. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***klickety***](apps/kdegames.md) | *Color matching like SameGame. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***klines***](apps/kdegames.md) | *Inspired by well known game of Color Lines. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kmahjongg***](apps/kdegames.md) | *Mahjongg game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kmines***](apps/kdegames.md) | *Classic mine game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***knavalbattle***](apps/kdegames.md) | *Battle Ship game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***knetwalk***](apps/kdegames.md) | *Net constructing game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***knights***](apps/knights.md) | *Unofficial, KDE's chess game frontend.*..[ *read more* ](apps/knights.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/knights) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/knights) | -| | [***kolf***](apps/kdegames.md) | *Mini Golf game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kollision***](apps/kdegames.md) | *Dodge red balls in the field. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***konquest***](apps/kdegames.md) | *Game of planets. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kpat***](apps/kdegames.md) | *Klondike, Spider, Free Cell and other Solitaire. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kreversi***](apps/kdegames.md) | *Reversi game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***krunker***](apps/krunker.md) | *Krunker (.io) is a fast-paced first-person shooter game with pixel graphics.*..[ *read more* ](apps/krunker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/krunker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/krunker) | -| | [***kshisen***](apps/kdegames.md) | *A game similar to Mahjongg. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksirk***](apps/kdegames.md) | *A strategy board game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksnakeduel***](apps/kdegames.md) | *A snake race game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kspaceduel***](apps/kdegames.md) | *Battleship with satellites in the space. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksquares***](apps/kdegames.md) | *Win with most number of completed squares. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksudoku***](apps/kdegames.md) | *Sudoku game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ktuberling***](apps/kdegames.md) | *Simple Mr. Potato game for children. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kubrick***](apps/kdegames.md) | *A logic game based on Rubik's Cube. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***lambda-lantern***](apps/lambda-lantern.md) | *A 3D game about functional programming patterns.*..[ *read more* ](apps/lambda-lantern.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lambda-lantern) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lambda-lantern) | -| | [***legendary-kingdoms***](apps/legendary-kingdoms.md) | *Implementation of Legendary Kingdoms Gamebooks in C++.*..[ *read more* ](apps/legendary-kingdoms.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/legendary-kingdoms) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/legendary-kingdoms) | -| | [***liground***](apps/liground.md) | *A mordern Chess Variant Analysis GUI, game.*..[ *read more* ](apps/liground.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/liground) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/liground) | -| | [***linedancer***](apps/linedancer.md) | *Arcade game and entry for Ludum Dare 35.*..[ *read more* ](apps/linedancer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linedancer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linedancer) | -| | [***linuxtoys***](apps/linuxtoys.md) | *Unofficial, a user-friendly collection of tools to make your life on Linux easier than ever. Useful scripts for gamers, developers and enthusiasts.*..[ *read more* ](apps/linuxtoys.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxtoys) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxtoys) | -| | [***liquidlauncher***](apps/liquidlauncher.md) | *The official Minecraft launcher for LiquidBounce.*..[ *read more* ](apps/liquidlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/liquidlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/liquidlauncher) | -| | [***love***](apps/love.md) | *The unquestionably awesome 2D game engine.*..[ *read more* ](apps/love.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/love) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/love) | -| | [***lskat***](apps/kdegames.md) | *Fun and engaging card game for two players. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***lunar-client***](apps/lunar-client.md) | *Free Minecraft Client, a modpack for all versions of Minecraft.*..[ *read more* ](apps/lunar-client.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lunar-client) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lunar-client) | -| | [***lutris***](apps/lutris.md) | *Unofficial. Install and play video games from all eras and from most gaming systems, by leveraging and combining existing emulators, WINE included.*..[ *read more* ](apps/lutris.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lutris) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lutris) | -| | [***lutris-gamepad-ui***](apps/lutris-gamepad-ui.md) | *A simple, TV-friendly, gamepad-navigable frontend for the Lutris game launcher on Linux.*..[ *read more* ](apps/lutris-gamepad-ui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lutris-gamepad-ui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lutris-gamepad-ui) | -| | [***m***](apps/m.md) | *Data oriented programming language for game developers.*..[ *read more* ](apps/m.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/m) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/m) | -| | [***mangbandclient***](apps/mangbandclient.md) | *A free online multi-player realtime roguelike game.*..[ *read more* ](apps/mangbandclient.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangbandclient) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangbandclient) | -| | [***maniadrive***](apps/maniadrive.md) | *Unofficial, an open-source clone of the popular racing game TrackMania.*..[ *read more* ](apps/maniadrive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/maniadrive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/maniadrive) | -| | [***mcpelauncher***](apps/mcpelauncher.md) | *The main repo for the Linux Bedrock edition Minecraft launcher.*..[ *read more* ](apps/mcpelauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mcpelauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mcpelauncher) | -| | [***megaglest***](apps/megaglest.md) | *MegaGlest real-time strategy game engine (cross-platform, 3-d).*..[ *read more* ](apps/megaglest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/megaglest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/megaglest) | -| | [***meganimus***](apps/meganimus.md) | *A launcher for native and emulator games.*..[ *read more* ](apps/meganimus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/meganimus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/meganimus) | -| | [***mgba***](apps/mgba.md) | *Game Boy Advance Emulator.*..[ *read more* ](apps/mgba.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mgba) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mgba) | -| | [***mgba-enhanced***](apps/mgba-enhanced.md) | *Unofficial, Game Boy Advance Emulator.*..[ *read more* ](apps/mgba-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mgba-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mgba-enhanced) | -| | [***mine-craft.io***](apps/mine-craft.io.md) | *Minecraft and even more!*..[ *read more* ](apps/mine-craft.io.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mine-craft.io) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mine-craft.io) | -| | [***minecraft-launcher***](apps/minecraft-launcher.md) | *Game downloader and launcher for Minecraft.*..[ *read more* ](apps/minecraft-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/minecraft-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/minecraft-launcher) | -| | [***minififa***](apps/minififa.md) | *OpenGL-powered third-person football, soccer game.*..[ *read more* ](apps/minififa.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/minififa) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/minififa) | -| | [***mki3dgame***](apps/mki3dgame.md) | *A game of searching, in 3D stages.*..[ *read more* ](apps/mki3dgame.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mki3dgame) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mki3dgame) | -| | [***mmapper***](apps/mmapper.md) | *Graphical MUD client for the game MUME.*..[ *read more* ](apps/mmapper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mmapper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mmapper) | -| | [***moon-lander***](apps/moon-lander.md) | *Moon Lander is a 2D game of gravity. Land your ship on the lading pad.*..[ *read more* ](apps/moon-lander.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moon-lander) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moon-lander) | -| | [***moondeck-buddy***](apps/moondeck-buddy.md) | *A server-side part of the MoonDeck plugin for the SteamDeck.*..[ *read more* ](apps/moondeck-buddy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moondeck-buddy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moondeck-buddy) | -| | [***moonlight***](apps/moonlight.md) | *Stream games from your NVIDIA GameStream-enabled PC.*..[ *read more* ](apps/moonlight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moonlight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moonlight) | -| | [***mudlet***](apps/mudlet.md) | *Mudlet is a platform for gaming and enhancing game-play primarily with MUDs.*..[ *read more* ](apps/mudlet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mudlet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mudlet) | -| | [***multimc***](apps/multimc.md) | *A Minecraft launcher.*..[ *read more* ](apps/multimc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/multimc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/multimc) | -| | [***music-quiz***](apps/music-quiz.md) | *Jepardy like game, guess as many songs as possible.*..[ *read more* ](apps/music-quiz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/music-quiz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/music-quiz) | -| | [***naev***](apps/naev.md) | *A 2d action/rpg space game that combines elements from the action.*..[ *read more* ](apps/naev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/naev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/naev) | -| | [***nanosaur***](apps/nanosaur.md) | *Pangea Software’s game, adventure of a cybernetic dinosaur.*..[ *read more* ](apps/nanosaur.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nanosaur) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nanosaur) | -| | [***naruto-arena***](apps/naruto-arena.md) | *Naruto-based online multiplayer strategy game.*..[ *read more* ](apps/naruto-arena.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/naruto-arena) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/naruto-arena) | -| | [***netpanzer***](apps/netpanzer.md) | *Online multiplayer tactical warfare game for fast action combat.*..[ *read more* ](apps/netpanzer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/netpanzer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/netpanzer) | -| | [***newton-adventure***](apps/newton-adventure.md) | *A 2D game with a twist, player can rotate gravity at 360°.*..[ *read more* ](apps/newton-adventure.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/newton-adventure) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/newton-adventure) | -| | [***nexus-mods***](apps/nexus-mods.md) | *A mod installer, creator and manager for all your popular games.*..[ *read more* ](apps/nexus-mods.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nexus-mods) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nexus-mods) | -| | [***notepad++***](apps/notepad++.md) | *Unofficial Appimage of Notepad++, with WINE prefix.*..[ *read more* ](apps/notepad++.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notepad++) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notepad++) | -| | [***nugget-doom***](apps/nugget-doom.md) | *Nugget Doom is a Doom game source port forked from Woof! with additional features.*..[ *read more* ](apps/nugget-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nugget-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nugget-doom) | -| | [***nugget-doom-enhanced***](apps/nugget-doom-enhanced.md) | *Unofficial, a Doom source port forked from Woof! with additional features.*..[ *read more* ](apps/nugget-doom-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nugget-doom-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nugget-doom-enhanced) | -| | [***nychess***](apps/nychess.md) | *A python Chess Engine and AI.*..[ *read more* ](apps/nychess.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nychess) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nychess) | -| | [***nyrna***](apps/nyrna.md) | *Suspend games and applications.*..[ *read more* ](apps/nyrna.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nyrna) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nyrna) | -| | [***obliqoro***](apps/obliqoro.md) | *A cross-platform tauri gui where Oblique Strategies meets Pomodoro.*..[ *read more* ](apps/obliqoro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/obliqoro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/obliqoro) | -| | [***odamex***](apps/odamex.md) | *Unofficial, Online Multiplayer Doom port with a strong focus on the original gameplay while providing a breadth of enhancements.*..[ *read more* ](apps/odamex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/odamex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/odamex) | -| | [***omikuji***](apps/omikuji.md) | *Qt/QML based game launcher for Linux.*..[ *read more* ](apps/omikuji.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omikuji) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omikuji) | -| | [***openarena***](apps/openarena.md) | *Violent & sexy, multiplayer first person shooter game, ioquake3.*..[ *read more* ](apps/openarena.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openarena) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openarena) | -| | [***openblok***](apps/openblok.md) | *A customizable falling block puzzle game like tetris.*..[ *read more* ](apps/openblok.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openblok) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openblok) | -| | [***openhv***](apps/openhv.md) | *A mod for OpenRA based on the Hard Vacuum, game.*..[ *read more* ](apps/openhv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openhv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openhv) | -| | [***openjazz***](apps/openjazz.md) | *Unofficial, open-source version of the classic Jazz Jackrabbit™ games.*..[ *read more* ](apps/openjazz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openjazz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openjazz) | -| | [***openmw***](apps/openmw.md) | *OpenMW is an open-source open-world RPG game engine that supports playing Morrowind.*..[ *read more* ](apps/openmw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openmw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openmw) | -| | [***openop2***](apps/openop2.md) | *Re-implementation of the game Outpost 2, using the OpenRA engine.*..[ *read more* ](apps/openop2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openop2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openop2) | -| | [***openra-dune***](apps/openra-dune.md) | *Real-time strategy game engine, MOD Dune 2000.*..[ *read more* ](apps/openra-dune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openra-dune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openra-dune) | -| | [***openra-enhanced***](apps/openra-enhanced.md) | *Unofficial AppImage of OpenRA containing all 3 game modes.*..[ *read more* ](apps/openra-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openra-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openra-enhanced) | -| | [***openra-red-alert***](apps/openra-red-alert.md) | *Real-time strategy game engine, MOD Red Alert.*..[ *read more* ](apps/openra-red-alert.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openra-red-alert) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openra-red-alert) | -| | [***openra-tiberian-dawn***](apps/openra-tiberian-dawn.md) | *Real-time strategy game engine penGL, MOD TD.*..[ *read more* ](apps/openra-tiberian-dawn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openra-tiberian-dawn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openra-tiberian-dawn) | -| | [***openramodsdk***](apps/openramodsdk.md) | *Dev Kit for building your own games using the OpenRA engine.*..[ *read more* ](apps/openramodsdk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openramodsdk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openramodsdk) | -| | [***openrct2***](apps/openrct2.md) | *Re-implementation of RollerCoaster Tycoon 2 (RCT2), expanding the game with new features.*..[ *read more* ](apps/openrct2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openrct2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openrct2) | -| | [***openrct2-enhanced***](apps/openrct2-enhanced.md) | *Unofficial, Re-implementation of RollerCoaster Tycoon 2 (RCT2), expanding the game with new features.*..[ *read more* ](apps/openrct2-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openrct2-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openrct2-enhanced) | -| | [***openswe1r***](apps/openswe1r.md) | *Racer.*..[ *read more* ](apps/openswe1r.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openswe1r) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openswe1r) | -| | [***openttd***](apps/openttd.md) | *Unofficial, an open source simulation game based upon Transport Tycoon Deluxe.*..[ *read more* ](apps/openttd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openttd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openttd) | -| | [***openxcom-extended***](apps/openxcom-extended.md) | *OXCE, extended version of openXcom provide better mod support, QoL improvements, new game mechanics, improved and new GUIs.*..[ *read more* ](apps/openxcom-extended.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openxcom-extended) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openxcom-extended) | -| | [***osu***](apps/osu.md) | *A free-to-win rhythm game. Rhythm is just a click away!*..[ *read more* ](apps/osu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/osu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/osu) | -| | [***ottomatic***](apps/ottomatic.md) | *Pangea Software’s Otto Matic, a game of robots.*..[ *read more* ](apps/ottomatic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ottomatic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ottomatic) | -| | [***overbind***](apps/overbind.md) | *A utility that allows binding keyboard buttons to virtual Xbox360 controller joystick outputs.*..[ *read more* ](apps/overbind.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/overbind) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/overbind) | -| | [***packsquash***](apps/packsquash.md) | *A Minecraft Java Edition resource and data pack optimizer.*..[ *read more* ](apps/packsquash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/packsquash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/packsquash) | -| | [***palapeli***](apps/kdegames.md) | *Jigsaw puzzle game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***pandoralauncher***](apps/pandoralauncher.md) | *Pandora is a modern Minecraft launcher that balances ease-of-use with powerful instance management features.*..[ *read more* ](apps/pandoralauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pandoralauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pandoralauncher) | -| | [***pandoralaunchercrack***](apps/pandoralaunchercrack.md) | *Customized version of Pandora, a modern Minecraft launcher that balances ease-of-use with powerful instance management features.*..[ *read more* ](apps/pandoralaunchercrack.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pandoralaunchercrack) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pandoralaunchercrack) | -| | [***parsec-linux***](apps/parsec-linux.md) | *Parsec game streaming client.*..[ *read more* ](apps/parsec-linux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parsec-linux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parsec-linux) | -| | [***pcsx-redux-enhanced***](apps/pcsx-redux-enhanced.md) | *Unofficial, modern fork of the pcsxr PlayStation 1 emulator focused on reverse engineering and homebrew development.*..[ *read more* ](apps/pcsx-redux-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcsx-redux-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcsx-redux-enhanced) | -| | [***pcsx2***](apps/pcsx2.md) | *PCSX2 is a free and open-source PlayStation 2 (PS2) emulator, using a combination of MIPS CPU Interpreters, Recompilers and a Virtual Machine which manages hardware states and PS2 system memory. This allows you to play PS2 games on your PC, with many additional features and benefits.*..[ *read more* ](apps/pcsx2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcsx2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcsx2) | -| | [***pcsx2-nightly***](apps/pcsx2-nightly.md) | *PCSX2 is a free and open-source PlayStation 2 (PS2) emulator, using a combination of MIPS CPU Interpreters, Recompilers and a Virtual Machine which manages hardware states and PS2 system memory. This allows you to play PS2 games on your PC, with many additional features and benefits. This is the nightly version.*..[ *read more* ](apps/pcsx2-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcsx2-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcsx2-nightly) | -| | [***pelusica***](apps/pelusica.md) | *Action game, control the blue dot with your keyboard/create music.*..[ *read more* ](apps/pelusica.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pelusica) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pelusica) | -| | [***picmi***](apps/kdegames.md) | *Single player logic-based puzzle game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***pigs-n-cows***](apps/pigs-n-cows.md) | *A relaxing game for children and adults alike.*..[ *read more* ](apps/pigs-n-cows.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pigs-n-cows) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pigs-n-cows) | -| | [***pince***](apps/pince.md) | *Reverse engineering tool for linux games.*..[ *read more* ](apps/pince.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pince) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pince) | -| | [***planes***](apps/planes.md) | *Variant of battleships game.*..[ *read more* ](apps/planes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/planes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/planes) | -| | [***planet-blupi***](apps/planet-blupi.md) | *A delirious spell-binding game.*..[ *read more* ](apps/planet-blupi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/planet-blupi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/planet-blupi) | -| | [***play***](apps/play.md) | *Play! is a PlayStation2 games emulator.*..[ *read more* ](apps/play.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/play) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/play) | -| | [***play-2048***](apps/play-2048.md) | *Another implementation of the 2048 game.*..[ *read more* ](apps/play-2048.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/play-2048) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/play-2048) | -| | [***play-enhanced***](apps/play-enhanced.md) | *Unofficial, a PlayStation2 emulator.*..[ *read more* ](apps/play-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/play-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/play-enhanced) | -| | [***playback***](apps/playback.md) | *Play and manage your cartridges and replay your childhood games.*..[ *read more* ](apps/playback.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playback) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playback) | -| | [***playit***](apps/playit.md) | *Want to run an online game server? playit.gg is a global proxy that allows anyone to host a server without port forwarding.*..[ *read more* ](apps/playit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playit) | -| | [***pokete***](apps/pokete.md) | *A terminal based Pokemon like game.*..[ *read more* ](apps/pokete.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokete) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokete) | -| | [***prey2006***](apps/prey2006.md) | *Unofficial, Prey 2006 SDK integrated with Doom 3 GPL release.*..[ *read more* ](apps/prey2006.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prey2006) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prey2006) | -| | [***prime-world-editor***](apps/prime-world-editor.md) | *Edit world assets from games by Retro Studios.*..[ *read more* ](apps/prime-world-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prime-world-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prime-world-editor) | -| | [***principia***](apps/principia.md) | *Open source physics-based sandbox game.*..[ *read more* ](apps/principia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/principia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/principia) | -| | [***prismlauncher***](apps/prismlauncher.md) | *Launcher for Minecraft, manage multiple installations.*..[ *read more* ](apps/prismlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prismlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prismlauncher) | -| | [***prismlauncher-enhanced***](apps/prismlauncher-enhanced.md) | *Unofficial, a custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once (Fork of MultiMC).*..[ *read more* ](apps/prismlauncher-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prismlauncher-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prismlauncher-enhanced) | -| | [***prismlauncher-qt5***](apps/prismlauncher-qt5.md) | *Launcher for Minecraft, manage multiple installations (Qt5 version).*..[ *read more* ](apps/prismlauncher-qt5.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prismlauncher-qt5) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prismlauncher-qt5) | -| | [***protonup-qt***](apps/protonup-qt.md) | *Manage Proton-GE/Luxtorpeda for Steam/Wine-GE for Lutris.*..[ *read more* ](apps/protonup-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/protonup-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/protonup-qt) | -| | [***psydoom***](apps/psydoom.md) | *A backport of PSX Doom to PC.*..[ *read more* ](apps/psydoom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/psydoom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/psydoom) | -| | [***punes***](apps/punes.md) | *Qt-based Nintendo Entertaiment System emulator and NSF/NSF2/NSFe Music Player.*..[ *read more* ](apps/punes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/punes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/punes) | -| | [***qtads***](apps/qtads.md) | *A cross-platform, multimedia interpreter for TADS adventure games.*..[ *read more* ](apps/qtads.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qtads) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qtads) | -| | [***quantumlauncher-enhanced***](apps/quantumlauncher-enhanced.md) | *Unofficial, a simple, powerful Minecraft launcher.*..[ *read more* ](apps/quantumlauncher-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quantumlauncher-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quantumlauncher-enhanced) | -| | [***r2modman***](apps/r2modman.md) | *Mod manager for several Unity games using Thunderstore.*..[ *read more* ](apps/r2modman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/r2modman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/r2modman) | -| | [***rare***](apps/rare.md) | *GUI for legendary. An Epic Games Launcher open source alternative.*..[ *read more* ](apps/rare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rare) | -| | [***rbdoom-3***](apps/rbdoom-3.md) | *Doom 3 BFG Edition source port with updated DX12/Vulkan renderer.*..[ *read more* ](apps/rbdoom-3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rbdoom-3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rbdoom-3) | -| | [***redeclipse***](apps/redeclipse.md) | *A great first person 3D arena shooter with online support, game.*..[ *read more* ](apps/redeclipse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/redeclipse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/redeclipse) | -| | [***rednukem***](apps/rednukem.md) | *Unofficial, a port of serveral BUILD Engine games based on EDuke32.*..[ *read more* ](apps/rednukem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rednukem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rednukem) | -| | [***redriver2***](apps/redriver2.md) | *Unofficial, Driver 2 Playstation game reverse engineering effort.*..[ *read more* ](apps/redriver2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/redriver2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/redriver2) | -| | [***retroarch***](apps/retroarch.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch) | -| | [***retroarch-nightly***](apps/retroarch-nightly.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch-nightly) | -| | [***retroarch-qt***](apps/retroarch-qt.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch-qt) | -| | [***retroarch-qt-nightly***](apps/retroarch-qt-nightly.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch-qt-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch-qt-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch-qt-nightly) | -| | [***retrom***](apps/retrom.md) | *A centralized game library/collection management service with a focus on emulation.*..[ *read more* ](apps/retrom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retrom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retrom) | -| | [***rigelengine***](apps/rigelengine.md) | *Unofficial, modern re-implementation of DOS game Duke Nukem II.*..[ *read more* ](apps/rigelengine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rigelengine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rigelengine) | -| | [***rocksndiamonds***](apps/rocksndiamonds.md) | *Unofficial, an open source arcade style game of Boulder Dash, Emerald Mine, and Sokoban.*..[ *read more* ](apps/rocksndiamonds.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rocksndiamonds) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rocksndiamonds) | -| | [***roller***](apps/roller.md) | *Unofficial, reverse engineering the 1995 game Whiplash/Fatal Racing.*..[ *read more* ](apps/roller.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/roller) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/roller) | -| | [***rpcs3***](apps/rpcs3.md) | *An open-source PlayStation 3 emulator/debugger written in C++.*..[ *read more* ](apps/rpcs3.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rpcs3) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rpcs3) | -| | [***ryujinx***](apps/ryujinx.md) | *An open-source Nintendo Switch emulator, originally created by gdkchan, written in C#.*..[ *read more* ](apps/ryujinx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ryujinx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ryujinx) | -| | [***ryujinx-canary***](apps/ryujinx-canary.md) | *An open-source Nintendo Switch emulator, originally created by gdkchan, written in C# (Canary builds).*..[ *read more* ](apps/ryujinx-canary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ryujinx-canary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ryujinx-canary) | -| | [***sabaki***](apps/sabaki.md) | *Modern, elegant, cross-platform Go/Baduk/Weiqi game board.*..[ *read more* ](apps/sabaki.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sabaki) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sabaki) | -| | [***samira***](apps/samira.md) | *Steam achievement manager for Linux written with Tauri and Rust.*..[ *read more* ](apps/samira.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/samira) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/samira) | -| | [***samrewritten***](apps/samrewritten.md) | *Steam Achievement Manager For Linux. Rewritten in C++.*..[ *read more* ](apps/samrewritten.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/samrewritten) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/samrewritten) | -| | [***sanicball***](apps/sanicball.md) | *Unofficial, an extraordinarily fast racing game.*..[ *read more* ](apps/sanicball.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sanicball) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sanicball) | -| | [***sblauncher***](apps/sblauncher.md) | *Minecraft Launcher.*..[ *read more* ](apps/sblauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sblauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sblauncher) | -| | [***sc-controller***](apps/sc-controller.md) | *User-mode driver and GTK3 based GUI for Steam Controller.*..[ *read more* ](apps/sc-controller.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sc-controller) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sc-controller) | -| | [***scavengers***](apps/scavengers.md) | *Unity Roguelike tutorial, game.*..[ *read more* ](apps/scavengers.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scavengers) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scavengers) | -| | [***scummvm***](apps/scummvm.md) | *Unofficial, A 'virtual machine' for several classic graphical point-and-click adventure games*..[ *read more* ](apps/scummvm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scummvm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scummvm) | -| | [***serioussamtfe***](apps/serioussamtfe.md) | *Game engine for Serious Sam Classic, TFE.*..[ *read more* ](apps/serioussamtfe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serioussamtfe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serioussamtfe) | -| | [***serioussamtfe-vk***](apps/serioussamtfe-vk.md) | *Game engine for Serious Sam Classic, Vulkan support, TFE.*..[ *read more* ](apps/serioussamtfe-vk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serioussamtfe-vk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serioussamtfe-vk) | -| | [***serioussamtse***](apps/serioussamtse.md) | *Game engine for Serious Sam Classic, TSE.*..[ *read more* ](apps/serioussamtse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serioussamtse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serioussamtse) | -| | [***serioussamtse-vk***](apps/serioussamtse-vk.md) | *Game engine for Serious Sam Classic, Vulkan support, TSE.*..[ *read more* ](apps/serioussamtse-vk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/serioussamtse-vk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/serioussamtse-vk) | -| | [***sfp***](apps/sfp.md) | *This utility is designed to allow you to apply skins to the modern Steam client.*..[ *read more* ](apps/sfp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sfp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sfp) | -| | [***shadps4***](apps/shadps4.md) | *An early PlayStation 4 emulator written in C++.*..[ *read more* ](apps/shadps4.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shadps4) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shadps4) | -| | [***shadps4-qtlauncher***](apps/shadps4-qtlauncher.md) | *The official Qt launcher for shadps4 PlayStation 4 emulator.*..[ *read more* ](apps/shadps4-qtlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shadps4-qtlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shadps4-qtlauncher) | -| | [***skyemu***](apps/skyemu.md) | *Game Boy Advance, Game Boy, Game Boy Color, and DS Emulator.*..[ *read more* ](apps/skyemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/skyemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/skyemu) | -| | [***snake-js***](apps/snake-js.md) | *Canvas/JavaScript based Snake Game with support for controllers.*..[ *read more* ](apps/snake-js.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snake-js) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snake-js) | -| | [***snes9x***](apps/snes9x.md) | *Snes9x - Portable Super Nintendo Entertainment System TM emulator.*..[ *read more* ](apps/snes9x.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snes9x) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snes9x) | -| | [***snes9x-enhanced***](apps/snes9x-enhanced.md) | *Unofficial, Snes9x - Portable Super Nintendo Entertainment System TM emulator.*..[ *read more* ](apps/snes9x-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snes9x-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snes9x-enhanced) | -| | [***snowboardkids2-recomp***](apps/snowboardkids2-recomp.md) | *Unofficial AppImage of game Snowboard Kids 2 Recompilation.*..[ *read more* ](apps/snowboardkids2-recomp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/snowboardkids2-recomp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/snowboardkids2-recomp) | -| | [***soul-arena***](apps/soul-arena.md) | *Bleach-based online multiplayer strategy game.*..[ *read more* ](apps/soul-arena.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soul-arena) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soul-arena) | -| | [***sound-space-plus***](apps/sound-space-plus.md) | *Unofficial AppImage of sound-space-plus, Rhythm-based aim game.*..[ *read more* ](apps/sound-space-plus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sound-space-plus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sound-space-plus) | -| | [***spacecadet***](apps/spacecadet.md) | *Unofficial. Reverse engineered port of 3D Pinball for Windows XP Space Cadet.*..[ *read more* ](apps/spacecadet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spacecadet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spacecadet) | -| | [***spacewars***](apps/spacewars.md) | *A re-imagining of the classic game Spacewar using Amethyst engine.*..[ *read more* ](apps/spacewars.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spacewars) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spacewars) | -| | [***spaghettikart-enhanced***](apps/spaghettikart-enhanced.md) | *Unofficial, Mario Kart 64 PC game Port.*..[ *read more* ](apps/spaghettikart-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spaghettikart-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spaghettikart-enhanced) | -| | [***speed-dreams***](apps/speed-dreams.md) | *A Torcs fork, 3d motorsport simulation and race cars game.*..[ *read more* ](apps/speed-dreams.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/speed-dreams) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/speed-dreams) | -| | [***spicy-launcher***](apps/spicy-launcher.md) | *Cross-platform launcher for Spicy Lobster games.*..[ *read more* ](apps/spicy-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spicy-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spicy-launcher) | -| | [***srb2***](apps/srb2.md) | *Unofficial, a 3D Sonic the Hedgehog fangame based on a modified version of Doom Legacy.*..[ *read more* ](apps/srb2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/srb2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/srb2) | -| | [***srb2k***](apps/srb2k.md) | *AppImage Package for Sonic Robo Blast 2 Kart, game.*..[ *read more* ](apps/srb2k.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/srb2k) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/srb2k) | -| | [***stackandconquer***](apps/stackandconquer.md) | *A challenging tower conquest board game "Mixtour" inspired.*..[ *read more* ](apps/stackandconquer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stackandconquer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stackandconquer) | -| | [***steam***](apps/steam.md) | *Unofficial. The ultimate destination for playing, discussing, and creating games.*..[ *read more* ](apps/steam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steam) | -| | [***steam-rom-manager***](apps/steam-rom-manager.md) | *An app for managing ROMs in Steam.*..[ *read more* ](apps/steam-rom-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steam-rom-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steam-rom-manager) | -| | [***steam-tui***](apps/steam-tui.md) | *Rust TUI client for steamcmd.*..[ *read more* ](apps/steam-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steam-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steam-tui) | -| | [***steamcad***](apps/steamcad.md) | *2D CAD especially designed to draw steam locomotives.*..[ *read more* ](apps/steamcad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steamcad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steamcad) | -| | [***steamdepotdownloadergui***](apps/steamdepotdownloadergui.md) | *Easily download older versions of games from Steam.*..[ *read more* ](apps/steamdepotdownloadergui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steamdepotdownloadergui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steamdepotdownloadergui) | -| | [***stunt-car-remake***](apps/stunt-car-remake.md) | *Remake of the old game Stunt Car Racer.*..[ *read more* ](apps/stunt-car-remake.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stunt-car-remake) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stunt-car-remake) | -| | [***sunshine***](apps/sunshine.md) | *Sunshine is a Gamestream host for Moonlight.*..[ *read more* ](apps/sunshine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sunshine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sunshine) | -| | [***supermariowar***](apps/supermariowar.md) | *Unofficial, a fan-made multiplayer Super Mario Bros. style deathmatch game.*..[ *read more* ](apps/supermariowar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supermariowar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supermariowar) | -| | [***supermodel***](apps/supermodel.md) | *Unofficial, Sega Model 3 arcade emulator.*..[ *read more* ](apps/supermodel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supermodel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supermodel) | -| | [***supertux***](apps/supertux.md) | *Classic 2D jump'n run sidescroller game inspired to Super Mario.*..[ *read more* ](apps/supertux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supertux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supertux) | -| | [***supertuxkart***](apps/supertuxkart.md) | *Free kart racing game focused on Fun!*..[ *read more* ](apps/supertuxkart.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supertuxkart) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supertuxkart) | -| | [***supertuxkart-dev***](apps/supertuxkart-dev.md) | *Free kart racing game focused on Fun! Pre-release.*..[ *read more* ](apps/supertuxkart-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/supertuxkart-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/supertuxkart-dev) | -| | [***swc-minecraft-launcher***](apps/swc-minecraft-launcher.md) | *SWC Minecraft Launcher.*..[ *read more* ](apps/swc-minecraft-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swc-minecraft-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swc-minecraft-launcher) | -| | [***synthein***](apps/synthein.md) | *A space ship building and combat game.*..[ *read more* ](apps/synthein.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/synthein) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/synthein) | -| | [***taisei-project***](apps/taisei-project.md) | *Unofficial, A free and open-source Touhou Project fangame.*..[ *read more* ](apps/taisei-project.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/taisei-project) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/taisei-project) | -| | [***thlink***](apps/thlink.md) | *Touhou Project Game Netplay Tool.*..[ *read more* ](apps/thlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thlink) | -| | [***torcs***](apps/torcs.md) | *The 3D Open Racing Car Game and Simulator.*..[ *read more* ](apps/torcs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/torcs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/torcs) | -| | [***trenchbroom***](apps/trenchbroom.md) | *A modern, cross-platform level editor for Quake engine based games.*..[ *read more* ](apps/trenchbroom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trenchbroom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trenchbroom) | -| | [***tuxfootball***](apps/tuxfootball.md) | *Unofficial, is a great 2D football game for Windows and Linux.*..[ *read more* ](apps/tuxfootball.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tuxfootball) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tuxfootball) | -| | [***tuxpuck***](apps/tuxpuck.md) | *Unofficial, hockey-like table game.*..[ *read more* ](apps/tuxpuck.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tuxpuck) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tuxpuck) | -| | [***undertaker141***](apps/undertaker141.md) | *A free and open-source game-center for linux. Pre-configured Wine and Native Games for Linux.*..[ *read more* ](apps/undertaker141.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/undertaker141) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/undertaker141) | -| | [***urbanterror***](apps/urbanterror.md) | *A team-based tactical game shooter based on the Quake 3 Engine.*..[ *read more* ](apps/urbanterror.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/urbanterror) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/urbanterror) | -| | [***uzdoom***](apps/uzdoom.md) | *UZDoom is a feature centric port for all Doom engine games, based on GZDoom, adding an advanced renderer and powerful scripting capabilities.*..[ *read more* ](apps/uzdoom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uzdoom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uzdoom) | -| | [***vapour***](apps/vapour.md) | *An alternative open source Steam client.*..[ *read more* ](apps/vapour.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vapour) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vapour) | -| | [***vgmtrans***](apps/vgmtrans.md) | *A tool to convert proprietary, sequenced videogame music.*..[ *read more* ](apps/vgmtrans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vgmtrans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vgmtrans) | -| | [***visipics***](apps/visipics.md) | *Windows software to find and remove duplicate pictures. Unofficial AppImage built using "wine32-deploy" and powered by "wine".*..[ *read more* ](apps/visipics.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/visipics) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/visipics) | -| | [***vita3k***](apps/vita3k.md) | *Experimental PlayStation Vita emulator.*..[ *read more* ](apps/vita3k.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vita3k) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vita3k) | -| | [***vkquake***](apps/vkquake.md) | *Vulkan Quake game port based on QuakeSpasm.*..[ *read more* ](apps/vkquake.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vkquake) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vkquake) | -| | [***westeroscraftlauncher***](apps/westeroscraftlauncher.md) | *Custom launcher for modded Minecraft, game.*..[ *read more* ](apps/westeroscraftlauncher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/westeroscraftlauncher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/westeroscraftlauncher) | -| | [***wick-editor***](apps/wick-editor.md) | *A free and open-source tool for creating games, animations and everything in-between!*..[ *read more* ](apps/wick-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wick-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wick-editor) | -| | [***widelands***](apps/widelands.md) | *Real-time strategy game with singleplayer campaigns.*..[ *read more* ](apps/widelands.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/widelands) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/widelands) | -| | [***wiiu-downloader***](apps/wiiu-downloader.md) | *Allows to download encrypted wiiu files from nintendo's official servers.*..[ *read more* ](apps/wiiu-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wiiu-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wiiu-downloader) | -| | [***wikilynx***](apps/wikilynx.md) | *A simple game browser made using Qt C++ for playing wikipedia speed-runs the right way.*..[ *read more* ](apps/wikilynx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wikilynx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wikilynx) | -| | [***wine***](apps/wine.md) | *Unofficial. Run Windows programs, select a version from mmtrt/WINE_AppImage.*..[ *read more* ](apps/wine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine) | -| | [***wine-devel***](apps/wine-devel.md) | *Unofficial. Compatibility layer to run x86_64 Windows programs, Dev Edition.*..[ *read more* ](apps/wine-devel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-devel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-devel) | -| | [***wine-stable***](apps/wine-stable.md) | *Unofficial. Compatibility layer to run x86_64 Windows programs, Stable.*..[ *read more* ](apps/wine-stable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-stable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-stable) | -| | [***wine-staging***](apps/wine-staging.md) | *Unofficial. Compatibility layer to run x86_64 Windows programs, Staging.*..[ *read more* ](apps/wine-staging.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-staging) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-staging) | -| | [***wine-staging-ge-proton***](apps/wine-staging-ge-proton.md) | *Unofficial. Run x86_64 Windows programs, Staging GE Proton.*..[ *read more* ](apps/wine-staging-ge-proton.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-staging-ge-proton) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-staging-ge-proton) | -| | [***wine32-deploy***](apps/wine32-deploy.md) | *Tool for creating AppImages for 32-bit Microsoft Windows apps.*..[ *read more* ](apps/wine32-deploy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine32-deploy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine32-deploy) | -| | [***wipeout-rewrite***](apps/wipeout-rewrite.md) | *Unofficial, re-implementation of the 1995 PSX game wipEout.*..[ *read more* ](apps/wipeout-rewrite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wipeout-rewrite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wipeout-rewrite) | -| | [***wlx-overlay-s***](apps/wlx-overlay-s.md) | *Access your Wayland/X11 desktop from Monado/WiVRn/SteamVR.*..[ *read more* ](apps/wlx-overlay-s.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wlx-overlay-s) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wlx-overlay-s) | -| | [***wonderlab***](apps/wonderlab.md) | *A new generation Minecraft launcher.*..[ *read more* ](apps/wonderlab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wonderlab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wonderlab) | -| | [***woof-doom***](apps/woof-doom.md) | *Woof! is a continuation of the Boom/MBF bloodline of Doom source ports.*..[ *read more* ](apps/woof-doom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/woof-doom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/woof-doom) | -| | [***x-minecraft-launcher***](apps/x-minecraft-launcher.md) | *An Open Source Minecraft Launcher with Modern UX.*..[ *read more* ](apps/x-minecraft-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/x-minecraft-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/x-minecraft-launcher) | -| | [***xash3d-fwgs***](apps/xash3d-fwgs.md) | *A game engine aimed to provide compatibility with Half-Life Engine and extend it.*..[ *read more* ](apps/xash3d-fwgs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xash3d-fwgs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xash3d-fwgs) | -| | [***xash3d-fwgs-enhanced***](apps/xash3d-fwgs-enhanced.md) | *Unofficial, a game engine aimed to provide compatibility with Half-Life Engine and extend it.*..[ *read more* ](apps/xash3d-fwgs-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xash3d-fwgs-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xash3d-fwgs-enhanced) | -| | [***xbooxp***](apps/xbooxp.md) | *A nifty software to upload homebrew apps into your Game Boy Advance (GBA) using an xboo cable.*..[ *read more* ](apps/xbooxp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xbooxp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xbooxp) | -| | [***xemu***](apps/xemu.md) | *Original Xbox Emulator.*..[ *read more* ](apps/xemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xemu) | -| | [***xemu-enhanced***](apps/xemu-enhanced.md) | *Unofficial, original Xbox Emulator for Windows, macOS, and Linux (Active Development).*..[ *read more* ](apps/xemu-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xemu-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xemu-enhanced) | -| | [***xenia-canary***](apps/xenia-canary.md) | *Unofficial AppImage of xenia-canary Xbox360 emulator.*..[ *read more* ](apps/xenia-canary.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xenia-canary) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xenia-canary) | -| | [***xenia-edge***](apps/xenia-edge.md) | *Xbox 360 Emulator Research Project, fork of the Xenia emulator, with the aim of quicker iteration and improvements to Vulkan backend.*..[ *read more* ](apps/xenia-edge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xenia-edge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xenia-edge) | -| | [***xmoto***](apps/xmoto.md) | *A challenging 2D motocross platform game, where physics play an important role.*..[ *read more* ](apps/xmoto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xmoto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xmoto) | -| | [***yam***](apps/yam.md) | *Unofficial Game Updater for the F95Zone platform.*..[ *read more* ](apps/yam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yam) | -| | [***yamata-launcher***](apps/yamata-launcher.md) | *A multi-platform game launcher designed to unify game catalogs, downloads, and libraries from multiple ecosystems into a single, extensible application.*..[ *read more* ](apps/yamata-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yamata-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yamata-launcher) | -| | [***zelda64-recompiled***](apps/zelda64-recompiled.md) | *Unofficial, a native port of the N64 Legend of Zelda games, statically recompiled.*..[ *read more* ](apps/zelda64-recompiled.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zelda64-recompiled) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zelda64-recompiled) | -| | [***znax***](apps/znax.md) | *Znax is a cross platform puzzle / arcade game using SDL2 libraries.*..[ *read more* ](apps/znax.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/znax) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/znax) | -| | [***zod-engine***](apps/zod-engine.md) | *Unofficial, an open source remake of the 1996 game Z by the Bitmap Brothers.*..[ *read more* ](apps/zod-engine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zod-engine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zod-engine) | -| | [***zsnes***](apps/zsnes.md) | *Unofficial, a Super Nintendo emulator.*..[ *read more* ](apps/zsnes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zsnes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zsnes) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/gnome.md b/gnome.md deleted file mode 100644 index f830482d4..000000000 --- a/gnome.md +++ /dev/null @@ -1,145 +0,0 @@ -# GNOME - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **17** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***baobab***](apps/baobab.md) | *A graphical directory tree analyzer for the GNOME desktop environment, to keep your disk usage and available space under control.*..[ *read more* ](apps/baobab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/baobab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/baobab) | -| | [***eog***](apps/eog.md) | *Eye of Gnome is an image viewing and cataloging program.*..[ *read more* ](apps/eog.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eog) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eog) | -| | [***extension-manager***](apps/extension-manager.md) | *A native tool for browsing, installing, and managing GNOME Shell Extensions.*..[ *read more* ](apps/extension-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/extension-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/extension-manager) | -| | [***file-roller***](apps/file-roller.md) | *File Roller is an archive manager for the GNOME desktop environment. Create and modify archives.*..[ *read more* ](apps/file-roller.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file-roller) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file-roller) | -| | [***gdm-settings***](apps/gdm-settings.md) | *A settings app for GNOME's Login Manager, GDM.*..[ *read more* ](apps/gdm-settings.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gdm-settings) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gdm-settings) | -| | [***gedit***](apps/gedit.md) | *An easy-to-use general-purpose text editor for the GNOME desktop environment.*..[ *read more* ](apps/gedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gedit) | -| | [***gnome-boxes***](apps/gnome-boxes.md) | *Unofficial, A simple GNOME application to access virtual machines.*..[ *read more* ](apps/gnome-boxes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-boxes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-boxes) | -| | [***gnome-calculator***](apps/gnome-calculator.md) | *Unofficial, Perform arithmetic, scientific or financial calculations.*..[ *read more* ](apps/gnome-calculator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-calculator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-calculator) | -| | [***gnome-pomodoro***](apps/gnome-pomodoro.md) | *A productivity tool designed to help you manage your time effectively using the Pomodoro Technique.*..[ *read more* ](apps/gnome-pomodoro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-pomodoro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-pomodoro) | -| | [***gnome-system-monitor***](apps/gnome-system-monitor.md) | *System Monitor is a process viewer and system monitor with an attractive, easy-to-use interface for the GNOME desktop environment.*..[ *read more* ](apps/gnome-system-monitor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-system-monitor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-system-monitor) | -| | [***gnome-text-editor***](apps/gnome-text-editor.md) | *Unofficial AppImage of the Gnome's Text Editor application.*..[ *read more* ](apps/gnome-text-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-text-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-text-editor) | -| | [***gnome-tweaks***](apps/gnome-tweaks.md) | *Unofficial, Experimental AppImage port of advanced GNOME 3 settings GUI.*..[ *read more* ](apps/gnome-tweaks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-tweaks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-tweaks) | -| | [***gnome-web***](apps/gnome-web.md) | *Unofficial AppImage of Gnome Web aka Epiphany..*..[ *read more* ](apps/gnome-web.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-web) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-web) | -| | [***loginized***](apps/loginized.md) | *Loginized Gnome GDM Login Theme Manager.*..[ *read more* ](apps/loginized.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/loginized) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/loginized) | -| | [***shotwell***](apps/shotwell.md) | *Unofficial, a digital photo organizer designed for the GNOME desktop environment.*..[ *read more* ](apps/shotwell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shotwell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shotwell) | -| | [***simple-scan***](apps/simple-scan.md) | *Make a digital copy of your photos and documents. Simple scanning utility for the GNOME desktop environment.*..[ *read more* ](apps/simple-scan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simple-scan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simple-scan) | -| | [***switchcraft***](apps/switchcraft.md) | *Switchcraft watches GNOME's light/dark preference and runs your shell commands when the theme changes.*..[ *read more* ](apps/switchcraft.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/switchcraft) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/switchcraft) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/graphic.md b/graphic.md deleted file mode 100644 index f0bd40c64..000000000 --- a/graphic.md +++ /dev/null @@ -1,221 +0,0 @@ -# GRAPHIC - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **93** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***affinity***](apps/affinity.md) | *Affinity is a suite of professional graphic design, photo editing, and desktop publishing software. It's a common alternative to software from the Adobe Suite such as for Adobe Photoshop, Adobe Illustrator, Adobe InDesign.*..[ *read more* ](apps/affinity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/affinity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/affinity) | -| | [***ansel***](apps/ansel.md) | *An open-source photo-editing software for digital artists, designed to help you achieve your own interpretation of raw digital photographs.*..[ *read more* ](apps/ansel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ansel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ansel) | -| | [***aphototoollibre***](apps/aphototoollibre.md) | *Photo editing app for GNU/Linux.*..[ *read more* ](apps/aphototoollibre.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aphototoollibre) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aphototoollibre) | -| | [***aspect***](apps/aspect.md) | *Photo organization application with support for peer-to-peer based synchronization across devices.*..[ *read more* ](apps/aspect.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aspect) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aspect) | -| | [***bforartists***](apps/bforartists.md) | *3D modeling, animation, rendering and post-production.*..[ *read more* ](apps/bforartists.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bforartists) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bforartists) | -| | [***biying***](apps/biying.md) | *Biying Wallpaper for Linux.*..[ *read more* ](apps/biying.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/biying) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/biying) | -| | [***blender***](apps/blender.md) | *Very fast and versatile 3D modeller/renderer, Stable.*..[ *read more* ](apps/blender.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender) | -| | [***blender-alpha***](apps/blender-alpha.md) | *Very fast and versatile 3D modeller/renderer, Alpha.*..[ *read more* ](apps/blender-alpha.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender-alpha) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender-alpha) | -| | [***blender-beta***](apps/blender-beta.md) | *Very fast and versatile 3D modeller/renderer, Beta.*..[ *read more* ](apps/blender-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender-beta) | -| | [***blender-rc***](apps/blender-rc.md) | *Very fast and versatile 3D modeller/renderer, Release Candidate.*..[ *read more* ](apps/blender-rc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blender-rc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blender-rc) | -| | [***blensor***](apps/blensor.md) | *3D modeling, animation, rendering and post-production.*..[ *read more* ](apps/blensor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blensor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blensor) | -| | [***blockbench***](apps/blockbench.md) | *Editor for boxy models and pixel art textures like Minecraft.*..[ *read more* ](apps/blockbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blockbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blockbench) | -| | [***caesium***](apps/caesium.md) | *Image compression software that helps you store, send and share digital pictures, supporting JPG, PNG, WebP and TIFF formats.*..[ *read more* ](apps/caesium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/caesium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/caesium) | -| | [***chemcanvas***](apps/chemcanvas.md) | *A very intuitive 2D chemical drawing tool.*..[ *read more* ](apps/chemcanvas.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chemcanvas) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chemcanvas) | -| | [***cinelerra***](apps/cinelerra.md) | *CINELERRA-GG is a software program NLE, Non-Linear Editor, that provides a way to edit, record, and play audio or video media. It can also be used to transcode media from one format to another or to correct and retouch photos.*..[ *read more* ](apps/cinelerra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cinelerra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cinelerra) | -| | [***converseen***](apps/converseen.md) | *A batch image converter and resizer.*..[ *read more* ](apps/converseen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/converseen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/converseen) | -| | [***corepaint***](apps/corepaint.md) | *A paint app for CuboCore Application Suite.*..[ *read more* ](apps/corepaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corepaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corepaint) | -| | [***darktable***](apps/darktable.md) | *Photography workflow app and raw developer.*..[ *read more* ](apps/darktable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/darktable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/darktable) | -| | [***darktable-nightly***](apps/darktable-nightly.md) | *Photography workflow application and raw developer (nightly).*..[ *read more* ](apps/darktable-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/darktable-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/darktable-nightly) | -| | [***digikam***](apps/digikam.md) | *Professional and advanced digital photo management application.*..[ *read more* ](apps/digikam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/digikam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/digikam) | -| | [***digikam-dev***](apps/digikam-dev.md) | *Professional and advanced digital photo management application.*..[ *read more* ](apps/digikam-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/digikam-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/digikam-dev) | -| | [***dotto***](apps/dotto.md) | *A portable and modern pixelart editor, written from scratch.*..[ *read more* ](apps/dotto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dotto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dotto) | -| | [***drawish***](apps/drawish.md) | *Simple, yet complete drawing program.*..[ *read more* ](apps/drawish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drawish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drawish) | -| | [***drawpile***](apps/drawpile.md) | *Drawing program to sketch on the same canvas simultaneously.*..[ *read more* ](apps/drawpile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/drawpile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/drawpile) | -| | [***duplicate-image-finder***](apps/duplicate-image-finder.md) | *It is an application that can find duplicated images (jpg, png, bitmap, etc) in a collection.*..[ *read more* ](apps/duplicate-image-finder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duplicate-image-finder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duplicate-image-finder) | -| | [***dust3d***](apps/dust3d.md) | *3D modeling software for games, 3D printing, and so on.*..[ *read more* ](apps/dust3d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dust3d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dust3d) | -| | [***ente-auth***](apps/ente-auth.md) | *Fully open source, End to End Encrypted alternative to Google Photos and Apple Photos.*..[ *read more* ](apps/ente-auth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ente-auth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ente-auth) | -| | [***ente-photos***](apps/ente-photos.md) | *Binary releases of the Ente Photos desktop app.*..[ *read more* ](apps/ente-photos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ente-photos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ente-photos) | -| | [***fantascene-dynamic-wallpaper***](apps/fantascene-dynamic-wallpaper.md) | *Dynamic wallpaper software for Linux.*..[ *read more* ](apps/fantascene-dynamic-wallpaper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fantascene-dynamic-wallpaper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fantascene-dynamic-wallpaper) | -| | [***firealpaca***](apps/firealpaca.md) | *A Free and Multiplatform Digital Painting Software.*..[ *read more* ](apps/firealpaca.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firealpaca) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firealpaca) | -| | [***freecad***](apps/freecad.md) | *Free and open source AutoCAD alternative.*..[ *read more* ](apps/freecad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freecad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freecad) | -| | [***geeqie***](apps/geeqie.md) | *Claiming to be the best image viewer and photo collection browser.*..[ *read more* ](apps/geeqie.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geeqie) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geeqie) | -| | [***gimp***](apps/gimp.md) | *GNU Image Manipulation Program, cross-platform image and photo editor. Multiple-choices.*..[ *read more* ](apps/gimp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimp) | -| | [***gimp-git***](apps/gimp-git.md) | *Unofficial, Cross-platform image and photo editor, built from GIT.*..[ *read more* ](apps/gimp-git.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimp-git) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimp-git) | -| | [***gimp-hybrid***](apps/gimp-hybrid.md) | *Unofficial, GIMP including third-party plugins and python2 support.*..[ *read more* ](apps/gimp-hybrid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimp-hybrid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimp-hybrid) | -| | [***go-pd***](apps/go-pd.md) | *A free easy to use pixeldrain.com go client pkg and CLI upload tool.*..[ *read more* ](apps/go-pd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-pd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-pd) | -| | [***go-pd-gui***](apps/go-pd-gui.md) | *DRAINY is a free easy to use cross plattform upload tool for pixeldrain.com.*..[ *read more* ](apps/go-pd-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-pd-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-pd-gui) | -| | [***hugin***](apps/hugin.md) | *Stitch photographs together.*..[ *read more* ](apps/hugin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hugin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hugin) | -| | [***imagemagick-clang***](apps/imagemagick-clang.md) | *CLI to create, edit, compose, or convert digital images.*..[ *read more* ](apps/imagemagick-clang.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imagemagick-clang) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imagemagick-clang) | -| | [***imagemagick-gcc***](apps/imagemagick-gcc.md) | *CLI to create, edit, compose, or convert digital images.*..[ *read more* ](apps/imagemagick-gcc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imagemagick-gcc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imagemagick-gcc) | -| | [***imagine***](apps/imagine.md) | *PNG/JPEG optimization.*..[ *read more* ](apps/imagine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imagine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imagine) | -| | [***inkscape***](apps/inkscape.md) | *Unofficial. Vector-based drawing program and graphics editor for both artistic and technical illustrations. It can import and export various file formats, including SVG, AI, EPS, PDF, AutoCAD, PS and PNG.*..[ *read more* ](apps/inkscape.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/inkscape) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/inkscape) | -| | [***jpg-glitch-electron***](apps/jpg-glitch-electron.md) | *Desktop app for glitching images.*..[ *read more* ](apps/jpg-glitch-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jpg-glitch-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jpg-glitch-electron) | -| | [***kolourpaint***](apps/kolourpaint.md) | *Unofficial AppImage of KolourPaint.*..[ *read more* ](apps/kolourpaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kolourpaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kolourpaint) | -| | [***krita***](apps/krita.md) | *A professional FREE and open source painting program, graphics.*..[ *read more* ](apps/krita.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/krita) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/krita) | -| | [***krita-devel***](apps/krita-devel.md) | *A professional FREE open source painting program, dev-edition.*..[ *read more* ](apps/krita-devel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/krita-devel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/krita-devel) | -| | [***krunker***](apps/krunker.md) | *Krunker (.io) is a fast-paced first-person shooter game with pixel graphics.*..[ *read more* ](apps/krunker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/krunker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/krunker) | -| | [***lazpaint***](apps/lazpaint.md) | *Cross-platform image editor with raster and vector layers similar to Paint.Net written in Lazarus (Free Pascal).*..[ *read more* ](apps/lazpaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lazpaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lazpaint) | -| | [***libertem***](apps/libertem.md) | *Pixelated scanning transmission electron microscopy.*..[ *read more* ](apps/libertem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/libertem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/libertem) | -| | [***libresprite***](apps/libresprite.md) | *Animated sprite editor & pixel art tool. Fork of the last GPLv2 commit of Aseprite.*..[ *read more* ](apps/libresprite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/libresprite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/libresprite) | -| | [***linuxwallpaper***](apps/linuxwallpaper.md) | *Bing wallpaper of the day.*..[ *read more* ](apps/linuxwallpaper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/linuxwallpaper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/linuxwallpaper) | -| | [***lorien***](apps/lorien.md) | *Infinite canvas drawing/whiteboarding app.*..[ *read more* ](apps/lorien.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lorien) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lorien) | -| | [***mapollage***](apps/mapollage.md) | *Photo kml generator for Google Earth.*..[ *read more* ](apps/mapollage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mapollage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mapollage) | -| | [***miesimulatorgui***](apps/miesimulatorgui.md) | *MieSimulatorGUI by Virtual Photonics.*..[ *read more* ](apps/miesimulatorgui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/miesimulatorgui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/miesimulatorgui) | -| | [***mypaint***](apps/mypaint.md) | *Simple drawing and painting program, graphics.*..[ *read more* ](apps/mypaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mypaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mypaint) | -| | [***optiimage***](apps/optiimage.md) | *Unofficial, optimize your images with OptiImage, a useful image compressor that supports PNG, JPEG, WebP and SVG file types.*..[ *read more* ](apps/optiimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/optiimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/optiimage) | -| | [***paper***](apps/paper.md) | *A CLI Tool to set a random wallpaper from Unsplash.com.*..[ *read more* ](apps/paper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paper) | -| | [***pavo***](apps/pavo.md) | *A mini desktop wallpaper application.*..[ *read more* ](apps/pavo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pavo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pavo) | -| | [***photocrea***](apps/photocrea.md) | *Unofficial Photopea wrapper, image editor that includes all the familiar features like layers, filters, magic wand selection, etc.*..[ *read more* ](apps/photocrea.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photocrea) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photocrea) | -| | [***photoflare***](apps/photoflare.md) | *A simple but featureful image editor.*..[ *read more* ](apps/photoflare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photoflare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photoflare) | -| | [***photoflow***](apps/photoflow.md) | *Edit images from digital cameras.*..[ *read more* ](apps/photoflow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photoflow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photoflow) | -| | [***photogimp***](apps/photogimp.md) | *A patched version of GIMP for Adobe Photoshop users.*..[ *read more* ](apps/photogimp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photogimp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photogimp) | -| | [***photon***](apps/photon.md) | *Cross-platform file-transfer application built using flutter. It uses http to transfer files between devices.*..[ *read more* ](apps/photon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photon) | -| | [***photoname***](apps/photoname.md) | *Rename photo image files based on EXIF shoot date.*..[ *read more* ](apps/photoname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photoname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photoname) | -| | [***photopealoader***](apps/photopealoader.md) | *Photopea desktop app that loads local files and plugins.*..[ *read more* ](apps/photopealoader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photopealoader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photopealoader) | -| | [***photoqt***](apps/photoqt.md) | *View and manage images.*..[ *read more* ](apps/photoqt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photoqt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photoqt) | -| | [***photoquick***](apps/photoquick.md) | *Light-weight image viewer, resize, collage, filters....*..[ *read more* ](apps/photoquick.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photoquick) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photoquick) | -| | [***pinta***](apps/pinta.md) | *Unofficial, Simple GTK Paint Program clone of Paint.Net 3.0.*..[ *read more* ](apps/pinta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pinta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pinta) | -| | [***pinta-dev***](apps/pinta-dev.md) | *Simple GTK Paint Program (developer edition).*..[ *read more* ](apps/pinta-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pinta-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pinta-dev) | -| | [***pixelhopper***](apps/pixelhopper.md) | *Animated GIF player for Linux (X11).*..[ *read more* ](apps/pixelhopper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixelhopper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixelhopper) | -| | [***pixelorama***](apps/pixelorama.md) | *A powerful and accessible open-source pixel art multitool. Whether you want to create sprites, tiles, animations, or just express yourself in the language of pixel art.*..[ *read more* ](apps/pixelorama.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixelorama) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixelorama) | -| | [***pixelpulse2***](apps/pixelpulse2.md) | *Pixelpulse2 is a user interface for analog systems exploration.*..[ *read more* ](apps/pixelpulse2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixelpulse2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixelpulse2) | -| | [***pixfetch***](apps/pixfetch.md) | *Another CLI fetch program with pixelized images written in Rust.*..[ *read more* ](apps/pixfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixfetch) | -| | [***pixsrt***](apps/pixsrt.md) | *Pixel sorter.*..[ *read more* ](apps/pixsrt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixsrt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixsrt) | -| | [***png2svg***](apps/png2svg.md) | *CLI, convert small PNG images to SVG Tiny 1.2.*..[ *read more* ](apps/png2svg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/png2svg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/png2svg) | -| | [***pointless***](apps/pointless.md) | *An endless drawing canvas desktop app made with Tauri (Rust) and React.*..[ *read more* ](apps/pointless.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pointless) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pointless) | -| | [***qr-code-generator***](apps/qr-code-generator.md) | *Create custom QR Codes, resize, save them as PNG image.*..[ *read more* ](apps/qr-code-generator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qr-code-generator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qr-code-generator) | -| | [***rawtherapee***](apps/rawtherapee.md) | *An advanced raw photo development program.*..[ *read more* ](apps/rawtherapee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rawtherapee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rawtherapee) | -| | [***rclip***](apps/rclip.md) | *AI-Powered Semantic Photo Search for the Command Line.*..[ *read more* ](apps/rclip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rclip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rclip) | -| | [***rnote***](apps/rnote.md) | *Unofficial, Rnote is a vector-based drawing app for sketching, handwritten notes and to annotate documents and pictures.*..[ *read more* ](apps/rnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rnote) | -| | [***rx-bin***](apps/rx-bin.md) | *A modern and extensible pixel editor implemented in Rust.*..[ *read more* ](apps/rx-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rx-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rx-bin) | -| | [***shotwell***](apps/shotwell.md) | *Unofficial, a digital photo organizer designed for the GNOME desktop environment.*..[ *read more* ](apps/shotwell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shotwell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shotwell) | -| | [***simple-scan***](apps/simple-scan.md) | *Make a digital copy of your photos and documents. Simple scanning utility for the GNOME desktop environment.*..[ *read more* ](apps/simple-scan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simple-scan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simple-scan) | -| | [***superpaper***](apps/superpaper.md) | *A cross-platform multi monitor wallpaper manager.*..[ *read more* ](apps/superpaper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superpaper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superpaper) | -| | [***svgwall***](apps/svgwall.md) | *SVG Wallpaper Utility for Xorg.*..[ *read more* ](apps/svgwall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/svgwall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/svgwall) | -| | [***terabox***](apps/terabox.md) | *Terabox is the simplest way to send your files around the world. Back up and Share photos, videos, docs, and other files of any size to cloud storage.*..[ *read more* ](apps/terabox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/terabox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/terabox) | -| | [***testdisk***](apps/testdisk.md) | *TestDisk & PhotoRec, tools to recover lost partitions and files.*..[ *read more* ](apps/testdisk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/testdisk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/testdisk) | -| | [***tokodon***](apps/tokodon.md) | *Unofficial, a modern client for Mastodon and other decentralized servers that implement its API (such as Pixelfed).*..[ *read more* ](apps/tokodon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tokodon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tokodon) | -| | [***tropy***](apps/tropy.md) | *Research photo management.*..[ *read more* ](apps/tropy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tropy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tropy) | -| | [***visipics***](apps/visipics.md) | *Windows software to find and remove duplicate pictures. Unofficial AppImage built using "wine32-deploy" and powered by "wine".*..[ *read more* ](apps/visipics.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/visipics) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/visipics) | -| | [***vkdt***](apps/vkdt.md) | *Raw photography workflow that sucks less, enabling real-time support for animations, timelapses, raw video, and heavy lifting algorithms like image alignment and better highlight inpainting.*..[ *read more* ](apps/vkdt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vkdt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vkdt) | -| | [***vpaint***](apps/vpaint.md) | *Experimental vector graphics and 2D animation editor.*..[ *read more* ](apps/vpaint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vpaint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vpaint) | -| | [***wonderwall***](apps/wonderwall.md) | *Wallpaper manager for Linux.*..[ *read more* ](apps/wonderwall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wonderwall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wonderwall) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/index.html b/index.html new file mode 100644 index 000000000..6eb6cd669 --- /dev/null +++ b/index.html @@ -0,0 +1,116 @@ + + + + + + PORTABLE LINUX APPS + + + + + + + + + + + + + + + + + + +
    + +
    +

    Welcome to the most complete database of all AppImage packages and portable applications for GNU/Linux.

    +

    PORTABLE LINUX APPS

    +

    the first AUR-inspired AppImage Software Center!

    +
    + +
    + +
    + + + +
    + +
    +

    Categories

    + +
    + +
    + +
    +

    About this project

    +

    Portable Linux Apps are standalone applications for GNU/Linux that can run everywhere, also on a USB stick. These can be AppImage packages or standalone archives. Each app has its own installation script, PKGBUILD style, managed by the AM package manager.

    +

    This catalog is open source. You can contribute by editing the pages, adding missing information, or improving the database.

    +

    Read the FAQ →

    +
    + +
    + + + + diff --git a/index.md b/index.md deleted file mode 100644 index 36692f5b4..000000000 --- a/index.md +++ /dev/null @@ -1,440 +0,0 @@ -
    - -###### *Welcome to the most complete database of all AppImage packages and portable applications for GNU/Linux.* - -# PORTABLE LINUX APPS - -### *the first AUR-inspired AppImage Software Center!* - --------- - -#### *This site lists **3300** unique apps (**2722** Appimage packages and **578** standalone/portable programs), plus **75** items.* - -*From here you can download them, install them, update them (for real), get more information about the sources and their developers... and if you want, you can contribute yourself by adding the missing information, because this site is **open source**!* - --------- - -| *[Go to the applications list](https://portable-linux-apps.github.io/apps.html)* | *[Install "AM", the package manager](https://github.com/ivan-hc/AM)* | -| - | - | -| [](https://portable-linux-apps.github.io/apps.html) | [](https://github.com/ivan-hc/AM) | - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - --------- - -
    - ------------------------------------------------------------------------- -### Main Index ------------------------------------------------------------------------- - -- [What are the portable linux apps?](#what-are-the-portable-linux-apps) -- [How is this site different from other sites that list AppImage packages?](#how-is-this-site-different-from-other-sites-that-list-appimage-packages) -- [How can I improve the pages on this site?](#how-can-i-improve-the-pages-on-this-site) -- [Is there a centralized repository for AppImage packages?](#is-there-a-centralized-repository-for-appimage-packages) -- [How to install "AM"](#how-to-install-am) - - [What is "AppMan"?](#what-is-appman) - - [AM installation structure](#am-installation-structure) - - [How are apps installed](#how-are-apps-installed) - - [What programs can be installed](#what-programs-can-be-installed) - - [How to update all programs, for real](#how-to-update-all-programs-for-real) -- [External links index (tutorials, troubleshooting, sandboxing... more)](#external-links-index) -- [Related projects](#related-projects) - --------- - -### What are the portable linux apps? -*Portable Linux Apps are standalone applications for GNU/Linux that can (theoretically) run everywhere, also on a USB stick. These applications can be AppImage packages (see [appimage.org](https://appimage.org/)) or standalone archives.* - --------- - -### How is this site different from other sites that list AppImage packages? -*This catalog aims to survey and list all the AppImages and autonomous programs, and aims to provide a centralized point where you can document yourself on individual apps and where you can easily reach the URLs to the sources, both through the pages dedicated to each app and by reading the "installation scripts".* - -*Yeah, each app has its own installation script, PKGBUILD style, but with an alternative package manager named "**[AM](https://github.com/ivan-hc/AM)**", which works like the more classic APT, PacMan/YAY, DNF... and which can therefore place them in specific paths of the filesystem , like any program, and allows updates via a system of scripts called "AM-updater". If an app can't update itself, the dedicated "AM-updater" script will use an application-specific method to always update your favorite apps to the latest version. FOR REAL!* - -*This catalog is open source. You can edit its pages, update them and see the sources clearly, as a "wiki".* - -#### About other catalogs -*While I recognize the role they have had so far in supporting the diffusion of AppImage as a packaging format, through the years, as a former user, I would like to underline what led me to open an alternative catalogue:* -- *"**[appimage.github.io](https://appimage.github.io/)**" serves more than anything else to catalog the AppImages based on validation processes based on Github Actions (i.e. that the package is compatible with old versions of Ubuntu LTS). From the developer's point of view it's fine, but **from the point of view of the user who searches for AppImage packages without going into the depths of the internet, it's totally useless**. As a catalog it is limited to showing only that an app exists or has existed in the past, without worrying about **obsolete packages that no longer exist, but still listed only "to make up the numbers"**. Many pages have no buttons to the sources and all pages have no additional information on individual apps, **each page is simply a copy/paste message** that says that the app "is available as an AppImage which means one app = one file..." etcetera etcetera.* -- *"**[appimagehub.com](https://www.appimagehub.com/)**" hosts applications not always provided by the original developer, just check the profile of whoever uploaded the application and how many "products" they uploaded. Some admit that they are not the developers, despite having a donation button available, effectively **leading them to earning on work of others**, and are often greedy enough to not include the real source! These profiles use random hosting services for these applications, and Pling's APIs does not allow you to clearly verify the origin of any package that is downloaded. There is no control over this, and the only validity check of a "product" is the feedback of the users who use it, and which in any case is **not sufficient either to guarantee the safety of an app, nor to do justice to the real owner of that package, who was in fact "robbed" of its work**.* - -*Furthermore, **none of them track updates consistently**.* - -*From the aforementioned defects I understood what a catalog of portable applications should NOT do to be reliable.* - --------- - -## How can I improve the pages on this site? -*All pages are simple Markdown files. If you have a [Github](https://github.com) profile, just click on "**Improve this page**" at the bottom of the page you are interested in:* -- *for each app you can add additional URLs (also for donations), information, screenshots, tables and annotations related to bugs, always respecting the layout (note that the same pages are what you see in the terminal using "AM"/"AppMan" through the `-a` option);* -- *icons must be 128x128 PNG files (they could be used by "AM"/"AppMan" during installation, in case an icon is not found);* -- *the application lists instead are automatically generated by the developer of this site through [this script](https://github.com/ivan-hc/AM/blob/main/tools/am2pla-site). Any changes to the lists and descriptions must be made to [this file](https://github.com/ivan-hc/AM/blob/main/programs/x86_64-apps), which is the general list of apps managed by "AM"/"AppMan". The script will create the [Applications](apps.md) page first and then it will create and update the categories.* - -*For any suggestions, open an [issue](https://github.com/ivan-hc/AM/issues) at https://github.com/ivan-hc/AM or a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) at https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io* - --------- - -## Is there a centralized repository for AppImage packages? -*Depends on what you mean by "**centralized package repository**", if you mean a repository that stores them all like Debian-based distributions do with DEB packages, no, there are thousands of packages, and they are usually distributed to remote sites and difficult to find.* - -*If instead you mean an AUR-style repo with scripts that easily find all AppImages, **you're in the right place!*** - -*This catalog and its CLI, "[**AM**](https://github.com/ivan-hc/AM)", make it easy for you to find, install, integrate and update all AppImage packages!* - -
    - -## *[https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM)* - -| [](https://github.com/ivan-hc/AM) | [](https://github.com/ivan-hc/AM) | [](https://github.com/ivan-hc/AM) | -| - | - | - | -| *sandbox AppImages* | *list available apps* | *info about the apps* | -| [](https://github.com/ivan-hc/AM) | [](https://github.com/ivan-hc/AM) | [](https://github.com/ivan-hc/AM) | -| *install applications* | *query lists using keywords* | *show the installed apps* | -| [](https://github.com/ivan-hc/AM) | [](https://github.com/ivan-hc/AM) | [](https://github.com/ivan-hc/AM) | -| *create and restore snapshots* | *update everything* | *get rid of libfuse2* | - -
    - -*This catalog is just the frontend for an ever growing database that aims to extend not only to x86_64 architecture apps listed here, but also to all others, from the modern ARM64/aarch64 to oldest i686, as an universal solution for all AppImages and portable programs for GNU/Linux!* - -*All the installation scripts are stored in the repository of the "**AM**" package manager.* - ------------------------------------------------------------------------- - -# How to install AM - -*To install "AM" you must first install the "core" dependencies from your package manager:* - -| command | motivation | pre-installed? | -| - | - | - | -| `coreutils` | it's a suite of core commands | YES, on almost all distributions | -| `curl` | network utility needed to read online text like lists, URLs and versions | not in all distibutions | -| `grep` | a string search utility | YES, on many distributions | -| `sed` | stream editor for filtering and transforming text | YES, in almost all distributions | - -*NOTE, if you install "AM" (system) and not "AppMan" (local), **you need `sudo` or `doas` for root privileges**.* - -*Other "optional" programs (needed by the apps themselves) may be notified if they are missing while you are using AM or AppMan, but their absence would not prevent you from using AM/AppMan itself.* - -### Quick installation - -*Copy/paste the following one line command to download and run the "[AM-INSTALLER](https://github.com/ivan-hc/AM/blob/main/AM-INSTALLER)" script* - -*Using `wget`* -``` -wget -q https://raw.githubusercontent.com/ivan-hc/AM/main/AM-INSTALLER && chmod a+x ./AM-INSTALLER && ./AM-INSTALLER -``` -*or using `curl`* -``` -curl -s -Lo ./AM-INSTALLER https://raw.githubusercontent.com/ivan-hc/AM/main/AM-INSTALLER && chmod a+x ./AM-INSTALLER && ./AM-INSTALLER && rm ./AM-INSTALLER -``` - -*...below, the screenshot of what will appear.* - -| installer | -| - | - -*Type "1" to install "AM", "2" to install "[AppMan](#what-is-appman)". Any other key will abort the installation.* - -**Installation is complete!** - -*Run `am -h` or jump to "**[Usage](#usage)**" to see all the available options.* - ------------------------------------------------------------------------- - -### What is AppMan? - -*AppMan is a portable version of "AM", limited to installing and managing apps only locally and without root privileges.* - -*The command name changes, from `am` to `appman`, but the script is the same.* - -*"AM" on the contrary, provides a "fixed" installation, but can install and manage apps both locally and at the system level.* - -*I recommend "AM" to privileged users who want to install and manage apps at multiple levels, and "AppMan" to non-privileged users who do not have large needs.* - ------------------------------------------------------------------------- - -### AM installation structure - -*The classic "AM" installation has the following structure:* -``` -/opt/am/APP-MANAGER ==> /usr/local/bin/am -/opt/am/modules -/opt/am/remove -``` -*Where the command `/usr/local/bin/am` is just a symbolic link to `/opt/am/APP-MANAGER`. The directory `/opt/am/modules` contains the modules "not vital" for "AM" but necessary for managing the apps. The script `/opt/am/remove` is instead necessary for removing "AM".* - ------------------------------------------------------------------------- - -### How are apps installed - -*The system-wide AppImage integration has the following structure:* -``` -/opt/$PROGRAM/ -/opt/$PROGRAM/$PROGRAM -/opt/$PROGRAM/AM-updater -/opt/$PROGRAM/remove -/opt/$PROGRAM/icons/$ICON-NAME -/usr/local/bin/$PROGRAM -/usr/local/share/applications/$PROGRAM-AM.desktop -``` -*Locally installed apps can have a directory of your choice, depending on what you decided when you first started `am -i --user {PROGRAM}` or when you started `appman` (if you chose [AppMan](#what-is-appman)) or by using the `am --user` command.* - -*In fact, the `--user` command can be used as a "flag" for application installation options, allowing you to integrate them locally and without root permissions, as AppMan does.* - -*For example, let's say you want to create and use the `/home/USER/Applications` directory, here is the structure of a locally embedded AppImage:* -``` -~/Applicazioni/$PROGRAM/ -~/Applicazioni/$PROGRAM/$PROGRAM -~/Applicazioni/$PROGRAM/AM-updater -~/Applicazioni/$PROGRAM/remove -~/Applicazioni/$PROGRAM/icons/$ICON-NAME -~/.local/bin/$PROGRAM -~/.local/share/applications/$PROGRAM-AM.desktop -``` - ------------------------------------------------------------------------- - -| [Install "AM"/"AppMan"](#installation) | [Back to "Main Index"](#main-index) | -| - | - | - ------------------------------------------------------------------------- - -# What programs can be installed - -*"AM" installs, removes, updates and manages only standalone programs, ie those programs that can be run from a single directory in which they are contained.* - -*1. **PORTABLE PROGRAMS** from official sources (see NodeJS, Platform Tools...), extracted from official .deb/tar/zip packages.* - -*2. **APPIMAGES**, from both official and unofficial sources (I also create unofficial AppImages), or compiled on-the-fly with [pkg2appimage](https://github.com/AppImage/pkg2appimage) and [appimagetool](https://github.com/AppImage/AppImageKit), like an AUR helper, from official archives.* - -*3. **THIRD-PARTY LIBRARIES** if they are missing in your repositories.* - -*The database aims to be a reference point where you can download all the AppImage packages scattered around the web, otherwise unobtainable, as you would expect from any package manager, through specific installation scripts for each application, as happens with the AUR PKGBUILDs, on Arch Linux. You can see all of them [here](https://github.com/ivan-hc/AM/tree/main/programs), divided by architecture.* - -*You can view basic information, site links and sources using the related command `am -a {PROGRAM}`, or visit [**portable-linux-apps.github.io/apps**](https://portable-linux-apps.github.io/apps).* - ------------------------------------------------------------------------- - -| [Back to "Main Index"](#main-index) | -| - | - ------------------------------------------------------------------------- - -# How to update all programs, for real - -*Most of the apps managed by "AM" have a script called `AM-updater`. It tells how updates are checked when running the `am -u` command.* - -*In most cases, the "version comparison" is used between the installed one (file `version`) and an online source (official or not, depending on how hard or easy it is to find a download URL or just a number, using the terminal). In other cases, AppImages can rely on "`appimageupdatetool`" if they support "delta updates" (install it with the command `am -i appimageupdatetool`). However, there are some programs that update themselves (and among these the most famous is certainly Firefox, all official development builds).* - -### How to update all installed apps - -*Option `-u` or `update` updates all the installed apps and keeps "AM"/"AppMan" in sync with the latest version and all latest bug fixes.* - -*1. To update only the programs, use `am -u --apps` / `appman -u --apps`* - -*2. To update just one program, use `am -u $PROGRAM` / `appman -u $PROGRAM`* - -*3. To update all the programs and "AM"/"AppMan" itself, just run the command`am -u` / `appman -u`* - -*4. To update only "AM"/"AppMan" and the modules use the option `-s` instead, `am -s` / `appman -s`* - -### How to update everything using Topgrade - -*Keeping your system up to date usually involves invoking multiple package managers. This results in big, non-portable shell one-liners saved in your shell. To remedy this, Topgrade detects which tools you use and runs the appropriate commands to update them.* - -*Install the "`topgrade`" package using the command* -``` -am -i topgrade -``` -*or* -``` -am -i --user topgrade -``` -*Visit [github.com/topgrade-rs/topgrade](https://github.com/topgrade-rs/topgrade) to learn more.* - ------------------------------------------------------------------------- - -| [Back to "Main Index"](#main-index) | -| - | - ------------------------------------------------------------------------- -### External links index ------------------------------------------------------------------------- -*All the guides listed here are available at [***github.com/ivan-hc/AM***](https://github.com/ivan-hc/AM)* - -- [Install applications](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/install.md) -- [Install only AppImages](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/install-appimage.md) - - [Install and sandbox AppImages in one go](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/install-appimage.md#install-and-sandbox-appimages-in-one-go) -- [Install AppImages not listed in this database but available in other github repos](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/extra.md) -- [List the installed applications](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/files.md) -- [List and query all the applications available on the database](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/list-and-query.md) -- [Update all](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/update.md) -- [Backup and restore installed apps using snapshots](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/backup-and-overwrite.md) -- [Remove one or more applications](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/remove.md) -- [Clone a set of programs installed from other AM and AppMan configurations](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/clone.md) -- [Change the destination path of installed programs](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/relocate.md) -- [Convert Type2 AppImages requiring libfuse2 to New Generation AppImages](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/nolibfuse.md) -- [Integrate local AppImages into the menu by dragging and dropping them](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/launcher.md) - - [How to create a launcher for a local AppImage](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/launcher.md#how-to-create-a-launcher-for-a-local-appimage) - - [How to remove the orphan launchers](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/launcher.md#how-to-remove-the-orphan-launchers) - - [AppImages from external media](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/launcher.md#appimages-from-external-media) - - [Update scattered AppImages](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/launcher.md#update-scattered-appimages) -- [Sandbox an AppImage](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/sandbox.md) - - [How to enable a sandbox](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/sandbox.md#how-to-enable-a-sandbox) - - [How to disable a sandbox](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/sandbox.md#how-to-disable-a-sandbox) - - [Sandboxing example](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/sandbox.md#sandboxing-example) - - [About Aisap sandboxing](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/sandbox.md#about-aisap-sandboxing) -- [How to update or remove apps manually](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/remove.md#how-to-update-or-remove-apps-manually) -- [Downgrade an installed app to a previous version](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/downgrade.md) -- [How to use multiple versions of the same application](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/backup-and-overwrite.md#how-to-use-multiple-versions-of-the-same-application) -- [Create and test your own installation script](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md) - - [Option Zero: "AppImages"](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#option-zero-appimages) - - [Option One: "build AppImages on-the-fly"](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#option-one-build-appimages-on-the-fly) - - [Option Two: "Archives and other programs"](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#option-two-archives-and-other-programs) - - [How an installation script works](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#how-an-installation-script-works) - - [How to test an installation script](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#how-to-test-an-installation-script) - - [How to submit a Pull Request](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/template.md#how-to-submit-a-pull-request) -- [Third-party databases for applications (NeoDB)](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/newrepo.md) -- [BSD, freeBSD and derivative systems: configuration and troubleshooting](https://github.com/ivan-hc/AM/blob/main/docs/guides-and-tutorials/bsd.md) - -[Instructions for Linux Distro Maintainers](https://github.com/ivan-hc/AM#instructions-for-linux-distro-maintainers) - -[Troubleshooting](https://github.com/ivan-hc/AM#troubleshooting) -- [An application does not work, is old and unsupported](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#an-application-does-not-work-is-old-and-unsupported) -- [Cannot download or update an application](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#cannot-download-or-update-an-application) -- [Cannot mount and run AppImages](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#cannot-mount-and-run-appimages) -- [Checksum does not match or missing verified status](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#checksum-does-not-match-or-missing-verified-status) -- [Failed to open squashfs image](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#failed-to-open-squashfs-image) -- [Spyware, malware and dangerous software](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#spyware-malware-and-dangerous-software) -- [Stop AppImage prompt to create its own launcher, desktop integration and doubled launchers](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#stop-appimage-prompt-to-create-its-own-launcher-desktop-integration-and-doubled-launchers) -- [The script points to "releases" instead of downloading the latest stable](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#the-script-points-to-releases-instead-of-downloading-the-latest-stable) -- [Ubuntu mess](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#ubuntu-mess) -- [Wrong download link](https://github.com/ivan-hc/AM/blob/main/docs/troubleshooting.md#wrong-download-link) - ------------------------------------------------------------------------- - -| [Back to "Main Index"](#main-index) | -| - | - ------------------------------------------------------------------------- -# Related projects -#### Side Projects -- *[amcheck](https://github.com/ivan-hc/amcheck), checks the validity of scripts in this database and monitors the availability of AppImages* -- *[am-extras](https://github.com/ivan-hc/am-extras), lists applications from third-party databases* -- *[am-gui](https://github.com/Shikakiben/AM-GUI), a graphical Front for AM, by @Shikakiben* -- *[vappman](https://github.com/joedefen/vappman), a visual (curses) TUI interface to AppMan, by @joedefen* - -#### My other projects -- *[AppImaGen](https://github.com/ivan-hc/AppImaGen), easily create AppImages from Ubuntu PPAs or Debian using pkg2appimage and appimagetool* -- *[ArchImage](https://github.com/ivan-hc/ArchImage), create AppImages for all distributions using Arch Linux packages. Powered by JuNest* -- *[Firefox for Linux scripts](https://github.com/ivan-hc/Firefox-for-Linux-scripts), easily install the official releases of Firefox for Linux* -- *[My AppImage packages](https://github.com/ivan-hc#my-appimage-packages) the complete list of packages managed by me and available in this database* -- *[portable2appimage](https://github.com/ivan-hc/portable2appimage), convert standalone, self-contained portable apps into AppImage packages* -- *[Snap2AppImage](https://github.com/ivan-hc/Snap2AppImage), try to convert Snap packages to AppImages* - ------------------------------------------------------------------------- - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - ------------------------------------------------------------------------- - -| [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) | [**PayPal.me**](https://paypal.me/IvanAlexHC) | [Install "AM"/"AppMan"](#installation) | ["Main Index"](#main-index) | -| - | - | - | - | - ------------------------------------------------------------------------- - - diff --git a/internet.md b/internet.md deleted file mode 100644 index 8ad1e7835..000000000 --- a/internet.md +++ /dev/null @@ -1,169 +0,0 @@ -# INTERNET - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **41** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***adobe-flash-player***](apps/adobe-flash-player.md) | *Unofficial port. Adobe Flash is a mostly discontinued multimedia software platform used for production of animations, rich internet applications, desktop applications, mobile apps, mobile games, and embedded web browser video players. Over 67 billion devices use adobe flash player!*..[ *read more* ](apps/adobe-flash-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/adobe-flash-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/adobe-flash-player) | -| | [***altersend***](apps/altersend.md) | *Send files directly between devices over the internet - no cloud, no servers, no size limits.*..[ *read more* ](apps/altersend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altersend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altersend) | -| | [***amule***](apps/amule.md) | *All-platform P2P client based on eMule. aMule is a free, GPL-licensed peer-to-peer file-sharing client for the eD2k and Kademlia networks.*..[ *read more* ](apps/amule.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amule) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amule) | -| | [***animecoin***](apps/animecoin.md) | *Animecoin is a free open source peer-to-peer electronic cash system that is completely decentralized, without the need for a central server or trusted parties. Users hold the crypto keys to their own money and transact directly with each other, with the help of a P2P network to check for double-spending.*..[ *read more* ](apps/animecoin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animecoin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animecoin) | -| | [***animeko***](apps/animeko.md) | *A one-stop platform for finding, following, and watching anime, featuring danmaku (bullet comments) and cloud-based collection synchronization (Bangumi), offline caching, BitTorrent, and cloud-based danmaku filtering.*..[ *read more* ](apps/animeko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animeko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animeko) | -| | [***ant-downloader***](apps/ant-downloader.md) | *BitTorrent Client developed by golang, angular, electron.*..[ *read more* ](apps/ant-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ant-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ant-downloader) | -| | [***cabal-desktop***](apps/cabal-desktop.md) | *Cabal p2p offline-first desktop application.*..[ *read more* ](apps/cabal-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cabal-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cabal-desktop) | -| | [***dezor***](apps/dezor.md) | *The web browser including VPN and Adblocker.*..[ *read more* ](apps/dezor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dezor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dezor) | -| | [***electorrent***](apps/electorrent.md) | *A remote control Torrent client.*..[ *read more* ](apps/electorrent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electorrent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electorrent) | -| | [***haveno-reto***](apps/haveno-reto.md) | *Decentralized P2P exchange built on Monero and Tor.*..[ *read more* ](apps/haveno-reto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/haveno-reto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/haveno-reto) | -| | [***hide.me***](apps/hide.me.md) | *Hide.me CLI VPN client for Linux.*..[ *read more* ](apps/hide.me.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hide.me) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hide.me) | -| | [***hydra***](apps/hydra.md) | *Game launcher with its own embedded bittorrent client.*..[ *read more* ](apps/hydra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hydra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hydra) | -| | [***ktorrent***](apps/ktorrent.md) | *Unofficial AppImage of KTorrent.*..[ *read more* ](apps/ktorrent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ktorrent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ktorrent) | -| | [***migu***](apps/migu.md) | *Stream anime torrents, real-time with no waiting for downloads.*..[ *read more* ](apps/migu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/migu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/migu) | -| | [***moose***](apps/moose.md) | *An application to stream, cast and download torrents.*..[ *read more* ](apps/moose.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moose) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moose) | -| | [***n3h***](apps/n3h.md) | *Nodejs implementation of holochain networking / p2p backend process.*..[ *read more* ](apps/n3h.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/n3h) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/n3h) | -| | [***nyaa***](apps/nyaa.md) | *A nyaa.si tui tool for browsing and downloading torrents.*..[ *read more* ](apps/nyaa.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nyaa) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nyaa) | -| | [***nym-vpn***](apps/nym-vpn.md) | *Cross-platform open source VPN client built in Rust, with mixnet anonymity and WireGuard speed. Protects metadata, not just IP addresses. Zero-knowledge payments for unlinkable online activities.*..[ *read more* ](apps/nym-vpn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nym-vpn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nym-vpn) | -| | [***oblivion-desktop***](apps/oblivion-desktop.md) | *Unofficial Warp Client, Oblivion provides a secure, optimised internet access.*..[ *read more* ](apps/oblivion-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oblivion-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oblivion-desktop) | -| | [***p2p-chat***](apps/p2p-chat.md) | *P2P LAN chatting and file sharing tool.*..[ *read more* ](apps/p2p-chat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/p2p-chat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/p2p-chat) | -| | [***p2pderivatives***](apps/p2pderivatives.md) | *Enables users to enter into Discreet Log Contracts.*..[ *read more* ](apps/p2pderivatives.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/p2pderivatives) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/p2pderivatives) | -| | [***qbittorrent***](apps/qbittorrent.md) | *A powerful QT-based Bittorrent Client, official AppImage.*..[ *read more* ](apps/qbittorrent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qbittorrent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qbittorrent) | -| | [***qbittorrent-enhanced***](apps/qbittorrent-enhanced.md) | *Unofficial qBittorrent Enhanced, based on qBittorrent.*..[ *read more* ](apps/qbittorrent-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qbittorrent-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qbittorrent-enhanced) | -| | [***quiet***](apps/quiet.md) | *A private, p2p alternative to Slack and Discord built on Tor & IPFS*..[ *read more* ](apps/quiet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quiet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quiet) | -| | [***rats-search***](apps/rats-search.md) | *P2P BitTorrent search engine.*..[ *read more* ](apps/rats-search.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rats-search) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rats-search) | -| | [***riseup-vpn***](apps/riseup-vpn.md) | *Unofficial, RiseupVPN is an easy, fast, and secure VPN service from riseup.net.*..[ *read more* ](apps/riseup-vpn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/riseup-vpn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/riseup-vpn) | -| | [***sentinel***](apps/sentinel.md) | *An open-source decentralized VPN network application.*..[ *read more* ](apps/sentinel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sentinel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sentinel) | -| | [***sniffnet***](apps/sniffnet.md) | *Sniffnet is a network monitoring tool to help you easily keep track of your Internet traffic. Whether you want to gather statistics, you’re curious to see who you are exchanging data with, or you need to inspect more in depth what's going on in your network, this app will get you covered.*..[ *read more* ](apps/sniffnet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sniffnet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sniffnet) | -| | [***tixati***](apps/tixati.md) | *A New and Powerful P2P System 100% Free, Simple and Easy to Use Bittorrent Client.*..[ *read more* ](apps/tixati.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tixati) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tixati) | -| | [***torrents_digger***](apps/torrents_digger.md) | *Torrents Digger searches already available torrents from internet.*..[ *read more* ](apps/torrents_digger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/torrents_digger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/torrents_digger) | -| | [***torrenttools***](apps/torrenttools.md) | *Cli tool to inspect/create/edit BitTorrent metafiles.*..[ *read more* ](apps/torrenttools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/torrenttools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/torrenttools) | -| | [***toru***](apps/toru.md) | *Bittorrent streaming CLI tool. Stream anime torrents real-time.*..[ *read more* ](apps/toru.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/toru) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/toru) | -| | [***transmission-gtk***](apps/transmission-gtk.md) | *Unofficial. Fast, easy, and free BitTorrent client, GTK+ GUI.*..[ *read more* ](apps/transmission-gtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transmission-gtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transmission-gtk) | -| | [***transmission-qt***](apps/transmission-qt.md) | *Unofficial, Fast, easy, and free BitTorrent client, Qt GUI.*..[ *read more* ](apps/transmission-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transmission-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transmission-qt) | -| | [***trgui-ng***](apps/trgui-ng.md) | *Remote GUI for Transmission torrent daemon.*..[ *read more* ](apps/trgui-ng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trgui-ng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trgui-ng) | -| | [***varia***](apps/varia.md) | *Unofficial. Aria2-based advanced download manager with support for downloading files, torrents, video and audio + support for Chromium and Firefox extension.*..[ *read more* ](apps/varia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/varia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/varia) | -| | [***warp***](apps/warp.md) | *Unofficial. Fast and secure file transfer through internet or local network exchanging a word-based code.*..[ *read more* ](apps/warp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/warp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/warp) | -| | [***waterfox***](apps/waterfox.md) | *A privacy-focused web browser engineered to give you speed, control, and peace of mind on the internet.*..[ *read more* ](apps/waterfox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/waterfox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/waterfox) | -| | [***wyrmhole***](apps/wyrmhole.md) | *A cross-platform GUI wrapper for the p2p magic-wormhole.rs library.*..[ *read more* ](apps/wyrmhole.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wyrmhole) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wyrmhole) | -| | [***xchat***](apps/xchat.md) | *Chat with other people using Internet Relay Chat.*..[ *read more* ](apps/xchat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xchat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xchat) | -| | [***yts-streaming***](apps/yts-streaming.md) | *Stream or play yts and torrent movies.*..[ *read more* ](apps/yts-streaming.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yts-streaming) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yts-streaming) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/json2simple b/json2simple new file mode 100755 index 000000000..75860e78f --- /dev/null +++ b/json2simple @@ -0,0 +1,38 @@ +#!/bin/env python3 + +import json +import sys + +def remove_whitespace_eol(s: str) -> str: + r = [] + for line in s.splitlines(): + r.append(line.rstrip()) + + return "\n".join(r) + +filepath = sys.argv[1] + +with open(filepath) as f: + data = json.load(f) + f.close() + +with open(f"{filepath[:-5]}", 'w') as file: + string = f"# {data['name']}\n" + string += f"{data['description']}\n" + + screenshots = data.get('screenshots') # returns None if key is missing + if screenshots is not None and len(screenshots) > 0: + string += f"# SCREENSHOTS: {' '.join(screenshots)}\n" + + string += f"# SITES: {' '.join(data['sites'])}\n" + + sources = data.get('sources') + if sources is not None and len(sources) > 0: + string += f"# SOURCES: {' '.join(sources)}\n" + + buttons = data.get('buttons') + if buttons is not None and len(buttons) != 0: + string += f"# BUTTONS: {' '.join(buttons)}\n" + + file.write(remove_whitespace_eol(string)) + file.close() diff --git a/kde.md b/kde.md deleted file mode 100644 index 40f83a22e..000000000 --- a/kde.md +++ /dev/null @@ -1,208 +0,0 @@ -# KDE - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **15** programs and **65** items for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***ark***](apps/kdeutils.md) | *Archiving tool for .zip/.tar/.rar and more. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***bomber***](apps/kdegames.md) | *Arcade spaceship game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***bovo***](apps/kdegames.md) | *Five in a row game from. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***calligra***](apps/calligra.md) | *Calligra Suite is an office and graphic art suite by KDE. It contains applications for word processing, spreadsheets, presentation, vector graphics, and editing databases.*..[ *read more* ](apps/calligra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calligra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calligra) | -| | [***falkon***](apps/falkon.md) | *Unofficial. A fast Qt web browser from KDE.*..[ *read more* ](apps/falkon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/falkon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/falkon) | -| | [***filelight***](apps/filelight.md) | *Unofficial. View disk usage information, by KDE.*..[ *read more* ](apps/filelight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filelight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filelight) | -| | [***francis***](apps/kdeutils.md) | *Pomodoro technique, get more productive. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***granatier***](apps/kdegames.md) | *Bomberman clone. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***gwenview***](apps/gwenview.md) | *Unofficial. Fast and easy to use image viewer by KDE. ideal for displaying a collection of images.*..[ *read more* ](apps/gwenview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gwenview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gwenview) | -| | [***isoimagewriter***](apps/kdeutils.md) | *Write an ISO Image to a USB Disk. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kajongg***](apps/kdegames.md) | *An ancient Chinese board game for 4 players. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kalm***](apps/kdeutils.md) | *Teach you different breathing techniques. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kapman***](apps/kdegames.md) | *Pac-Man clone. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kate***](apps/kdeutils.md) | *A multi-document editor part of KDE. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***katomic***](apps/kdegames.md) | *Edu. game based around molecular geometry. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kbackup***](apps/kdeutils.md) | *Back up your data. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kblackbox***](apps/kdegames.md) | *A game of hide and seek. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kblocks***](apps/kdegames.md) | *Classic Tetris / falling blocks game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kbounce***](apps/kdegames.md) | *Fill the field game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kbreakout***](apps/kdegames.md) | *Destroy bricks without losing the ball. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kcalc***](apps/kdeutils.md) | *Scientific Calculator. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kcharselect***](apps/kdeutils.md) | *Character Selector. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kclock***](apps/kdeutils.md) | *A universal clock application. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdebugsettings***](apps/kdeutils.md) | *Edits displayed QLoggingCategory. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdeconnect***](apps/kdeconnect.md) | *Unofficial, A project that enables all your Android devices to communicate with each other.*..[ *read more* ](apps/kdeconnect.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeconnect) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeconnect) | -| | [***kdegames***](apps/kdegames.md) | *Unofficial, Full & updatable KDE Games suite, metapackage.*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kdenlive***](apps/kdenlive.md) | *A powerful Video Editor provided by KDE.*..[ *read more* ](apps/kdenlive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdenlive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdenlive) | -| | [***kdenlive-daily***](apps/kdenlive-daily.md) | *A powerful Video Editor provided by KDE (daily builds).*..[ *read more* ](apps/kdenlive-daily.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdenlive-daily) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdenlive-daily) | -| | [***kdenlive-enhanced***](apps/kdenlive-enhanced.md) | *Unofficial AppImage of Kdenlive Video Editor which is able to work on any linux distro.*..[ *read more* ](apps/kdenlive-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdenlive-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdenlive-enhanced) | -| | [***kdeutils***](apps/kdeutils.md) | *Unofficial, Full & updatable KDE Utils suite, metapackage.*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdf***](apps/kdeutils.md) | *view Disk Usage. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdialog***](apps/kdeutils.md) | *a dialog utility. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdiamond***](apps/kdegames.md) | *Diamond game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***keditbookmarks***](apps/kdeutils.md) | *Bookmarks editor. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***keysmith***](apps/kdeutils.md) | *Generates tokens for your two-factor logins. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kfind***](apps/kdeutils.md) | *A search tool. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kfourinline***](apps/kdegames.md) | *4 in row game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kgoldrunner***](apps/kdegames.md) | *A game with a runner and gold. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kgpg***](apps/kdeutils.md) | *A GnuPG frontend. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kigo***](apps/kdegames.md) | *Go strategic board game for two players. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***killbots***](apps/kdegames.md) | *Port of the classic console game Robots. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kiriki***](apps/kdegames.md) | *A dice game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kjumpingcube***](apps/kdegames.md) | *A game of dices on a board. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***klickety***](apps/kdegames.md) | *Color matching like SameGame. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***klines***](apps/kdegames.md) | *Inspired by well known game of Color Lines. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kmahjongg***](apps/kdegames.md) | *Mahjongg game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kmines***](apps/kdegames.md) | *Classic mine game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kmymoney***](apps/kmymoney.md) | *KMyMoney is a cross-platform personal finance manager build on KDE frameworks technologies for your desktop and notebook environment.*..[ *read more* ](apps/kmymoney.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kmymoney) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kmymoney) | -| | [***knavalbattle***](apps/kdegames.md) | *Battle Ship game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***knetwalk***](apps/kdegames.md) | *Net constructing game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***knights***](apps/knights.md) | *Unofficial, KDE's chess game frontend.*..[ *read more* ](apps/knights.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/knights) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/knights) | -| | [***kolf***](apps/kdegames.md) | *Mini Golf game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kollision***](apps/kdegames.md) | *Dodge red balls in the field. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kongress***](apps/kdeutils.md) | *A companion application for conferences. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***konquest***](apps/kdegames.md) | *Game of planets. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kpat***](apps/kdegames.md) | *Klondike, Spider, Free Cell and other Solitaire. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***krecorder***](apps/kdeutils.md) | *An audio recording application. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kreversi***](apps/kdegames.md) | *Reversi game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kshisen***](apps/kdegames.md) | *A game similar to Mahjongg. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksirk***](apps/kdegames.md) | *A strategy board game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksnakeduel***](apps/kdegames.md) | *A snake race game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kspaceduel***](apps/kdegames.md) | *Battleship with satellites in the space. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksquares***](apps/kdegames.md) | *Win with most number of completed squares. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksudoku***](apps/kdegames.md) | *Sudoku game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kteatime***](apps/kdeutils.md) | *A handy timer for steeping tea. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***ktimer***](apps/kdeutils.md) | *Countdown Launcher. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***ktrip***](apps/kdeutils.md) | *KTrip helps you navigate in public transport. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***ktuberling***](apps/kdegames.md) | *Simple Mr. Potato game for children. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kubrick***](apps/kdegames.md) | *A logic game based on Rubik's Cube. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kwave***](apps/kwave.md) | *A sound & audio editor designed for the KDE Desktop Environment.*..[ *read more* ](apps/kwave.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kwave) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kwave) | -| | [***kweather***](apps/kdeutils.md) | *A convergent weather application. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kwrite***](apps/kdeutils.md) | *KWrite is a text editor by KDE. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***lskat***](apps/kdegames.md) | *Fun and engaging card game for two players. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***palapeli***](apps/kdegames.md) | *Jigsaw puzzle game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***picmi***](apps/kdegames.md) | *Single player logic-based puzzle game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***skanpage***](apps/kdeutils.md) | *A simple scanning application. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***subtitle-composer***](apps/subtitle-composer.md) | *KF5/Qt Video Subtitle Editor for KDE.*..[ *read more* ](apps/subtitle-composer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/subtitle-composer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/subtitle-composer) | -| | [***sweeper***](apps/kdeutils.md) | *System Cleaner. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***telly-skout***](apps/kdeutils.md) | *A convergent Kirigami TV guide. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***xapkdetector***](apps/xapkdetector.md) | *APK/DEX detector that shows an information about build tools, libraries and protection of APK/DEX files.*..[ *read more* ](apps/xapkdetector.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xapkdetector) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xapkdetector) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/metapackages.md b/metapackages.md deleted file mode 100644 index 16c102dee..000000000 --- a/metapackages.md +++ /dev/null @@ -1,207 +0,0 @@ -# METAPACKAGES - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **4** "metapackages", those few scripts that allow the use of many more programs with one installation (**75** items in total). Find which metapackage corresponds to the program you're interested in from this list. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***adb***](apps/platform-tools.md) | *Command-line tool for communicating with Android devices or emulators. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***ark***](apps/kdeutils.md) | *Archiving tool for .zip/.tar/.rar and more. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***bomber***](apps/kdegames.md) | *Arcade spaceship game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***bovo***](apps/kdegames.md) | *Five in a row game from. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***etc1tool***](apps/platform-tools.md) | *Utility for compressing and decompressing ETC1 texture files. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***fastboot***](apps/platform-tools.md) | *Android bootloader tool for flashing, unlocking, and managing firmware. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***francis***](apps/kdeutils.md) | *Pomodoro technique, get more productive. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***granatier***](apps/kdegames.md) | *Bomberman clone. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***hprof-conv***](apps/platform-tools.md) | *Converts Android HPROF heap dumps to standard Java HPROF format. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***isoimagewriter***](apps/kdeutils.md) | *Write an ISO Image to a USB Disk. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kajongg***](apps/kdegames.md) | *An ancient Chinese board game for 4 players. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kalm***](apps/kdeutils.md) | *Teach you different breathing techniques. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kapman***](apps/kdegames.md) | *Pac-Man clone. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kate***](apps/kdeutils.md) | *A multi-document editor part of KDE. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***katomic***](apps/kdegames.md) | *Edu. game based around molecular geometry. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kbackup***](apps/kdeutils.md) | *Back up your data. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kblackbox***](apps/kdegames.md) | *A game of hide and seek. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kblocks***](apps/kdegames.md) | *Classic Tetris / falling blocks game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kbounce***](apps/kdegames.md) | *Fill the field game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kbreakout***](apps/kdegames.md) | *Destroy bricks without losing the ball. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kcalc***](apps/kdeutils.md) | *Scientific Calculator. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kcharselect***](apps/kdeutils.md) | *Character Selector. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kclock***](apps/kdeutils.md) | *A universal clock application. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdebugsettings***](apps/kdeutils.md) | *Edits displayed QLoggingCategory. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdegames***](apps/kdegames.md) | *Unofficial, Full & updatable KDE Games suite, metapackage.*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kdeutils***](apps/kdeutils.md) | *Unofficial, Full & updatable KDE Utils suite, metapackage.*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdf***](apps/kdeutils.md) | *view Disk Usage. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdialog***](apps/kdeutils.md) | *a dialog utility. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kdiamond***](apps/kdegames.md) | *Diamond game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***keditbookmarks***](apps/kdeutils.md) | *Bookmarks editor. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***keysmith***](apps/kdeutils.md) | *Generates tokens for your two-factor logins. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kfind***](apps/kdeutils.md) | *A search tool. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kfourinline***](apps/kdegames.md) | *4 in row game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kgoldrunner***](apps/kdegames.md) | *A game with a runner and gold. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kgpg***](apps/kdeutils.md) | *A GnuPG frontend. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kigo***](apps/kdegames.md) | *Go strategic board game for two players. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***killbots***](apps/kdegames.md) | *Port of the classic console game Robots. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kiriki***](apps/kdegames.md) | *A dice game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kjumpingcube***](apps/kdegames.md) | *A game of dices on a board. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***klickety***](apps/kdegames.md) | *Color matching like SameGame. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***klines***](apps/kdegames.md) | *Inspired by well known game of Color Lines. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kmahjongg***](apps/kdegames.md) | *Mahjongg game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kmines***](apps/kdegames.md) | *Classic mine game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***knavalbattle***](apps/kdegames.md) | *Battle Ship game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***knetwalk***](apps/kdegames.md) | *Net constructing game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kolf***](apps/kdegames.md) | *Mini Golf game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kollision***](apps/kdegames.md) | *Dodge red balls in the field. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kongress***](apps/kdeutils.md) | *A companion application for conferences. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***konquest***](apps/kdegames.md) | *Game of planets. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kpat***](apps/kdegames.md) | *Klondike, Spider, Free Cell and other Solitaire. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***krecorder***](apps/kdeutils.md) | *An audio recording application. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kreversi***](apps/kdegames.md) | *Reversi game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kshisen***](apps/kdegames.md) | *A game similar to Mahjongg. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksirk***](apps/kdegames.md) | *A strategy board game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksnakeduel***](apps/kdegames.md) | *A snake race game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kspaceduel***](apps/kdegames.md) | *Battleship with satellites in the space. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksquares***](apps/kdegames.md) | *Win with most number of completed squares. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***ksudoku***](apps/kdegames.md) | *Sudoku game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kteatime***](apps/kdeutils.md) | *A handy timer for steeping tea. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***ktimer***](apps/kdeutils.md) | *Countdown Launcher. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***ktrip***](apps/kdeutils.md) | *KTrip helps you navigate in public transport. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***ktuberling***](apps/kdegames.md) | *Simple Mr. Potato game for children. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kubrick***](apps/kdegames.md) | *A logic game based on Rubik's Cube. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***kweather***](apps/kdeutils.md) | *A convergent weather application. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kwrite***](apps/kdeutils.md) | *KWrite is a text editor by KDE. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***lskat***](apps/kdegames.md) | *Fun and engaging card game for two players. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***make_f2fs***](apps/platform-tools.md) | *Creates F2FS filesystems optimized for flash storage. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***make_f2fs_casefold***](apps/platform-tools.md) | *Creates F2FS filesystems with case-insensitive filename support. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***mke2fs***](apps/platform-tools.md) | *Creates ext2/ext3/ext4 Linux filesystems. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***node***](apps/node.md) | *This is the official suite of Node.js tools, also known as "NodeJS", a JavaScript runtime built on Chrome's V8 JavaScript engine.*..[ *read more* ](apps/node.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/node) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/node) | -| | [***npm***](apps/node.md) | *Package manager for Node.js dependencies and modules. This is part of "node".*..[ *read more* ](apps/node.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/node) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/node) | -| | [***npx***](apps/node.md) | *Runs commands from npm packages without manual installation. This is part of "node".*..[ *read more* ](apps/node.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/node) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/node) | -| | [***palapeli***](apps/kdegames.md) | *Jigsaw puzzle game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***picmi***](apps/kdegames.md) | *Single player logic-based puzzle game. This is part of "kdegames".*..[ *read more* ](apps/kdegames.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdegames) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdegames) | -| | [***platform-tools***](apps/platform-tools.md) | *Official Suite of command line utilities to manage Android devices.*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***skanpage***](apps/kdeutils.md) | *A simple scanning application. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***sqlite3***](apps/platform-tools.md) | *Command-line tool for managing SQLite databases. This is part of "platform-tools".*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***sweeper***](apps/kdeutils.md) | *System Cleaner. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***telly-skout***](apps/kdeutils.md) | *A convergent Kirigami TV guide. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/office.md b/office.md deleted file mode 100644 index 1f20c9832..000000000 --- a/office.md +++ /dev/null @@ -1,208 +0,0 @@ -# OFFICE - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **79** programs and **1** items for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***alexandria***](apps/alexandria.md) | *eBook reader built with Tauri, Epub.js, and Typescript.*..[ *read more* ](apps/alexandria.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alexandria) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alexandria) | -| | [***anything-llm***](apps/anything-llm.md) | *AI business intelligence tool. Any LLM, any document.*..[ *read more* ](apps/anything-llm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anything-llm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anything-llm) | -| | [***apiflow***](apps/apiflow.md) | *A modern API workspace that works both online and offlinecombining API documentation, testing, mock, and AI-powered automation in one lightweight tool.*..[ *read more* ](apps/apiflow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/apiflow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/apiflow) | -| | [***bk***](apps/bk.md) | *Terminal Epub reader.*..[ *read more* ](apps/bk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bk) | -| | [***bookdb***](apps/bookdb.md) | *A book catalog database for personal collections. Can import data from Readerware 4.*..[ *read more* ](apps/bookdb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bookdb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bookdb) | -| | [***boost-note***](apps/boost-note.md) | *Document driven project management tool to speedup remote DevOps.*..[ *read more* ](apps/boost-note.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boost-note) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boost-note) | -| | [***calligra***](apps/calligra.md) | *Calligra Suite is an office and graphic art suite by KDE. It contains applications for word processing, spreadsheets, presentation, vector graphics, and editing databases.*..[ *read more* ](apps/calligra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/calligra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/calligra) | -| | [***collaboraoffice***](apps/collaboraoffice.md) | *Unofficial, a collaborative online office suite based on LibreOffice technology.*..[ *read more* ](apps/collaboraoffice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/collaboraoffice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/collaboraoffice) | -| | [***corepad***](apps/corepad.md) | *A document editor for CuboCore Application Suite.*..[ *read more* ](apps/corepad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corepad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corepad) | -| | [***densify***](apps/densify.md) | *A GTK+ GUI Application written in Python that simplifies compressing PDF files with Ghostscript.*..[ *read more* ](apps/densify.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/densify) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/densify) | -| | [***diffpdf***](apps/diffpdf.md) | *Unofficial AppImage of DiffPDF.*..[ *read more* ](apps/diffpdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diffpdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diffpdf) | -| | [***eplee***](apps/eplee.md) | *Sweet, simple epub reader.*..[ *read more* ](apps/eplee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eplee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eplee) | -| | [***evince***](apps/evince.md) | *Unofficial. Document viewer for popular document formats.*..[ *read more* ](apps/evince.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/evince) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/evince) | -| | [***exifcleaner***](apps/exifcleaner.md) | *Clean exif metadata from images, videos, and PDFs.*..[ *read more* ](apps/exifcleaner.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exifcleaner) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exifcleaner) | -| | [***fbreader***](apps/fbreader.md) | *Your Favourite eBook Reader*..[ *read more* ](apps/fbreader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fbreader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fbreader) | -| | [***ficus***](apps/ficus.md) | *A software for editing and managing markdown documents.*..[ *read more* ](apps/ficus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ficus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ficus) | -| | [***flippy-qualitative-testbench***](apps/flippy-qualitative-testbench.md) | *Music sheet reader.*..[ *read more* ](apps/flippy-qualitative-testbench.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flippy-qualitative-testbench) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flippy-qualitative-testbench) | -| | [***fluent-reader***](apps/fluent-reader.md) | *Modern desktop RSS reader.*..[ *read more* ](apps/fluent-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fluent-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fluent-reader) | -| | [***folo***](apps/folo.md) | *Folo is the AI Reader.*..[ *read more* ](apps/folo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/folo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/folo) | -| | [***gimagereader***](apps/gimagereader.md) | *Unofficial AppImage of gImageReader.*..[ *read more* ](apps/gimagereader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gimagereader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gimagereader) | -| | [***gnumeric***](apps/gnumeric.md) | *Unofficial. An open-source spreadsheet program.*..[ *read more* ](apps/gnumeric.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnumeric) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnumeric) | -| | [***gospel***](apps/gospel.md) | *Poppler based fast pdf viewer written in PyQt5.*..[ *read more* ](apps/gospel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gospel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gospel) | -| | [***hdict***](apps/hdict.md) | *Offline dictionary reader for StarDict, Slob, Mdict and Dictd dictionaries.*..[ *read more* ](apps/hdict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hdict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hdict) | -| | [***htmldoc***](apps/htmldoc.md) | *HTML & Markdown Conversion Software to output PostScript and PDF.*..[ *read more* ](apps/htmldoc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/htmldoc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/htmldoc) | -| | [***inkscape***](apps/inkscape.md) | *Unofficial. Vector-based drawing program and graphics editor for both artistic and technical illustrations. It can import and export various file formats, including SVG, AI, EPS, PDF, AutoCAD, PS and PNG.*..[ *read more* ](apps/inkscape.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/inkscape) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/inkscape) | -| | [***ireader***](apps/ireader.md) | *Privacy-focused, open source novel reader app.*..[ *read more* ](apps/ireader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ireader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ireader) | -| | [***kate***](apps/kdeutils.md) | *A multi-document editor part of KDE. This is part of "kdeutils".*..[ *read more* ](apps/kdeutils.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdeutils) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdeutils) | -| | [***kiwix***](apps/kiwix.md) | *An offline reader for Web content, primarily designed to make Wikipedia available offline. It reads archives in the ZIM file format, a highly compressed open format with additional metadata.*..[ *read more* ](apps/kiwix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kiwix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kiwix) | -| | [***koodo-reader***](apps/koodo-reader.md) | *Modern ebook manager and reader with sync & backup capacities.*..[ *read more* ](apps/koodo-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koodo-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koodo-reader) | -| | [***koreader***](apps/koreader.md) | *A document viewer for E Ink devices. Supported fileformats include EPUB, PDF, DjVu, XPS, CBT, CBZ, FB2, PDB, TXT, HTML, RTF, CHM, DOC, MOBI and ZIP files. It’s available for Kindle, Kobo, PocketBook, Android and desktop Linux.*..[ *read more* ](apps/koreader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koreader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koreader) | -| | [***koreader-nightly***](apps/koreader-nightly.md) | *A document viewer for E Ink devices. Supported fileformats include EPUB, PDF, DjVu, XPS, CBT, CBZ, FB2, PDB, TXT, HTML, RTF, CHM, DOC, MOBI and ZIP files. It’s available for Kindle, Kobo, PocketBook, Android and desktop Linux. Nightly build.*..[ *read more* ](apps/koreader-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koreader-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koreader-nightly) | -| | [***libreoffice***](apps/libreoffice.md) | *Unofficial, LibreOffice is a private and powerful, free and open source office suite – the successor project to OpenOffice. It's compatible with Microsoft Office/365 files.*..[ *read more* ](apps/libreoffice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/libreoffice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/libreoffice) | -| | [***makagiga***](apps/makagiga.md) | *To-do manager, notepad, RSS reader and much more.*..[ *read more* ](apps/makagiga.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/makagiga) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/makagiga) | -| | [***mapic***](apps/mapic.md) | *MaPic is a Image Viewer with AI Metadata Reader.*..[ *read more* ](apps/mapic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mapic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mapic) | -| | [***master-pdf-editor***](apps/master-pdf-editor.md) | *Master PDF Editor allows you to create, edit, preview, encrypt, sign and print PDF documents.*..[ *read more* ](apps/master-pdf-editor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/master-pdf-editor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/master-pdf-editor) | -| | [***mdsilo-app***](apps/mdsilo-app.md) | *Lightweight Knowledge Base and Feed Reader.*..[ *read more* ](apps/mdsilo-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mdsilo-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mdsilo-app) | -| | [***mrrss***](apps/mrrss.md) | *A modern, cross-platform, and free AI RSS reader.*..[ *read more* ](apps/mrrss.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mrrss) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mrrss) | -| | [***mtcelledit***](apps/mtcelledit.md) | *Lightweight spreadsheet program.*..[ *read more* ](apps/mtcelledit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mtcelledit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mtcelledit) | -| | [***mupdf***](apps/mupdf.md) | *Lightweight PDF, XPS, and E-book viewer.*..[ *read more* ](apps/mupdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mupdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mupdf) | -| | [***mutool***](apps/mutool.md) | *All purpose tool for dealing with PDF files.*..[ *read more* ](apps/mutool.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mutool) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mutool) | -| | [***newsflash***](apps/newsflash.md) | *Unofficial. RSS reader with support for local and web RSS feed.*..[ *read more* ](apps/newsflash.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/newsflash) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/newsflash) | -| | [***nightpdf***](apps/nightpdf.md) | *Dark Mode PDF Reader built using Electron and PDF.js.*..[ *read more* ](apps/nightpdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nightpdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nightpdf) | -| | [***ocrmypdf***](apps/ocrmypdf.md) | *Unofficial AppImage of OCRmyPDF.*..[ *read more* ](apps/ocrmypdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ocrmypdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ocrmypdf) | -| | [***onlyoffice***](apps/onlyoffice.md) | *Office Suite with full support for MS Windows formats and cloud.*..[ *read more* ](apps/onlyoffice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onlyoffice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onlyoffice) | -| | [***pboy***](apps/pboy.md) | *A small .pdf management tool with a command-line UI.*..[ *read more* ](apps/pboy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pboy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pboy) | -| | [***pdf-arranger***](apps/pdf-arranger.md) | *Unofficial, a small python-gtk application, which helps the user to merge or split PDF documents and rotate, crop and rearrange their pages.*..[ *read more* ](apps/pdf-arranger.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf-arranger) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf-arranger) | -| | [***pdf-diff***](apps/pdf-diff.md) | *A CLI tool for visualizing differences between two pdf files.*..[ *read more* ](apps/pdf-diff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf-diff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf-diff) | -| | [***pdf-sync***](apps/pdf-sync.md) | *PDF Reader in JavaScript with Sync.*..[ *read more* ](apps/pdf-sync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf-sync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf-sync) | -| | [***pdf-tricks***](apps/pdf-tricks.md) | *Unofficial, a simple, efficient application for small manipulations in PDF files.*..[ *read more* ](apps/pdf-tricks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf-tricks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf-tricks) | -| | [***pdf2htmlex***](apps/pdf2htmlex.md) | *Convert PDF to HTML without losing text or format.*..[ *read more* ](apps/pdf2htmlex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf2htmlex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf2htmlex) | -| | [***pdf4qt***](apps/pdf4qt.md) | *Open source PDF editor.*..[ *read more* ](apps/pdf4qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf4qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf4qt) | -| | [***pdfcompress***](apps/pdfcompress.md) | *A utility to compress PDF documentas based on Ghostscript and YAD.*..[ *read more* ](apps/pdfcompress.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdfcompress) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdfcompress) | -| | [***pdfcrackgui***](apps/pdfcrackgui.md) | *GUI overlay for the popular and highly regarded pdfcrack.*..[ *read more* ](apps/pdfcrackgui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdfcrackgui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdfcrackgui) | -| | [***pdfquirk***](apps/pdfquirk.md) | *Creating PDFs from images or scanner made easy.*..[ *read more* ](apps/pdfquirk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdfquirk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdfquirk) | -| | [***plagpatrol***](apps/plagpatrol.md) | *Detecting documents tampered to bypass plagiarism detectors.*..[ *read more* ](apps/plagpatrol.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/plagpatrol) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/plagpatrol) | -| | [***potatopresenter***](apps/potatopresenter.md) | *Create presentation slides and exported as PDF.*..[ *read more* ](apps/potatopresenter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/potatopresenter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/potatopresenter) | -| | [***qpdf***](apps/qpdf.md) | *CLI tool to perform content-preserving transformations on PDF files.*..[ *read more* ](apps/qpdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qpdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qpdf) | -| | [***quran-companion***](apps/quran-companion.md) | *Free and open-source desktop Quran reader and player.*..[ *read more* ](apps/quran-companion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quran-companion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quran-companion) | -| | [***readest***](apps/readest.md) | *Readest is a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience.*..[ *read more* ](apps/readest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readest) | -| | [***readest-enhanced***](apps/readest-enhanced.md) | *Unofficial, an enhanced version of Readest, a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience.*..[ *read more* ](apps/readest-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readest-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readest-enhanced) | -| | [***ripgrep-all***](apps/ripgrep-all.md) | *A ripgrep version to also search in documents and archives.*..[ *read more* ](apps/ripgrep-all.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ripgrep-all) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ripgrep-all) | -| | [***rnote***](apps/rnote.md) | *Unofficial, Rnote is a vector-based drawing app for sketching, handwritten notes and to annotate documents and pictures.*..[ *read more* ](apps/rnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rnote) | -| | [***rssguard***](apps/rssguard.md) | *Feed reader which supports RSS/ATOM/JSON, no-webengine version.*..[ *read more* ](apps/rssguard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rssguard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rssguard) | -| | [***simple-scan***](apps/simple-scan.md) | *Make a digital copy of your photos and documents. Simple scanning utility for the GNOME desktop environment.*..[ *read more* ](apps/simple-scan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simple-scan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simple-scan) | -| | [***sioyek***](apps/sioyek.md) | *PDF viewer designed for reading research papers and technical books.*..[ *read more* ](apps/sioyek.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sioyek) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sioyek) | -| | [***spyglass***](apps/spyglass.md) | *A personal search engine to create a searchable library from your personal documents, interests, and more.*..[ *read more* ](apps/spyglass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spyglass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spyglass) | -| | [***stirling-pdf***](apps/stirling-pdf.md) | *Unofficial. Powerful, open-source PDF editing platform.*..[ *read more* ](apps/stirling-pdf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stirling-pdf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stirling-pdf) | -| | [***tagspaces***](apps/tagspaces.md) | *An offline, open source, document manager with tagging support.*..[ *read more* ](apps/tagspaces.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tagspaces) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tagspaces) | -| | [***thorium-reader***](apps/thorium-reader.md) | *Desktop application to read ebooks.*..[ *read more* ](apps/thorium-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thorium-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thorium-reader) | -| | [***tipitaka-pali-reader***](apps/tipitaka-pali-reader.md) | *A Pali Reading app made in Flutter.*..[ *read more* ](apps/tipitaka-pali-reader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tipitaka-pali-reader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tipitaka-pali-reader) | -| | [***transfernow***](apps/transfernow.md) | *TransferNow is a simple, quick and secure free solution to send large files and big documents up to 250 GB per transfer. No registration required.*..[ *read more* ](apps/transfernow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transfernow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transfernow) | -| | [***wolai***](apps/wolai.md) | *A new form of document/note/information system, in chinese.*..[ *read more* ](apps/wolai.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wolai) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wolai) | -| | [***wournal***](apps/wournal.md) | *Simple "digitial paper" for note taking and PDF annotation. Heavily inspired by Xournal.*..[ *read more* ](apps/wournal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wournal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wournal) | -| | [***wps-office***](apps/wps-office.md) | *Unofficial, Office suite built from the official .deb package.*..[ *read more* ](apps/wps-office.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wps-office) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wps-office) | -| | [***wxmaxima***](apps/wxmaxima.md) | *A document based interface for the computer algebra system Maxima.*..[ *read more* ](apps/wxmaxima.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wxmaxima) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wxmaxima) | -| | [***xournal++***](apps/xournal++.md) | *A C++ handwriting notetaking software with PDF annotation support.*..[ *read more* ](apps/xournal++.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xournal++) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xournal++) | -| | [***xournal++nightly***](apps/xournal++nightly.md) | *C++ notetaking software with PDF annotation support, DEV.*..[ *read more* ](apps/xournal++nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xournal++nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xournal++nightly) | -| | [***xournalpp***](apps/xournalpp.md) | *Unofficial. Handwriting notetaking software with PDF annotation support. Written in C++ with GTK3.*..[ *read more* ](apps/xournalpp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xournalpp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xournalpp) | -| | [***xtomarkdown***](apps/xtomarkdown.md) | *A cross-platform GUI application for converting documents to Markdown.*..[ *read more* ](apps/xtomarkdown.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xtomarkdown) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xtomarkdown) | -| | [***yana***](apps/yana.md) | *Note-taking app with nested documents, text search/editor, code...*..[ *read more* ](apps/yana.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yana) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yana) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/password.md b/password.md deleted file mode 100644 index 41f84491c..000000000 --- a/password.md +++ /dev/null @@ -1,146 +0,0 @@ -# PASSWORD - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **18** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***advanced-passgen***](apps/advanced-passgen.md) | *Advanced Password Generator.*..[ *read more* ](apps/advanced-passgen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/advanced-passgen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/advanced-passgen) | -| | [***bitwarden***](apps/bitwarden.md) | *Password manager for individuals, teams and business.*..[ *read more* ](apps/bitwarden.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bitwarden) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bitwarden) | -| | [***buttercup***](apps/buttercup.md) | *Free and Open Source password vault.*..[ *read more* ](apps/buttercup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/buttercup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/buttercup) | -| | [***encryptpad***](apps/encryptpad.md) | *Secure text editor and binary encryptor with passwords.*..[ *read more* ](apps/encryptpad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/encryptpad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/encryptpad) | -| | [***ff-password-exporter***](apps/ff-password-exporter.md) | *Export your saved passwords from Firefox.*..[ *read more* ](apps/ff-password-exporter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ff-password-exporter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ff-password-exporter) | -| | [***gokey***](apps/gokey.md) | *A simple vaultless password manager in Go.*..[ *read more* ](apps/gokey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gokey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gokey) | -| | [***gopass***](apps/gopass.md) | *The slightly more awesome standard unix password manager for teams.*..[ *read more* ](apps/gopass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gopass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gopass) | -| | [***keepassxc***](apps/keepassxc.md) | *Port of the Windows application “Keepass Password Safe”.*..[ *read more* ](apps/keepassxc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keepassxc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keepassxc) | -| | [***keepassxc-devel***](apps/keepassxc-devel.md) | *Port of the Windows application “Keepass Password Safe”, dev-edition.*..[ *read more* ](apps/keepassxc-devel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keepassxc-devel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keepassxc-devel) | -| | [***keeweb***](apps/keeweb.md) | *Free cross-platform password manager compatible with KeePass.*..[ *read more* ](apps/keeweb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keeweb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keeweb) | -| | [***kure***](apps/kure.md) | *CLI password manager with sessions.*..[ *read more* ](apps/kure.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kure) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kure) | -| | [***passky***](apps/passky.md) | *Simple and secure password manager.*..[ *read more* ](apps/passky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/passky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/passky) | -| | [***passphraser***](apps/passphraser.md) | *Phrase-based password generator that can use your own list of words.*..[ *read more* ](apps/passphraser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/passphraser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/passphraser) | -| | [***pearpass***](apps/pearpass.md) | *An open-source, privacy-first password manager with peer-to-peer syncing and end-to-end encryption.*..[ *read more* ](apps/pearpass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pearpass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pearpass) | -| | [***qmasterpassword***](apps/qmasterpassword.md) | *A password manager based on Qt.*..[ *read more* ](apps/qmasterpassword.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmasterpassword) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmasterpassword) | -| | [***rbw***](apps/rbw.md) | *Unofficial Bitwarden password manager cli.*..[ *read more* ](apps/rbw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rbw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rbw) | -| | [***secrets***](apps/secrets.md) | *Unofficial AppImage of the Secrets keepass and 2FA password manager.*..[ *read more* ](apps/secrets.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/secrets) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/secrets) | -| | [***swifty***](apps/swifty.md) | *Free Offline-first Password Manager.*..[ *read more* ](apps/swifty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swifty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swifty) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/pla.png b/pla.png new file mode 100644 index 000000000..5be3429a0 Binary files /dev/null and b/pla.png differ diff --git a/portable-cli.md b/portable-cli.md deleted file mode 100644 index 79c29abd8..000000000 --- a/portable-cli.md +++ /dev/null @@ -1,618 +0,0 @@ -# PORTABLE CLI - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **490** command line utilities: static and dynamic ELF binaries, or simple scripts. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***7z***](apps/7z.md) | *Archiver with a high compression ratio. This is part of "am-utils" suite.*..[ *read more* ](apps/7z.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/7z) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/7z) | -| | [***7zip***](apps/7zip.md) | *7-Zip is a file archiver with a high compression ratio.*..[ *read more* ](apps/7zip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/7zip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/7zip) | -| | [***addr2line***](apps/addr2line.md) | *Or symbol+offset into file names and. This is part of "am-utils" suite.*..[ *read more* ](apps/addr2line.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/addr2line) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/addr2line) | -| | [***afetch***](apps/afetch.md) | *A CLI system information tool written in Rust.*..[ *read more* ](apps/afetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/afetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/afetch) | -| | [***aichat***](apps/aichat.md) | *AIO AI CLI tool integrating 20+ AI platforms, including OpenAI.*..[ *read more* ](apps/aichat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aichat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aichat) | -| | [***aim***](apps/aim.md) | *A command line download/upload tool with resume.*..[ *read more* ](apps/aim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aim) | -| | [***albafetch***](apps/albafetch.md) | *CLI, faster neofetch alternative, written in C. Still improving.*..[ *read more* ](apps/albafetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/albafetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/albafetch) | -| | [***alpine-flatimage***](apps/alpine-flatimage.md) | *A hybrid of Flatpak sandboxing with AppImage portability.*..[ *read more* ](apps/alpine-flatimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alpine-flatimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alpine-flatimage) | -| | [***amfora***](apps/amfora.md) | *A fancy terminal browser for the Gemini protocol.*..[ *read more* ](apps/amfora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amfora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amfora) | -| | [***ani-cli***](apps/ani-cli.md) | *A cli tool to browse and play anime.*..[ *read more* ](apps/ani-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ani-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ani-cli) | -| | [***antidot***](apps/antidot.md) | *Cleans up your $HOME from those pesky dotfiles.*..[ *read more* ](apps/antidot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antidot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antidot) | -| | [***appimagen***](apps/appimagen.md) | *A script that generates a custom AppImage from a PPA.*..[ *read more* ](apps/appimagen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagen) | -| | [***appimageupdate***](apps/appimageupdate.md) | *A Rust implementation of AppImageUpdate, a tool for updating AppImages using efficient delta updates using zsync.*..[ *read more* ](apps/appimageupdate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimageupdate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimageupdate) | -| | [***appimg***](apps/appimg.md) | *Appimg is a lightweight command-line tool that helps you manage AppImage files on Linux.*..[ *read more* ](apps/appimg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimg) | -| | [***appinstall***](apps/appinstall.md) | *AppImage Installer, a tool integrate AppImages to a linux desktop environment.*..[ *read more* ](apps/appinstall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appinstall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appinstall) | -| | [***aptly***](apps/aptly.md) | *Debian repository management CLI tool.*..[ *read more* ](apps/aptly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aptly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aptly) | -| | [***ar***](apps/ar.md) | *Create, modify, and extract from .deb archives. This is part of "am-utils" suite.*..[ *read more* ](apps/ar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ar) | -| | [***arch***](apps/arch.md) | *Hardware name (same as uname -m). This is part of "am-utils" suite.*..[ *read more* ](apps/arch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arch) | -| | [***arch-deployer***](apps/arch-deployer.md) | *A script to bulk download an Arch Linux package with all its dependencies to be converted in AppImage.*..[ *read more* ](apps/arch-deployer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arch-deployer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arch-deployer) | -| | [***arch-flatimage***](apps/arch-flatimage.md) | *A hybrid of Flatpak sandboxing with AppImage portability.*..[ *read more* ](apps/arch-flatimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arch-flatimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arch-flatimage) | -| | [***archimage-cli***](apps/archimage-cli.md) | *Build AppImage packages using JuNest, Arch Linux.*..[ *read more* ](apps/archimage-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archimage-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archimage-cli) | -| | [***archimede***](apps/archimede.md) | *Unobtrusive directory information fetcher.*..[ *read more* ](apps/archimede.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archimede) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archimede) | -| | [***aretext***](apps/aretext.md) | *Minimalist text editor with vim-compatible key bindings.*..[ *read more* ](apps/aretext.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aretext) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aretext) | -| | [***as***](apps/as.md) | *GNU assembler.. This is part of "am-utils" suite.*..[ *read more* ](apps/as.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/as) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/as) | -| | [***atuin***](apps/atuin.md) | *Magical shell history.*..[ *read more* ](apps/atuin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/atuin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/atuin) | -| | [***b2sum***](apps/b2sum.md) | *Check BLAKE2 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/b2sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/b2sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/b2sum) | -| | [***bandwhich***](apps/bandwhich.md) | *Terminal bandwidth utilization tool.*..[ *read more* ](apps/bandwhich.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bandwhich) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bandwhich) | -| | [***base32***](apps/base32.md) | *Base32 encode/decode data and print to standard. This is part of "am-utils" suite.*..[ *read more* ](apps/base32.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/base32) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/base32) | -| | [***base64***](apps/base64.md) | *Base64 encode/decode data and print to standard. This is part of "am-utils" suite.*..[ *read more* ](apps/base64.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/base64) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/base64) | -| | [***basename***](apps/basename.md) | *Strip directory and suffix from filenames. This is part of "am-utils" suite.*..[ *read more* ](apps/basename.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basename) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basename) | -| | [***basenc***](apps/basenc.md) | *Encode and decode with multiple base encodings.. This is part of "am-utils" suite.*..[ *read more* ](apps/basenc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basenc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basenc) | -| | [***bat***](apps/bat.md) | *A "cat" clone with wings.*..[ *read more* ](apps/bat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bat) | -| | [***bat-extras***](apps/bat-extras.md) | *Bash scripts that integrate bat with various command line tools.*..[ *read more* ](apps/bat-extras.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bat-extras) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bat-extras) | -| | [***battop***](apps/battop.md) | *CLI, interactive batteries viewer.*..[ *read more* ](apps/battop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/battop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/battop) | -| | [***beatmapexporter***](apps/beatmapexporter.md) | *osu!lazer beatmap exporter utility. Allowing mass export of beatmaps from the new osu!lazer file storage back into .osz files.*..[ *read more* ](apps/beatmapexporter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beatmapexporter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beatmapexporter) | -| | [***beatsaber-mod-manager***](apps/beatsaber-mod-manager.md) | *Yet another mod installer for Beat Saber, heavily inspired by ModAssistant.*..[ *read more* ](apps/beatsaber-mod-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beatsaber-mod-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beatsaber-mod-manager) | -| | [***bemoji***](apps/bemoji.md) | *Emoji picker for bemenu/wofi/rofi/dmenu, remembers your favorites.*..[ *read more* ](apps/bemoji.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bemoji) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bemoji) | -| | [***bin***](apps/bin.md) | *Effortless binary manager.*..[ *read more* ](apps/bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bin) | -| | [***binclock***](apps/binclock.md) | *Binary clock in terminal.*..[ *read more* ](apps/binclock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/binclock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/binclock) | -| | [***binfinder***](apps/binfinder.md) | *Find binary files not installed through package manager.*..[ *read more* ](apps/binfinder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/binfinder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/binfinder) | -| | [***bk***](apps/bk.md) | *Terminal Epub reader.*..[ *read more* ](apps/bk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bk) | -| | [***blimp***](apps/blimp.md) | *Customizable terminal UI for monitoring weather information, application status, network latency, and more.*..[ *read more* ](apps/blimp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blimp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blimp) | -| | [***blob-dl***](apps/blob-dl.md) | *Blob-dl is a yt-dlp CLI interface used to download video and audio files from YouTube.*..[ *read more* ](apps/blob-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blob-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blob-dl) | -| | [***bluetuith***](apps/bluetuith.md) | *A TUI bluetooth manager for Linux.*..[ *read more* ](apps/bluetuith.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bluetuith) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bluetuith) | -| | [***bottom***](apps/bottom.md) | *Yet another cross-platform graphical process/system monitor.*..[ *read more* ](apps/bottom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottom) | -| | [***boxxy***](apps/boxxy.md) | *Put bad Linux applications in a box with only their files.*..[ *read more* ](apps/boxxy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boxxy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boxxy) | -| | [***brutespray***](apps/brutespray.md) | *Bruteforcing from various scanner output. Automatically attempts default creds on found services.*..[ *read more* ](apps/brutespray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brutespray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brutespray) | -| | [***bunnyfetch***](apps/bunnyfetch.md) | *A small and fast tool for getting info about your system.*..[ *read more* ](apps/bunnyfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bunnyfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bunnyfetch) | -| | [***bzip2***](apps/bzip2.md) | *A high-quality data compression program. This is part of "am-utils" suite.*..[ *read more* ](apps/bzip2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bzip2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bzip2) | -| | [***c++filt***](apps/c++filt.md) | *And Java symbols. This is part of "am-utils" suite.*..[ *read more* ](apps/c++filt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/c++filt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/c++filt) | -| | [***carbonyl***](apps/carbonyl.md) | *Chromium running inside your terminal.*..[ *read more* ](apps/carbonyl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/carbonyl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/carbonyl) | -| | [***cask***](apps/cask.md) | *A universal, distributed binary file manager.*..[ *read more* ](apps/cask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cask) | -| | [***cat***](apps/cat.md) | *Concatenate files and print on the standard output. This is part of "am-utils" suite.*..[ *read more* ](apps/cat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cat) | -| | [***chcon***](apps/chcon.md) | *Security context. This is part of "am-utils" suite.*..[ *read more* ](apps/chcon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chcon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chcon) | -| | [***cheat***](apps/cheat.md) | *Create and view interactive cheatsheets on the command-line.*..[ *read more* ](apps/cheat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cheat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cheat) | -| | [***checkra1n***](apps/checkra1n.md) | *Jailbreak for iPhone 5s through iPhone X, iOS 12.0 and up*..[ *read more* ](apps/checkra1n.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/checkra1n) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/checkra1n) | -| | [***chess-tui***](apps/chess-tui.md) | *Play chess from your terminal.*..[ *read more* ](apps/chess-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chess-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chess-tui) | -| | [***chgrp***](apps/chgrp.md) | *Change group ownership. This is part of "am-utils" suite.*..[ *read more* ](apps/chgrp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chgrp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chgrp) | -| | [***chmod***](apps/chmod.md) | *Change file mode bits. This is part of "am-utils" suite.*..[ *read more* ](apps/chmod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chmod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chmod) | -| | [***chown***](apps/chown.md) | *Change file owner and group. This is part of "am-utils" suite.*..[ *read more* ](apps/chown.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chown) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chown) | -| | [***chroot***](apps/chroot.md) | *Run command or interactive shell with special root. This is part of "am-utils" suite.*..[ *read more* ](apps/chroot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chroot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chroot) | -| | [***cicada***](apps/cicada.md) | *An old-school bash-like Unix shell written in Rust.*..[ *read more* ](apps/cicada.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cicada) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cicada) | -| | [***cksum***](apps/cksum.md) | *Compute and verify file checksums. This is part of "am-utils" suite.*..[ *read more* ](apps/cksum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cksum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cksum) | -| | [***clear***](apps/clear.md) | *Clear the terminal screen. This is part of "am-utils" suite.*..[ *read more* ](apps/clear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clear) | -| | [***clipse***](apps/clipse.md) | *Configurable TUI clipboard manager for Unix.*..[ *read more* ](apps/clipse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clipse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clipse) | -| | [***code-radio***](apps/code-radio.md) | *A command line music radio client for coderadio.freecodecamp.org, written in Rust.*..[ *read more* ](apps/code-radio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code-radio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code-radio) | -| | [***codebook-lsp***](apps/codebook-lsp.md) | *Codebook, code-aware spell checker with language server implementation.*..[ *read more* ](apps/codebook-lsp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/codebook-lsp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/codebook-lsp) | -| | [***col***](apps/col.md) | *Line feeds from input. This is part of "am-utils" suite.*..[ *read more* ](apps/col.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/col) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/col) | -| | [***colcrt***](apps/colcrt.md) | *Output for CRT previewing. This is part of "am-utils" suite.*..[ *read more* ](apps/colcrt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colcrt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colcrt) | -| | [***colrm***](apps/colrm.md) | *From a file. This is part of "am-utils" suite.*..[ *read more* ](apps/colrm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colrm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colrm) | -| | [***column***](apps/column.md) | *Columnate lists. This is part of "am-utils" suite.*..[ *read more* ](apps/column.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/column) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/column) | -| | [***comics-downloader***](apps/comics-downloader.md) | *Tool to download comics and manga in pdf/epub/cbr/cbz from a website.*..[ *read more* ](apps/comics-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comics-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comics-downloader) | -| | [***comm***](apps/comm.md) | *Compare two sorted files line by line. This is part of "am-utils" suite.*..[ *read more* ](apps/comm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comm) | -| | [***conty***](apps/conty.md) | *Easy to use unprivileged and portable Arch Linux container.*..[ *read more* ](apps/conty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/conty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/conty) | -| | [***cowitness***](apps/cowitness.md) | *A powerful web app testing tool that enhances the accuracy and efficiency of your testing efforts.*..[ *read more* ](apps/cowitness.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cowitness) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cowitness) | -| | [***cp***](apps/cp.md) | *Copy files and directories. This is part of "am-utils" suite.*..[ *read more* ](apps/cp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cp) | -| | [***cpufetch***](apps/cpufetch.md) | *Simple yet fancy CPU architecture fetching tool.*..[ *read more* ](apps/cpufetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cpufetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cpufetch) | -| | [***crabfetch***](apps/crabfetch.md) | *Extremely fast, featureful and customizable command-line fetcher.*..[ *read more* ](apps/crabfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crabfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crabfetch) | -| | [***croc***](apps/croc.md) | *Easily and securely send things from one computer to another.*..[ *read more* ](apps/croc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/croc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/croc) | -| | [***crock***](apps/crock.md) | *Crock is rock clock.*..[ *read more* ](apps/crock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crock) | -| | [***csplit***](apps/csplit.md) | *File into sections determined by context. This is part of "am-utils" suite.*..[ *read more* ](apps/csplit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/csplit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/csplit) | -| | [***ctop***](apps/ctop.md) | *Top-like interface for container metrics.*..[ *read more* ](apps/ctop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ctop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ctop) | -| | [***curl***](apps/curl.md) | *Command line tool and library for transferring data with URLs. This is part of "am-utils" suite.*..[ *read more* ](apps/curl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/curl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/curl) | -| | [***curlie***](apps/curlie.md) | *The power of curl, the ease of use of httpie.*..[ *read more* ](apps/curlie.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/curlie) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/curlie) | -| | [***cut***](apps/cut.md) | *From each line of files. This is part of "am-utils" suite.*..[ *read more* ](apps/cut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cut) | -| | [***date***](apps/date.md) | *A header-only library which builds upon . This is part of "am-utils" suite.*..[ *read more* ](apps/date.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/date) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/date) | -| | [***dbee***](apps/dbee.md) | *Fast & Minimalistic Database Browser.*..[ *read more* ](apps/dbee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbee) | -| | [***dbin***](apps/dbin.md) | *Poor man's package manager. About 3000 statically linked binaries in the repos!*..[ *read more* ](apps/dbin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbin) | -| | [***dd***](apps/dd.md) | *Convert and copy a file. This is part of "am-utils" suite.*..[ *read more* ](apps/dd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dd) | -| | [***deeplx***](apps/deeplx.md) | *DeepL Free API, No TOKEN required.*..[ *read more* ](apps/deeplx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deeplx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deeplx) | -| | [***delta***](apps/delta.md) | *A syntax-highlighting pager for git, diff, grep, and blame output.*..[ *read more* ](apps/delta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/delta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/delta) | -| | [***devtoys***](apps/devtoys.md) | *A Swiss Army knife for developers.*..[ *read more* ](apps/devtoys.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devtoys) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devtoys) | -| | [***df***](apps/df.md) | *Report file system space usage. This is part of "am-utils" suite.*..[ *read more* ](apps/df.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/df) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/df) | -| | [***didder***](apps/didder.md) | *An extensive, fast, and accurate command-line image dithering tool.*..[ *read more* ](apps/didder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/didder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/didder) | -| | [***diff***](apps/diff.md) | *Compare files line by line. This is part of "am-utils" suite.*..[ *read more* ](apps/diff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diff) | -| | [***dir***](apps/dir.md) | *List directory contents. This is part of "am-utils" suite.*..[ *read more* ](apps/dir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dir) | -| | [***dircolors***](apps/dircolors.md) | *For ls. This is part of "am-utils" suite.*..[ *read more* ](apps/dircolors.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dircolors) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dircolors) | -| | [***dirname***](apps/dirname.md) | *Strip last component from file name. This is part of "am-utils" suite.*..[ *read more* ](apps/dirname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dirname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dirname) | -| | [***diskonaut***](apps/diskonaut.md) | *Terminal disk space navigator.*..[ *read more* ](apps/diskonaut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diskonaut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diskonaut) | -| | [***doggo***](apps/doggo.md) | *Command-line DNS Client for Humans. Written in Golang*..[ *read more* ](apps/doggo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doggo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doggo) | -| | [***dooit***](apps/dooit.md) | *An awesome TUI todo manager.*..[ *read more* ](apps/dooit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dooit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dooit) | -| | [***dra***](apps/dra.md) | *A command line tool to download release assets from GitHub.*..[ *read more* ](apps/dra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dra) | -| | [***draw***](apps/draw.md) | *Draw in your terminal.*..[ *read more* ](apps/draw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/draw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/draw) | -| | [***dstask***](apps/dstask.md) | *Git powered terminal-based todo/note manager, markdown note page per task.*..[ *read more* ](apps/dstask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dstask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dstask) | -| | [***dtmate***](apps/dtmate.md) | *CLI to compute difference between date, time or duration.*..[ *read more* ](apps/dtmate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dtmate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dtmate) | -| | [***du***](apps/du.md) | *Estimate file space usage. This is part of "am-utils" suite.*..[ *read more* ](apps/du.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/du) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/du) | -| | [***dua***](apps/dua.md) | *View disk space usage and delete unwanted data, fast.*..[ *read more* ](apps/dua.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dua) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dua) | -| | [***duf***](apps/duf.md) | *Disk Usage/Free Utility, a better 'df' alternative.*..[ *read more* ](apps/duf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duf) | -| | [***dune***](apps/dune.md) | *A shell by the beach.*..[ *read more* ](apps/dune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dune) | -| | [***dust***](apps/dust.md) | *A more intuitive version of du in rust.*..[ *read more* ](apps/dust.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dust) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dust) | -| | [***dysk***](apps/dysk.md) | *A linux utility to get information on filesystems, like df but better.*..[ *read more* ](apps/dysk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dysk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dysk) | -| | [***echo***](apps/echo.md) | *Display a line of text. This is part of "am-utils" suite.*..[ *read more* ](apps/echo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/echo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/echo) | -| | [***eget***](apps/eget.md) | *Easily install prebuilt binaries from GitHub.*..[ *read more* ](apps/eget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eget) | -| | [***elfedit***](apps/elfedit.md) | *Header and program property of ELF files. This is part of "am-utils" suite.*..[ *read more* ](apps/elfedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elfedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elfedit) | -| | [***elvish***](apps/elvish.md) | *Powerful modern shell scripting.*..[ *read more* ](apps/elvish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elvish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elvish) | -| | [***env***](apps/env.md) | *Run a program in a modified environment. This is part of "am-utils" suite.*..[ *read more* ](apps/env.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/env) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/env) | -| | [***expand***](apps/expand.md) | *Convert tabs to spaces. This is part of "am-utils" suite.*..[ *read more* ](apps/expand.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/expand) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/expand) | -| | [***expr***](apps/expr.md) | *Evaluate expressions. This is part of "am-utils" suite.*..[ *read more* ](apps/expr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/expr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/expr) | -| | [***eza***](apps/eza.md) | *A modern, maintained replacement for ls.*..[ *read more* ](apps/eza.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eza) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eza) | -| | [***factor***](apps/factor.md) | *A general purpose, dynamically typed, stack-based programming language.. This is part of "am-utils" suite.*..[ *read more* ](apps/factor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/factor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/factor) | -| | [***fakedata***](apps/fakedata.md) | *CLI utility for fake data generation.*..[ *read more* ](apps/fakedata.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fakedata) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fakedata) | -| | [***false***](apps/false.md) | *Do nothing, unsuccessfully. This is part of "am-utils" suite.*..[ *read more* ](apps/false.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/false) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/false) | -| | [***fastcompmgr***](apps/fastcompmgr.md) | *A fast compositor for X11.*..[ *read more* ](apps/fastcompmgr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fastcompmgr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fastcompmgr) | -| | [***fcp***](apps/fcp.md) | *CLI, a significantly faster alternative to the classic Unix cp(1) command, copying large files and directories in a fraction of the time.*..[ *read more* ](apps/fcp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fcp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fcp) | -| | [***fd***](apps/fd.md) | *A simple, fast and user-friendly alternative to 'find'.*..[ *read more* ](apps/fd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fd) | -| | [***fdroidcl***](apps/fdroidcl.md) | *A command-line F-Droid desktop client.*..[ *read more* ](apps/fdroidcl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fdroidcl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fdroidcl) | -| | [***fetchit***](apps/fetchit.md) | *A system fetch tool for Linux, written in Rust.*..[ *read more* ](apps/fetchit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fetchit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fetchit) | -| | [***ffsend***](apps/ffsend.md) | *Easily and securely share files from the command line. A fully featured Firefox Send client.*..[ *read more* ](apps/ffsend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffsend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffsend) | -| | [***file***](apps/file.md) | *Determine the type of a file from its contents. This is part of "am-utils" suite.*..[ *read more* ](apps/file.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file) | -| | [***filen-cli***](apps/filen-cli.md) | *Filen CLI for Windows, macOS and Linux*..[ *read more* ](apps/filen-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filen-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filen-cli) | -| | [***find***](apps/find.md) | *Files in a directory hierarchy. This is part of "am-utils" suite.*..[ *read more* ](apps/find.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/find) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/find) | -| | [***fish***](apps/fish.md) | *The user-friendly command line shell.*..[ *read more* ](apps/fish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fish) | -| | [***fixit***](apps/fixit.md) | *A utility to fix mistakes in your commands.*..[ *read more* ](apps/fixit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fixit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fixit) | -| | [***flyctl***](apps/flyctl.md) | *Command line tools for fly.io services.*..[ *read more* ](apps/flyctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flyctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flyctl) | -| | [***fman***](apps/fman.md) | *TUI CLI File Manager.*..[ *read more* ](apps/fman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fman) | -| | [***fmt***](apps/fmt.md) | *Text formatter. This is part of "am-utils" suite.*..[ *read more* ](apps/fmt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fmt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fmt) | -| | [***focus***](apps/focus.md) | *A fully featured productivity timer for the command line, based on the Pomodoro Technique.*..[ *read more* ](apps/focus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focus) | -| | [***fold***](apps/fold.md) | *Wrap each input line to fit in specified width. This is part of "am-utils" suite.*..[ *read more* ](apps/fold.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fold) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fold) | -| | [***freefilesync***](apps/freefilesync.md) | *folder comparison and synchronization software.*..[ *read more* ](apps/freefilesync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freefilesync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freefilesync) | -| | [***freeze***](apps/freeze.md) | *Generate images of code and terminal output.*..[ *read more* ](apps/freeze.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freeze) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freeze) | -| | [***freshfetch***](apps/freshfetch.md) | *An alternative to Neofetch in Rust with a focus on customization.*..[ *read more* ](apps/freshfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freshfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freshfetch) | -| | [***fx***](apps/fx.md) | *Terminal JSON viewer & processor.*..[ *read more* ](apps/fx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fx) | -| | [***fzf***](apps/fzf.md) | *A command-line fuzzy finder.*..[ *read more* ](apps/fzf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fzf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fzf) | -| | [***gallery-dl***](apps/gallery-dl.md) | *Command-line program to download image galleries and collections from several image hosting sites.*..[ *read more* ](apps/gallery-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gallery-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gallery-dl) | -| | [***gallery-dl-nightly***](apps/gallery-dl-nightly.md) | *Command-line program to download image galleries and collections from several image hosting sites, nightly build.*..[ *read more* ](apps/gallery-dl-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gallery-dl-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gallery-dl-nightly) | -| | [***gawk***](apps/gawk.md) | *GNU version of awk. This is part of "am-utils" suite.*..[ *read more* ](apps/gawk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gawk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gawk) | -| | [***gemget***](apps/gemget.md) | *Command line downloader for the Gemini protocol.*..[ *read more* ](apps/gemget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gemget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gemget) | -| | [***genact***](apps/genact.md) | *A nonsense activity generator.*..[ *read more* ](apps/genact.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/genact) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/genact) | -| | [***gert***](apps/gert.md) | *A command line tool to download media from Reddit.*..[ *read more* ](apps/gert.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gert) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gert) | -| | [***gh***](apps/gh.md) | *GitHub’s official command line tool.*..[ *read more* ](apps/gh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gh) | -| | [***gh-eco***](apps/gh-eco.md) | *gh cli extension to explore the ecosystem.*..[ *read more* ](apps/gh-eco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gh-eco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gh-eco) | -| | [***ghdl***](apps/ghdl.md) | *A much more convenient way to download GitHub release binaries on the command line.*..[ *read more* ](apps/ghdl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghdl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghdl) | -| | [***ghrel***](apps/ghrel.md) | *Download and verify GitHub release.*..[ *read more* ](apps/ghrel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghrel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghrel) | -| | [***gickup***](apps/gickup.md) | *Backup your Git repositories with ease.*..[ *read more* ](apps/gickup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gickup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gickup) | -| | [***git-cliff***](apps/git-cliff.md) | *A highly customizable Changelog Generator that follows Conventional Commit specifications.*..[ *read more* ](apps/git-cliff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-cliff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-cliff) | -| | [***git-credential-oauth***](apps/git-credential-oauth.md) | *A Git credential helper that securely authenticates to GitHub, GitLab and BitBucket using OAuth.*..[ *read more* ](apps/git-credential-oauth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-credential-oauth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-credential-oauth) | -| | [***git-side***](apps/git-side.md) | *A Git subcommand that versions files and directories that should not live in the main repository, using a per-project bare repository invisible to Git.*..[ *read more* ](apps/git-side.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-side) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-side) | -| | [***gitleaks***](apps/gitleaks.md) | *Protect and discover secrets using Gitleaks.*..[ *read more* ](apps/gitleaks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitleaks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitleaks) | -| | [***gitql***](apps/gitql.md) | *A git query language.*..[ *read more* ](apps/gitql.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitql) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitql) | -| | [***gitui***](apps/gitui.md) | *Blazing fast terminal-ui for git written in rust.*..[ *read more* ](apps/gitui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitui) | -| | [***glab***](apps/glab.md) | *A GitLab CLI tool bringing GitLab to your command line.*..[ *read more* ](apps/glab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glab) | -| | [***glow***](apps/glow.md) | *Render markdown on the CLI, with pizzazz!*..[ *read more* ](apps/glow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glow) | -| | [***gncdu***](apps/gncdu.md) | *Implements NCurses Disk Usage(ncdu) with golang.*..[ *read more* ](apps/gncdu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gncdu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gncdu) | -| | [***go-pd***](apps/go-pd.md) | *A free easy to use pixeldrain.com go client pkg and CLI upload tool.*..[ *read more* ](apps/go-pd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-pd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-pd) | -| | [***go-spotify-cli***](apps/go-spotify-cli.md) | *Control Spotify with CLI commands.*..[ *read more* ](apps/go-spotify-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-spotify-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-spotify-cli) | -| | [***goanime***](apps/goanime.md) | *A TUI tool to browse, stream, and download anime in English and Portuguese.*..[ *read more* ](apps/goanime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goanime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goanime) | -| | [***gobuster***](apps/gobuster.md) | *A high-performance directory/file, DNS and virtual host brute-forcing tool written in Go. It's designed to be fast, reliable, and easy to use for security professionals and penetration testers.*..[ *read more* ](apps/gobuster.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gobuster) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gobuster) | -| | [***gojq***](apps/gojq.md) | *Pure Go implementation of jq.*..[ *read more* ](apps/gojq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gojq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gojq) | -| | [***gokey***](apps/gokey.md) | *A simple vaultless password manager in Go.*..[ *read more* ](apps/gokey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gokey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gokey) | -| | [***goodls***](apps/goodls.md) | *This is a CLI tool to download shared files and folders from Google Drive.*..[ *read more* ](apps/goodls.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goodls) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goodls) | -| | [***gooseberry***](apps/gooseberry.md) | *A command line utility to generate a knowledge base from Hypothesis annotations.*..[ *read more* ](apps/gooseberry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gooseberry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gooseberry) | -| | [***gopass***](apps/gopass.md) | *The slightly more awesome standard unix password manager for teams.*..[ *read more* ](apps/gopass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gopass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gopass) | -| | [***gost-shred***](apps/gost-shred.md) | *GOST R 50739-95 Data Sanitization Method (2 passes).*..[ *read more* ](apps/gost-shred.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gost-shred) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gost-shred) | -| | [***got***](apps/got.md) | *Simple golang package and CLI tool to download large files faster than cURL and Wget!*..[ *read more* ](apps/got.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/got) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/got) | -| | [***gotimer***](apps/gotimer.md) | *A simple terminal based digital timer for Pomodoro.*..[ *read more* ](apps/gotimer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gotimer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gotimer) | -| | [***goto***](apps/goto.md) | *A simple terminal SSH manager that lists favorite SSH servers.*..[ *read more* ](apps/goto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goto) | -| | [***gp-archive***](apps/gp-archive.md) | *Archive profiling experiment data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-archive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-archive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-archive) | -| | [***gp-collect-app***](apps/gp-collect-app.md) | *Collect application performance profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-collect-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-collect-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-collect-app) | -| | [***gp-display-html***](apps/gp-display-html.md) | *Generate HTML reports from profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-display-html.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-display-html) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-display-html) | -| | [***gp-display-src***](apps/gp-display-src.md) | *Display source code annotated with profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-display-src.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-display-src) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-display-src) | -| | [***gp-display-text***](apps/gp-display-text.md) | *Display profiling data in plain text format. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-display-text.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-display-text) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-display-text) | -| | [***gpg-tui***](apps/gpg-tui.md) | *CLI, manage your GnuPG keys with ease!*..[ *read more* ](apps/gpg-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpg-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpg-tui) | -| | [***gping***](apps/gping.md) | *Ping, but with a graph.*..[ *read more* ](apps/gping.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gping) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gping) | -| | [***gprof***](apps/gprof.md) | *Graph profile data. This is part of "am-utils" suite.*..[ *read more* ](apps/gprof.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprof) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprof) | -| | [***gprofng***](apps/gprofng.md) | *Generation GNU application profiling tool. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng) | -| | [***gprofng-archive***](apps/gprofng-archive.md) | *Experiment data. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-archive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-archive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-archive) | -| | [***gprofng-collect-app***](apps/gprofng-collect-app.md) | *Data for the target. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-collect-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-collect-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-collect-app) | -| | [***gprofng-display-html***](apps/gprofng-display-html.md) | *HTML based directory structure. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-display-html.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-display-html) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-display-html) | -| | [***gprofng-display-src***](apps/gprofng-display-src.md) | *Code and optionally. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-display-src.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-display-src) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-display-src) | -| | [***gprofng-display-text***](apps/gprofng-display-text.md) | *Performance data in plain text. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-display-text.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-display-text) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-display-text) | -| | [***gprofng-gmon***](apps/gprofng-gmon.md) | *Display or convert GNU gmon profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-gmon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-gmon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-gmon) | -| | [***grep***](apps/grep.md) | *A string search utility. This is part of "am-utils" suite.*..[ *read more* ](apps/grep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grep) | -| | [***gron***](apps/gron.md) | *Make JSON greppable! Transform JSON into discrete assignments to grep.*..[ *read more* ](apps/gron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gron) | -| | [***gron.awk***](apps/gron.awk.md) | *True JSON parser in pure Awk. fast with Gawk/Mawk/GoAWK.*..[ *read more* ](apps/gron.awk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gron.awk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gron.awk) | -| | [***groups***](apps/groups.md) | *Print the groups a user is in. This is part of "am-utils" suite.*..[ *read more* ](apps/groups.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/groups) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/groups) | -| | [***gum***](apps/gum.md) | *A tool for glamorous shell scripts.*..[ *read more* ](apps/gum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gum) | -| | [***handlr***](apps/handlr.md) | *fork of the original handlr, with support for regular expressions.*..[ *read more* ](apps/handlr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/handlr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/handlr) | -| | [***hascard***](apps/hascard.md) | *Flashcard TUI CLI with markdown cards.*..[ *read more* ](apps/hascard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hascard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hascard) | -| | [***hctl***](apps/hctl.md) | *A tool to control your Home Assistant devices from the command-line.*..[ *read more* ](apps/hctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hctl) | -| | [***hd***](apps/hd.md) | *Small hex dumper utility (with optional HexII output). This is part of "am-utils" suite.*..[ *read more* ](apps/hd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hd) | -| | [***head***](apps/head.md) | *Output the first part of files. This is part of "am-utils" suite.*..[ *read more* ](apps/head.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/head) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/head) | -| | [***hexdump***](apps/hexdump.md) | *Display file contents in hexadecimal format. This is part of "am-utils" suite.*..[ *read more* ](apps/hexdump.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hexdump) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hexdump) | -| | [***hide.me***](apps/hide.me.md) | *Hide.me CLI VPN client for Linux.*..[ *read more* ](apps/hide.me.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hide.me) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hide.me) | -| | [***hilbish***](apps/hilbish.md) | *The Moon-powered shell! A comfy and extensible shell for Lua fans!*..[ *read more* ](apps/hilbish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hilbish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hilbish) | -| | [***hostid***](apps/hostid.md) | *Print the numeric identifier for the current host. This is part of "am-utils" suite.*..[ *read more* ](apps/hostid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hostid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hostid) | -| | [***humanlog***](apps/humanlog.md) | *Logs for humans to read.*..[ *read more* ](apps/humanlog.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/humanlog) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/humanlog) | -| | [***hyperfine***](apps/hyperfine.md) | *A command-line benchmarking tool.*..[ *read more* ](apps/hyperfine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperfine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperfine) | -| | [***i3-auto-layout***](apps/i3-auto-layout.md) | *Automatic, optimal tiling for i3wm. Fork of dead version.*..[ *read more* ](apps/i3-auto-layout.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/i3-auto-layout) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/i3-auto-layout) | -| | [***i3lock-color***](apps/i3lock-color.md) | *The world's most popular non-default computer lockscreen.*..[ *read more* ](apps/i3lock-color.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/i3lock-color) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/i3lock-color) | -| | [***id***](apps/id.md) | *Print real and effective user and group IDs. This is part of "am-utils" suite.*..[ *read more* ](apps/id.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/id) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/id) | -| | [***imgcat***](apps/imgcat.md) | *Display images and gifs in your terminal.*..[ *read more* ](apps/imgcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imgcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imgcat) | -| | [***install***](apps/install.md) | *Copy files and set attributes. This is part of "am-utils" suite.*..[ *read more* ](apps/install.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/install) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/install) | -| | [***inxi***](apps/inxi.md) | *A full featured CLI system information tool.*..[ *read more* ](apps/inxi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/inxi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/inxi) | -| | [***jless***](apps/jless.md) | *CLI JSON viewer designed for reading, exploring, and searching.*..[ *read more* ](apps/jless.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jless) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jless) | -| | [***jnv***](apps/jnv.md) | *Interactive JSON filter using jq.*..[ *read more* ](apps/jnv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jnv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jnv) | -| | [***join***](apps/join.md) | *Of two files on a common field. This is part of "am-utils" suite.*..[ *read more* ](apps/join.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/join) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/join) | -| | [***jottem***](apps/jottem.md) | *A lean, low friction terminal app for managing markdown notes.*..[ *read more* ](apps/jottem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jottem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jottem) | -| | [***jq***](apps/jq.md) | *Command-line JSON processor.*..[ *read more* ](apps/jq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jq) | -| | [***jqp***](apps/jqp.md) | *A TUI playground to experiment with jq.*..[ *read more* ](apps/jqp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jqp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jqp) | -| | [***junest***](apps/junest.md) | *Arch Linux based distro that runs rootless on any other Linux distro.*..[ *read more* ](apps/junest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/junest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/junest) | -| | [***kalc***](apps/kalc.md) | *Complex numbers, 2d/3d graphing, arbitrary precision cli calculator.*..[ *read more* ](apps/kalc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kalc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kalc) | -| | [***kalker***](apps/kalker.md) | *Scientific calculator with math syntax for user-defined variables.*..[ *read more* ](apps/kalker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kalker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kalker) | -| | [***kboard***](apps/kboard.md) | *Terminal game to practice keyboard typing.*..[ *read more* ](apps/kboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kboard) | -| | [***kibi***](apps/kibi.md) | *A text editor in ≤1024 lines of code, written in Rust.*..[ *read more* ](apps/kibi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kibi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kibi) | -| | [***kill***](apps/kill.md) | *Terminate a process. This is part of "am-utils" suite.*..[ *read more* ](apps/kill.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kill) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kill) | -| | [***killall***](apps/killall.md) | *Kill processes by name. This is part of "am-utils" suite.*..[ *read more* ](apps/killall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/killall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/killall) | -| | [***kindling-cli***](apps/kindling-cli.md) | *Kindle toolkit for dictionaries, books, comics.*..[ *read more* ](apps/kindling-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kindling-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kindling-cli) | -| | [***kmon***](apps/kmon.md) | *Linux Kernel Manager and Activity Monitor.*..[ *read more* ](apps/kmon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kmon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kmon) | -| | [***kmonad***](apps/kmonad.md) | *An advanced keyboard manager.*..[ *read more* ](apps/kmonad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kmonad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kmonad) | -| | [***koboldcpp***](apps/koboldcpp.md) | *Simple 1-file way to run GGML and GGUF models with KoboldAI's UI.*..[ *read more* ](apps/koboldcpp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koboldcpp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koboldcpp) | -| | [***kondo***](apps/kondo.md) | *Cleans dependencies and build artifacts from your projects.*..[ *read more* ](apps/kondo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kondo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kondo) | -| | [***kure***](apps/kure.md) | *CLI password manager with sessions.*..[ *read more* ](apps/kure.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kure) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kure) | -| | [***lan-mouse***](apps/lan-mouse.md) | *Mouse & keyboard sharing via LAN.*..[ *read more* ](apps/lan-mouse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lan-mouse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lan-mouse) | -| | [***lazygit***](apps/lazygit.md) | *Simple terminal UI for git commands.*..[ *read more* ](apps/lazygit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lazygit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lazygit) | -| | [***ld***](apps/ld.md) | *Standalone Linker Compiler. This is part of "am-utils" suite.*..[ *read more* ](apps/ld.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ld) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ld) | -| | [***ld.bfd***](apps/ld.bfd.md) | *The GNU linker with BFD libraries. This is part of "am-utils" suite.*..[ *read more* ](apps/ld.bfd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ld.bfd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ld.bfd) | -| | [***less***](apps/less.md) | *A terminal based program for viewing text files. This is part of "am-utils" suite.*..[ *read more* ](apps/less.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/less) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/less) | -| | [***lexido***](apps/lexido.md) | *A terminal assistant, powered by Generative AI.*..[ *read more* ](apps/lexido.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lexido) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lexido) | -| | [***lf***](apps/lf.md) | *lf, as in "list files" is a terminal file manager written in Go.*..[ *read more* ](apps/lf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lf) | -| | [***link***](apps/link.md) | *Call the link function to create a link to a file. This is part of "am-utils" suite.*..[ *read more* ](apps/link.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/link) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/link) | -| | [***litime***](apps/litime.md) | *A terminal literature clock telling time with quotes from literature.*..[ *read more* ](apps/litime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/litime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/litime) | -| | [***ln***](apps/ln.md) | *Make links between files. This is part of "am-utils" suite.*..[ *read more* ](apps/ln.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ln) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ln) | -| | [***lockbook-cli***](apps/lockbook-cli.md) | *The private, polished note-taking platform, CLI.*..[ *read more* ](apps/lockbook-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lockbook-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lockbook-cli) | -| | [***logname***](apps/logname.md) | *Print user's login name. This is part of "am-utils" suite.*..[ *read more* ](apps/logname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/logname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/logname) | -| | [***look***](apps/look.md) | *Beginning with a given string. This is part of "am-utils" suite.*..[ *read more* ](apps/look.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/look) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/look) | -| | [***lovesay***](apps/lovesay.md) | *Cowsay, but full of love and now a little rusty.*..[ *read more* ](apps/lovesay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lovesay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lovesay) | -| | [***lowfi***](apps/lowfi.md) | *An extremely simple lofi player. CLI.*..[ *read more* ](apps/lowfi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lowfi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lowfi) | -| | [***ls***](apps/ls.md) | *List directory contents. This is part of "am-utils" suite.*..[ *read more* ](apps/ls.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ls) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ls) | -| | [***lsd***](apps/lsd.md) | *The next gen ls command.*..[ *read more* ](apps/lsd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lsd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lsd) | -| | [***macchina***](apps/macchina.md) | *A system information frontend with an emphasis on performance.*..[ *read more* ](apps/macchina.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/macchina) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/macchina) | -| | [***manga-tui***](apps/manga-tui.md) | *Terminal-based manga reader and downloader with image support.*..[ *read more* ](apps/manga-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/manga-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/manga-tui) | -| | [***mangadesk***](apps/mangadesk.md) | *Terminal client for MangaDex.*..[ *read more* ](apps/mangadesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangadesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangadesk) | -| | [***mangal***](apps/mangal.md) | *Most advanced, yet simple CLI manga downloader in the universe!*..[ *read more* ](apps/mangal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangal) | -| | [***matm***](apps/matm.md) | *Watch anime, movies, tv shows and read manga from comfort of the cli.*..[ *read more* ](apps/matm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/matm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/matm) | -| | [***mawk***](apps/mawk.md) | *And text processing language. This is part of "am-utils" suite.*..[ *read more* ](apps/mawk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mawk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mawk) | -| | [***mcfly***](apps/mcfly.md) | *Fly through your shell history. Great Scott!*..[ *read more* ](apps/mcfly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mcfly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mcfly) | -| | [***md5sum***](apps/md5sum.md) | *Compute and check MD5 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/md5sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/md5sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/md5sum) | -| | [***mdcat***](apps/mdcat.md) | *Command line, "cat" for markdown.*..[ *read more* ](apps/mdcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mdcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mdcat) | -| | [***menyoki***](apps/menyoki.md) | *Screen{shot,cast} and perform ImageOps on the command line.*..[ *read more* ](apps/menyoki.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/menyoki) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/menyoki) | -| | [***mk***](apps/mk.md) | *Interactive Task Runner for Makefile.*..[ *read more* ](apps/mk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mk) | -| | [***mkdir***](apps/mkdir.md) | *Make directories. This is part of "am-utils" suite.*..[ *read more* ](apps/mkdir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mkdir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mkdir) | -| | [***mkfifo***](apps/mkfifo.md) | *Make FIFOs (named pipes). This is part of "am-utils" suite.*..[ *read more* ](apps/mkfifo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mkfifo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mkfifo) | -| | [***mknod***](apps/mknod.md) | *Make block or character special files. This is part of "am-utils" suite.*..[ *read more* ](apps/mknod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mknod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mknod) | -| | [***mktemp***](apps/mktemp.md) | *Create a temporary file or directory. This is part of "am-utils" suite.*..[ *read more* ](apps/mktemp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mktemp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mktemp) | -| | [***more***](apps/more.md) | *Display the contents of a file in a terminal. This is part of "am-utils" suite.*..[ *read more* ](apps/more.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/more) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/more) | -| | [***mount***](apps/mount.md) | *Mount a filesystem. This is part of "am-utils" suite.*..[ *read more* ](apps/mount.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mount) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mount) | -| | [***mp4grep***](apps/mp4grep.md) | *CLI for transcribing and searching audio/video files.*..[ *read more* ](apps/mp4grep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mp4grep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mp4grep) | -| | [***multimc***](apps/multimc.md) | *A Minecraft launcher.*..[ *read more* ](apps/multimc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/multimc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/multimc) | -| | [***mv***](apps/mv.md) | *Move (rename) files. This is part of "am-utils" suite.*..[ *read more* ](apps/mv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mv) | -| | [***nami***](apps/nami.md) | *A clean and tidy decentralized package manager.*..[ *read more* ](apps/nami.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nami) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nami) | -| | [***nap***](apps/nap.md) | *Code spippets in your terminal.*..[ *read more* ](apps/nap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nap) | -| | [***navi***](apps/navi.md) | *An interactive cheatsheet tool for the command-line.*..[ *read more* ](apps/navi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/navi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/navi) | -| | [***nazuna***](apps/nazuna.md) | *Download Twitter videos using your terminal!*..[ *read more* ](apps/nazuna.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nazuna) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nazuna) | -| | [***neko***](apps/neko.md) | *Neko is a cross-platform cursor-chasing cat.*..[ *read more* ](apps/neko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neko) | -| | [***nerdfetch***](apps/nerdfetch.md) | *A POSIX *nix fetch script using Nerdfonts.*..[ *read more* ](apps/nerdfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nerdfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nerdfetch) | -| | [***nice***](apps/nice.md) | *Run a program with modified scheduling priority. This is part of "am-utils" suite.*..[ *read more* ](apps/nice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nice) | -| | [***nitch***](apps/nitch.md) | *Incredibly fast system fetch written in nim.*..[ *read more* ](apps/nitch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nitch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nitch) | -| | [***nix-portable***](apps/nix-portable.md) | *Use nix on any linux system, rootless and configuration free.*..[ *read more* ](apps/nix-portable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nix-portable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nix-portable) | -| | [***nl***](apps/nl.md) | *Number lines of files. This is part of "am-utils" suite.*..[ *read more* ](apps/nl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nl) | -| | [***nm***](apps/nm.md) | *From object files. This is part of "am-utils" suite.*..[ *read more* ](apps/nm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nm) | -| | [***nnn***](apps/nnn.md) | *n³ The unorthodox terminal file manager*..[ *read more* ](apps/nnn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nnn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nnn) | -| | [***node***](apps/node.md) | *This is the official suite of Node.js tools, also known as "NodeJS", a JavaScript runtime built on Chrome's V8 JavaScript engine.*..[ *read more* ](apps/node.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/node) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/node) | -| | [***nohup***](apps/nohup.md) | *Run a command immune to hangups, with output to a. This is part of "am-utils" suite.*..[ *read more* ](apps/nohup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nohup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nohup) | -| | [***notify-send***](apps/notify-send.md) | *A program to send desktop notifications. This is part of "am-utils" suite.*..[ *read more* ](apps/notify-send.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notify-send) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notify-send) | -| | [***nproc***](apps/nproc.md) | *Print the number of processing units available. This is part of "am-utils" suite.*..[ *read more* ](apps/nproc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nproc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nproc) | -| | [***nu***](apps/nu.md) | *A new type of shell.*..[ *read more* ](apps/nu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nu) | -| | [***numfmt***](apps/numfmt.md) | *From/to human-readable strings. This is part of "am-utils" suite.*..[ *read more* ](apps/numfmt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/numfmt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/numfmt) | -| | [***nyaa***](apps/nyaa.md) | *A nyaa.si tui tool for browsing and downloading torrents.*..[ *read more* ](apps/nyaa.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nyaa) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nyaa) | -| | [***nyan***](apps/nyan.md) | *CLI, colored "cat" command.*..[ *read more* ](apps/nyan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nyan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nyan) | -| | [***objcopy***](apps/objcopy.md) | *Translate object files. This is part of "am-utils" suite.*..[ *read more* ](apps/objcopy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/objcopy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/objcopy) | -| | [***objdump***](apps/objdump.md) | *From object files. This is part of "am-utils" suite.*..[ *read more* ](apps/objdump.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/objdump) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/objdump) | -| | [***obsidian-cli***](apps/obsidian-cli.md) | *Interact with Obsidian in the terminal. Open, search, create, update, move and delete notes!*..[ *read more* ](apps/obsidian-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/obsidian-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/obsidian-cli) | -| | [***od***](apps/od.md) | *Dump files in octal and other formats. This is part of "am-utils" suite.*..[ *read more* ](apps/od.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/od) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/od) | -| | [***oh***](apps/oh.md) | *A new Unix shell.*..[ *read more* ](apps/oh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oh) | -| | [***omekasy***](apps/omekasy.md) | *Command line application that converts alphanumeric characters to various styles 𝚍𝚎𝚏𝚒𝚗𝚎𝚍 𝚒𝚗 𝚄𝚗𝚒𝚌𝚘𝚍𝚎.*..[ *read more* ](apps/omekasy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omekasy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omekasy) | -| | [***onefetch***](apps/onefetch.md) | *Command-line Git information tool.*..[ *read more* ](apps/onefetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onefetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onefetch) | -| | [***openapi-tui***](apps/openapi-tui.md) | *Terminal UI to list, browse and run APIs defined with openapi.*..[ *read more* ](apps/openapi-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openapi-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openapi-tui) | -| | [***opencode***](apps/opencode.md) | *The open source coding agent.*..[ *read more* ](apps/opencode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencode) | -| | [***oras***](apps/oras.md) | *OCI registry client managing content like artifacts, images, packages.*..[ *read more* ](apps/oras.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oras) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oras) | -| | [***ots***](apps/ots.md) | *Share end-to-end encrypted secrets with others via a one-time URL.*..[ *read more* ](apps/ots.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ots) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ots) | -| | [***paclear***](apps/paclear.md) | *CLI, paclear is a clear command with PAC-MAN animation.*..[ *read more* ](apps/paclear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paclear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paclear) | -| | [***paket***](apps/paket.md) | *A simple and fast package manager for the Fish shell written in Rust.*..[ *read more* ](apps/paket.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paket) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paket) | -| | [***paste***](apps/paste.md) | *Merge lines of files. This is part of "am-utils" suite.*..[ *read more* ](apps/paste.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paste) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paste) | -| | [***pastel***](apps/pastel.md) | *A command-line tool to generate, analyze, convert and manipulate colors.*..[ *read more* ](apps/pastel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pastel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pastel) | -| | [***pathchk***](apps/pathchk.md) | *File names are valid or portable. This is part of "am-utils" suite.*..[ *read more* ](apps/pathchk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pathchk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pathchk) | -| | [***pay-respects***](apps/pay-respects.md) | *Terminal command correction, alternative to thefuck written in Rust.*..[ *read more* ](apps/pay-respects.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pay-respects) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pay-respects) | -| | [***pboy***](apps/pboy.md) | *A small .pdf management tool with a command-line UI.*..[ *read more* ](apps/pboy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pboy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pboy) | -| | [***pdf-diff***](apps/pdf-diff.md) | *A CLI tool for visualizing differences between two pdf files.*..[ *read more* ](apps/pdf-diff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf-diff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf-diff) | -| | [***peep***](apps/peep.md) | *The CLI text viewer tool that works like less command on small pane within the terminal window.*..[ *read more* ](apps/peep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/peep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/peep) | -| | [***pet***](apps/pet.md) | *Simple command-line snippet manager.*..[ *read more* ](apps/pet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pet) | -| | [***pfetch-rs***](apps/pfetch-rs.md) | *A rewrite of the pfetch system information tool in Rust.*..[ *read more* ](apps/pfetch-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pfetch-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pfetch-rs) | -| | [***pget***](apps/pget.md) | *The fastest, resumable file download CLI client.*..[ *read more* ](apps/pget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pget) | -| | [***pho***](apps/pho.md) | *The AppImage Manager that Linux always deserved.*..[ *read more* ](apps/pho.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pho) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pho) | -| | [***picterm***](apps/picterm.md) | *CLI, TUI image viewer.*..[ *read more* ](apps/picterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picterm) | -| | [***pingu***](apps/pingu.md) | *CLI, ping command but with pingu.*..[ *read more* ](apps/pingu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pingu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pingu) | -| | [***pinky***](apps/pinky.md) | *Lightweight finger. This is part of "am-utils" suite.*..[ *read more* ](apps/pinky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pinky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pinky) | -| | [***pipes-rs***](apps/pipes-rs.md) | *An over-engineered rewrite of pipes.sh in Rust. CLI.*..[ *read more* ](apps/pipes-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pipes-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pipes-rs) | -| | [***pixfetch***](apps/pixfetch.md) | *Another CLI fetch program with pixelized images written in Rust.*..[ *read more* ](apps/pixfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixfetch) | -| | [***platform-tools***](apps/platform-tools.md) | *Official Suite of command line utilities to manage Android devices.*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***png2svg***](apps/png2svg.md) | *CLI, convert small PNG images to SVG Tiny 1.2.*..[ *read more* ](apps/png2svg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/png2svg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/png2svg) | -| | [***podman***](apps/podman.md) | *Free & open source tool to manage containers, pods, and images.*..[ *read more* ](apps/podman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/podman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/podman) | -| | [***pokeget-rs***](apps/pokeget-rs.md) | *A better rust version of pokeget. CLI.*..[ *read more* ](apps/pokeget-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokeget-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokeget-rs) | -| | [***pokego***](apps/pokego.md) | *Command-line tool that lets you display Pokémon sprites in color directly in your terminal.*..[ *read more* ](apps/pokego.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokego) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokego) | -| | [***pop***](apps/pop.md) | *Send emails from your terminal.*..[ *read more* ](apps/pop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pop) | -| | [***pr***](apps/pr.md) | *Files for printing. This is part of "am-utils" suite.*..[ *read more* ](apps/pr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pr) | -| | [***printenv***](apps/printenv.md) | *Print all or part of environment. This is part of "am-utils" suite.*..[ *read more* ](apps/printenv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/printenv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/printenv) | -| | [***printf***](apps/printf.md) | *Format and print data. This is part of "am-utils" suite.*..[ *read more* ](apps/printf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/printf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/printf) | -| | [***procs***](apps/procs.md) | *A modern replacement for ps written in Rust.*..[ *read more* ](apps/procs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/procs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/procs) | -| | [***ptx***](apps/ptx.md) | *Permuted index of file contents. This is part of "am-utils" suite.*..[ *read more* ](apps/ptx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ptx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ptx) | -| | [***pwd***](apps/pwd.md) | *Print name of current/working directory. This is part of "am-utils" suite.*..[ *read more* ](apps/pwd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pwd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pwd) | -| | [***qrscan***](apps/qrscan.md) | *Scan a QR code in the terminal using the system camera or an image.*..[ *read more* ](apps/qrscan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qrscan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qrscan) | -| | [***quarto-cli***](apps/quarto-cli.md) | *Scientific and technical publishing system built on Pandoc.*..[ *read more* ](apps/quarto-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quarto-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quarto-cli) | -| | [***ranlib***](apps/ranlib.md) | *Index to an archive. This is part of "am-utils" suite.*..[ *read more* ](apps/ranlib.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ranlib) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ranlib) | -| | [***rbw***](apps/rbw.md) | *Unofficial Bitwarden password manager cli.*..[ *read more* ](apps/rbw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rbw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rbw) | -| | [***rclone***](apps/rclone.md) | *"rsync for cloud storage", CLI that supports Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Wasabi, Google Cloud Storage, Azure Blob, Azure Files, Yandex Files.*..[ *read more* ](apps/rclone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rclone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rclone) | -| | [***readelf***](apps/readelf.md) | *About ELF files. This is part of "am-utils" suite.*..[ *read more* ](apps/readelf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readelf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readelf) | -| | [***readlink***](apps/readlink.md) | *Print resolved symbolic links or canonical file. This is part of "am-utils" suite.*..[ *read more* ](apps/readlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readlink) | -| | [***realpath***](apps/realpath.md) | *Print the resolved path. This is part of "am-utils" suite.*..[ *read more* ](apps/realpath.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/realpath) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/realpath) | -| | [***rebos***](apps/rebos.md) | *Rebos is a tool that aims at mimicking what NixOS does (repeatability), for any Linux distribution.*..[ *read more* ](apps/rebos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rebos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rebos) | -| | [***rev***](apps/rev.md) | *Reverse lines characterwise. This is part of "am-utils" suite.*..[ *read more* ](apps/rev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rev) | -| | [***revealgo***](apps/revealgo.md) | *Markdown driven presentation tool written in Go!*..[ *read more* ](apps/revealgo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/revealgo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/revealgo) | -| | [***rimage***](apps/rimage.md) | *This is CLI tool inspired by squoosh.*..[ *read more* ](apps/rimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rimage) | -| | [***ripgrep***](apps/ripgrep.md) | *Search directories for regex pattern while respecting gitignore.*..[ *read more* ](apps/ripgrep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ripgrep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ripgrep) | -| | [***ripgrep-all***](apps/ripgrep-all.md) | *A ripgrep version to also search in documents and archives.*..[ *read more* ](apps/ripgrep-all.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ripgrep-all) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ripgrep-all) | -| | [***rm***](apps/rm.md) | *Remove files or directories. This is part of "am-utils" suite.*..[ *read more* ](apps/rm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rm) | -| | [***rmdir***](apps/rmdir.md) | *Remove empty directories. This is part of "am-utils" suite.*..[ *read more* ](apps/rmdir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rmdir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rmdir) | -| | [***rocketfetch***](apps/rocketfetch.md) | *A WIP command line system information tool written with multithreading in rust for performance with toml file configuration.*..[ *read more* ](apps/rocketfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rocketfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rocketfetch) | -| | [***rrip***](apps/rrip.md) | *Bulk image downloader for reddit.*..[ *read more* ](apps/rrip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rrip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rrip) | -| | [***rucola***](apps/rucola.md) | *Terminal-based markdown note manager.*..[ *read more* ](apps/rucola.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rucola) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rucola) | -| | [***runcon***](apps/runcon.md) | *With specified security context. This is part of "am-utils" suite.*..[ *read more* ](apps/runcon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/runcon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/runcon) | -| | [***rustdict***](apps/rustdict.md) | *A dictionary CLI tool in Rust inspired by BetaPictoris's dict.*..[ *read more* ](apps/rustdict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rustdict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rustdict) | -| | [***rustypaste***](apps/rustypaste.md) | *A minimal file upload/pastebin service.*..[ *read more* ](apps/rustypaste.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rustypaste) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rustypaste) | -| | [***s***](apps/s.md) | *Open a web search in your terminal.*..[ *read more* ](apps/s.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/s) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/s) | -| | [***sd***](apps/sd.md) | *Intuitive find & replace CLI, sed alternative.*..[ *read more* ](apps/sd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sd) | -| | [***sed***](apps/sed.md) | *GNU stream editor for filtering and transforming text. This is part of "am-utils" suite.*..[ *read more* ](apps/sed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sed) | -| | [***seq***](apps/seq.md) | *Print a sequence of numbers. This is part of "am-utils" suite.*..[ *read more* ](apps/seq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seq) | -| | [***sh***](apps/sh.md) | *GNU Bourne-Again Shell, the de facto standard shell on Linux. This is part of "am-utils" suite.*..[ *read more* ](apps/sh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sh) | -| | [***sha1sum***](apps/sha1sum.md) | *Compute and check SHA1 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha1sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha1sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha1sum) | -| | [***sha224sum***](apps/sha224sum.md) | *Check SHA224 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha224sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha224sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha224sum) | -| | [***sha256sum***](apps/sha256sum.md) | *Compute and check SHA256 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha256sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha256sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha256sum) | -| | [***sha384sum***](apps/sha384sum.md) | *Check SHA384 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha384sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha384sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha384sum) | -| | [***sha512sum***](apps/sha512sum.md) | *Compute and check SHA512 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha512sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha512sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha512sum) | -| | [***shellcheck***](apps/shellcheck.md) | *ShellCheck, a static analysis tool for shell scripts.*..[ *read more* ](apps/shellcheck.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shellcheck) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shellcheck) | -| | [***shellharden***](apps/shellharden.md) | *The corrective bash syntax highlighter.*..[ *read more* ](apps/shellharden.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shellharden) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shellharden) | -| | [***shradiko***](apps/shradiko.md) | *Make Portable AppImages from Distro Packages.*..[ *read more* ](apps/shradiko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shradiko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shradiko) | -| | [***shred***](apps/shred.md) | *Overwrite a file to hide its contents, and optionally. This is part of "am-utils" suite.*..[ *read more* ](apps/shred.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shred) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shred) | -| | [***shuf***](apps/shuf.md) | *Generate random permutations. This is part of "am-utils" suite.*..[ *read more* ](apps/shuf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shuf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shuf) | -| | [***sidenote***](apps/sidenote.md) | *A CLI tool that helps to manage plain text notes per working directory.*..[ *read more* ](apps/sidenote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sidenote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sidenote) | -| | [***size***](apps/size.md) | *Sizes and total size of binary files. This is part of "am-utils" suite.*..[ *read more* ](apps/size.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/size) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/size) | -| | [***sleep***](apps/sleep.md) | *Delay for a specified amount of time. This is part of "am-utils" suite.*..[ *read more* ](apps/sleep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sleep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sleep) | -| | [***smassh***](apps/smassh.md) | *Smassh your Keyboard, TUI Edition.*..[ *read more* ](apps/smassh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smassh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smassh) | -| | [***soar***](apps/soar.md) | *A fast, modern package manager for Static Binaries, Portable Formats, AppImage, AppBundle, FlatImage, Runimage & More.*..[ *read more* ](apps/soar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soar) | -| | [***soft-serve***](apps/soft-serve.md) | *The mighty, self-hostable Git server for the command line.*..[ *read more* ](apps/soft-serve.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soft-serve) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soft-serve) | -| | [***sort***](apps/sort.md) | *Sort lines of text files. This is part of "am-utils" suite.*..[ *read more* ](apps/sort.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sort) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sort) | -| | [***split***](apps/split.md) | *Divide a file into multiple smaller files. This is part of "am-utils" suite.*..[ *read more* ](apps/split.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/split) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/split) | -| | [***spotifetch***](apps/spotifetch.md) | *A simple and beautiful CLI fetch tool for spotify, now rusty.*..[ *read more* ](apps/spotifetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotifetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotifetch) | -| | [***spotify-dl***](apps/spotify-dl.md) | *A command-line utility to download songs and playlists directly from Spotify's servers.*..[ *read more* ](apps/spotify-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-dl) | -| | [***spotify-player***](apps/spotify-player.md) | *A Spotify player in the terminal with full feature parity.*..[ *read more* ](apps/spotify-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-player) | -| | [***spotify-tui***](apps/spotify-tui.md) | *Spotify for the terminal written in Rust.*..[ *read more* ](apps/spotify-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-tui) | -| | [***sptlrx***](apps/sptlrx.md) | *Synchronized lyrics in your terminal.*..[ *read more* ](apps/sptlrx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sptlrx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sptlrx) | -| | [***starship***](apps/starship.md) | *The minimal, blazing-fast, and infinitely customizable prompt for any shell.*..[ *read more* ](apps/starship.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/starship) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/starship) | -| | [***stat***](apps/stat.md) | *Display file or file system status. This is part of "am-utils" suite.*..[ *read more* ](apps/stat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stat) | -| | [***stdbuf***](apps/stdbuf.md) | *With modified buffering operations for its. This is part of "am-utils" suite.*..[ *read more* ](apps/stdbuf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stdbuf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stdbuf) | -| | [***steam-tui***](apps/steam-tui.md) | *Rust TUI client for steamcmd.*..[ *read more* ](apps/steam-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steam-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steam-tui) | -| | [***stew***](apps/stew.md) | *An independent package manager for compiled binaries.*..[ *read more* ](apps/stew.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stew) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stew) | -| | [***strace***](apps/strace.md) | *Trace system calls and signals. This is part of "am-utils" suite.*..[ *read more* ](apps/strace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strace) | -| | [***strings***](apps/strings.md) | *Strings is another bad static string library, written in C. This is part of "am-utils" suite.*..[ *read more* ](apps/strings.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strings) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strings) | -| | [***strip***](apps/strip.md) | *And other data from object files. This is part of "am-utils" suite.*..[ *read more* ](apps/strip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strip) | -| | [***stty***](apps/stty.md) | *Change and print terminal line settings. This is part of "am-utils" suite.*..[ *read more* ](apps/stty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stty) | -| | [***sum***](apps/sum.md) | *Checksum and count the blocks in a file. This is part of "am-utils" suite.*..[ *read more* ](apps/sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sum) | -| | [***superfile***](apps/superfile.md) | *Pretty fancy and modern terminal file manager.*..[ *read more* ](apps/superfile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superfile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superfile) | -| | [***swapoff***](apps/swapoff.md) | *Enable/disable devices and files for paging and. This is part of "am-utils" suite.*..[ *read more* ](apps/swapoff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swapoff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swapoff) | -| | [***swapon***](apps/swapon.md) | *Enable/disable devices and files for paging and. This is part of "am-utils" suite.*..[ *read more* ](apps/swapon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swapon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swapon) | -| | [***swish***](apps/swish.md) | *Command Line Interface for Swisstransfer Infomaniak's free service.*..[ *read more* ](apps/swish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swish) | -| | [***sync***](apps/sync.md) | *Backup and synchronization service. This is part of "am-utils" suite.*..[ *read more* ](apps/sync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sync) | -| | [***sysz***](apps/sysz.md) | *An fzf terminal UI for systemctl.*..[ *read more* ](apps/sysz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sysz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sysz) | -| | [***tac***](apps/tac.md) | *Concatenate and print files in reverse. This is part of "am-utils" suite.*..[ *read more* ](apps/tac.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tac) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tac) | -| | [***tail***](apps/tail.md) | *Output the last part of files. This is part of "am-utils" suite.*..[ *read more* ](apps/tail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tail) | -| | [***tar***](apps/tar.md) | *Utility used to store, backup, and transport files. This is part of "am-utils" suite.*..[ *read more* ](apps/tar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tar) | -| | [***taskell***](apps/taskell.md) | *Command-line Kanban board/task manager with support for Trello boards and GitHub projects.*..[ *read more* ](apps/taskell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/taskell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/taskell) | -| | [***tb***](apps/tb.md) | *Tasks, boards & notes for the command-line habitat.*..[ *read more* ](apps/tb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tb) | -| | [***tdlib-rs***](apps/tdlib-rs.md) | *Rust wrapper around the Telegram Database Library.*..[ *read more* ](apps/tdlib-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tdlib-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tdlib-rs) | -| | [***tee***](apps/tee.md) | *Read from standard input and write to standard output and. This is part of "am-utils" suite.*..[ *read more* ](apps/tee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tee) | -| | [***tere***](apps/tere.md) | *Terminal file explorer.*..[ *read more* ](apps/tere.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tere) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tere) | -| | [***termshot***](apps/termshot.md) | *Creates screenshots based on terminal command output.*..[ *read more* ](apps/termshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/termshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/termshot) | -| | [***tess***](apps/tess.md) | *A hackable, simple, rapid and beautiful terminal.*..[ *read more* ](apps/tess.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tess) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tess) | -| | [***test***](apps/test.md) | *Check file types and compare values. This is part of "am-utils" suite.*..[ *read more* ](apps/test.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/test) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/test) | -| | [***testdisk***](apps/testdisk.md) | *TestDisk & PhotoRec, tools to recover lost partitions and files.*..[ *read more* ](apps/testdisk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/testdisk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/testdisk) | -| | [***textnote***](apps/textnote.md) | *Simple tool for creating and organizing daily notes on the command line.*..[ *read more* ](apps/textnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/textnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/textnote) | -| | [***tgpt***](apps/tgpt.md) | *AI Chatbots in terminal without needing API keys.*..[ *read more* ](apps/tgpt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tgpt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tgpt) | -| | [***the-way***](apps/the-way.md) | *A code snippets manager for your terminal.*..[ *read more* ](apps/the-way.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/the-way) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/the-way) | -| | [***ticker***](apps/ticker.md) | *Terminal stock ticker with live updates and position tracking.*..[ *read more* ](apps/ticker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ticker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ticker) | -| | [***timeout***](apps/timeout.md) | *Run a command with a time limit. This is part of "am-utils" suite.*..[ *read more* ](apps/timeout.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/timeout) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/timeout) | -| | [***tlock***](apps/tlock.md) | *Two-Factor Authentication Tokens Manager in Terminal.*..[ *read more* ](apps/tlock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tlock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tlock) | -| | [***tod***](apps/tod.md) | *An unofficial Todoist command line client written in Rust.*..[ *read more* ](apps/tod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tod) | -| | [***toipe***](apps/toipe.md) | *yet another typing test, but crab flavoured.*..[ *read more* ](apps/toipe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/toipe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/toipe) | -| | [***top***](apps/top.md) | *Display Linux processes. This is part of "am-utils" suite.*..[ *read more* ](apps/top.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/top) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/top) | -| | [***topgrade***](apps/topgrade.md) | *Upgrade all the things, this is the universal upgrade manager.*..[ *read more* ](apps/topgrade.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/topgrade) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/topgrade) | -| | [***toru***](apps/toru.md) | *Bittorrent streaming CLI tool. Stream anime torrents real-time.*..[ *read more* ](apps/toru.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/toru) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/toru) | -| | [***touch***](apps/touch.md) | *Change file timestamps. This is part of "am-utils" suite.*..[ *read more* ](apps/touch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/touch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/touch) | -| | [***tput***](apps/tput.md) | *tput - initialize a terminal, exercise its capabilities, or query terminfo database. This is part of "am-utils" suite.*..[ *read more* ](apps/tput.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tput) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tput) | -| | [***tr***](apps/tr.md) | *Translate or delete characters. This is part of "am-utils" suite.*..[ *read more* ](apps/tr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tr) | -| | [***trans***](apps/trans.md) | *CLI translator using Google/Bing/Yandex Translate, etc...*..[ *read more* ](apps/trans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trans) | -| | [***transformer***](apps/transformer.md) | *A command-line utility for splitting large files into chunks/pieces and merging them back together.*..[ *read more* ](apps/transformer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transformer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transformer) | -| | [***true***](apps/true.md) | *Do nothing, successfully. This is part of "am-utils" suite.*..[ *read more* ](apps/true.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/true) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/true) | -| | [***truncate***](apps/truncate.md) | *Shrink or extend the size of a file to the specified. This is part of "am-utils" suite.*..[ *read more* ](apps/truncate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/truncate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/truncate) | -| | [***tsort***](apps/tsort.md) | *Perform a topological sort. This is part of "am-utils" suite.*..[ *read more* ](apps/tsort.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tsort) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tsort) | -| | [***tssh***](apps/tssh.md) | *trzsz-ssh is an alternative to ssh client, offers additional features.*..[ *read more* ](apps/tssh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tssh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tssh) | -| | [***tty***](apps/tty.md) | *Print the file name of the terminal connected to standard. This is part of "am-utils" suite.*..[ *read more* ](apps/tty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tty) | -| | [***ttyper***](apps/ttyper.md) | *Terminal-based typing test.*..[ *read more* ](apps/ttyper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ttyper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ttyper) | -| | [***tuxplorer***](apps/tuxplorer.md) | *Tuxplorer is a terminal based file explorer.*..[ *read more* ](apps/tuxplorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tuxplorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tuxplorer) | -| | [***typioca***](apps/typioca.md) | *Cozy typing speed tester in terminal.*..[ *read more* ](apps/typioca.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/typioca) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/typioca) | -| | [***ul***](apps/ul.md) | *Translate underline sequences for terminals. This is part of "am-utils" suite.*..[ *read more* ](apps/ul.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ul) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ul) | -| | [***umount***](apps/umount.md) | *Unmount filesystems. This is part of "am-utils" suite.*..[ *read more* ](apps/umount.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/umount) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/umount) | -| | [***uname***](apps/uname.md) | *Print system information. This is part of "am-utils" suite.*..[ *read more* ](apps/uname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uname) | -| | [***uncompress***](apps/uncompress.md) | *Zcat - compress and expand data. This is part of "am-utils" suite.*..[ *read more* ](apps/uncompress.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uncompress) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uncompress) | -| | [***unexpand***](apps/unexpand.md) | *Convert spaces to tabs. This is part of "am-utils" suite.*..[ *read more* ](apps/unexpand.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unexpand) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unexpand) | -| | [***uniq***](apps/uniq.md) | *Report or omit repeated lines. This is part of "am-utils" suite.*..[ *read more* ](apps/uniq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uniq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uniq) | -| | [***unlink***](apps/unlink.md) | *Call the unlink function to remove the specified file. This is part of "am-utils" suite.*..[ *read more* ](apps/unlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unlink) | -| | [***unshare***](apps/unshare.md) | *Run program in new namespaces. This is part of "am-utils" suite.*..[ *read more* ](apps/unshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unshare) | -| | [***unveil***](apps/unveil.md) | *Unveil Rs is a tool to create presentations from markdown inspired by reveal.js, mdbook and zola.*..[ *read more* ](apps/unveil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unveil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unveil) | -| | [***unxz***](apps/unxz.md) | *Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of "am-utils" suite.*..[ *read more* ](apps/unxz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unxz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unxz) | -| | [***unzip***](apps/unzip.md) | *For extracting and viewing files in .zip archives. This is part of "am-utils" suite.*..[ *read more* ](apps/unzip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unzip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unzip) | -| | [***upgit***](apps/upgit.md) | *CLI, another upload hub that supports clipboard. It works well with Typora, Snipaste, VSCode.*..[ *read more* ](apps/upgit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/upgit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/upgit) | -| | [***uptime***](apps/uptime.md) | *Tell how long the system has been running.. This is part of "am-utils" suite.*..[ *read more* ](apps/uptime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uptime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uptime) | -| | [***users***](apps/users.md) | *Print the user names of users currently logged in to the. This is part of "am-utils" suite.*..[ *read more* ](apps/users.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/users) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/users) | -| | [***uv***](apps/uv.md) | *An extremely fast Python package and project manager, written in Rust.*..[ *read more* ](apps/uv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uv) | -| | [***uwufetch***](apps/uwufetch.md) | *A meme system info tool for Linux, based on nyan/uwu trend.*..[ *read more* ](apps/uwufetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uwufetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uwufetch) | -| | [***vdir***](apps/vdir.md) | *List directory contents. This is part of "am-utils" suite.*..[ *read more* ](apps/vdir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vdir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vdir) | -| | [***vegeta***](apps/vegeta.md) | *HTTP load testing tool and library. It's over 9000!*..[ *read more* ](apps/vegeta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vegeta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vegeta) | -| | [***vhs***](apps/vhs.md) | *Your CLI home video recorder.*..[ *read more* ](apps/vhs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vhs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vhs) | -| | [***vicut***](apps/vicut.md) | *A Vim-based, scriptable, headless text editor for the command line.*..[ *read more* ](apps/vicut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vicut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vicut) | -| | [***viddy***](apps/viddy.md) | *A modern watch command line utility. Time machine and pager etc.*..[ *read more* ](apps/viddy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viddy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viddy) | -| | [***vimeo-dl***](apps/vimeo-dl.md) | *A cli tool to download private videos on vimeo. Written in golang.*..[ *read more* ](apps/vimeo-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vimeo-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vimeo-dl) | -| | [***viu***](apps/viu.md) | *Terminal image viewer with native support for iTerm and Kitty.*..[ *read more* ](apps/viu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viu) | -| | [***vt***](apps/vt.md) | *VirusTotal Command Line Interface.*..[ *read more* ](apps/vt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vt) | -| | [***vtm***](apps/vtm.md) | *Text-based desktop environment.*..[ *read more* ](apps/vtm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vtm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vtm) | -| | [***w2vgrep***](apps/w2vgrep.md) | *semantic-grep for words with similar meaning to the query.*..[ *read more* ](apps/w2vgrep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/w2vgrep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/w2vgrep) | -| | [***walk***](apps/walk.md) | *Terminal file manager.*..[ *read more* ](apps/walk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/walk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/walk) | -| | [***watch***](apps/watch.md) | *Watches for changes in a directory tree and reruns a command in an acme win or just on the terminal. This is part of "am-utils" suite.*..[ *read more* ](apps/watch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/watch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/watch) | -| | [***wc***](apps/wc.md) | *Print newline, word, and byte counts for each file. This is part of "am-utils" suite.*..[ *read more* ](apps/wc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wc) | -| | [***wethr***](apps/wethr.md) | *Command line weather tool.*..[ *read more* ](apps/wethr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wethr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wethr) | -| | [***wget***](apps/wget.md) | *Network utility to retrieve files from the web. This is part of "am-utils" suite.*..[ *read more* ](apps/wget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wget) | -| | [***who***](apps/who.md) | *Show who is logged on. This is part of "am-utils" suite.*..[ *read more* ](apps/who.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/who) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/who) | -| | [***whoami***](apps/whoami.md) | *Print effective user name. This is part of "am-utils" suite.*..[ *read more* ](apps/whoami.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whoami) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whoami) | -| | [***wkp***](apps/wkp.md) | *A CLI tool designed to fetch Wikipedia excerpts written in Rust.*..[ *read more* ](apps/wkp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wkp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wkp) | -| | [***wtfutil***](apps/wtfutil.md) | *The personal information dashboard for your terminal.*..[ *read more* ](apps/wtfutil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wtfutil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wtfutil) | -| | [***x-pixiv***](apps/x-pixiv.md) | *CLI, pixiv downloader.*..[ *read more* ](apps/x-pixiv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/x-pixiv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/x-pixiv) | -| | [***xargs***](apps/xargs.md) | *Build and execute command lines from standard input. This is part of "am-utils" suite.*..[ *read more* ](apps/xargs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xargs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xargs) | -| | [***xbooxp***](apps/xbooxp.md) | *A nifty software to upload homebrew apps into your Game Boy Advance (GBA) using an xboo cable.*..[ *read more* ](apps/xbooxp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xbooxp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xbooxp) | -| | [***xdg-ninja***](apps/xdg-ninja.md) | *Script that checks your $HOME for unwanted files and directories.*..[ *read more* ](apps/xdg-ninja.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xdg-ninja) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xdg-ninja) | -| | [***xz***](apps/xz.md) | *Library and command line tools for XZ and LZMA compressed files. This is part of "am-utils" suite.*..[ *read more* ](apps/xz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xz) | -| | [***xzcat***](apps/xzcat.md) | *Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of "am-utils" suite.*..[ *read more* ](apps/xzcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xzcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xzcat) | -| | [***yaf***](apps/yaf.md) | *Yet another system CLI fetch that is minimal and customizable.*..[ *read more* ](apps/yaf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yaf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yaf) | -| | [***yazi***](apps/yazi.md) | *Blazing fast terminal file manager written in Rust.*..[ *read more* ](apps/yazi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yazi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yazi) | -| | [***yes***](apps/yes.md) | *Output a string repeatedly until killed. This is part of "am-utils" suite.*..[ *read more* ](apps/yes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yes) | -| | [***youtube-tui***](apps/youtube-tui.md) | *An aesthetically pleasing YouTube TUI CLI written in Rust.*..[ *read more* ](apps/youtube-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-tui) | -| | [***yt-dlp***](apps/yt-dlp.md) | *A feature-rich command-line audio/video downloader.*..[ *read more* ](apps/yt-dlp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yt-dlp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yt-dlp) | -| | [***ytarchive***](apps/ytarchive.md) | *Garbage Youtube livestream downloader CLI.*..[ *read more* ](apps/ytarchive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytarchive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytarchive) | -| | [***ytermusic***](apps/ytermusic.md) | *An in terminal youtube music client with focus on privacy, simplicity and performance.*..[ *read more* ](apps/ytermusic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytermusic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytermusic) | -| | [***yup***](apps/yup.md) | *Arch Linux AUR Helper with ncurses functionality and better searching and sorting.*..[ *read more* ](apps/yup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yup) | -| | [***zap***](apps/zap.md) | *Delightful command line AppImage package manager for appimage.github.io.*..[ *read more* ](apps/zap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zap) | -| | [***zcat***](apps/zcat.md) | *Zcat - compress or expand files. This is part of "am-utils" suite.*..[ *read more* ](apps/zcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zcat) | -| | [***zellij***](apps/zellij.md) | *A terminal workspace with batteries included.*..[ *read more* ](apps/zellij.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zellij) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zellij) | -| | [***zfind***](apps/zfind.md) | *Search files, even inside tar/zip/7z/rar using a SQL-WHERE filter.*..[ *read more* ](apps/zfind.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zfind) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zfind) | -| | [***zfxtop***](apps/zfxtop.md) | *[WIP] fetch top for gen Z with X written by bubbletea enjoyer.*..[ *read more* ](apps/zfxtop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zfxtop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zfxtop) | -| | [***zk***](apps/zk.md) | *A plain text note-taking assistant*..[ *read more* ](apps/zk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zk) | -| | [***zoxide***](apps/zoxide.md) | *A smarter cd command. Supports all major shells.*..[ *read more* ](apps/zoxide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zoxide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zoxide) | -| | [***zramen***](apps/zramen.md) | *Manage zram swap space.*..[ *read more* ](apps/zramen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zramen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zramen) | -| | [***zsync***](apps/zsync.md) | *Partial/differential file download client over HTTP. This is part of "am-utils" suite.*..[ *read more* ](apps/zsync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zsync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zsync) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/portable-desktop.md b/portable-desktop.md deleted file mode 100644 index 4dcc84f56..000000000 --- a/portable-desktop.md +++ /dev/null @@ -1,216 +0,0 @@ -# PORTABLE DESKTOP - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **88** desktop applications NOT in AppImage format. Launchers and icons are downloaded separately during the installation process (through [AM](https://github.com/ivan-hc/AM) and [AppMan](https://github.com/ivan-hc/AppMan)). Most of them already have [all the necessary requirements](https://github.com/ivan-hc/AppImage-tips) to be easily exported into AppImage packages... or they are waiting to be moved to another category (see "[AppImages on-the-fly](https://portable-linux-apps.github.io/appimage-on-the-fly.html)"). - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***ab-download-manager***](apps/ab-download-manager.md) | *A Download Manager that speeds up your downloads.*..[ *read more* ](apps/ab-download-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ab-download-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ab-download-manager) | -| | [***ambermoon.net***](apps/ambermoon.net.md) | *Ambermoon rewrite in C#.*..[ *read more* ](apps/ambermoon.net.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ambermoon.net) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ambermoon.net) | -| | [***archisteamfarm***](apps/archisteamfarm.md) | *C# application with primary purpose of farming Steam cards from multiple accounts simultaneously.*..[ *read more* ](apps/archisteamfarm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archisteamfarm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archisteamfarm) | -| | [***audiorelay***](apps/audiorelay.md) | *Stream audio between your devices. Turn your phone into a microphone or speakers for PC.*..[ *read more* ](apps/audiorelay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiorelay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiorelay) | -| | [***ayandict***](apps/ayandict.md) | *Simple yet advanced multi-lingual cross-platform offline dictionary for desktop, using Qt and Go.*..[ *read more* ](apps/ayandict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ayandict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ayandict) | -| | [***bloomee***](apps/bloomee.md) | *Music app designed to bring you ad-free tunes from various sources.*..[ *read more* ](apps/bloomee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bloomee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bloomee) | -| | [***boilr***](apps/boilr.md) | *Synchronize games from other platforms into your Steam library.*..[ *read more* ](apps/boilr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boilr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boilr) | -| | [***brisk***](apps/brisk.md) | *Ultra-fast, moden download manager for desktop.*..[ *read more* ](apps/brisk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brisk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brisk) | -| | [***btop***](apps/btop.md) | *A command line utility to monitor system resources, like Htop.*..[ *read more* ](apps/btop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/btop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/btop) | -| | [***cake-wallet***](apps/cake-wallet.md) | *Easily and safely store, send, receive, and exchange your cryptocurrency.*..[ *read more* ](apps/cake-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cake-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cake-wallet) | -| | [***camelot***](apps/camelot.md) | *Camelot is cross-platform file manager written in C.*..[ *read more* ](apps/camelot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/camelot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/camelot) | -| | [***catapult***](apps/catapult.md) | *A cross-platform launcher for Cataclysm DDA and BN.*..[ *read more* ](apps/catapult.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catapult) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catapult) | -| | [***celeste64***](apps/celeste64.md) | *A game made by the Celeste developers.*..[ *read more* ](apps/celeste64.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celeste64) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celeste64) | -| | [***chezmoi***](apps/chezmoi.md) | *Manage your dotfiles across multiple diverse machines, securely.*..[ *read more* ](apps/chezmoi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chezmoi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chezmoi) | -| | [***clamtk***](apps/clamtk.md) | *An easy to use, light-weight, on-demand virus scanner for Linux systems*..[ *read more* ](apps/clamtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clamtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clamtk) | -| | [***clifm***](apps/clifm.md) | *The shell-like, command line terminal file manager simple, fast, extensible, and lightweight as hell.*..[ *read more* ](apps/clifm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clifm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clifm) | -| | [***code***](apps/code.md) | *Visual Studio, VSCode, Original Editor to build/debug web/cloud apps.*..[ *read more* ](apps/code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code) | -| | [***cosmonium***](apps/cosmonium.md) | *3D astronomy and space exploration program.*..[ *read more* ](apps/cosmonium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cosmonium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cosmonium) | -| | [***cudatext***](apps/cudatext.md) | *A cross-platform text editor, written in Object Pascal.*..[ *read more* ](apps/cudatext.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cudatext) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cudatext) | -| | [***dissent***](apps/dissent.md) | *Tiny native Discord app.*..[ *read more* ](apps/dissent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dissent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dissent) | -| | [***dl-desktop***](apps/dl-desktop.md) | *Desktop client for the Duolingo language learning application.*..[ *read more* ](apps/dl-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dl-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dl-desktop) | -| | [***exodus***](apps/exodus.md) | *Send, receive & exchange cryptocurrency. Bitcoin wallet.*..[ *read more* ](apps/exodus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exodus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exodus) | -| | [***ffdec***](apps/ffdec.md) | *JPEXS Free Flash Decompiler.*..[ *read more* ](apps/ffdec.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffdec) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffdec) | -| | [***ffdec-nightly***](apps/ffdec-nightly.md) | *JPEXS Free Flash Decompiler.*..[ *read more* ](apps/ffdec-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffdec-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffdec-nightly) | -| | [***filebrowser***](apps/filebrowser.md) | *Web File Browser.*..[ *read more* ](apps/filebrowser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filebrowser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filebrowser) | -| | [***filebrowser-quantum***](apps/filebrowser-quantum.md) | *Web File Browser.*..[ *read more* ](apps/filebrowser-quantum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filebrowser-quantum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filebrowser-quantum) | -| | [***flashpoint***](apps/flashpoint.md) | *Flashpoint Archive is a community effort to preserve games and animations from the web.*..[ *read more* ](apps/flashpoint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flashpoint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flashpoint) | -| | [***flow***](apps/flow.md) | *a programmer's text editor.*..[ *read more* ](apps/flow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flow) | -| | [***fluffychat***](apps/fluffychat.md) | *The cutest instant messenger in the matrix.*..[ *read more* ](apps/fluffychat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fluffychat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fluffychat) | -| | [***forkgram***](apps/forkgram.md) | *Fork of Telegram Desktop messaging app.*..[ *read more* ](apps/forkgram.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/forkgram) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/forkgram) | -| | [***funkin***](apps/funkin.md) | *A rhythm game made with HaxeFlixel*..[ *read more* ](apps/funkin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/funkin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/funkin) | -| | [***funkin-legacy***](apps/funkin-legacy.md) | *Legacy GLibC Linux support for Friday Night Funkin. A rhythm game made with HaxeFlixel.*..[ *read more* ](apps/funkin-legacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/funkin-legacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/funkin-legacy) | -| | [***fynodoro***](apps/fynodoro.md) | *Fynodoro, the Pomodoro Widget.*..[ *read more* ](apps/fynodoro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fynodoro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fynodoro) | -| | [***gameimage***](apps/gameimage.md) | *Pack a runner/emulator/game and it's configs in a single AppImage.*..[ *read more* ](apps/gameimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gameimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gameimage) | -| | [***ghidra***](apps/ghidra.md) | *Ghidra is a software reverse engineering (SRE) framework.*..[ *read more* ](apps/ghidra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghidra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghidra) | -| | [***go-pd-gui***](apps/go-pd-gui.md) | *DRAINY is a free easy to use cross plattform upload tool for pixeldrain.com.*..[ *read more* ](apps/go-pd-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-pd-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-pd-gui) | -| | [***goland***](apps/goland.md) | *Capable and Ergonomic Go IDE.*..[ *read more* ](apps/goland.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goland) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goland) | -| | [***harmonoid***](apps/harmonoid.md) | *Plays & manages your music library. Looks beautiful & juicy. Playlists, visuals, synced lyrics, pitch shift, volume boost & more.*..[ *read more* ](apps/harmonoid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/harmonoid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/harmonoid) | -| | [***henson***](apps/henson.md) | *A puppet manager for NationStates.*..[ *read more* ](apps/henson.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/henson) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/henson) | -| | [***himalaya***](apps/himalaya.md) | *CLI to manage emails.*..[ *read more* ](apps/himalaya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/himalaya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/himalaya) | -| | [***hmcl***](apps/hmcl.md) | *A Minecraft Launcher which is multi-functional, cross-platform and popular.*..[ *read more* ](apps/hmcl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hmcl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hmcl) | -| | [***ironwail***](apps/ironwail.md) | *High-performance QuakeSpasm fork QuakeSpasm. A modern, cross-platform Quake game engine based on FitzQuake.*..[ *read more* ](apps/ironwail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ironwail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ironwail) | -| | [***jabref***](apps/jabref.md) | *Graphical Java application for managing BibTeX and biblatex (.bib) databases.*..[ *read more* ](apps/jabref.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jabref) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jabref) | -| | [***jellyfin***](apps/jellyfin.md) | *Media player. Stream to any device from your own server.*..[ *read more* ](apps/jellyfin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jellyfin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jellyfin) | -| | [***jgrasp***](apps/jgrasp.md) | *An IDE with Visualizations for Improving Software Comprehensibility.*..[ *read more* ](apps/jgrasp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jgrasp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jgrasp) | -| | [***kitty***](apps/kitty.md) | *Cross-platform, fast, feature-rich, GPU based terminal (also provides "kitten" CLI utility).*..[ *read more* ](apps/kitty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kitty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kitty) | -| | [***lichtblick***](apps/lichtblick.md) | *Lichtblick is an integrated visualization and diagnosis tool for robotics, available in your browser or as a desktop app on Linux, Windows, and macOS.*..[ *read more* ](apps/lichtblick.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lichtblick) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lichtblick) | -| | [***lockbook-desktop***](apps/lockbook-desktop.md) | *The private, polished note-taking platform.*..[ *read more* ](apps/lockbook-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lockbook-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lockbook-desktop) | -| | [***melonds***](apps/melonds.md) | *DS emulator, sorta.*..[ *read more* ](apps/melonds.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/melonds) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/melonds) | -| | [***mercury***](apps/mercury.md) | *Firefox fork with compiler optimizations and patches from Librewolf.*..[ *read more* ](apps/mercury.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mercury) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mercury) | -| | [***minecraft-launcher***](apps/minecraft-launcher.md) | *Game downloader and launcher for Minecraft.*..[ *read more* ](apps/minecraft-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/minecraft-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/minecraft-launcher) | -| | [***naruto-arena***](apps/naruto-arena.md) | *Naruto-based online multiplayer strategy game.*..[ *read more* ](apps/naruto-arena.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/naruto-arena) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/naruto-arena) | -| | [***ncspot***](apps/ncspot.md) | *Cross-platform ncurses Spotify client written in Rust, inspired by ncmpc and the likes.*..[ *read more* ](apps/ncspot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ncspot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ncspot) | -| | [***ntfydesktop***](apps/ntfydesktop.md) | *A desktop client for ntfy. Allows you to subscribe to topics from any ntfy server and recieve notifications natively on the desktop.*..[ *read more* ](apps/ntfydesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ntfydesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ntfydesktop) | -| | [***nyrna***](apps/nyrna.md) | *Suspend games and applications.*..[ *read more* ](apps/nyrna.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nyrna) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nyrna) | -| | [***onionmediax***](apps/onionmediax.md) | *OnionMedia X. Convert and download videos and music quickly and easily.*..[ *read more* ](apps/onionmediax.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onionmediax) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onionmediax) | -| | [***openarena***](apps/openarena.md) | *Violent & sexy, multiplayer first person shooter game, ioquake3.*..[ *read more* ](apps/openarena.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openarena) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openarena) | -| | [***openmw***](apps/openmw.md) | *OpenMW is an open-source open-world RPG game engine that supports playing Morrowind.*..[ *read more* ](apps/openmw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openmw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openmw) | -| | [***pdfcrackgui***](apps/pdfcrackgui.md) | *GUI overlay for the popular and highly regarded pdfcrack.*..[ *read more* ](apps/pdfcrackgui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdfcrackgui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdfcrackgui) | -| | [***photocrea***](apps/photocrea.md) | *Unofficial Photopea wrapper, image editor that includes all the familiar features like layers, filters, magic wand selection, etc.*..[ *read more* ](apps/photocrea.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photocrea) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photocrea) | -| | [***photon***](apps/photon.md) | *Cross-platform file-transfer application built using flutter. It uses http to transfer files between devices.*..[ *read more* ](apps/photon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photon) | -| | [***picocrypt-ng***](apps/picocrypt-ng.md) | *A very small, very simple, yet very secure encryption tool.*..[ *read more* ](apps/picocrypt-ng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picocrypt-ng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picocrypt-ng) | -| | [***pinta-dev***](apps/pinta-dev.md) | *Simple GTK Paint Program (developer edition).*..[ *read more* ](apps/pinta-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pinta-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pinta-dev) | -| | [***pixelorama***](apps/pixelorama.md) | *A powerful and accessible open-source pixel art multitool. Whether you want to create sprites, tiles, animations, or just express yourself in the language of pixel art.*..[ *read more* ](apps/pixelorama.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixelorama) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixelorama) | -| | [***pizarra***](apps/pizarra.md) | *A digital, vectorial and infinite chalkboard.*..[ *read more* ](apps/pizarra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pizarra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pizarra) | -| | [***playit***](apps/playit.md) | *Want to run an online game server? playit.gg is a global proxy that allows anyone to host a server without port forwarding.*..[ *read more* ](apps/playit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playit) | -| | [***prismlauncher-qt5***](apps/prismlauncher-qt5.md) | *Launcher for Minecraft, manage multiple installations (Qt5 version).*..[ *read more* ](apps/prismlauncher-qt5.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prismlauncher-qt5) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prismlauncher-qt5) | -| | [***reaper***](apps/reaper.md) | *A complete digital audio production app, offering a full multitrack audio and MIDI recording, editing, processing, mixing and mastering toolset.*..[ *read more* ](apps/reaper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/reaper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/reaper) | -| | [***rebaslight***](apps/rebaslight.md) | *An easy to use special effects video editor.*..[ *read more* ](apps/rebaslight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rebaslight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rebaslight) | -| | [***sfp***](apps/sfp.md) | *This utility is designed to allow you to apply skins to the modern Steam client.*..[ *read more* ](apps/sfp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sfp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sfp) | -| | [***skyemu***](apps/skyemu.md) | *Game Boy Advance, Game Boy, Game Boy Color, and DS Emulator.*..[ *read more* ](apps/skyemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/skyemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/skyemu) | -| | [***soul-arena***](apps/soul-arena.md) | *Bleach-based online multiplayer strategy game.*..[ *read more* ](apps/soul-arena.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soul-arena) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soul-arena) | -| | [***spritemate4electron***](apps/spritemate4electron.md) | *A simple Electron-wrapper for Esshahn's awesome Spritemate-webapp.*..[ *read more* ](apps/spritemate4electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spritemate4electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spritemate4electron) | -| | [***sweethome3d***](apps/sweethome3d.md) | *An interior design app to draw house plans & arrange furniture.*..[ *read more* ](apps/sweethome3d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sweethome3d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sweethome3d) | -| | [***teamviewer***](apps/teamviewer.md) | *Deliver remote IT support to your customers and colleagues, anytime, anywhere. Communication, network.*..[ *read more* ](apps/teamviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teamviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teamviewer) | -| | [***teamviewer-host***](apps/teamviewer-host.md) | *Host utility for TeamViewer, if you want to set up unattended access to a device.*..[ *read more* ](apps/teamviewer-host.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teamviewer-host) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teamviewer-host) | -| | [***teamviewer-qs***](apps/teamviewer-qs.md) | *QuickSupport utility for TeamViewer, if you want to receive support.*..[ *read more* ](apps/teamviewer-qs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teamviewer-qs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teamviewer-qs) | -| | [***tor-browser***](apps/tor-browser.md) | *Privacy-oriented Web Browser for sites blocked in your country.*..[ *read more* ](apps/tor-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tor-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tor-browser) | -| | [***tor-browser-alpha***](apps/tor-browser-alpha.md) | *Privacy-oriented Web Browser for sites blocked in your country.*..[ *read more* ](apps/tor-browser-alpha.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tor-browser-alpha) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tor-browser-alpha) | -| | [***unetbootin***](apps/unetbootin.md) | *Install Linux/BSD distributions to a partition or USB drive.*..[ *read more* ](apps/unetbootin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unetbootin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unetbootin) | -| | [***ventoy***](apps/ventoy.md) | *Tool to create bootable USB drive for ISO/WIM/IMG/VHDx/EFI files.*..[ *read more* ](apps/ventoy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ventoy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ventoy) | -| | [***via-desktop***](apps/via-desktop.md) | *VIA Desktop is an Electron application designed to provide an offline experience for VIA.*..[ *read more* ](apps/via-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/via-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/via-desktop) | -| | [***walker***](apps/walker.md) | *Multi-Purpose Launcher with a lot of features. Highly Customizable and fast.*..[ *read more* ](apps/walker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/walker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/walker) | -| | [***wireframesketcher***](apps/wireframesketcher.md) | *A wireframing tool that helps designers, developers and product managers. A desktop app and a plug-in for any Eclipse IDE.*..[ *read more* ](apps/wireframesketcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wireframesketcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wireframesketcher) | -| | [***youtube-download***](apps/youtube-download.md) | *GUI and CLI for downloading YouTube video/audio.*..[ *read more* ](apps/youtube-download.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-download) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-download) | -| | [***yt-dlg***](apps/yt-dlg.md) | *A front-end GUI of the popular youtube-dl written in wxPython.*..[ *read more* ](apps/yt-dlg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yt-dlg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yt-dlg) | -| | [***zed***](apps/zed.md) | *High-performance, multiplayer code editor from the creators of Atom.*..[ *read more* ](apps/zed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zed) | -| | [***zotero***](apps/zotero.md) | *Collect, organize, cite, and share your research sources.*..[ *read more* ](apps/zotero.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zotero) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zotero) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/portable.md b/portable.md deleted file mode 100644 index 3a24eadd5..000000000 --- a/portable.md +++ /dev/null @@ -1,706 +0,0 @@ -# PORTABLE - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **578** portable programs NOT in AppImage format. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***7z***](apps/7z.md) | *Archiver with a high compression ratio. This is part of "am-utils" suite.*..[ *read more* ](apps/7z.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/7z) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/7z) | -| | [***7zip***](apps/7zip.md) | *7-Zip is a file archiver with a high compression ratio.*..[ *read more* ](apps/7zip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/7zip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/7zip) | -| | [***ab-download-manager***](apps/ab-download-manager.md) | *A Download Manager that speeds up your downloads.*..[ *read more* ](apps/ab-download-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ab-download-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ab-download-manager) | -| | [***addr2line***](apps/addr2line.md) | *Or symbol+offset into file names and. This is part of "am-utils" suite.*..[ *read more* ](apps/addr2line.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/addr2line) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/addr2line) | -| | [***afetch***](apps/afetch.md) | *A CLI system information tool written in Rust.*..[ *read more* ](apps/afetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/afetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/afetch) | -| | [***aichat***](apps/aichat.md) | *AIO AI CLI tool integrating 20+ AI platforms, including OpenAI.*..[ *read more* ](apps/aichat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aichat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aichat) | -| | [***aim***](apps/aim.md) | *A command line download/upload tool with resume.*..[ *read more* ](apps/aim.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aim) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aim) | -| | [***albafetch***](apps/albafetch.md) | *CLI, faster neofetch alternative, written in C. Still improving.*..[ *read more* ](apps/albafetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/albafetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/albafetch) | -| | [***alpine-flatimage***](apps/alpine-flatimage.md) | *A hybrid of Flatpak sandboxing with AppImage portability.*..[ *read more* ](apps/alpine-flatimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alpine-flatimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alpine-flatimage) | -| | [***ambermoon.net***](apps/ambermoon.net.md) | *Ambermoon rewrite in C#.*..[ *read more* ](apps/ambermoon.net.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ambermoon.net) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ambermoon.net) | -| | [***amfora***](apps/amfora.md) | *A fancy terminal browser for the Gemini protocol.*..[ *read more* ](apps/amfora.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/amfora) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/amfora) | -| | [***ani-cli***](apps/ani-cli.md) | *A cli tool to browse and play anime.*..[ *read more* ](apps/ani-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ani-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ani-cli) | -| | [***antidot***](apps/antidot.md) | *Cleans up your $HOME from those pesky dotfiles.*..[ *read more* ](apps/antidot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/antidot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/antidot) | -| | [***appimagen***](apps/appimagen.md) | *A script that generates a custom AppImage from a PPA.*..[ *read more* ](apps/appimagen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimagen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimagen) | -| | [***appimageupdate***](apps/appimageupdate.md) | *A Rust implementation of AppImageUpdate, a tool for updating AppImages using efficient delta updates using zsync.*..[ *read more* ](apps/appimageupdate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimageupdate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimageupdate) | -| | [***appimg***](apps/appimg.md) | *Appimg is a lightweight command-line tool that helps you manage AppImage files on Linux.*..[ *read more* ](apps/appimg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appimg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appimg) | -| | [***appinstall***](apps/appinstall.md) | *AppImage Installer, a tool integrate AppImages to a linux desktop environment.*..[ *read more* ](apps/appinstall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/appinstall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/appinstall) | -| | [***aptly***](apps/aptly.md) | *Debian repository management CLI tool.*..[ *read more* ](apps/aptly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aptly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aptly) | -| | [***ar***](apps/ar.md) | *Create, modify, and extract from .deb archives. This is part of "am-utils" suite.*..[ *read more* ](apps/ar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ar) | -| | [***arch***](apps/arch.md) | *Hardware name (same as uname -m). This is part of "am-utils" suite.*..[ *read more* ](apps/arch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arch) | -| | [***arch-deployer***](apps/arch-deployer.md) | *A script to bulk download an Arch Linux package with all its dependencies to be converted in AppImage.*..[ *read more* ](apps/arch-deployer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arch-deployer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arch-deployer) | -| | [***arch-flatimage***](apps/arch-flatimage.md) | *A hybrid of Flatpak sandboxing with AppImage portability.*..[ *read more* ](apps/arch-flatimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arch-flatimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arch-flatimage) | -| | [***archimage-cli***](apps/archimage-cli.md) | *Build AppImage packages using JuNest, Arch Linux.*..[ *read more* ](apps/archimage-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archimage-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archimage-cli) | -| | [***archimede***](apps/archimede.md) | *Unobtrusive directory information fetcher.*..[ *read more* ](apps/archimede.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archimede) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archimede) | -| | [***archisteamfarm***](apps/archisteamfarm.md) | *C# application with primary purpose of farming Steam cards from multiple accounts simultaneously.*..[ *read more* ](apps/archisteamfarm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archisteamfarm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archisteamfarm) | -| | [***aretext***](apps/aretext.md) | *Minimalist text editor with vim-compatible key bindings.*..[ *read more* ](apps/aretext.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aretext) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aretext) | -| | [***as***](apps/as.md) | *GNU assembler.. This is part of "am-utils" suite.*..[ *read more* ](apps/as.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/as) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/as) | -| | [***atuin***](apps/atuin.md) | *Magical shell history.*..[ *read more* ](apps/atuin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/atuin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/atuin) | -| | [***audiorelay***](apps/audiorelay.md) | *Stream audio between your devices. Turn your phone into a microphone or speakers for PC.*..[ *read more* ](apps/audiorelay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiorelay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiorelay) | -| | [***ayandict***](apps/ayandict.md) | *Simple yet advanced multi-lingual cross-platform offline dictionary for desktop, using Qt and Go.*..[ *read more* ](apps/ayandict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ayandict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ayandict) | -| | [***b2sum***](apps/b2sum.md) | *Check BLAKE2 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/b2sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/b2sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/b2sum) | -| | [***bandwhich***](apps/bandwhich.md) | *Terminal bandwidth utilization tool.*..[ *read more* ](apps/bandwhich.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bandwhich) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bandwhich) | -| | [***base32***](apps/base32.md) | *Base32 encode/decode data and print to standard. This is part of "am-utils" suite.*..[ *read more* ](apps/base32.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/base32) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/base32) | -| | [***base64***](apps/base64.md) | *Base64 encode/decode data and print to standard. This is part of "am-utils" suite.*..[ *read more* ](apps/base64.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/base64) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/base64) | -| | [***basename***](apps/basename.md) | *Strip directory and suffix from filenames. This is part of "am-utils" suite.*..[ *read more* ](apps/basename.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basename) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basename) | -| | [***basenc***](apps/basenc.md) | *Encode and decode with multiple base encodings.. This is part of "am-utils" suite.*..[ *read more* ](apps/basenc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basenc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basenc) | -| | [***bat***](apps/bat.md) | *A "cat" clone with wings.*..[ *read more* ](apps/bat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bat) | -| | [***bat-extras***](apps/bat-extras.md) | *Bash scripts that integrate bat with various command line tools.*..[ *read more* ](apps/bat-extras.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bat-extras) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bat-extras) | -| | [***battop***](apps/battop.md) | *CLI, interactive batteries viewer.*..[ *read more* ](apps/battop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/battop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/battop) | -| | [***beatmapexporter***](apps/beatmapexporter.md) | *osu!lazer beatmap exporter utility. Allowing mass export of beatmaps from the new osu!lazer file storage back into .osz files.*..[ *read more* ](apps/beatmapexporter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beatmapexporter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beatmapexporter) | -| | [***beatsaber-mod-manager***](apps/beatsaber-mod-manager.md) | *Yet another mod installer for Beat Saber, heavily inspired by ModAssistant.*..[ *read more* ](apps/beatsaber-mod-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/beatsaber-mod-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/beatsaber-mod-manager) | -| | [***bemoji***](apps/bemoji.md) | *Emoji picker for bemenu/wofi/rofi/dmenu, remembers your favorites.*..[ *read more* ](apps/bemoji.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bemoji) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bemoji) | -| | [***bin***](apps/bin.md) | *Effortless binary manager.*..[ *read more* ](apps/bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bin) | -| | [***binclock***](apps/binclock.md) | *Binary clock in terminal.*..[ *read more* ](apps/binclock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/binclock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/binclock) | -| | [***binfinder***](apps/binfinder.md) | *Find binary files not installed through package manager.*..[ *read more* ](apps/binfinder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/binfinder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/binfinder) | -| | [***bk***](apps/bk.md) | *Terminal Epub reader.*..[ *read more* ](apps/bk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bk) | -| | [***blimp***](apps/blimp.md) | *Customizable terminal UI for monitoring weather information, application status, network latency, and more.*..[ *read more* ](apps/blimp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blimp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blimp) | -| | [***blob-dl***](apps/blob-dl.md) | *Blob-dl is a yt-dlp CLI interface used to download video and audio files from YouTube.*..[ *read more* ](apps/blob-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blob-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blob-dl) | -| | [***bloomee***](apps/bloomee.md) | *Music app designed to bring you ad-free tunes from various sources.*..[ *read more* ](apps/bloomee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bloomee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bloomee) | -| | [***bluetuith***](apps/bluetuith.md) | *A TUI bluetooth manager for Linux.*..[ *read more* ](apps/bluetuith.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bluetuith) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bluetuith) | -| | [***boilr***](apps/boilr.md) | *Synchronize games from other platforms into your Steam library.*..[ *read more* ](apps/boilr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boilr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boilr) | -| | [***bottom***](apps/bottom.md) | *Yet another cross-platform graphical process/system monitor.*..[ *read more* ](apps/bottom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottom) | -| | [***boxxy***](apps/boxxy.md) | *Put bad Linux applications in a box with only their files.*..[ *read more* ](apps/boxxy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boxxy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boxxy) | -| | [***brisk***](apps/brisk.md) | *Ultra-fast, moden download manager for desktop.*..[ *read more* ](apps/brisk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brisk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brisk) | -| | [***brutespray***](apps/brutespray.md) | *Bruteforcing from various scanner output. Automatically attempts default creds on found services.*..[ *read more* ](apps/brutespray.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brutespray) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brutespray) | -| | [***btop***](apps/btop.md) | *A command line utility to monitor system resources, like Htop.*..[ *read more* ](apps/btop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/btop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/btop) | -| | [***bunnyfetch***](apps/bunnyfetch.md) | *A small and fast tool for getting info about your system.*..[ *read more* ](apps/bunnyfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bunnyfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bunnyfetch) | -| | [***bzip2***](apps/bzip2.md) | *A high-quality data compression program. This is part of "am-utils" suite.*..[ *read more* ](apps/bzip2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bzip2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bzip2) | -| | [***c++filt***](apps/c++filt.md) | *And Java symbols. This is part of "am-utils" suite.*..[ *read more* ](apps/c++filt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/c++filt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/c++filt) | -| | [***cake-wallet***](apps/cake-wallet.md) | *Easily and safely store, send, receive, and exchange your cryptocurrency.*..[ *read more* ](apps/cake-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cake-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cake-wallet) | -| | [***camelot***](apps/camelot.md) | *Camelot is cross-platform file manager written in C.*..[ *read more* ](apps/camelot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/camelot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/camelot) | -| | [***carbonyl***](apps/carbonyl.md) | *Chromium running inside your terminal.*..[ *read more* ](apps/carbonyl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/carbonyl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/carbonyl) | -| | [***cask***](apps/cask.md) | *A universal, distributed binary file manager.*..[ *read more* ](apps/cask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cask) | -| | [***cat***](apps/cat.md) | *Concatenate files and print on the standard output. This is part of "am-utils" suite.*..[ *read more* ](apps/cat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cat) | -| | [***catapult***](apps/catapult.md) | *A cross-platform launcher for Cataclysm DDA and BN.*..[ *read more* ](apps/catapult.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catapult) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catapult) | -| | [***celeste64***](apps/celeste64.md) | *A game made by the Celeste developers.*..[ *read more* ](apps/celeste64.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/celeste64) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/celeste64) | -| | [***chcon***](apps/chcon.md) | *Security context. This is part of "am-utils" suite.*..[ *read more* ](apps/chcon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chcon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chcon) | -| | [***cheat***](apps/cheat.md) | *Create and view interactive cheatsheets on the command-line.*..[ *read more* ](apps/cheat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cheat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cheat) | -| | [***checkra1n***](apps/checkra1n.md) | *Jailbreak for iPhone 5s through iPhone X, iOS 12.0 and up*..[ *read more* ](apps/checkra1n.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/checkra1n) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/checkra1n) | -| | [***chess-tui***](apps/chess-tui.md) | *Play chess from your terminal.*..[ *read more* ](apps/chess-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chess-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chess-tui) | -| | [***chezmoi***](apps/chezmoi.md) | *Manage your dotfiles across multiple diverse machines, securely.*..[ *read more* ](apps/chezmoi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chezmoi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chezmoi) | -| | [***chgrp***](apps/chgrp.md) | *Change group ownership. This is part of "am-utils" suite.*..[ *read more* ](apps/chgrp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chgrp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chgrp) | -| | [***chmod***](apps/chmod.md) | *Change file mode bits. This is part of "am-utils" suite.*..[ *read more* ](apps/chmod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chmod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chmod) | -| | [***chown***](apps/chown.md) | *Change file owner and group. This is part of "am-utils" suite.*..[ *read more* ](apps/chown.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chown) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chown) | -| | [***chroot***](apps/chroot.md) | *Run command or interactive shell with special root. This is part of "am-utils" suite.*..[ *read more* ](apps/chroot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chroot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chroot) | -| | [***cicada***](apps/cicada.md) | *An old-school bash-like Unix shell written in Rust.*..[ *read more* ](apps/cicada.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cicada) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cicada) | -| | [***cksum***](apps/cksum.md) | *Compute and verify file checksums. This is part of "am-utils" suite.*..[ *read more* ](apps/cksum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cksum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cksum) | -| | [***clamtk***](apps/clamtk.md) | *An easy to use, light-weight, on-demand virus scanner for Linux systems*..[ *read more* ](apps/clamtk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clamtk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clamtk) | -| | [***clear***](apps/clear.md) | *Clear the terminal screen. This is part of "am-utils" suite.*..[ *read more* ](apps/clear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clear) | -| | [***clifm***](apps/clifm.md) | *The shell-like, command line terminal file manager simple, fast, extensible, and lightweight as hell.*..[ *read more* ](apps/clifm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clifm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clifm) | -| | [***clipse***](apps/clipse.md) | *Configurable TUI clipboard manager for Unix.*..[ *read more* ](apps/clipse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clipse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clipse) | -| | [***code***](apps/code.md) | *Visual Studio, VSCode, Original Editor to build/debug web/cloud apps.*..[ *read more* ](apps/code.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code) | -| | [***code-radio***](apps/code-radio.md) | *A command line music radio client for coderadio.freecodecamp.org, written in Rust.*..[ *read more* ](apps/code-radio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/code-radio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/code-radio) | -| | [***codebook-lsp***](apps/codebook-lsp.md) | *Codebook, code-aware spell checker with language server implementation.*..[ *read more* ](apps/codebook-lsp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/codebook-lsp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/codebook-lsp) | -| | [***col***](apps/col.md) | *Line feeds from input. This is part of "am-utils" suite.*..[ *read more* ](apps/col.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/col) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/col) | -| | [***colcrt***](apps/colcrt.md) | *Output for CRT previewing. This is part of "am-utils" suite.*..[ *read more* ](apps/colcrt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colcrt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colcrt) | -| | [***colrm***](apps/colrm.md) | *From a file. This is part of "am-utils" suite.*..[ *read more* ](apps/colrm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/colrm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/colrm) | -| | [***column***](apps/column.md) | *Columnate lists. This is part of "am-utils" suite.*..[ *read more* ](apps/column.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/column) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/column) | -| | [***comics-downloader***](apps/comics-downloader.md) | *Tool to download comics and manga in pdf/epub/cbr/cbz from a website.*..[ *read more* ](apps/comics-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comics-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comics-downloader) | -| | [***comm***](apps/comm.md) | *Compare two sorted files line by line. This is part of "am-utils" suite.*..[ *read more* ](apps/comm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/comm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/comm) | -| | [***conty***](apps/conty.md) | *Easy to use unprivileged and portable Arch Linux container.*..[ *read more* ](apps/conty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/conty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/conty) | -| | [***cosmonium***](apps/cosmonium.md) | *3D astronomy and space exploration program.*..[ *read more* ](apps/cosmonium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cosmonium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cosmonium) | -| | [***cowitness***](apps/cowitness.md) | *A powerful web app testing tool that enhances the accuracy and efficiency of your testing efforts.*..[ *read more* ](apps/cowitness.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cowitness) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cowitness) | -| | [***cp***](apps/cp.md) | *Copy files and directories. This is part of "am-utils" suite.*..[ *read more* ](apps/cp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cp) | -| | [***cpufetch***](apps/cpufetch.md) | *Simple yet fancy CPU architecture fetching tool.*..[ *read more* ](apps/cpufetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cpufetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cpufetch) | -| | [***crabfetch***](apps/crabfetch.md) | *Extremely fast, featureful and customizable command-line fetcher.*..[ *read more* ](apps/crabfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crabfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crabfetch) | -| | [***croc***](apps/croc.md) | *Easily and securely send things from one computer to another.*..[ *read more* ](apps/croc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/croc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/croc) | -| | [***crock***](apps/crock.md) | *Crock is rock clock.*..[ *read more* ](apps/crock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/crock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/crock) | -| | [***csplit***](apps/csplit.md) | *File into sections determined by context. This is part of "am-utils" suite.*..[ *read more* ](apps/csplit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/csplit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/csplit) | -| | [***ctop***](apps/ctop.md) | *Top-like interface for container metrics.*..[ *read more* ](apps/ctop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ctop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ctop) | -| | [***cudatext***](apps/cudatext.md) | *A cross-platform text editor, written in Object Pascal.*..[ *read more* ](apps/cudatext.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cudatext) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cudatext) | -| | [***curl***](apps/curl.md) | *Command line tool and library for transferring data with URLs. This is part of "am-utils" suite.*..[ *read more* ](apps/curl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/curl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/curl) | -| | [***curlie***](apps/curlie.md) | *The power of curl, the ease of use of httpie.*..[ *read more* ](apps/curlie.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/curlie) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/curlie) | -| | [***cut***](apps/cut.md) | *From each line of files. This is part of "am-utils" suite.*..[ *read more* ](apps/cut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cut) | -| | [***date***](apps/date.md) | *A header-only library which builds upon . This is part of "am-utils" suite.*..[ *read more* ](apps/date.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/date) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/date) | -| | [***dbee***](apps/dbee.md) | *Fast & Minimalistic Database Browser.*..[ *read more* ](apps/dbee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbee) | -| | [***dbin***](apps/dbin.md) | *Poor man's package manager. About 3000 statically linked binaries in the repos!*..[ *read more* ](apps/dbin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbin) | -| | [***dd***](apps/dd.md) | *Convert and copy a file. This is part of "am-utils" suite.*..[ *read more* ](apps/dd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dd) | -| | [***deeplx***](apps/deeplx.md) | *DeepL Free API, No TOKEN required.*..[ *read more* ](apps/deeplx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deeplx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deeplx) | -| | [***delta***](apps/delta.md) | *A syntax-highlighting pager for git, diff, grep, and blame output.*..[ *read more* ](apps/delta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/delta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/delta) | -| | [***devtoys***](apps/devtoys.md) | *A Swiss Army knife for developers.*..[ *read more* ](apps/devtoys.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/devtoys) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/devtoys) | -| | [***df***](apps/df.md) | *Report file system space usage. This is part of "am-utils" suite.*..[ *read more* ](apps/df.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/df) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/df) | -| | [***didder***](apps/didder.md) | *An extensive, fast, and accurate command-line image dithering tool.*..[ *read more* ](apps/didder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/didder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/didder) | -| | [***diff***](apps/diff.md) | *Compare files line by line. This is part of "am-utils" suite.*..[ *read more* ](apps/diff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diff) | -| | [***dir***](apps/dir.md) | *List directory contents. This is part of "am-utils" suite.*..[ *read more* ](apps/dir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dir) | -| | [***dircolors***](apps/dircolors.md) | *For ls. This is part of "am-utils" suite.*..[ *read more* ](apps/dircolors.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dircolors) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dircolors) | -| | [***dirname***](apps/dirname.md) | *Strip last component from file name. This is part of "am-utils" suite.*..[ *read more* ](apps/dirname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dirname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dirname) | -| | [***diskonaut***](apps/diskonaut.md) | *Terminal disk space navigator.*..[ *read more* ](apps/diskonaut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/diskonaut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/diskonaut) | -| | [***dissent***](apps/dissent.md) | *Tiny native Discord app.*..[ *read more* ](apps/dissent.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dissent) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dissent) | -| | [***dl-desktop***](apps/dl-desktop.md) | *Desktop client for the Duolingo language learning application.*..[ *read more* ](apps/dl-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dl-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dl-desktop) | -| | [***doggo***](apps/doggo.md) | *Command-line DNS Client for Humans. Written in Golang*..[ *read more* ](apps/doggo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/doggo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/doggo) | -| | [***dooit***](apps/dooit.md) | *An awesome TUI todo manager.*..[ *read more* ](apps/dooit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dooit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dooit) | -| | [***dra***](apps/dra.md) | *A command line tool to download release assets from GitHub.*..[ *read more* ](apps/dra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dra) | -| | [***draw***](apps/draw.md) | *Draw in your terminal.*..[ *read more* ](apps/draw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/draw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/draw) | -| | [***dstask***](apps/dstask.md) | *Git powered terminal-based todo/note manager, markdown note page per task.*..[ *read more* ](apps/dstask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dstask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dstask) | -| | [***dtmate***](apps/dtmate.md) | *CLI to compute difference between date, time or duration.*..[ *read more* ](apps/dtmate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dtmate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dtmate) | -| | [***du***](apps/du.md) | *Estimate file space usage. This is part of "am-utils" suite.*..[ *read more* ](apps/du.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/du) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/du) | -| | [***dua***](apps/dua.md) | *View disk space usage and delete unwanted data, fast.*..[ *read more* ](apps/dua.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dua) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dua) | -| | [***duf***](apps/duf.md) | *Disk Usage/Free Utility, a better 'df' alternative.*..[ *read more* ](apps/duf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/duf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/duf) | -| | [***dune***](apps/dune.md) | *A shell by the beach.*..[ *read more* ](apps/dune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dune) | -| | [***dust***](apps/dust.md) | *A more intuitive version of du in rust.*..[ *read more* ](apps/dust.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dust) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dust) | -| | [***dysk***](apps/dysk.md) | *A linux utility to get information on filesystems, like df but better.*..[ *read more* ](apps/dysk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dysk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dysk) | -| | [***echo***](apps/echo.md) | *Display a line of text. This is part of "am-utils" suite.*..[ *read more* ](apps/echo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/echo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/echo) | -| | [***eget***](apps/eget.md) | *Easily install prebuilt binaries from GitHub.*..[ *read more* ](apps/eget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eget) | -| | [***elfedit***](apps/elfedit.md) | *Header and program property of ELF files. This is part of "am-utils" suite.*..[ *read more* ](apps/elfedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elfedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elfedit) | -| | [***elvish***](apps/elvish.md) | *Powerful modern shell scripting.*..[ *read more* ](apps/elvish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elvish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elvish) | -| | [***env***](apps/env.md) | *Run a program in a modified environment. This is part of "am-utils" suite.*..[ *read more* ](apps/env.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/env) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/env) | -| | [***exodus***](apps/exodus.md) | *Send, receive & exchange cryptocurrency. Bitcoin wallet.*..[ *read more* ](apps/exodus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exodus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exodus) | -| | [***expand***](apps/expand.md) | *Convert tabs to spaces. This is part of "am-utils" suite.*..[ *read more* ](apps/expand.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/expand) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/expand) | -| | [***expr***](apps/expr.md) | *Evaluate expressions. This is part of "am-utils" suite.*..[ *read more* ](apps/expr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/expr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/expr) | -| | [***eza***](apps/eza.md) | *A modern, maintained replacement for ls.*..[ *read more* ](apps/eza.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eza) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eza) | -| | [***factor***](apps/factor.md) | *A general purpose, dynamically typed, stack-based programming language.. This is part of "am-utils" suite.*..[ *read more* ](apps/factor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/factor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/factor) | -| | [***fakedata***](apps/fakedata.md) | *CLI utility for fake data generation.*..[ *read more* ](apps/fakedata.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fakedata) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fakedata) | -| | [***false***](apps/false.md) | *Do nothing, unsuccessfully. This is part of "am-utils" suite.*..[ *read more* ](apps/false.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/false) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/false) | -| | [***fastcompmgr***](apps/fastcompmgr.md) | *A fast compositor for X11.*..[ *read more* ](apps/fastcompmgr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fastcompmgr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fastcompmgr) | -| | [***fcp***](apps/fcp.md) | *CLI, a significantly faster alternative to the classic Unix cp(1) command, copying large files and directories in a fraction of the time.*..[ *read more* ](apps/fcp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fcp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fcp) | -| | [***fd***](apps/fd.md) | *A simple, fast and user-friendly alternative to 'find'.*..[ *read more* ](apps/fd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fd) | -| | [***fdroidcl***](apps/fdroidcl.md) | *A command-line F-Droid desktop client.*..[ *read more* ](apps/fdroidcl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fdroidcl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fdroidcl) | -| | [***fetchit***](apps/fetchit.md) | *A system fetch tool for Linux, written in Rust.*..[ *read more* ](apps/fetchit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fetchit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fetchit) | -| | [***ffdec***](apps/ffdec.md) | *JPEXS Free Flash Decompiler.*..[ *read more* ](apps/ffdec.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffdec) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffdec) | -| | [***ffdec-nightly***](apps/ffdec-nightly.md) | *JPEXS Free Flash Decompiler.*..[ *read more* ](apps/ffdec-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffdec-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffdec-nightly) | -| | [***ffsend***](apps/ffsend.md) | *Easily and securely share files from the command line. A fully featured Firefox Send client.*..[ *read more* ](apps/ffsend.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffsend) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffsend) | -| | [***file***](apps/file.md) | *Determine the type of a file from its contents. This is part of "am-utils" suite.*..[ *read more* ](apps/file.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/file) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/file) | -| | [***filebrowser***](apps/filebrowser.md) | *Web File Browser.*..[ *read more* ](apps/filebrowser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filebrowser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filebrowser) | -| | [***filebrowser-quantum***](apps/filebrowser-quantum.md) | *Web File Browser.*..[ *read more* ](apps/filebrowser-quantum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filebrowser-quantum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filebrowser-quantum) | -| | [***filen-cli***](apps/filen-cli.md) | *Filen CLI for Windows, macOS and Linux*..[ *read more* ](apps/filen-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filen-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filen-cli) | -| | [***find***](apps/find.md) | *Files in a directory hierarchy. This is part of "am-utils" suite.*..[ *read more* ](apps/find.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/find) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/find) | -| | [***fish***](apps/fish.md) | *The user-friendly command line shell.*..[ *read more* ](apps/fish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fish) | -| | [***fixit***](apps/fixit.md) | *A utility to fix mistakes in your commands.*..[ *read more* ](apps/fixit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fixit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fixit) | -| | [***flashpoint***](apps/flashpoint.md) | *Flashpoint Archive is a community effort to preserve games and animations from the web.*..[ *read more* ](apps/flashpoint.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flashpoint) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flashpoint) | -| | [***flow***](apps/flow.md) | *a programmer's text editor.*..[ *read more* ](apps/flow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flow) | -| | [***fluffychat***](apps/fluffychat.md) | *The cutest instant messenger in the matrix.*..[ *read more* ](apps/fluffychat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fluffychat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fluffychat) | -| | [***flyctl***](apps/flyctl.md) | *Command line tools for fly.io services.*..[ *read more* ](apps/flyctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/flyctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/flyctl) | -| | [***fman***](apps/fman.md) | *TUI CLI File Manager.*..[ *read more* ](apps/fman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fman) | -| | [***fmt***](apps/fmt.md) | *Text formatter. This is part of "am-utils" suite.*..[ *read more* ](apps/fmt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fmt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fmt) | -| | [***focus***](apps/focus.md) | *A fully featured productivity timer for the command line, based on the Pomodoro Technique.*..[ *read more* ](apps/focus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/focus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/focus) | -| | [***fold***](apps/fold.md) | *Wrap each input line to fit in specified width. This is part of "am-utils" suite.*..[ *read more* ](apps/fold.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fold) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fold) | -| | [***forkgram***](apps/forkgram.md) | *Fork of Telegram Desktop messaging app.*..[ *read more* ](apps/forkgram.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/forkgram) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/forkgram) | -| | [***freefilesync***](apps/freefilesync.md) | *folder comparison and synchronization software.*..[ *read more* ](apps/freefilesync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freefilesync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freefilesync) | -| | [***freeze***](apps/freeze.md) | *Generate images of code and terminal output.*..[ *read more* ](apps/freeze.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freeze) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freeze) | -| | [***freshfetch***](apps/freshfetch.md) | *An alternative to Neofetch in Rust with a focus on customization.*..[ *read more* ](apps/freshfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freshfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freshfetch) | -| | [***funkin***](apps/funkin.md) | *A rhythm game made with HaxeFlixel*..[ *read more* ](apps/funkin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/funkin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/funkin) | -| | [***funkin-legacy***](apps/funkin-legacy.md) | *Legacy GLibC Linux support for Friday Night Funkin. A rhythm game made with HaxeFlixel.*..[ *read more* ](apps/funkin-legacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/funkin-legacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/funkin-legacy) | -| | [***fx***](apps/fx.md) | *Terminal JSON viewer & processor.*..[ *read more* ](apps/fx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fx) | -| | [***fynodoro***](apps/fynodoro.md) | *Fynodoro, the Pomodoro Widget.*..[ *read more* ](apps/fynodoro.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fynodoro) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fynodoro) | -| | [***fzf***](apps/fzf.md) | *A command-line fuzzy finder.*..[ *read more* ](apps/fzf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fzf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fzf) | -| | [***gallery-dl***](apps/gallery-dl.md) | *Command-line program to download image galleries and collections from several image hosting sites.*..[ *read more* ](apps/gallery-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gallery-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gallery-dl) | -| | [***gallery-dl-nightly***](apps/gallery-dl-nightly.md) | *Command-line program to download image galleries and collections from several image hosting sites, nightly build.*..[ *read more* ](apps/gallery-dl-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gallery-dl-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gallery-dl-nightly) | -| | [***gameimage***](apps/gameimage.md) | *Pack a runner/emulator/game and it's configs in a single AppImage.*..[ *read more* ](apps/gameimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gameimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gameimage) | -| | [***gawk***](apps/gawk.md) | *GNU version of awk. This is part of "am-utils" suite.*..[ *read more* ](apps/gawk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gawk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gawk) | -| | [***gemget***](apps/gemget.md) | *Command line downloader for the Gemini protocol.*..[ *read more* ](apps/gemget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gemget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gemget) | -| | [***genact***](apps/genact.md) | *A nonsense activity generator.*..[ *read more* ](apps/genact.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/genact) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/genact) | -| | [***gert***](apps/gert.md) | *A command line tool to download media from Reddit.*..[ *read more* ](apps/gert.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gert) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gert) | -| | [***gh***](apps/gh.md) | *GitHub’s official command line tool.*..[ *read more* ](apps/gh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gh) | -| | [***gh-eco***](apps/gh-eco.md) | *gh cli extension to explore the ecosystem.*..[ *read more* ](apps/gh-eco.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gh-eco) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gh-eco) | -| | [***ghdl***](apps/ghdl.md) | *A much more convenient way to download GitHub release binaries on the command line.*..[ *read more* ](apps/ghdl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghdl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghdl) | -| | [***ghidra***](apps/ghidra.md) | *Ghidra is a software reverse engineering (SRE) framework.*..[ *read more* ](apps/ghidra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghidra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghidra) | -| | [***ghrel***](apps/ghrel.md) | *Download and verify GitHub release.*..[ *read more* ](apps/ghrel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ghrel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ghrel) | -| | [***gickup***](apps/gickup.md) | *Backup your Git repositories with ease.*..[ *read more* ](apps/gickup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gickup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gickup) | -| | [***git-cliff***](apps/git-cliff.md) | *A highly customizable Changelog Generator that follows Conventional Commit specifications.*..[ *read more* ](apps/git-cliff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-cliff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-cliff) | -| | [***git-credential-oauth***](apps/git-credential-oauth.md) | *A Git credential helper that securely authenticates to GitHub, GitLab and BitBucket using OAuth.*..[ *read more* ](apps/git-credential-oauth.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-credential-oauth) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-credential-oauth) | -| | [***git-side***](apps/git-side.md) | *A Git subcommand that versions files and directories that should not live in the main repository, using a per-project bare repository invisible to Git.*..[ *read more* ](apps/git-side.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/git-side) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/git-side) | -| | [***gitleaks***](apps/gitleaks.md) | *Protect and discover secrets using Gitleaks.*..[ *read more* ](apps/gitleaks.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitleaks) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitleaks) | -| | [***gitql***](apps/gitql.md) | *A git query language.*..[ *read more* ](apps/gitql.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitql) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitql) | -| | [***gitui***](apps/gitui.md) | *Blazing fast terminal-ui for git written in rust.*..[ *read more* ](apps/gitui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gitui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gitui) | -| | [***glab***](apps/glab.md) | *A GitLab CLI tool bringing GitLab to your command line.*..[ *read more* ](apps/glab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glab) | -| | [***glow***](apps/glow.md) | *Render markdown on the CLI, with pizzazz!*..[ *read more* ](apps/glow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/glow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/glow) | -| | [***gncdu***](apps/gncdu.md) | *Implements NCurses Disk Usage(ncdu) with golang.*..[ *read more* ](apps/gncdu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gncdu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gncdu) | -| | [***go-pd***](apps/go-pd.md) | *A free easy to use pixeldrain.com go client pkg and CLI upload tool.*..[ *read more* ](apps/go-pd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-pd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-pd) | -| | [***go-pd-gui***](apps/go-pd-gui.md) | *DRAINY is a free easy to use cross plattform upload tool for pixeldrain.com.*..[ *read more* ](apps/go-pd-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-pd-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-pd-gui) | -| | [***go-spotify-cli***](apps/go-spotify-cli.md) | *Control Spotify with CLI commands.*..[ *read more* ](apps/go-spotify-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/go-spotify-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/go-spotify-cli) | -| | [***goanime***](apps/goanime.md) | *A TUI tool to browse, stream, and download anime in English and Portuguese.*..[ *read more* ](apps/goanime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goanime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goanime) | -| | [***gobuster***](apps/gobuster.md) | *A high-performance directory/file, DNS and virtual host brute-forcing tool written in Go. It's designed to be fast, reliable, and easy to use for security professionals and penetration testers.*..[ *read more* ](apps/gobuster.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gobuster) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gobuster) | -| | [***gojq***](apps/gojq.md) | *Pure Go implementation of jq.*..[ *read more* ](apps/gojq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gojq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gojq) | -| | [***gokey***](apps/gokey.md) | *A simple vaultless password manager in Go.*..[ *read more* ](apps/gokey.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gokey) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gokey) | -| | [***goland***](apps/goland.md) | *Capable and Ergonomic Go IDE.*..[ *read more* ](apps/goland.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goland) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goland) | -| | [***goodls***](apps/goodls.md) | *This is a CLI tool to download shared files and folders from Google Drive.*..[ *read more* ](apps/goodls.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goodls) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goodls) | -| | [***gooseberry***](apps/gooseberry.md) | *A command line utility to generate a knowledge base from Hypothesis annotations.*..[ *read more* ](apps/gooseberry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gooseberry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gooseberry) | -| | [***gopass***](apps/gopass.md) | *The slightly more awesome standard unix password manager for teams.*..[ *read more* ](apps/gopass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gopass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gopass) | -| | [***gost-shred***](apps/gost-shred.md) | *GOST R 50739-95 Data Sanitization Method (2 passes).*..[ *read more* ](apps/gost-shred.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gost-shred) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gost-shred) | -| | [***got***](apps/got.md) | *Simple golang package and CLI tool to download large files faster than cURL and Wget!*..[ *read more* ](apps/got.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/got) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/got) | -| | [***gotimer***](apps/gotimer.md) | *A simple terminal based digital timer for Pomodoro.*..[ *read more* ](apps/gotimer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gotimer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gotimer) | -| | [***goto***](apps/goto.md) | *A simple terminal SSH manager that lists favorite SSH servers.*..[ *read more* ](apps/goto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goto) | -| | [***gp-archive***](apps/gp-archive.md) | *Archive profiling experiment data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-archive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-archive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-archive) | -| | [***gp-collect-app***](apps/gp-collect-app.md) | *Collect application performance profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-collect-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-collect-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-collect-app) | -| | [***gp-display-html***](apps/gp-display-html.md) | *Generate HTML reports from profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-display-html.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-display-html) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-display-html) | -| | [***gp-display-src***](apps/gp-display-src.md) | *Display source code annotated with profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-display-src.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-display-src) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-display-src) | -| | [***gp-display-text***](apps/gp-display-text.md) | *Display profiling data in plain text format. This is part of "am-utils" suite.*..[ *read more* ](apps/gp-display-text.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gp-display-text) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gp-display-text) | -| | [***gpg-tui***](apps/gpg-tui.md) | *CLI, manage your GnuPG keys with ease!*..[ *read more* ](apps/gpg-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gpg-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gpg-tui) | -| | [***gping***](apps/gping.md) | *Ping, but with a graph.*..[ *read more* ](apps/gping.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gping) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gping) | -| | [***gprof***](apps/gprof.md) | *Graph profile data. This is part of "am-utils" suite.*..[ *read more* ](apps/gprof.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprof) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprof) | -| | [***gprofng***](apps/gprofng.md) | *Generation GNU application profiling tool. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng) | -| | [***gprofng-archive***](apps/gprofng-archive.md) | *Experiment data. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-archive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-archive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-archive) | -| | [***gprofng-collect-app***](apps/gprofng-collect-app.md) | *Data for the target. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-collect-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-collect-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-collect-app) | -| | [***gprofng-display-html***](apps/gprofng-display-html.md) | *HTML based directory structure. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-display-html.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-display-html) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-display-html) | -| | [***gprofng-display-src***](apps/gprofng-display-src.md) | *Code and optionally. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-display-src.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-display-src) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-display-src) | -| | [***gprofng-display-text***](apps/gprofng-display-text.md) | *Performance data in plain text. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-display-text.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-display-text) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-display-text) | -| | [***gprofng-gmon***](apps/gprofng-gmon.md) | *Display or convert GNU gmon profiling data. This is part of "am-utils" suite.*..[ *read more* ](apps/gprofng-gmon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gprofng-gmon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gprofng-gmon) | -| | [***grep***](apps/grep.md) | *A string search utility. This is part of "am-utils" suite.*..[ *read more* ](apps/grep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grep) | -| | [***gron***](apps/gron.md) | *Make JSON greppable! Transform JSON into discrete assignments to grep.*..[ *read more* ](apps/gron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gron) | -| | [***gron.awk***](apps/gron.awk.md) | *True JSON parser in pure Awk. fast with Gawk/Mawk/GoAWK.*..[ *read more* ](apps/gron.awk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gron.awk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gron.awk) | -| | [***groups***](apps/groups.md) | *Print the groups a user is in. This is part of "am-utils" suite.*..[ *read more* ](apps/groups.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/groups) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/groups) | -| | [***gum***](apps/gum.md) | *A tool for glamorous shell scripts.*..[ *read more* ](apps/gum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gum) | -| | [***handlr***](apps/handlr.md) | *fork of the original handlr, with support for regular expressions.*..[ *read more* ](apps/handlr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/handlr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/handlr) | -| | [***harmonoid***](apps/harmonoid.md) | *Plays & manages your music library. Looks beautiful & juicy. Playlists, visuals, synced lyrics, pitch shift, volume boost & more.*..[ *read more* ](apps/harmonoid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/harmonoid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/harmonoid) | -| | [***hascard***](apps/hascard.md) | *Flashcard TUI CLI with markdown cards.*..[ *read more* ](apps/hascard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hascard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hascard) | -| | [***hctl***](apps/hctl.md) | *A tool to control your Home Assistant devices from the command-line.*..[ *read more* ](apps/hctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hctl) | -| | [***hd***](apps/hd.md) | *Small hex dumper utility (with optional HexII output). This is part of "am-utils" suite.*..[ *read more* ](apps/hd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hd) | -| | [***head***](apps/head.md) | *Output the first part of files. This is part of "am-utils" suite.*..[ *read more* ](apps/head.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/head) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/head) | -| | [***henson***](apps/henson.md) | *A puppet manager for NationStates.*..[ *read more* ](apps/henson.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/henson) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/henson) | -| | [***hexdump***](apps/hexdump.md) | *Display file contents in hexadecimal format. This is part of "am-utils" suite.*..[ *read more* ](apps/hexdump.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hexdump) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hexdump) | -| | [***hide.me***](apps/hide.me.md) | *Hide.me CLI VPN client for Linux.*..[ *read more* ](apps/hide.me.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hide.me) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hide.me) | -| | [***hilbish***](apps/hilbish.md) | *The Moon-powered shell! A comfy and extensible shell for Lua fans!*..[ *read more* ](apps/hilbish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hilbish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hilbish) | -| | [***himalaya***](apps/himalaya.md) | *CLI to manage emails.*..[ *read more* ](apps/himalaya.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/himalaya) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/himalaya) | -| | [***hmcl***](apps/hmcl.md) | *A Minecraft Launcher which is multi-functional, cross-platform and popular.*..[ *read more* ](apps/hmcl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hmcl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hmcl) | -| | [***hostid***](apps/hostid.md) | *Print the numeric identifier for the current host. This is part of "am-utils" suite.*..[ *read more* ](apps/hostid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hostid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hostid) | -| | [***humanlog***](apps/humanlog.md) | *Logs for humans to read.*..[ *read more* ](apps/humanlog.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/humanlog) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/humanlog) | -| | [***hyperfine***](apps/hyperfine.md) | *A command-line benchmarking tool.*..[ *read more* ](apps/hyperfine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hyperfine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hyperfine) | -| | [***i3-auto-layout***](apps/i3-auto-layout.md) | *Automatic, optimal tiling for i3wm. Fork of dead version.*..[ *read more* ](apps/i3-auto-layout.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/i3-auto-layout) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/i3-auto-layout) | -| | [***i3lock-color***](apps/i3lock-color.md) | *The world's most popular non-default computer lockscreen.*..[ *read more* ](apps/i3lock-color.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/i3lock-color) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/i3lock-color) | -| | [***id***](apps/id.md) | *Print real and effective user and group IDs. This is part of "am-utils" suite.*..[ *read more* ](apps/id.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/id) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/id) | -| | [***imgcat***](apps/imgcat.md) | *Display images and gifs in your terminal.*..[ *read more* ](apps/imgcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/imgcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/imgcat) | -| | [***install***](apps/install.md) | *Copy files and set attributes. This is part of "am-utils" suite.*..[ *read more* ](apps/install.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/install) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/install) | -| | [***inxi***](apps/inxi.md) | *A full featured CLI system information tool.*..[ *read more* ](apps/inxi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/inxi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/inxi) | -| | [***ironwail***](apps/ironwail.md) | *High-performance QuakeSpasm fork QuakeSpasm. A modern, cross-platform Quake game engine based on FitzQuake.*..[ *read more* ](apps/ironwail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ironwail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ironwail) | -| | [***jabref***](apps/jabref.md) | *Graphical Java application for managing BibTeX and biblatex (.bib) databases.*..[ *read more* ](apps/jabref.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jabref) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jabref) | -| | [***jellyfin***](apps/jellyfin.md) | *Media player. Stream to any device from your own server.*..[ *read more* ](apps/jellyfin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jellyfin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jellyfin) | -| | [***jgrasp***](apps/jgrasp.md) | *An IDE with Visualizations for Improving Software Comprehensibility.*..[ *read more* ](apps/jgrasp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jgrasp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jgrasp) | -| | [***jless***](apps/jless.md) | *CLI JSON viewer designed for reading, exploring, and searching.*..[ *read more* ](apps/jless.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jless) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jless) | -| | [***jnv***](apps/jnv.md) | *Interactive JSON filter using jq.*..[ *read more* ](apps/jnv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jnv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jnv) | -| | [***join***](apps/join.md) | *Of two files on a common field. This is part of "am-utils" suite.*..[ *read more* ](apps/join.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/join) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/join) | -| | [***jottem***](apps/jottem.md) | *A lean, low friction terminal app for managing markdown notes.*..[ *read more* ](apps/jottem.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jottem) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jottem) | -| | [***jq***](apps/jq.md) | *Command-line JSON processor.*..[ *read more* ](apps/jq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jq) | -| | [***jqp***](apps/jqp.md) | *A TUI playground to experiment with jq.*..[ *read more* ](apps/jqp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jqp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jqp) | -| | [***junest***](apps/junest.md) | *Arch Linux based distro that runs rootless on any other Linux distro.*..[ *read more* ](apps/junest.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/junest) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/junest) | -| | [***kalc***](apps/kalc.md) | *Complex numbers, 2d/3d graphing, arbitrary precision cli calculator.*..[ *read more* ](apps/kalc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kalc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kalc) | -| | [***kalker***](apps/kalker.md) | *Scientific calculator with math syntax for user-defined variables.*..[ *read more* ](apps/kalker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kalker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kalker) | -| | [***kboard***](apps/kboard.md) | *Terminal game to practice keyboard typing.*..[ *read more* ](apps/kboard.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kboard) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kboard) | -| | [***kibi***](apps/kibi.md) | *A text editor in ≤1024 lines of code, written in Rust.*..[ *read more* ](apps/kibi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kibi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kibi) | -| | [***kill***](apps/kill.md) | *Terminate a process. This is part of "am-utils" suite.*..[ *read more* ](apps/kill.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kill) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kill) | -| | [***killall***](apps/killall.md) | *Kill processes by name. This is part of "am-utils" suite.*..[ *read more* ](apps/killall.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/killall) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/killall) | -| | [***kindling-cli***](apps/kindling-cli.md) | *Kindle toolkit for dictionaries, books, comics.*..[ *read more* ](apps/kindling-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kindling-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kindling-cli) | -| | [***kitty***](apps/kitty.md) | *Cross-platform, fast, feature-rich, GPU based terminal (also provides "kitten" CLI utility).*..[ *read more* ](apps/kitty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kitty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kitty) | -| | [***kmon***](apps/kmon.md) | *Linux Kernel Manager and Activity Monitor.*..[ *read more* ](apps/kmon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kmon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kmon) | -| | [***kmonad***](apps/kmonad.md) | *An advanced keyboard manager.*..[ *read more* ](apps/kmonad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kmonad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kmonad) | -| | [***koboldcpp***](apps/koboldcpp.md) | *Simple 1-file way to run GGML and GGUF models with KoboldAI's UI.*..[ *read more* ](apps/koboldcpp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/koboldcpp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/koboldcpp) | -| | [***kondo***](apps/kondo.md) | *Cleans dependencies and build artifacts from your projects.*..[ *read more* ](apps/kondo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kondo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kondo) | -| | [***kure***](apps/kure.md) | *CLI password manager with sessions.*..[ *read more* ](apps/kure.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kure) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kure) | -| | [***lan-mouse***](apps/lan-mouse.md) | *Mouse & keyboard sharing via LAN.*..[ *read more* ](apps/lan-mouse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lan-mouse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lan-mouse) | -| | [***lazygit***](apps/lazygit.md) | *Simple terminal UI for git commands.*..[ *read more* ](apps/lazygit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lazygit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lazygit) | -| | [***ld***](apps/ld.md) | *Standalone Linker Compiler. This is part of "am-utils" suite.*..[ *read more* ](apps/ld.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ld) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ld) | -| | [***ld.bfd***](apps/ld.bfd.md) | *The GNU linker with BFD libraries. This is part of "am-utils" suite.*..[ *read more* ](apps/ld.bfd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ld.bfd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ld.bfd) | -| | [***less***](apps/less.md) | *A terminal based program for viewing text files. This is part of "am-utils" suite.*..[ *read more* ](apps/less.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/less) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/less) | -| | [***lexido***](apps/lexido.md) | *A terminal assistant, powered by Generative AI.*..[ *read more* ](apps/lexido.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lexido) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lexido) | -| | [***lf***](apps/lf.md) | *lf, as in "list files" is a terminal file manager written in Go.*..[ *read more* ](apps/lf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lf) | -| | [***lichtblick***](apps/lichtblick.md) | *Lichtblick is an integrated visualization and diagnosis tool for robotics, available in your browser or as a desktop app on Linux, Windows, and macOS.*..[ *read more* ](apps/lichtblick.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lichtblick) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lichtblick) | -| | [***link***](apps/link.md) | *Call the link function to create a link to a file. This is part of "am-utils" suite.*..[ *read more* ](apps/link.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/link) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/link) | -| | [***litime***](apps/litime.md) | *A terminal literature clock telling time with quotes from literature.*..[ *read more* ](apps/litime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/litime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/litime) | -| | [***ln***](apps/ln.md) | *Make links between files. This is part of "am-utils" suite.*..[ *read more* ](apps/ln.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ln) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ln) | -| | [***lockbook-cli***](apps/lockbook-cli.md) | *The private, polished note-taking platform, CLI.*..[ *read more* ](apps/lockbook-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lockbook-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lockbook-cli) | -| | [***lockbook-desktop***](apps/lockbook-desktop.md) | *The private, polished note-taking platform.*..[ *read more* ](apps/lockbook-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lockbook-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lockbook-desktop) | -| | [***logname***](apps/logname.md) | *Print user's login name. This is part of "am-utils" suite.*..[ *read more* ](apps/logname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/logname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/logname) | -| | [***look***](apps/look.md) | *Beginning with a given string. This is part of "am-utils" suite.*..[ *read more* ](apps/look.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/look) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/look) | -| | [***lovesay***](apps/lovesay.md) | *Cowsay, but full of love and now a little rusty.*..[ *read more* ](apps/lovesay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lovesay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lovesay) | -| | [***lowfi***](apps/lowfi.md) | *An extremely simple lofi player. CLI.*..[ *read more* ](apps/lowfi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lowfi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lowfi) | -| | [***ls***](apps/ls.md) | *List directory contents. This is part of "am-utils" suite.*..[ *read more* ](apps/ls.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ls) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ls) | -| | [***lsd***](apps/lsd.md) | *The next gen ls command.*..[ *read more* ](apps/lsd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lsd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lsd) | -| | [***macchina***](apps/macchina.md) | *A system information frontend with an emphasis on performance.*..[ *read more* ](apps/macchina.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/macchina) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/macchina) | -| | [***manga-tui***](apps/manga-tui.md) | *Terminal-based manga reader and downloader with image support.*..[ *read more* ](apps/manga-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/manga-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/manga-tui) | -| | [***mangadesk***](apps/mangadesk.md) | *Terminal client for MangaDex.*..[ *read more* ](apps/mangadesk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangadesk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangadesk) | -| | [***mangal***](apps/mangal.md) | *Most advanced, yet simple CLI manga downloader in the universe!*..[ *read more* ](apps/mangal.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mangal) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mangal) | -| | [***matm***](apps/matm.md) | *Watch anime, movies, tv shows and read manga from comfort of the cli.*..[ *read more* ](apps/matm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/matm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/matm) | -| | [***mawk***](apps/mawk.md) | *And text processing language. This is part of "am-utils" suite.*..[ *read more* ](apps/mawk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mawk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mawk) | -| | [***mcfly***](apps/mcfly.md) | *Fly through your shell history. Great Scott!*..[ *read more* ](apps/mcfly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mcfly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mcfly) | -| | [***md5sum***](apps/md5sum.md) | *Compute and check MD5 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/md5sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/md5sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/md5sum) | -| | [***mdcat***](apps/mdcat.md) | *Command line, "cat" for markdown.*..[ *read more* ](apps/mdcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mdcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mdcat) | -| | [***melonds***](apps/melonds.md) | *DS emulator, sorta.*..[ *read more* ](apps/melonds.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/melonds) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/melonds) | -| | [***menyoki***](apps/menyoki.md) | *Screen{shot,cast} and perform ImageOps on the command line.*..[ *read more* ](apps/menyoki.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/menyoki) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/menyoki) | -| | [***mercury***](apps/mercury.md) | *Firefox fork with compiler optimizations and patches from Librewolf.*..[ *read more* ](apps/mercury.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mercury) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mercury) | -| | [***minecraft-launcher***](apps/minecraft-launcher.md) | *Game downloader and launcher for Minecraft.*..[ *read more* ](apps/minecraft-launcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/minecraft-launcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/minecraft-launcher) | -| | [***mk***](apps/mk.md) | *Interactive Task Runner for Makefile.*..[ *read more* ](apps/mk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mk) | -| | [***mkdir***](apps/mkdir.md) | *Make directories. This is part of "am-utils" suite.*..[ *read more* ](apps/mkdir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mkdir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mkdir) | -| | [***mkfifo***](apps/mkfifo.md) | *Make FIFOs (named pipes). This is part of "am-utils" suite.*..[ *read more* ](apps/mkfifo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mkfifo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mkfifo) | -| | [***mknod***](apps/mknod.md) | *Make block or character special files. This is part of "am-utils" suite.*..[ *read more* ](apps/mknod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mknod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mknod) | -| | [***mktemp***](apps/mktemp.md) | *Create a temporary file or directory. This is part of "am-utils" suite.*..[ *read more* ](apps/mktemp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mktemp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mktemp) | -| | [***more***](apps/more.md) | *Display the contents of a file in a terminal. This is part of "am-utils" suite.*..[ *read more* ](apps/more.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/more) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/more) | -| | [***mount***](apps/mount.md) | *Mount a filesystem. This is part of "am-utils" suite.*..[ *read more* ](apps/mount.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mount) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mount) | -| | [***mp4grep***](apps/mp4grep.md) | *CLI for transcribing and searching audio/video files.*..[ *read more* ](apps/mp4grep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mp4grep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mp4grep) | -| | [***multimc***](apps/multimc.md) | *A Minecraft launcher.*..[ *read more* ](apps/multimc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/multimc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/multimc) | -| | [***mv***](apps/mv.md) | *Move (rename) files. This is part of "am-utils" suite.*..[ *read more* ](apps/mv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mv) | -| | [***nami***](apps/nami.md) | *A clean and tidy decentralized package manager.*..[ *read more* ](apps/nami.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nami) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nami) | -| | [***nap***](apps/nap.md) | *Code spippets in your terminal.*..[ *read more* ](apps/nap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nap) | -| | [***naruto-arena***](apps/naruto-arena.md) | *Naruto-based online multiplayer strategy game.*..[ *read more* ](apps/naruto-arena.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/naruto-arena) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/naruto-arena) | -| | [***navi***](apps/navi.md) | *An interactive cheatsheet tool for the command-line.*..[ *read more* ](apps/navi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/navi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/navi) | -| | [***nazuna***](apps/nazuna.md) | *Download Twitter videos using your terminal!*..[ *read more* ](apps/nazuna.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nazuna) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nazuna) | -| | [***ncspot***](apps/ncspot.md) | *Cross-platform ncurses Spotify client written in Rust, inspired by ncmpc and the likes.*..[ *read more* ](apps/ncspot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ncspot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ncspot) | -| | [***neko***](apps/neko.md) | *Neko is a cross-platform cursor-chasing cat.*..[ *read more* ](apps/neko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neko) | -| | [***nerdfetch***](apps/nerdfetch.md) | *A POSIX *nix fetch script using Nerdfonts.*..[ *read more* ](apps/nerdfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nerdfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nerdfetch) | -| | [***nice***](apps/nice.md) | *Run a program with modified scheduling priority. This is part of "am-utils" suite.*..[ *read more* ](apps/nice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nice) | -| | [***nitch***](apps/nitch.md) | *Incredibly fast system fetch written in nim.*..[ *read more* ](apps/nitch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nitch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nitch) | -| | [***nix-portable***](apps/nix-portable.md) | *Use nix on any linux system, rootless and configuration free.*..[ *read more* ](apps/nix-portable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nix-portable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nix-portable) | -| | [***nl***](apps/nl.md) | *Number lines of files. This is part of "am-utils" suite.*..[ *read more* ](apps/nl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nl) | -| | [***nm***](apps/nm.md) | *From object files. This is part of "am-utils" suite.*..[ *read more* ](apps/nm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nm) | -| | [***nnn***](apps/nnn.md) | *n³ The unorthodox terminal file manager*..[ *read more* ](apps/nnn.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nnn) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nnn) | -| | [***node***](apps/node.md) | *This is the official suite of Node.js tools, also known as "NodeJS", a JavaScript runtime built on Chrome's V8 JavaScript engine.*..[ *read more* ](apps/node.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/node) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/node) | -| | [***nohup***](apps/nohup.md) | *Run a command immune to hangups, with output to a. This is part of "am-utils" suite.*..[ *read more* ](apps/nohup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nohup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nohup) | -| | [***notify-send***](apps/notify-send.md) | *A program to send desktop notifications. This is part of "am-utils" suite.*..[ *read more* ](apps/notify-send.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notify-send) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notify-send) | -| | [***nproc***](apps/nproc.md) | *Print the number of processing units available. This is part of "am-utils" suite.*..[ *read more* ](apps/nproc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nproc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nproc) | -| | [***ntfydesktop***](apps/ntfydesktop.md) | *A desktop client for ntfy. Allows you to subscribe to topics from any ntfy server and recieve notifications natively on the desktop.*..[ *read more* ](apps/ntfydesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ntfydesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ntfydesktop) | -| | [***nu***](apps/nu.md) | *A new type of shell.*..[ *read more* ](apps/nu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nu) | -| | [***numfmt***](apps/numfmt.md) | *From/to human-readable strings. This is part of "am-utils" suite.*..[ *read more* ](apps/numfmt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/numfmt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/numfmt) | -| | [***nyaa***](apps/nyaa.md) | *A nyaa.si tui tool for browsing and downloading torrents.*..[ *read more* ](apps/nyaa.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nyaa) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nyaa) | -| | [***nyan***](apps/nyan.md) | *CLI, colored "cat" command.*..[ *read more* ](apps/nyan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nyan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nyan) | -| | [***nyrna***](apps/nyrna.md) | *Suspend games and applications.*..[ *read more* ](apps/nyrna.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nyrna) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nyrna) | -| | [***objcopy***](apps/objcopy.md) | *Translate object files. This is part of "am-utils" suite.*..[ *read more* ](apps/objcopy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/objcopy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/objcopy) | -| | [***objdump***](apps/objdump.md) | *From object files. This is part of "am-utils" suite.*..[ *read more* ](apps/objdump.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/objdump) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/objdump) | -| | [***obsidian-cli***](apps/obsidian-cli.md) | *Interact with Obsidian in the terminal. Open, search, create, update, move and delete notes!*..[ *read more* ](apps/obsidian-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/obsidian-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/obsidian-cli) | -| | [***od***](apps/od.md) | *Dump files in octal and other formats. This is part of "am-utils" suite.*..[ *read more* ](apps/od.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/od) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/od) | -| | [***oh***](apps/oh.md) | *A new Unix shell.*..[ *read more* ](apps/oh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oh) | -| | [***omekasy***](apps/omekasy.md) | *Command line application that converts alphanumeric characters to various styles 𝚍𝚎𝚏𝚒𝚗𝚎𝚍 𝚒𝚗 𝚄𝚗𝚒𝚌𝚘𝚍𝚎.*..[ *read more* ](apps/omekasy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/omekasy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/omekasy) | -| | [***onefetch***](apps/onefetch.md) | *Command-line Git information tool.*..[ *read more* ](apps/onefetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onefetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onefetch) | -| | [***onionmediax***](apps/onionmediax.md) | *OnionMedia X. Convert and download videos and music quickly and easily.*..[ *read more* ](apps/onionmediax.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onionmediax) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onionmediax) | -| | [***openapi-tui***](apps/openapi-tui.md) | *Terminal UI to list, browse and run APIs defined with openapi.*..[ *read more* ](apps/openapi-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openapi-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openapi-tui) | -| | [***openarena***](apps/openarena.md) | *Violent & sexy, multiplayer first person shooter game, ioquake3.*..[ *read more* ](apps/openarena.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openarena) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openarena) | -| | [***opencode***](apps/opencode.md) | *The open source coding agent.*..[ *read more* ](apps/opencode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opencode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opencode) | -| | [***openmw***](apps/openmw.md) | *OpenMW is an open-source open-world RPG game engine that supports playing Morrowind.*..[ *read more* ](apps/openmw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openmw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openmw) | -| | [***oras***](apps/oras.md) | *OCI registry client managing content like artifacts, images, packages.*..[ *read more* ](apps/oras.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oras) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oras) | -| | [***ots***](apps/ots.md) | *Share end-to-end encrypted secrets with others via a one-time URL.*..[ *read more* ](apps/ots.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ots) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ots) | -| | [***paclear***](apps/paclear.md) | *CLI, paclear is a clear command with PAC-MAN animation.*..[ *read more* ](apps/paclear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paclear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paclear) | -| | [***paket***](apps/paket.md) | *A simple and fast package manager for the Fish shell written in Rust.*..[ *read more* ](apps/paket.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paket) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paket) | -| | [***paste***](apps/paste.md) | *Merge lines of files. This is part of "am-utils" suite.*..[ *read more* ](apps/paste.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/paste) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/paste) | -| | [***pastel***](apps/pastel.md) | *A command-line tool to generate, analyze, convert and manipulate colors.*..[ *read more* ](apps/pastel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pastel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pastel) | -| | [***pathchk***](apps/pathchk.md) | *File names are valid or portable. This is part of "am-utils" suite.*..[ *read more* ](apps/pathchk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pathchk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pathchk) | -| | [***pay-respects***](apps/pay-respects.md) | *Terminal command correction, alternative to thefuck written in Rust.*..[ *read more* ](apps/pay-respects.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pay-respects) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pay-respects) | -| | [***pboy***](apps/pboy.md) | *A small .pdf management tool with a command-line UI.*..[ *read more* ](apps/pboy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pboy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pboy) | -| | [***pdf-diff***](apps/pdf-diff.md) | *A CLI tool for visualizing differences between two pdf files.*..[ *read more* ](apps/pdf-diff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdf-diff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdf-diff) | -| | [***pdfcrackgui***](apps/pdfcrackgui.md) | *GUI overlay for the popular and highly regarded pdfcrack.*..[ *read more* ](apps/pdfcrackgui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pdfcrackgui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pdfcrackgui) | -| | [***peep***](apps/peep.md) | *The CLI text viewer tool that works like less command on small pane within the terminal window.*..[ *read more* ](apps/peep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/peep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/peep) | -| | [***pet***](apps/pet.md) | *Simple command-line snippet manager.*..[ *read more* ](apps/pet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pet) | -| | [***pfetch-rs***](apps/pfetch-rs.md) | *A rewrite of the pfetch system information tool in Rust.*..[ *read more* ](apps/pfetch-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pfetch-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pfetch-rs) | -| | [***pget***](apps/pget.md) | *The fastest, resumable file download CLI client.*..[ *read more* ](apps/pget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pget) | -| | [***pho***](apps/pho.md) | *The AppImage Manager that Linux always deserved.*..[ *read more* ](apps/pho.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pho) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pho) | -| | [***photocrea***](apps/photocrea.md) | *Unofficial Photopea wrapper, image editor that includes all the familiar features like layers, filters, magic wand selection, etc.*..[ *read more* ](apps/photocrea.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photocrea) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photocrea) | -| | [***photon***](apps/photon.md) | *Cross-platform file-transfer application built using flutter. It uses http to transfer files between devices.*..[ *read more* ](apps/photon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/photon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/photon) | -| | [***picocrypt-ng***](apps/picocrypt-ng.md) | *A very small, very simple, yet very secure encryption tool.*..[ *read more* ](apps/picocrypt-ng.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picocrypt-ng) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picocrypt-ng) | -| | [***picterm***](apps/picterm.md) | *CLI, TUI image viewer.*..[ *read more* ](apps/picterm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/picterm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/picterm) | -| | [***pingu***](apps/pingu.md) | *CLI, ping command but with pingu.*..[ *read more* ](apps/pingu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pingu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pingu) | -| | [***pinky***](apps/pinky.md) | *Lightweight finger. This is part of "am-utils" suite.*..[ *read more* ](apps/pinky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pinky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pinky) | -| | [***pinta-dev***](apps/pinta-dev.md) | *Simple GTK Paint Program (developer edition).*..[ *read more* ](apps/pinta-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pinta-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pinta-dev) | -| | [***pipes-rs***](apps/pipes-rs.md) | *An over-engineered rewrite of pipes.sh in Rust. CLI.*..[ *read more* ](apps/pipes-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pipes-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pipes-rs) | -| | [***pixelorama***](apps/pixelorama.md) | *A powerful and accessible open-source pixel art multitool. Whether you want to create sprites, tiles, animations, or just express yourself in the language of pixel art.*..[ *read more* ](apps/pixelorama.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixelorama) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixelorama) | -| | [***pixfetch***](apps/pixfetch.md) | *Another CLI fetch program with pixelized images written in Rust.*..[ *read more* ](apps/pixfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pixfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pixfetch) | -| | [***pizarra***](apps/pizarra.md) | *A digital, vectorial and infinite chalkboard.*..[ *read more* ](apps/pizarra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pizarra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pizarra) | -| | [***platform-tools***](apps/platform-tools.md) | *Official Suite of command line utilities to manage Android devices.*..[ *read more* ](apps/platform-tools.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/platform-tools) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/platform-tools) | -| | [***playit***](apps/playit.md) | *Want to run an online game server? playit.gg is a global proxy that allows anyone to host a server without port forwarding.*..[ *read more* ](apps/playit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playit) | -| | [***png2svg***](apps/png2svg.md) | *CLI, convert small PNG images to SVG Tiny 1.2.*..[ *read more* ](apps/png2svg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/png2svg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/png2svg) | -| | [***podman***](apps/podman.md) | *Free & open source tool to manage containers, pods, and images.*..[ *read more* ](apps/podman.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/podman) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/podman) | -| | [***pokeget-rs***](apps/pokeget-rs.md) | *A better rust version of pokeget. CLI.*..[ *read more* ](apps/pokeget-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokeget-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokeget-rs) | -| | [***pokego***](apps/pokego.md) | *Command-line tool that lets you display Pokémon sprites in color directly in your terminal.*..[ *read more* ](apps/pokego.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pokego) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pokego) | -| | [***pop***](apps/pop.md) | *Send emails from your terminal.*..[ *read more* ](apps/pop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pop) | -| | [***pr***](apps/pr.md) | *Files for printing. This is part of "am-utils" suite.*..[ *read more* ](apps/pr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pr) | -| | [***printenv***](apps/printenv.md) | *Print all or part of environment. This is part of "am-utils" suite.*..[ *read more* ](apps/printenv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/printenv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/printenv) | -| | [***printf***](apps/printf.md) | *Format and print data. This is part of "am-utils" suite.*..[ *read more* ](apps/printf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/printf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/printf) | -| | [***prismlauncher-qt5***](apps/prismlauncher-qt5.md) | *Launcher for Minecraft, manage multiple installations (Qt5 version).*..[ *read more* ](apps/prismlauncher-qt5.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/prismlauncher-qt5) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/prismlauncher-qt5) | -| | [***procs***](apps/procs.md) | *A modern replacement for ps written in Rust.*..[ *read more* ](apps/procs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/procs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/procs) | -| | [***ptx***](apps/ptx.md) | *Permuted index of file contents. This is part of "am-utils" suite.*..[ *read more* ](apps/ptx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ptx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ptx) | -| | [***pwd***](apps/pwd.md) | *Print name of current/working directory. This is part of "am-utils" suite.*..[ *read more* ](apps/pwd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pwd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pwd) | -| | [***qrscan***](apps/qrscan.md) | *Scan a QR code in the terminal using the system camera or an image.*..[ *read more* ](apps/qrscan.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qrscan) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qrscan) | -| | [***quarto-cli***](apps/quarto-cli.md) | *Scientific and technical publishing system built on Pandoc.*..[ *read more* ](apps/quarto-cli.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quarto-cli) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quarto-cli) | -| | [***ranlib***](apps/ranlib.md) | *Index to an archive. This is part of "am-utils" suite.*..[ *read more* ](apps/ranlib.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ranlib) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ranlib) | -| | [***rbw***](apps/rbw.md) | *Unofficial Bitwarden password manager cli.*..[ *read more* ](apps/rbw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rbw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rbw) | -| | [***rclone***](apps/rclone.md) | *"rsync for cloud storage", CLI that supports Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Wasabi, Google Cloud Storage, Azure Blob, Azure Files, Yandex Files.*..[ *read more* ](apps/rclone.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rclone) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rclone) | -| | [***readelf***](apps/readelf.md) | *About ELF files. This is part of "am-utils" suite.*..[ *read more* ](apps/readelf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readelf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readelf) | -| | [***readlink***](apps/readlink.md) | *Print resolved symbolic links or canonical file. This is part of "am-utils" suite.*..[ *read more* ](apps/readlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/readlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/readlink) | -| | [***realpath***](apps/realpath.md) | *Print the resolved path. This is part of "am-utils" suite.*..[ *read more* ](apps/realpath.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/realpath) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/realpath) | -| | [***reaper***](apps/reaper.md) | *A complete digital audio production app, offering a full multitrack audio and MIDI recording, editing, processing, mixing and mastering toolset.*..[ *read more* ](apps/reaper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/reaper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/reaper) | -| | [***rebaslight***](apps/rebaslight.md) | *An easy to use special effects video editor.*..[ *read more* ](apps/rebaslight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rebaslight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rebaslight) | -| | [***rebos***](apps/rebos.md) | *Rebos is a tool that aims at mimicking what NixOS does (repeatability), for any Linux distribution.*..[ *read more* ](apps/rebos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rebos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rebos) | -| | [***rev***](apps/rev.md) | *Reverse lines characterwise. This is part of "am-utils" suite.*..[ *read more* ](apps/rev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rev) | -| | [***revealgo***](apps/revealgo.md) | *Markdown driven presentation tool written in Go!*..[ *read more* ](apps/revealgo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/revealgo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/revealgo) | -| | [***rimage***](apps/rimage.md) | *This is CLI tool inspired by squoosh.*..[ *read more* ](apps/rimage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rimage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rimage) | -| | [***ripgrep***](apps/ripgrep.md) | *Search directories for regex pattern while respecting gitignore.*..[ *read more* ](apps/ripgrep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ripgrep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ripgrep) | -| | [***ripgrep-all***](apps/ripgrep-all.md) | *A ripgrep version to also search in documents and archives.*..[ *read more* ](apps/ripgrep-all.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ripgrep-all) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ripgrep-all) | -| | [***rm***](apps/rm.md) | *Remove files or directories. This is part of "am-utils" suite.*..[ *read more* ](apps/rm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rm) | -| | [***rmdir***](apps/rmdir.md) | *Remove empty directories. This is part of "am-utils" suite.*..[ *read more* ](apps/rmdir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rmdir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rmdir) | -| | [***rocketfetch***](apps/rocketfetch.md) | *A WIP command line system information tool written with multithreading in rust for performance with toml file configuration.*..[ *read more* ](apps/rocketfetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rocketfetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rocketfetch) | -| | [***rrip***](apps/rrip.md) | *Bulk image downloader for reddit.*..[ *read more* ](apps/rrip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rrip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rrip) | -| | [***rucola***](apps/rucola.md) | *Terminal-based markdown note manager.*..[ *read more* ](apps/rucola.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rucola) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rucola) | -| | [***runcon***](apps/runcon.md) | *With specified security context. This is part of "am-utils" suite.*..[ *read more* ](apps/runcon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/runcon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/runcon) | -| | [***rustdict***](apps/rustdict.md) | *A dictionary CLI tool in Rust inspired by BetaPictoris's dict.*..[ *read more* ](apps/rustdict.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rustdict) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rustdict) | -| | [***rustypaste***](apps/rustypaste.md) | *A minimal file upload/pastebin service.*..[ *read more* ](apps/rustypaste.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rustypaste) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rustypaste) | -| | [***s***](apps/s.md) | *Open a web search in your terminal.*..[ *read more* ](apps/s.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/s) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/s) | -| | [***sd***](apps/sd.md) | *Intuitive find & replace CLI, sed alternative.*..[ *read more* ](apps/sd.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sd) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sd) | -| | [***sed***](apps/sed.md) | *GNU stream editor for filtering and transforming text. This is part of "am-utils" suite.*..[ *read more* ](apps/sed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sed) | -| | [***seq***](apps/seq.md) | *Print a sequence of numbers. This is part of "am-utils" suite.*..[ *read more* ](apps/seq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/seq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/seq) | -| | [***sfp***](apps/sfp.md) | *This utility is designed to allow you to apply skins to the modern Steam client.*..[ *read more* ](apps/sfp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sfp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sfp) | -| | [***sh***](apps/sh.md) | *GNU Bourne-Again Shell, the de facto standard shell on Linux. This is part of "am-utils" suite.*..[ *read more* ](apps/sh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sh) | -| | [***sha1sum***](apps/sha1sum.md) | *Compute and check SHA1 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha1sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha1sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha1sum) | -| | [***sha224sum***](apps/sha224sum.md) | *Check SHA224 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha224sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha224sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha224sum) | -| | [***sha256sum***](apps/sha256sum.md) | *Compute and check SHA256 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha256sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha256sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha256sum) | -| | [***sha384sum***](apps/sha384sum.md) | *Check SHA384 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha384sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha384sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha384sum) | -| | [***sha512sum***](apps/sha512sum.md) | *Compute and check SHA512 message digest. This is part of "am-utils" suite.*..[ *read more* ](apps/sha512sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sha512sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sha512sum) | -| | [***shellcheck***](apps/shellcheck.md) | *ShellCheck, a static analysis tool for shell scripts.*..[ *read more* ](apps/shellcheck.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shellcheck) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shellcheck) | -| | [***shellharden***](apps/shellharden.md) | *The corrective bash syntax highlighter.*..[ *read more* ](apps/shellharden.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shellharden) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shellharden) | -| | [***shradiko***](apps/shradiko.md) | *Make Portable AppImages from Distro Packages.*..[ *read more* ](apps/shradiko.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shradiko) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shradiko) | -| | [***shred***](apps/shred.md) | *Overwrite a file to hide its contents, and optionally. This is part of "am-utils" suite.*..[ *read more* ](apps/shred.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shred) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shred) | -| | [***shuf***](apps/shuf.md) | *Generate random permutations. This is part of "am-utils" suite.*..[ *read more* ](apps/shuf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shuf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shuf) | -| | [***sidenote***](apps/sidenote.md) | *A CLI tool that helps to manage plain text notes per working directory.*..[ *read more* ](apps/sidenote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sidenote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sidenote) | -| | [***size***](apps/size.md) | *Sizes and total size of binary files. This is part of "am-utils" suite.*..[ *read more* ](apps/size.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/size) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/size) | -| | [***skyemu***](apps/skyemu.md) | *Game Boy Advance, Game Boy, Game Boy Color, and DS Emulator.*..[ *read more* ](apps/skyemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/skyemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/skyemu) | -| | [***sleep***](apps/sleep.md) | *Delay for a specified amount of time. This is part of "am-utils" suite.*..[ *read more* ](apps/sleep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sleep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sleep) | -| | [***smassh***](apps/smassh.md) | *Smassh your Keyboard, TUI Edition.*..[ *read more* ](apps/smassh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smassh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smassh) | -| | [***soar***](apps/soar.md) | *A fast, modern package manager for Static Binaries, Portable Formats, AppImage, AppBundle, FlatImage, Runimage & More.*..[ *read more* ](apps/soar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soar) | -| | [***soft-serve***](apps/soft-serve.md) | *The mighty, self-hostable Git server for the command line.*..[ *read more* ](apps/soft-serve.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soft-serve) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soft-serve) | -| | [***sort***](apps/sort.md) | *Sort lines of text files. This is part of "am-utils" suite.*..[ *read more* ](apps/sort.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sort) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sort) | -| | [***soul-arena***](apps/soul-arena.md) | *Bleach-based online multiplayer strategy game.*..[ *read more* ](apps/soul-arena.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/soul-arena) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/soul-arena) | -| | [***split***](apps/split.md) | *Divide a file into multiple smaller files. This is part of "am-utils" suite.*..[ *read more* ](apps/split.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/split) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/split) | -| | [***spotifetch***](apps/spotifetch.md) | *A simple and beautiful CLI fetch tool for spotify, now rusty.*..[ *read more* ](apps/spotifetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotifetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotifetch) | -| | [***spotify-dl***](apps/spotify-dl.md) | *A command-line utility to download songs and playlists directly from Spotify's servers.*..[ *read more* ](apps/spotify-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-dl) | -| | [***spotify-player***](apps/spotify-player.md) | *A Spotify player in the terminal with full feature parity.*..[ *read more* ](apps/spotify-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-player) | -| | [***spotify-tui***](apps/spotify-tui.md) | *Spotify for the terminal written in Rust.*..[ *read more* ](apps/spotify-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-tui) | -| | [***spritemate4electron***](apps/spritemate4electron.md) | *A simple Electron-wrapper for Esshahn's awesome Spritemate-webapp.*..[ *read more* ](apps/spritemate4electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spritemate4electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spritemate4electron) | -| | [***sptlrx***](apps/sptlrx.md) | *Synchronized lyrics in your terminal.*..[ *read more* ](apps/sptlrx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sptlrx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sptlrx) | -| | [***starship***](apps/starship.md) | *The minimal, blazing-fast, and infinitely customizable prompt for any shell.*..[ *read more* ](apps/starship.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/starship) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/starship) | -| | [***stat***](apps/stat.md) | *Display file or file system status. This is part of "am-utils" suite.*..[ *read more* ](apps/stat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stat) | -| | [***stdbuf***](apps/stdbuf.md) | *With modified buffering operations for its. This is part of "am-utils" suite.*..[ *read more* ](apps/stdbuf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stdbuf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stdbuf) | -| | [***steam-tui***](apps/steam-tui.md) | *Rust TUI client for steamcmd.*..[ *read more* ](apps/steam-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steam-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steam-tui) | -| | [***stew***](apps/stew.md) | *An independent package manager for compiled binaries.*..[ *read more* ](apps/stew.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stew) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stew) | -| | [***strace***](apps/strace.md) | *Trace system calls and signals. This is part of "am-utils" suite.*..[ *read more* ](apps/strace.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strace) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strace) | -| | [***strings***](apps/strings.md) | *Strings is another bad static string library, written in C. This is part of "am-utils" suite.*..[ *read more* ](apps/strings.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strings) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strings) | -| | [***strip***](apps/strip.md) | *And other data from object files. This is part of "am-utils" suite.*..[ *read more* ](apps/strip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/strip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/strip) | -| | [***stty***](apps/stty.md) | *Change and print terminal line settings. This is part of "am-utils" suite.*..[ *read more* ](apps/stty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stty) | -| | [***sum***](apps/sum.md) | *Checksum and count the blocks in a file. This is part of "am-utils" suite.*..[ *read more* ](apps/sum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sum) | -| | [***superfile***](apps/superfile.md) | *Pretty fancy and modern terminal file manager.*..[ *read more* ](apps/superfile.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/superfile) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/superfile) | -| | [***swapoff***](apps/swapoff.md) | *Enable/disable devices and files for paging and. This is part of "am-utils" suite.*..[ *read more* ](apps/swapoff.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swapoff) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swapoff) | -| | [***swapon***](apps/swapon.md) | *Enable/disable devices and files for paging and. This is part of "am-utils" suite.*..[ *read more* ](apps/swapon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swapon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swapon) | -| | [***sweethome3d***](apps/sweethome3d.md) | *An interior design app to draw house plans & arrange furniture.*..[ *read more* ](apps/sweethome3d.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sweethome3d) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sweethome3d) | -| | [***swish***](apps/swish.md) | *Command Line Interface for Swisstransfer Infomaniak's free service.*..[ *read more* ](apps/swish.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swish) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swish) | -| | [***sync***](apps/sync.md) | *Backup and synchronization service. This is part of "am-utils" suite.*..[ *read more* ](apps/sync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sync) | -| | [***sysz***](apps/sysz.md) | *An fzf terminal UI for systemctl.*..[ *read more* ](apps/sysz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sysz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sysz) | -| | [***tac***](apps/tac.md) | *Concatenate and print files in reverse. This is part of "am-utils" suite.*..[ *read more* ](apps/tac.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tac) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tac) | -| | [***tail***](apps/tail.md) | *Output the last part of files. This is part of "am-utils" suite.*..[ *read more* ](apps/tail.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tail) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tail) | -| | [***tar***](apps/tar.md) | *Utility used to store, backup, and transport files. This is part of "am-utils" suite.*..[ *read more* ](apps/tar.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tar) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tar) | -| | [***taskell***](apps/taskell.md) | *Command-line Kanban board/task manager with support for Trello boards and GitHub projects.*..[ *read more* ](apps/taskell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/taskell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/taskell) | -| | [***tb***](apps/tb.md) | *Tasks, boards & notes for the command-line habitat.*..[ *read more* ](apps/tb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tb) | -| | [***tdlib-rs***](apps/tdlib-rs.md) | *Rust wrapper around the Telegram Database Library.*..[ *read more* ](apps/tdlib-rs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tdlib-rs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tdlib-rs) | -| | [***teamviewer***](apps/teamviewer.md) | *Deliver remote IT support to your customers and colleagues, anytime, anywhere. Communication, network.*..[ *read more* ](apps/teamviewer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teamviewer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teamviewer) | -| | [***teamviewer-host***](apps/teamviewer-host.md) | *Host utility for TeamViewer, if you want to set up unattended access to a device.*..[ *read more* ](apps/teamviewer-host.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teamviewer-host) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teamviewer-host) | -| | [***teamviewer-qs***](apps/teamviewer-qs.md) | *QuickSupport utility for TeamViewer, if you want to receive support.*..[ *read more* ](apps/teamviewer-qs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/teamviewer-qs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/teamviewer-qs) | -| | [***tee***](apps/tee.md) | *Read from standard input and write to standard output and. This is part of "am-utils" suite.*..[ *read more* ](apps/tee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tee) | -| | [***tere***](apps/tere.md) | *Terminal file explorer.*..[ *read more* ](apps/tere.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tere) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tere) | -| | [***termshot***](apps/termshot.md) | *Creates screenshots based on terminal command output.*..[ *read more* ](apps/termshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/termshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/termshot) | -| | [***tess***](apps/tess.md) | *A hackable, simple, rapid and beautiful terminal.*..[ *read more* ](apps/tess.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tess) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tess) | -| | [***test***](apps/test.md) | *Check file types and compare values. This is part of "am-utils" suite.*..[ *read more* ](apps/test.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/test) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/test) | -| | [***testdisk***](apps/testdisk.md) | *TestDisk & PhotoRec, tools to recover lost partitions and files.*..[ *read more* ](apps/testdisk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/testdisk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/testdisk) | -| | [***textnote***](apps/textnote.md) | *Simple tool for creating and organizing daily notes on the command line.*..[ *read more* ](apps/textnote.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/textnote) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/textnote) | -| | [***tgpt***](apps/tgpt.md) | *AI Chatbots in terminal without needing API keys.*..[ *read more* ](apps/tgpt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tgpt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tgpt) | -| | [***the-way***](apps/the-way.md) | *A code snippets manager for your terminal.*..[ *read more* ](apps/the-way.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/the-way) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/the-way) | -| | [***ticker***](apps/ticker.md) | *Terminal stock ticker with live updates and position tracking.*..[ *read more* ](apps/ticker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ticker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ticker) | -| | [***timeout***](apps/timeout.md) | *Run a command with a time limit. This is part of "am-utils" suite.*..[ *read more* ](apps/timeout.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/timeout) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/timeout) | -| | [***tlock***](apps/tlock.md) | *Two-Factor Authentication Tokens Manager in Terminal.*..[ *read more* ](apps/tlock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tlock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tlock) | -| | [***tod***](apps/tod.md) | *An unofficial Todoist command line client written in Rust.*..[ *read more* ](apps/tod.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tod) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tod) | -| | [***toipe***](apps/toipe.md) | *yet another typing test, but crab flavoured.*..[ *read more* ](apps/toipe.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/toipe) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/toipe) | -| | [***top***](apps/top.md) | *Display Linux processes. This is part of "am-utils" suite.*..[ *read more* ](apps/top.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/top) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/top) | -| | [***topgrade***](apps/topgrade.md) | *Upgrade all the things, this is the universal upgrade manager.*..[ *read more* ](apps/topgrade.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/topgrade) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/topgrade) | -| | [***tor-browser***](apps/tor-browser.md) | *Privacy-oriented Web Browser for sites blocked in your country.*..[ *read more* ](apps/tor-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tor-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tor-browser) | -| | [***tor-browser-alpha***](apps/tor-browser-alpha.md) | *Privacy-oriented Web Browser for sites blocked in your country.*..[ *read more* ](apps/tor-browser-alpha.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tor-browser-alpha) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tor-browser-alpha) | -| | [***toru***](apps/toru.md) | *Bittorrent streaming CLI tool. Stream anime torrents real-time.*..[ *read more* ](apps/toru.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/toru) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/toru) | -| | [***touch***](apps/touch.md) | *Change file timestamps. This is part of "am-utils" suite.*..[ *read more* ](apps/touch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/touch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/touch) | -| | [***tput***](apps/tput.md) | *tput - initialize a terminal, exercise its capabilities, or query terminfo database. This is part of "am-utils" suite.*..[ *read more* ](apps/tput.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tput) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tput) | -| | [***tr***](apps/tr.md) | *Translate or delete characters. This is part of "am-utils" suite.*..[ *read more* ](apps/tr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tr) | -| | [***trans***](apps/trans.md) | *CLI translator using Google/Bing/Yandex Translate, etc...*..[ *read more* ](apps/trans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trans) | -| | [***transformer***](apps/transformer.md) | *A command-line utility for splitting large files into chunks/pieces and merging them back together.*..[ *read more* ](apps/transformer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/transformer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/transformer) | -| | [***true***](apps/true.md) | *Do nothing, successfully. This is part of "am-utils" suite.*..[ *read more* ](apps/true.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/true) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/true) | -| | [***truncate***](apps/truncate.md) | *Shrink or extend the size of a file to the specified. This is part of "am-utils" suite.*..[ *read more* ](apps/truncate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/truncate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/truncate) | -| | [***tsort***](apps/tsort.md) | *Perform a topological sort. This is part of "am-utils" suite.*..[ *read more* ](apps/tsort.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tsort) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tsort) | -| | [***tssh***](apps/tssh.md) | *trzsz-ssh is an alternative to ssh client, offers additional features.*..[ *read more* ](apps/tssh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tssh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tssh) | -| | [***tty***](apps/tty.md) | *Print the file name of the terminal connected to standard. This is part of "am-utils" suite.*..[ *read more* ](apps/tty.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tty) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tty) | -| | [***ttyper***](apps/ttyper.md) | *Terminal-based typing test.*..[ *read more* ](apps/ttyper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ttyper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ttyper) | -| | [***tuxplorer***](apps/tuxplorer.md) | *Tuxplorer is a terminal based file explorer.*..[ *read more* ](apps/tuxplorer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tuxplorer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tuxplorer) | -| | [***typioca***](apps/typioca.md) | *Cozy typing speed tester in terminal.*..[ *read more* ](apps/typioca.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/typioca) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/typioca) | -| | [***ul***](apps/ul.md) | *Translate underline sequences for terminals. This is part of "am-utils" suite.*..[ *read more* ](apps/ul.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ul) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ul) | -| | [***umount***](apps/umount.md) | *Unmount filesystems. This is part of "am-utils" suite.*..[ *read more* ](apps/umount.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/umount) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/umount) | -| | [***uname***](apps/uname.md) | *Print system information. This is part of "am-utils" suite.*..[ *read more* ](apps/uname.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uname) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uname) | -| | [***uncompress***](apps/uncompress.md) | *Zcat - compress and expand data. This is part of "am-utils" suite.*..[ *read more* ](apps/uncompress.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uncompress) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uncompress) | -| | [***unetbootin***](apps/unetbootin.md) | *Install Linux/BSD distributions to a partition or USB drive.*..[ *read more* ](apps/unetbootin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unetbootin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unetbootin) | -| | [***unexpand***](apps/unexpand.md) | *Convert spaces to tabs. This is part of "am-utils" suite.*..[ *read more* ](apps/unexpand.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unexpand) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unexpand) | -| | [***uniq***](apps/uniq.md) | *Report or omit repeated lines. This is part of "am-utils" suite.*..[ *read more* ](apps/uniq.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uniq) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uniq) | -| | [***unlink***](apps/unlink.md) | *Call the unlink function to remove the specified file. This is part of "am-utils" suite.*..[ *read more* ](apps/unlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unlink) | -| | [***unshare***](apps/unshare.md) | *Run program in new namespaces. This is part of "am-utils" suite.*..[ *read more* ](apps/unshare.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unshare) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unshare) | -| | [***unveil***](apps/unveil.md) | *Unveil Rs is a tool to create presentations from markdown inspired by reveal.js, mdbook and zola.*..[ *read more* ](apps/unveil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unveil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unveil) | -| | [***unxz***](apps/unxz.md) | *Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of "am-utils" suite.*..[ *read more* ](apps/unxz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unxz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unxz) | -| | [***unzip***](apps/unzip.md) | *For extracting and viewing files in .zip archives. This is part of "am-utils" suite.*..[ *read more* ](apps/unzip.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unzip) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unzip) | -| | [***upgit***](apps/upgit.md) | *CLI, another upload hub that supports clipboard. It works well with Typora, Snipaste, VSCode.*..[ *read more* ](apps/upgit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/upgit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/upgit) | -| | [***uptime***](apps/uptime.md) | *Tell how long the system has been running.. This is part of "am-utils" suite.*..[ *read more* ](apps/uptime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uptime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uptime) | -| | [***users***](apps/users.md) | *Print the user names of users currently logged in to the. This is part of "am-utils" suite.*..[ *read more* ](apps/users.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/users) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/users) | -| | [***uv***](apps/uv.md) | *An extremely fast Python package and project manager, written in Rust.*..[ *read more* ](apps/uv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uv) | -| | [***uwufetch***](apps/uwufetch.md) | *A meme system info tool for Linux, based on nyan/uwu trend.*..[ *read more* ](apps/uwufetch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/uwufetch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/uwufetch) | -| | [***vdir***](apps/vdir.md) | *List directory contents. This is part of "am-utils" suite.*..[ *read more* ](apps/vdir.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vdir) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vdir) | -| | [***vegeta***](apps/vegeta.md) | *HTTP load testing tool and library. It's over 9000!*..[ *read more* ](apps/vegeta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vegeta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vegeta) | -| | [***ventoy***](apps/ventoy.md) | *Tool to create bootable USB drive for ISO/WIM/IMG/VHDx/EFI files.*..[ *read more* ](apps/ventoy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ventoy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ventoy) | -| | [***vhs***](apps/vhs.md) | *Your CLI home video recorder.*..[ *read more* ](apps/vhs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vhs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vhs) | -| | [***via-desktop***](apps/via-desktop.md) | *VIA Desktop is an Electron application designed to provide an offline experience for VIA.*..[ *read more* ](apps/via-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/via-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/via-desktop) | -| | [***vicut***](apps/vicut.md) | *A Vim-based, scriptable, headless text editor for the command line.*..[ *read more* ](apps/vicut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vicut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vicut) | -| | [***viddy***](apps/viddy.md) | *A modern watch command line utility. Time machine and pager etc.*..[ *read more* ](apps/viddy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viddy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viddy) | -| | [***vimeo-dl***](apps/vimeo-dl.md) | *A cli tool to download private videos on vimeo. Written in golang.*..[ *read more* ](apps/vimeo-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vimeo-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vimeo-dl) | -| | [***viu***](apps/viu.md) | *Terminal image viewer with native support for iTerm and Kitty.*..[ *read more* ](apps/viu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viu) | -| | [***vt***](apps/vt.md) | *VirusTotal Command Line Interface.*..[ *read more* ](apps/vt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vt) | -| | [***vtm***](apps/vtm.md) | *Text-based desktop environment.*..[ *read more* ](apps/vtm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vtm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vtm) | -| | [***w2vgrep***](apps/w2vgrep.md) | *semantic-grep for words with similar meaning to the query.*..[ *read more* ](apps/w2vgrep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/w2vgrep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/w2vgrep) | -| | [***walk***](apps/walk.md) | *Terminal file manager.*..[ *read more* ](apps/walk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/walk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/walk) | -| | [***walker***](apps/walker.md) | *Multi-Purpose Launcher with a lot of features. Highly Customizable and fast.*..[ *read more* ](apps/walker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/walker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/walker) | -| | [***watch***](apps/watch.md) | *Watches for changes in a directory tree and reruns a command in an acme win or just on the terminal. This is part of "am-utils" suite.*..[ *read more* ](apps/watch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/watch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/watch) | -| | [***wc***](apps/wc.md) | *Print newline, word, and byte counts for each file. This is part of "am-utils" suite.*..[ *read more* ](apps/wc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wc) | -| | [***wethr***](apps/wethr.md) | *Command line weather tool.*..[ *read more* ](apps/wethr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wethr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wethr) | -| | [***wget***](apps/wget.md) | *Network utility to retrieve files from the web. This is part of "am-utils" suite.*..[ *read more* ](apps/wget.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wget) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wget) | -| | [***who***](apps/who.md) | *Show who is logged on. This is part of "am-utils" suite.*..[ *read more* ](apps/who.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/who) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/who) | -| | [***whoami***](apps/whoami.md) | *Print effective user name. This is part of "am-utils" suite.*..[ *read more* ](apps/whoami.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whoami) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whoami) | -| | [***wireframesketcher***](apps/wireframesketcher.md) | *A wireframing tool that helps designers, developers and product managers. A desktop app and a plug-in for any Eclipse IDE.*..[ *read more* ](apps/wireframesketcher.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wireframesketcher) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wireframesketcher) | -| | [***wkp***](apps/wkp.md) | *A CLI tool designed to fetch Wikipedia excerpts written in Rust.*..[ *read more* ](apps/wkp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wkp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wkp) | -| | [***wtfutil***](apps/wtfutil.md) | *The personal information dashboard for your terminal.*..[ *read more* ](apps/wtfutil.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wtfutil) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wtfutil) | -| | [***x-pixiv***](apps/x-pixiv.md) | *CLI, pixiv downloader.*..[ *read more* ](apps/x-pixiv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/x-pixiv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/x-pixiv) | -| | [***xargs***](apps/xargs.md) | *Build and execute command lines from standard input. This is part of "am-utils" suite.*..[ *read more* ](apps/xargs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xargs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xargs) | -| | [***xbooxp***](apps/xbooxp.md) | *A nifty software to upload homebrew apps into your Game Boy Advance (GBA) using an xboo cable.*..[ *read more* ](apps/xbooxp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xbooxp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xbooxp) | -| | [***xdg-ninja***](apps/xdg-ninja.md) | *Script that checks your $HOME for unwanted files and directories.*..[ *read more* ](apps/xdg-ninja.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xdg-ninja) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xdg-ninja) | -| | [***xz***](apps/xz.md) | *Library and command line tools for XZ and LZMA compressed files. This is part of "am-utils" suite.*..[ *read more* ](apps/xz.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xz) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xz) | -| | [***xzcat***](apps/xzcat.md) | *Xzcat, lzma, unlzma, lzcat - Compress or decompress .xz. This is part of "am-utils" suite.*..[ *read more* ](apps/xzcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xzcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xzcat) | -| | [***yaf***](apps/yaf.md) | *Yet another system CLI fetch that is minimal and customizable.*..[ *read more* ](apps/yaf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yaf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yaf) | -| | [***yazi***](apps/yazi.md) | *Blazing fast terminal file manager written in Rust.*..[ *read more* ](apps/yazi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yazi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yazi) | -| | [***yes***](apps/yes.md) | *Output a string repeatedly until killed. This is part of "am-utils" suite.*..[ *read more* ](apps/yes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yes) | -| | [***youtube-download***](apps/youtube-download.md) | *GUI and CLI for downloading YouTube video/audio.*..[ *read more* ](apps/youtube-download.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-download) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-download) | -| | [***youtube-tui***](apps/youtube-tui.md) | *An aesthetically pleasing YouTube TUI CLI written in Rust.*..[ *read more* ](apps/youtube-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-tui) | -| | [***yt-dlg***](apps/yt-dlg.md) | *A front-end GUI of the popular youtube-dl written in wxPython.*..[ *read more* ](apps/yt-dlg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yt-dlg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yt-dlg) | -| | [***yt-dlp***](apps/yt-dlp.md) | *A feature-rich command-line audio/video downloader.*..[ *read more* ](apps/yt-dlp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yt-dlp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yt-dlp) | -| | [***ytarchive***](apps/ytarchive.md) | *Garbage Youtube livestream downloader CLI.*..[ *read more* ](apps/ytarchive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytarchive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytarchive) | -| | [***ytermusic***](apps/ytermusic.md) | *An in terminal youtube music client with focus on privacy, simplicity and performance.*..[ *read more* ](apps/ytermusic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytermusic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytermusic) | -| | [***yup***](apps/yup.md) | *Arch Linux AUR Helper with ncurses functionality and better searching and sorting.*..[ *read more* ](apps/yup.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yup) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yup) | -| | [***zap***](apps/zap.md) | *Delightful command line AppImage package manager for appimage.github.io.*..[ *read more* ](apps/zap.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zap) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zap) | -| | [***zcat***](apps/zcat.md) | *Zcat - compress or expand files. This is part of "am-utils" suite.*..[ *read more* ](apps/zcat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zcat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zcat) | -| | [***zed***](apps/zed.md) | *High-performance, multiplayer code editor from the creators of Atom.*..[ *read more* ](apps/zed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zed) | -| | [***zellij***](apps/zellij.md) | *A terminal workspace with batteries included.*..[ *read more* ](apps/zellij.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zellij) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zellij) | -| | [***zfind***](apps/zfind.md) | *Search files, even inside tar/zip/7z/rar using a SQL-WHERE filter.*..[ *read more* ](apps/zfind.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zfind) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zfind) | -| | [***zfxtop***](apps/zfxtop.md) | *[WIP] fetch top for gen Z with X written by bubbletea enjoyer.*..[ *read more* ](apps/zfxtop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zfxtop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zfxtop) | -| | [***zk***](apps/zk.md) | *A plain text note-taking assistant*..[ *read more* ](apps/zk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zk) | -| | [***zotero***](apps/zotero.md) | *Collect, organize, cite, and share your research sources.*..[ *read more* ](apps/zotero.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zotero) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zotero) | -| | [***zoxide***](apps/zoxide.md) | *A smarter cd command. Supports all major shells.*..[ *read more* ](apps/zoxide.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zoxide) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zoxide) | -| | [***zramen***](apps/zramen.md) | *Manage zram swap space.*..[ *read more* ](apps/zramen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zramen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zramen) | -| | [***zsync***](apps/zsync.md) | *Partial/differential file download client over HTTP. This is part of "am-utils" suite.*..[ *read more* ](apps/zsync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zsync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zsync) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 4e36b6fca..000000000 --- a/renovate.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": [ - "config:base" - ], - "dependencyDashboard": false, - "packageRules": [ - { - "matchPackagePatterns": ["*"], - "groupName": "All dependencies" - } - ] -} \ No newline at end of file diff --git a/simple2json b/simple2json new file mode 100755 index 000000000..3b8d940ce --- /dev/null +++ b/simple2json @@ -0,0 +1,62 @@ +#!/bin/env python3 + +import os +import json +import sys + +apps_dir = "apps" + +def remove_whitespace_eol(s: str) -> str: + r = [] + for line in s.splitlines(): + r.append(line.rstrip()) + + return "\n".join(r) + +def github_actions() -> bool: + if "CI" in os.environ or os.environ.get("CI") is not None or "GITHUB_RUN_ID" in os.environ: + return True + + return False + +if not github_actions(): + print("Not running in Github Actions") + sys.exit(0) + +count = 0 +for f in os.listdir(apps_dir): + if f.startswith(".") or f.endswith("~"): + continue + with open(f"{apps_dir}/{f}", 'r') as file: + lines = file.readlines() + + print(f) + data = {"name": "", "description": "", "screenshots": [], "sites": [], "sources": [], "buttons": []} + desc_lines = [] + + data["name"] = lines[0].strip()[1:].strip() + + for line in lines[1:]: + ls = line.strip() + if ls.startswith("# SCREENSHOTS:"): + data["screenshots"] = ls[15:].strip().split() + elif ls.startswith("# SITES:"): + data["sites"] = ls[8:].strip().split() + elif ls.startswith("# SOURCES:"): + data["sources"] = ls[10:].strip().split() + elif ls.startswith("# BUTTONS:"): + data["buttons"] = ls[10:].strip().split() + else: + desc_lines.append(line) + + data["description"] = "\n".join(desc_lines).strip() + + text = json.dumps(data, separators=(',', ':')) + + with open(f"{apps_dir}/{f}.json", 'w+') as file: + file.write(text) + + os.remove(f"{apps_dir}/{f}") + count += 1 + +print("Processed", count, "apps") diff --git a/sitemap.xml b/sitemap.xml new file mode 100644 index 000000000..322068ce9 --- /dev/null +++ b/sitemap.xml @@ -0,0 +1,177 @@ + + + + https://portable-linux-apps.github.io/am-utils.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/android.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/app.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/appimages.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/apps.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/audio.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/comic.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/command-line.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/communication.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/disk.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/education.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/faq.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/file-manager.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/finance.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/game.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/gnome.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/graphic.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/index.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/internet.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/kde.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/office.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/password.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/steam.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/system-monitor.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/video.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/web-app.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/web-browser.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/wiki.html + 2026-07-20 + weekly + 0.7 + + + https://portable-linux-apps.github.io/wine.html + 2026-07-20 + weekly + 0.7 + + diff --git a/steam.md b/steam.md deleted file mode 100644 index 6b20fc14f..000000000 --- a/steam.md +++ /dev/null @@ -1,144 +0,0 @@ -# STEAM - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **16** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***archisteamfarm***](apps/archisteamfarm.md) | *C# application with primary purpose of farming Steam cards from multiple accounts simultaneously.*..[ *read more* ](apps/archisteamfarm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archisteamfarm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archisteamfarm) | -| | [***boilr***](apps/boilr.md) | *Synchronize games from other platforms into your Steam library.*..[ *read more* ](apps/boilr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/boilr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/boilr) | -| | [***droidcam***](apps/droidcam.md) | *A DroidCam AppImage for the Steam Deck/SteamOS 3.0.*..[ *read more* ](apps/droidcam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/droidcam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/droidcam) | -| | [***moondeck-buddy***](apps/moondeck-buddy.md) | *A server-side part of the MoonDeck plugin for the SteamDeck.*..[ *read more* ](apps/moondeck-buddy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moondeck-buddy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moondeck-buddy) | -| | [***protonup-qt***](apps/protonup-qt.md) | *Manage Proton-GE/Luxtorpeda for Steam/Wine-GE for Lutris.*..[ *read more* ](apps/protonup-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/protonup-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/protonup-qt) | -| | [***samira***](apps/samira.md) | *Steam achievement manager for Linux written with Tauri and Rust.*..[ *read more* ](apps/samira.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/samira) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/samira) | -| | [***samrewritten***](apps/samrewritten.md) | *Steam Achievement Manager For Linux. Rewritten in C++.*..[ *read more* ](apps/samrewritten.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/samrewritten) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/samrewritten) | -| | [***sc-controller***](apps/sc-controller.md) | *User-mode driver and GTK3 based GUI for Steam Controller.*..[ *read more* ](apps/sc-controller.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sc-controller) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sc-controller) | -| | [***sfp***](apps/sfp.md) | *This utility is designed to allow you to apply skins to the modern Steam client.*..[ *read more* ](apps/sfp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sfp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sfp) | -| | [***steam***](apps/steam.md) | *Unofficial. The ultimate destination for playing, discussing, and creating games.*..[ *read more* ](apps/steam.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steam) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steam) | -| | [***steam-rom-manager***](apps/steam-rom-manager.md) | *An app for managing ROMs in Steam.*..[ *read more* ](apps/steam-rom-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steam-rom-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steam-rom-manager) | -| | [***steam-tui***](apps/steam-tui.md) | *Rust TUI client for steamcmd.*..[ *read more* ](apps/steam-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steam-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steam-tui) | -| | [***steamcad***](apps/steamcad.md) | *2D CAD especially designed to draw steam locomotives.*..[ *read more* ](apps/steamcad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steamcad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steamcad) | -| | [***steamdepotdownloadergui***](apps/steamdepotdownloadergui.md) | *Easily download older versions of games from Steam.*..[ *read more* ](apps/steamdepotdownloadergui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/steamdepotdownloadergui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/steamdepotdownloadergui) | -| | [***vapour***](apps/vapour.md) | *An alternative open source Steam client.*..[ *read more* ](apps/vapour.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vapour) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vapour) | -| | [***wlx-overlay-s***](apps/wlx-overlay-s.md) | *Access your Wayland/X11 desktop from Monado/WiVRn/SteamVR.*..[ *read more* ](apps/wlx-overlay-s.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wlx-overlay-s) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wlx-overlay-s) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/system-monitor.md b/system-monitor.md deleted file mode 100644 index fab3979b1..000000000 --- a/system-monitor.md +++ /dev/null @@ -1,141 +0,0 @@ -# SYSTEM MONITOR - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **13** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***bottom***](apps/bottom.md) | *Yet another cross-platform graphical process/system monitor.*..[ *read more* ](apps/bottom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottom) | -| | [***btop***](apps/btop.md) | *A command line utility to monitor system resources, like Htop.*..[ *read more* ](apps/btop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/btop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/btop) | -| | [***conky***](apps/conky.md) | *Light-weight system monitor for X.*..[ *read more* ](apps/conky.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/conky) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/conky) | -| | [***corestats***](apps/corestats.md) | *A system resource viewer from the CoreApps family.*..[ *read more* ](apps/corestats.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/corestats) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/corestats) | -| | [***coretime***](apps/coretime.md) | *A time related task manager for CuboCore Application Suite.*..[ *read more* ](apps/coretime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/coretime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/coretime) | -| | [***gnome-system-monitor***](apps/gnome-system-monitor.md) | *System Monitor is a process viewer and system monitor with an attractive, easy-to-use interface for the GNOME desktop environment.*..[ *read more* ](apps/gnome-system-monitor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-system-monitor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-system-monitor) | -| | [***htop***](apps/htop.md) | *Unofficial, CLI utility to monitor system resources.*..[ *read more* ](apps/htop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/htop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/htop) | -| | [***lxtask***](apps/lxtask.md) | *Unofficial. A lightweight and desktop-independent task manager.*..[ *read more* ](apps/lxtask.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lxtask) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lxtask) | -| | [***mate-system-monitor***](apps/mate-system-monitor.md) | *Unofficial, Process viewer and system resource monitor, from MATE.*..[ *read more* ](apps/mate-system-monitor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mate-system-monitor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mate-system-monitor) | -| | [***system-monitoring-center***](apps/system-monitoring-center.md) | *Unofficial. Multi-featured system monitor.*..[ *read more* ](apps/system-monitoring-center.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/system-monitoring-center) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/system-monitoring-center) | -| | [***taskell***](apps/taskell.md) | *Command-line Kanban board/task manager with support for Trello boards and GitHub projects.*..[ *read more* ](apps/taskell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/taskell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/taskell) | -| | [***top***](apps/top.md) | *Display Linux processes. This is part of "am-utils" suite.*..[ *read more* ](apps/top.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/top) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/top) | -| | [***tux-manager***](apps/tux-manager.md) | *A Linux Task Manager alternative built with Qt6, inspired by the Windows Task Manager but designed to go further - providing deep visibility into system processes, performance metrics, users, and services.*..[ *read more* ](apps/tux-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tux-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tux-manager) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/video.md b/video.md deleted file mode 100644 index 63e5a0042..000000000 --- a/video.md +++ /dev/null @@ -1,290 +0,0 @@ -# VIDEO - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **162** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***acestream***](apps/acestream.md) | *Створення бінарника AppImage з AceStream Media.*..[ *read more* ](apps/acestream.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/acestream) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/acestream) | -| | [***adobe-flash-player***](apps/adobe-flash-player.md) | *Unofficial port. Adobe Flash is a mostly discontinued multimedia software platform used for production of animations, rich internet applications, desktop applications, mobile apps, mobile games, and embedded web browser video players. Over 67 billion devices use adobe flash player!*..[ *read more* ](apps/adobe-flash-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/adobe-flash-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/adobe-flash-player) | -| | [***akuse***](apps/akuse.md) | *Simple and easy to use anime streaming desktop app without ads.*..[ *read more* ](apps/akuse.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/akuse) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/akuse) | -| | [***alvr***](apps/alvr.md) | *Stream VR games from your PC to your headset via Wi-Fi.*..[ *read more* ](apps/alvr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alvr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alvr) | -| | [***animos***](apps/animos.md) | *Anime-streaming desktop application without any ads.*..[ *read more* ](apps/animos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/animos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/animos) | -| | [***arcdlp***](apps/arcdlp.md) | *Open-source desktop video downloader powered by yt-dlp and electron. Download videos and audio from YouTube, Vimeo, Twitter, and thousands of sites.*..[ *read more* ](apps/arcdlp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arcdlp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arcdlp) | -| | [***audiorelay***](apps/audiorelay.md) | *Stream audio between your devices. Turn your phone into a microphone or speakers for PC.*..[ *read more* ](apps/audiorelay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/audiorelay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/audiorelay) | -| | [***avidemux***](apps/avidemux.md) | *Multiplatform Video Editor.*..[ *read more* ](apps/avidemux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avidemux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avidemux) | -| | [***avidemux-qt***](apps/avidemux-qt.md) | *Unofficial, my custom Avidemux Video Editor built to use system themes.*..[ *read more* ](apps/avidemux-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/avidemux-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/avidemux-qt) | -| | [***bili-liveluckdraw***](apps/bili-liveluckdraw.md) | *A Bilibili live stream lottery tool that draws winners based on keywords retrieved from the chat comments. It is built using Electron + React + Vite.*..[ *read more* ](apps/bili-liveluckdraw.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bili-liveluckdraw) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bili-liveluckdraw) | -| | [***bilibilivideodownload***](apps/bilibilivideodownload.md) | *Bilibili video downloader.*..[ *read more* ](apps/bilibilivideodownload.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bilibilivideodownload) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bilibilivideodownload) | -| | [***blob-dl***](apps/blob-dl.md) | *Blob-dl is a yt-dlp CLI interface used to download video and audio files from YouTube.*..[ *read more* ](apps/blob-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blob-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blob-dl) | -| | [***blockstream-green***](apps/blockstream-green.md) | *Bitcoin wallet compatible with Blockstream Jade.*..[ *read more* ](apps/blockstream-green.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blockstream-green) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blockstream-green) | -| | [***cbird***](apps/cbird.md) | *Command-line program for Content-Based Image Retrieval of images and videos. Includes tools for general search and de-duplication.*..[ *read more* ](apps/cbird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cbird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cbird) | -| | [***cinelerra***](apps/cinelerra.md) | *CINELERRA-GG is a software program NLE, Non-Linear Editor, that provides a way to edit, record, and play audio or video media. It can also be used to transcode media from one format to another or to correct and retouch photos.*..[ *read more* ](apps/cinelerra.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cinelerra) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cinelerra) | -| | [***clapper***](apps/clapper.md) | *Unofficial. A modern media player designed for simplicity and ease of use.*..[ *read more* ](apps/clapper.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clapper) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clapper) | -| | [***clipgrab***](apps/clipgrab.md) | *Download and Convert Online Videos.*..[ *read more* ](apps/clipgrab.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/clipgrab) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/clipgrab) | -| | [***compresso***](apps/compresso.md) | *Convert any video into a tiny size.*..[ *read more* ](apps/compresso.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/compresso) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/compresso) | -| | [***cryptocam-companion***](apps/cryptocam-companion.md) | *GUI to decrypt videos taken by Cryptocam.*..[ *read more* ](apps/cryptocam-companion.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cryptocam-companion) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cryptocam-companion) | -| | [***dinox***](apps/dinox.md) | *DinoX - Modern XMPP Chat Client with Video Calls, Voice Messages & OMEMO Encryption.*..[ *read more* ](apps/dinox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dinox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dinox) | -| | [***downline***](apps/downline.md) | *A cross-platform video and audio downloader.*..[ *read more* ](apps/downline.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/downline) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/downline) | -| | [***dr-robotniks-ring-racers***](apps/dr-robotniks-ring-racers.md) | *Unofficial, kart racing video game originally based on SRB2Kart.*..[ *read more* ](apps/dr-robotniks-ring-racers.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dr-robotniks-ring-racers) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dr-robotniks-ring-racers) | -| | [***dwyco-phoo***](apps/dwyco-phoo.md) | *Dwyco Phoo Chat and Video Calling.*..[ *read more* ](apps/dwyco-phoo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dwyco-phoo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dwyco-phoo) | -| | [***exifcleaner***](apps/exifcleaner.md) | *Clean exif metadata from images, videos, and PDFs.*..[ *read more* ](apps/exifcleaner.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exifcleaner) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exifcleaner) | -| | [***eyestalker***](apps/eyestalker.md) | *Video-based eye tracking using recursive estimation of pupil.*..[ *read more* ](apps/eyestalker.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eyestalker) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eyestalker) | -| | [***ffmpeg***](apps/ffmpeg.md) | *Unofficial, A complete, cross-platform solution to record, convert and stream audio and video.*..[ *read more* ](apps/ffmpeg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ffmpeg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ffmpeg) | -| | [***filmulator-gui***](apps/filmulator-gui.md) | *Simplified raw editing with the power of film, graphics.*..[ *read more* ](apps/filmulator-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filmulator-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filmulator-gui) | -| | [***geforcenow-electron***](apps/geforcenow-electron.md) | *Desktop client for Nvidia GeForce NOW game streaming.*..[ *read more* ](apps/geforcenow-electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/geforcenow-electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/geforcenow-electron) | -| | [***gifcurry***](apps/gifcurry.md) | *The open-source, Haskell-built video editor for GIF makers.*..[ *read more* ](apps/gifcurry.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gifcurry) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gifcurry) | -| | [***goanime***](apps/goanime.md) | *A TUI tool to browse, stream, and download anime in English and Portuguese.*..[ *read more* ](apps/goanime.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/goanime) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/goanime) | -| | [***greenlight***](apps/greenlight.md) | *Client for xCloud and Xbox home streaming made in Typescript.*..[ *read more* ](apps/greenlight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/greenlight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/greenlight) | -| | [***gridplayer***](apps/gridplayer.md) | *Play videos side-by-side.*..[ *read more* ](apps/gridplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gridplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gridplayer) | -| | [***gyroflow***](apps/gyroflow.md) | *Video stabilization using gyroscope data.*..[ *read more* ](apps/gyroflow.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gyroflow) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gyroflow) | -| | [***handbrake***](apps/handbrake.md) | *Unofficial, An open-source multiplatform video transcoder.*..[ *read more* ](apps/handbrake.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/handbrake) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/handbrake) | -| | [***haruna***](apps/haruna.md) | *Unofficial, an open source media player built with Qt/QML and libmpv.*..[ *read more* ](apps/haruna.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/haruna) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/haruna) | -| | [***hypnotix***](apps/hypnotix.md) | *Unofficial. An IPTV streaming application with support for live TV.*..[ *read more* ](apps/hypnotix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/hypnotix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/hypnotix) | -| | [***identity***](apps/identity.md) | *Unofficial. Compare images and videos with one another to check for differences.*..[ *read more* ](apps/identity.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/identity) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/identity) | -| | [***implay***](apps/implay.md) | *A Cross-Platform Desktop Media Player, built on top of mpv and ImGui.*..[ *read more* ](apps/implay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/implay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/implay) | -| | [***iptvnator***](apps/iptvnator.md) | *IPTV player application.*..[ *read more* ](apps/iptvnator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iptvnator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iptvnator) | -| | [***jdappstreamedit***](apps/jdappstreamedit.md) | *A graphical Program to create and edit AppStream files.*..[ *read more* ](apps/jdappstreamedit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jdappstreamedit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jdappstreamedit) | -| | [***jellyfin***](apps/jellyfin.md) | *Media player. Stream to any device from your own server.*..[ *read more* ](apps/jellyfin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/jellyfin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/jellyfin) | -| | [***kaffeine***](apps/kaffeine.md) | *Unofficial, Media player with support for digital television (DVB-C/S/S2/T, ATSC, CI/CAM).*..[ *read more* ](apps/kaffeine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kaffeine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kaffeine) | -| | [***kdenlive***](apps/kdenlive.md) | *A powerful Video Editor provided by KDE.*..[ *read more* ](apps/kdenlive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdenlive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdenlive) | -| | [***kdenlive-daily***](apps/kdenlive-daily.md) | *A powerful Video Editor provided by KDE (daily builds).*..[ *read more* ](apps/kdenlive-daily.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdenlive-daily) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdenlive-daily) | -| | [***kdenlive-enhanced***](apps/kdenlive-enhanced.md) | *Unofficial AppImage of Kdenlive Video Editor which is able to work on any linux distro.*..[ *read more* ](apps/kdenlive-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kdenlive-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kdenlive-enhanced) | -| | [***leonflix***](apps/leonflix.md) | *Multi-platform desktop application for watching movies & TV shows.*..[ *read more* ](apps/leonflix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/leonflix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/leonflix) | -| | [***losslesscut***](apps/losslesscut.md) | *The swiss army knife of lossless video/audio editing.*..[ *read more* ](apps/losslesscut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/losslesscut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/losslesscut) | -| | [***ltx-desktop***](apps/ltx-desktop.md) | *An open-source desktop app for generating videos with LTX models.*..[ *read more* ](apps/ltx-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ltx-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ltx-desktop) | -| | [***lutris***](apps/lutris.md) | *Unofficial. Install and play video games from all eras and from most gaming systems, by leveraging and combining existing emulators, WINE included.*..[ *read more* ](apps/lutris.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lutris) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lutris) | -| | [***matm***](apps/matm.md) | *Watch anime, movies, tv shows and read manga from comfort of the cli.*..[ *read more* ](apps/matm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/matm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/matm) | -| | [***media-downloader***](apps/media-downloader.md) | *Cross-platform audio/video downloader.*..[ *read more* ](apps/media-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/media-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/media-downloader) | -| | [***mediachips***](apps/mediachips.md) | *Manage your videos, add any metadata to them and play them.*..[ *read more* ](apps/mediachips.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mediachips) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mediachips) | -| | [***memento***](apps/memento.md) | *A video player for studying Japanese.*..[ *read more* ](apps/memento.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/memento) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/memento) | -| | [***migu***](apps/migu.md) | *Stream anime torrents, real-time with no waiting for downloads.*..[ *read more* ](apps/migu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/migu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/migu) | -| | [***miniter***](apps/miniter.md) | *Rust based non-linear video editor for basic tasks.*..[ *read more* ](apps/miniter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/miniter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/miniter) | -| | [***miteiru***](apps/miteiru.md) | *An open source Electron video player to learn Japanese.*..[ *read more* ](apps/miteiru.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/miteiru) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/miteiru) | -| | [***mlv-app***](apps/mlv-app.md) | *All in one MLV processing app, audio/video.*..[ *read more* ](apps/mlv-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mlv-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mlv-app) | -| | [***mood-fi***](apps/mood-fi.md) | *App with 30+ lo-fi live streams between 8 different lo-fi types.*..[ *read more* ](apps/mood-fi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mood-fi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mood-fi) | -| | [***moonlight***](apps/moonlight.md) | *Stream games from your NVIDIA GameStream-enabled PC.*..[ *read more* ](apps/moonlight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moonlight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moonlight) | -| | [***moonplayer***](apps/moonplayer.md) | *AIO video player to play Youtube, Bilibili... and local videos.*..[ *read more* ](apps/moonplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moonplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moonplayer) | -| | [***moose***](apps/moose.md) | *An application to stream, cast and download torrents.*..[ *read more* ](apps/moose.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moose) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moose) | -| | [***movie-monad***](apps/movie-monad.md) | *Free and simple to use video player made with Haskell.*..[ *read more* ](apps/movie-monad.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/movie-monad) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/movie-monad) | -| | [***mp4grep***](apps/mp4grep.md) | *CLI for transcribing and searching audio/video files.*..[ *read more* ](apps/mp4grep.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mp4grep) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mp4grep) | -| | [***mpc-qt***](apps/mpc-qt.md) | *Media Player Classic Qute Theater.*..[ *read more* ](apps/mpc-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mpc-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mpc-qt) | -| | [***mpv***](apps/mpv.md) | *Unofficial, A free, open source, and cross-platform media player, Multiple-choices.*..[ *read more* ](apps/mpv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mpv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mpv) | -| | [***muffon***](apps/muffon.md) | *Music streaming browser,retrieves audio, video and metadata.*..[ *read more* ](apps/muffon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/muffon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/muffon) | -| | [***nazuna***](apps/nazuna.md) | *Download Twitter videos using your terminal!*..[ *read more* ](apps/nazuna.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nazuna) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nazuna) | -| | [***negpy***](apps/negpy.md) | *Tool for processing film negatives.*..[ *read more* ](apps/negpy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/negpy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/negpy) | -| | [***noi***](apps/noi.md) | *🚀 an AI-enhanced, customizable browser designed to streamline your digital experience.*..[ *read more* ](apps/noi.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/noi) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/noi) | -| | [***nuclear***](apps/nuclear.md) | *Streaming music player that finds free music for you.*..[ *read more* ](apps/nuclear.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nuclear) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nuclear) | -| | [***obs-studio***](apps/obs-studio.md) | *Unofficial. Software for video recording and live streaming.*..[ *read more* ](apps/obs-studio.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/obs-studio) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/obs-studio) | -| | [***ocvvid2fulldome***](apps/ocvvid2fulldome.md) | *Take flat videos, distort them to fit fulldome.*..[ *read more* ](apps/ocvvid2fulldome.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ocvvid2fulldome) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ocvvid2fulldome) | -| | [***ocvwarp***](apps/ocvwarp.md) | *Warping images and videos for planetarium fulldome display.*..[ *read more* ](apps/ocvwarp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ocvwarp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ocvwarp) | -| | [***olive***](apps/olive.md) | *Free open-source non-linear video editor, nightly build.*..[ *read more* ](apps/olive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/olive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/olive) | -| | [***olive-legacy***](apps/olive-legacy.md) | *Free non-linear video editor, version 0.1.*..[ *read more* ](apps/olive-legacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/olive-legacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/olive-legacy) | -| | [***onionmediax***](apps/onionmediax.md) | *OnionMedia X. Convert and download videos and music quickly and easily.*..[ *read more* ](apps/onionmediax.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onionmediax) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onionmediax) | -| | [***open-video-downloader***](apps/open-video-downloader.md) | *A cross-platform GUI for youtube-dl made in Electron.*..[ *read more* ](apps/open-video-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-video-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-video-downloader) | -| | [***openshot***](apps/openshot.md) | *A powerful Video Editor.*..[ *read more* ](apps/openshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openshot) | -| | [***openstream-music***](apps/openstream-music.md) | *The OpenStream Music source.*..[ *read more* ](apps/openstream-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/openstream-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/openstream-music) | -| | [***ovideo***](apps/ovideo.md) | *Video Editor.*..[ *read more* ](apps/ovideo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ovideo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ovideo) | -| | [***parabolic***](apps/parabolic.md) | *Unofficial, Download web video and audio.*..[ *read more* ](apps/parabolic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parabolic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parabolic) | -| | [***parsec-linux***](apps/parsec-linux.md) | *Parsec game streaming client.*..[ *read more* ](apps/parsec-linux.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parsec-linux) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parsec-linux) | -| | [***phreshplayer***](apps/phreshplayer.md) | *Electron based media player app.*..[ *read more* ](apps/phreshplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/phreshplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/phreshplayer) | -| | [***playerctl***](apps/playerctl.md) | *Unofficial, MPRIS media player command-line controller.*..[ *read more* ](apps/playerctl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playerctl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playerctl) | -| | [***pstube***](apps/pstube.md) | *Watch and download videos without ads.*..[ *read more* ](apps/pstube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pstube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pstube) | -| | [***qimgv***](apps/qimgv.md) | *Unofficial, Image viewer. Fast, easy to use. Optional video support.*..[ *read more* ](apps/qimgv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qimgv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qimgv) | -| | [***qmmp***](apps/qmmp.md) | *Unofficial, Qt-based multimedia player.*..[ *read more* ](apps/qmmp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmmp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmmp) | -| | [***qmplay2***](apps/qmplay2.md) | *Video and audio player whit support of most formats and codecs.*..[ *read more* ](apps/qmplay2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmplay2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmplay2) | -| | [***qmplay2-enhanced***](apps/qmplay2-enhanced.md) | *Unofficial, a video and audio player which can play most formats and codecs.*..[ *read more* ](apps/qmplay2-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qmplay2-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qmplay2-enhanced) | -| | [***qprompt***](apps/qprompt.md) | *Personal teleprompter software for all video creators.*..[ *read more* ](apps/qprompt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qprompt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qprompt) | -| | [***quark-player***](apps/quark-player.md) | *An Electron based Web Video Services Player.*..[ *read more* ](apps/quark-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quark-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quark-player) | -| | [***real-video-enhancer***](apps/real-video-enhancer.md) | *Interpolate and Upscale easily.*..[ *read more* ](apps/real-video-enhancer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/real-video-enhancer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/real-video-enhancer) | -| | [***rebaslight***](apps/rebaslight.md) | *An easy to use special effects video editor.*..[ *read more* ](apps/rebaslight.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rebaslight) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rebaslight) | -| | [***rendertune***](apps/rendertune.md) | *Electron app that uses ffmpeg to combine audio.+image files into video files.*..[ *read more* ](apps/rendertune.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/rendertune) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/rendertune) | -| | [***retroarch***](apps/retroarch.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch) | -| | [***retroarch-nightly***](apps/retroarch-nightly.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch-nightly) | -| | [***retroarch-qt***](apps/retroarch-qt.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch-qt) | -| | [***retroarch-qt-nightly***](apps/retroarch-qt-nightly.md) | *RetroArch is a free and open-source, cross-platform frontend for emulators, game engines, video games, media players and other applications.*..[ *read more* ](apps/retroarch-qt-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retroarch-qt-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retroarch-qt-nightly) | -| | [***retrovibed***](apps/retrovibed.md) | *Personal Digital Archive and Media Player with at cost cloud storage backend.*..[ *read more* ](apps/retrovibed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/retrovibed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/retrovibed) | -| | [***root***](apps/root.md) | *Voice, video, and chat plus powerful apps that help your community organize, grow, and thrive. An alternative to Discord.*..[ *read more* ](apps/root.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/root) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/root) | -| | [***screenarc***](apps/screenarc.md) | *ScreenArc – Cross-platform screen recorder & editor with automatic cinematic zooms, mouse tracking, and effortless video creation.*..[ *read more* ](apps/screenarc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/screenarc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/screenarc) | -| | [***sed***](apps/sed.md) | *GNU stream editor for filtering and transforming text. This is part of "am-utils" suite.*..[ *read more* ](apps/sed.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sed) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sed) | -| | [***ser-player***](apps/ser-player.md) | *Video player for SER files used for astronomy-imaging.*..[ *read more* ](apps/ser-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ser-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ser-player) | -| | [***sf-tube***](apps/sf-tube.md) | *Watch and download videos without ads.*..[ *read more* ](apps/sf-tube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sf-tube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sf-tube) | -| | [***shotcut***](apps/shotcut.md) | *A powerful Video Editor.*..[ *read more* ](apps/shotcut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shotcut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shotcut) | -| | [***shutter-encoder***](apps/shutter-encoder.md) | *Professional converter & compression tool designed by video editors.*..[ *read more* ](apps/shutter-encoder.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/shutter-encoder) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/shutter-encoder) | -| | [***sinon***](apps/sinon.md) | *A handy video tool.*..[ *read more* ](apps/sinon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sinon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sinon) | -| | [***skype***](apps/skype.md) | *Unofficial. VoIP-based videoconferencing, voice calls and instant messaging app.*..[ *read more* ](apps/skype.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/skype) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/skype) | -| | [***smplayer***](apps/smplayer.md) | *Media Player with built-in codecs for all audio and video formats.*..[ *read more* ](apps/smplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/smplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/smplayer) | -| | [***spivak***](apps/spivak.md) | *Karaoke player based on GStreamer and Qt5.*..[ *read more* ](apps/spivak.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spivak) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spivak) | -| | [***spotify***](apps/spotify.md) | *Unofficial. A proprietary music streaming service.*..[ *read more* ](apps/spotify.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify) | -| | [***spotify-candidate***](apps/spotify-candidate.md) | *Unofficial. A proprietary music streaming service.*..[ *read more* ](apps/spotify-candidate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-candidate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-candidate) | -| | [***spotify-edge***](apps/spotify-edge.md) | *Unofficial. A proprietary music streaming service.*..[ *read more* ](apps/spotify-edge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spotify-edge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spotify-edge) | -| | [***streamdock***](apps/streamdock.md) | *Streaming service viewer.*..[ *read more* ](apps/streamdock.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/streamdock) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/streamdock) | -| | [***streamlink***](apps/streamlink.md) | *Command-line which pipes video streams from various services.*..[ *read more* ](apps/streamlink.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/streamlink) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/streamlink) | -| | [***streamlink-twitch-gui***](apps/streamlink-twitch-gui.md) | *A multi platform Twitch.tv browser for Streamlink.*..[ *read more* ](apps/streamlink-twitch-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/streamlink-twitch-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/streamlink-twitch-gui) | -| | [***streamon***](apps/streamon.md) | *Create streaming links to instagram live.*..[ *read more* ](apps/streamon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/streamon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/streamon) | -| | [***subsurface***](apps/subsurface.md) | *Official upstream of the Subsurface divelog program.*..[ *read more* ](apps/subsurface.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/subsurface) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/subsurface) | -| | [***subtitld***](apps/subtitld.md) | *Transform your video content creation with Subtitld, the open source software that streamlines your video content creation process.*..[ *read more* ](apps/subtitld.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/subtitld) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/subtitld) | -| | [***subtitle-composer***](apps/subtitle-composer.md) | *KF5/Qt Video Subtitle Editor for KDE.*..[ *read more* ](apps/subtitle-composer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/subtitle-composer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/subtitle-composer) | -| | [***sunshine***](apps/sunshine.md) | *Sunshine is a Gamestream host for Moonlight.*..[ *read more* ](apps/sunshine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sunshine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sunshine) | -| | [***sview***](apps/sview.md) | *3D Stereoscopic media player for videos and images.*..[ *read more* ](apps/sview.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sview) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sview) | -| | [***swell***](apps/swell.md) | *Testing for streaming APIs, right at your desktop.*..[ *read more* ](apps/swell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/swell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/swell) | -| | [***syncplay***](apps/syncplay.md) | *Synchronize video playback over network.*..[ *read more* ](apps/syncplay.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/syncplay) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/syncplay) | -| | [***tbc-video-export***](apps/tbc-video-export.md) | *Tool for exporting S-Video and CVBS-type TBCs to video files.*..[ *read more* ](apps/tbc-video-export.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tbc-video-export) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tbc-video-export) | -| | [***terabox***](apps/terabox.md) | *Terabox is the simplest way to send your files around the world. Back up and Share photos, videos, docs, and other files of any size to cloud storage.*..[ *read more* ](apps/terabox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/terabox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/terabox) | -| | [***thoptv***](apps/thoptv.md) | *Enjoy Ultimate Movies, sports Matches, IPL and Latest Shows.*..[ *read more* ](apps/thoptv.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thoptv) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thoptv) | -| | [***tomatox***](apps/tomatox.md) | *An online free VIP video analysis player, in chinese.*..[ *read more* ](apps/tomatox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tomatox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tomatox) | -| | [***toru***](apps/toru.md) | *Bittorrent streaming CLI tool. Stream anime torrents real-time.*..[ *read more* ](apps/toru.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/toru) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/toru) | -| | [***ultragrid***](apps/ultragrid.md) | *UltraGrid low-latency audio/video network transmission system.*..[ *read more* ](apps/ultragrid.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ultragrid) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ultragrid) | -| | [***unyo***](apps/unyo.md) | *Anime streaming and Manga reader desktop app without ads.*..[ *read more* ](apps/unyo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/unyo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/unyo) | -| | [***varia***](apps/varia.md) | *Unofficial. Aria2-based advanced download manager with support for downloading files, torrents, video and audio + support for Chromium and Firefox extension.*..[ *read more* ](apps/varia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/varia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/varia) | -| | [***vgmtrans***](apps/vgmtrans.md) | *A tool to convert proprietary, sequenced videogame music.*..[ *read more* ](apps/vgmtrans.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vgmtrans) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vgmtrans) | -| | [***vhs***](apps/vhs.md) | *Your CLI home video recorder.*..[ *read more* ](apps/vhs.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vhs) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vhs) | -| | [***vidbee***](apps/vidbee.md) | *Download videos from almost any website worldwide.*..[ *read more* ](apps/vidbee.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vidbee) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vidbee) | -| | [***vidcutter***](apps/vidcutter.md) | *Simple and fast video cutter and joiner.*..[ *read more* ](apps/vidcutter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vidcutter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vidcutter) | -| | [***video-hub***](apps/video-hub.md) | *A fastest way to browse and search for videos on your computer.*..[ *read more* ](apps/video-hub.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/video-hub) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/video-hub) | -| | [***video-trimmer***](apps/video-trimmer.md) | *Unofficial. Simple video trimming, with option to trim precisely or to trim without loosing video quality.*..[ *read more* ](apps/video-trimmer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/video-trimmer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/video-trimmer) | -| | [***videomass***](apps/videomass.md) | *Free, open source and cross-platform GUI for FFmpeg.*..[ *read more* ](apps/videomass.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/videomass) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/videomass) | -| | [***vimeo-dl***](apps/vimeo-dl.md) | *A cli tool to download private videos on vimeo. Written in golang.*..[ *read more* ](apps/vimeo-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vimeo-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vimeo-dl) | -| | [***vitomu***](apps/vitomu.md) | *Easy to use video to audio converter.*..[ *read more* ](apps/vitomu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vitomu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vitomu) | -| | [***vkdt***](apps/vkdt.md) | *Raw photography workflow that sucks less, enabling real-time support for animations, timelapses, raw video, and heavy lifting algorithms like image alignment and better highlight inpainting.*..[ *read more* ](apps/vkdt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vkdt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vkdt) | -| | [***vlc***](apps/vlc.md) | *Unofficial. Free and Open Source Video & Media player for Audio, streaming and more.*..[ *read more* ](apps/vlc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vlc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vlc) | -| | [***vlc-git***](apps/vlc-git.md) | *Unofficial. Free and Open Source Video & Media player, GIT version.*..[ *read more* ](apps/vlc-git.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vlc-git) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vlc-git) | -| | [***vrew***](apps/vrew.md) | *Your first video editor, your easiest choice.*..[ *read more* ](apps/vrew.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vrew) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vrew) | -| | [***watched***](apps/watched.md) | *A media player and a browser for Excellent entertainment.*..[ *read more* ](apps/watched.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/watched) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/watched) | -| | [***watchit***](apps/watchit.md) | *Open movies everywhere.*..[ *read more* ](apps/watchit.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/watchit) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/watchit) | -| | [***xgetter***](apps/xgetter.md) | *Download video on Youtube, Facebook, X(Twitter), Instagram, Tiktok, Bilibili, Douyin and more.*..[ *read more* ](apps/xgetter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xgetter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xgetter) | -| | [***yangdownloader***](apps/yangdownloader.md) | *Downloads best-quality audio and video from YouTube.*..[ *read more* ](apps/yangdownloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yangdownloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yangdownloader) | -| | [***yet-another-open-file-converter***](apps/yet-another-open-file-converter.md) | *Simple Open Source Video and Image Conventer.*..[ *read more* ](apps/yet-another-open-file-converter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yet-another-open-file-converter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yet-another-open-file-converter) | -| | [***youtube-download***](apps/youtube-download.md) | *GUI and CLI for downloading YouTube video/audio.*..[ *read more* ](apps/youtube-download.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-download) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-download) | -| | [***youtube-downloader***](apps/youtube-downloader.md) | *Download video/audio from youtube (and instagram) videos.*..[ *read more* ](apps/youtube-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-downloader) | -| | [***youtubeanddownloader***](apps/youtubeanddownloader.md) | *An app to use youtube and download videos as mp3s or mp4s.*..[ *read more* ](apps/youtubeanddownloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtubeanddownloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtubeanddownloader) | -| | [***yt-dlandcut***](apps/yt-dlandcut.md) | *Download and cut Youtube videos by providing url and time range.*..[ *read more* ](apps/yt-dlandcut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yt-dlandcut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yt-dlandcut) | -| | [***yt-dlp***](apps/yt-dlp.md) | *A feature-rich command-line audio/video downloader.*..[ *read more* ](apps/yt-dlp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yt-dlp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yt-dlp) | -| | [***ytarchive***](apps/ytarchive.md) | *Garbage Youtube livestream downloader CLI.*..[ *read more* ](apps/ytarchive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytarchive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytarchive) | -| | [***ytdownloader***](apps/ytdownloader.md) | *App for downloading Videos and Audios from hundreds of sites.*..[ *read more* ](apps/ytdownloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytdownloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytdownloader) | -| | [***yts-streaming***](apps/yts-streaming.md) | *Stream or play yts and torrent movies.*..[ *read more* ](apps/yts-streaming.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yts-streaming) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yts-streaming) | -| | [***ytsage***](apps/ytsage.md) | *Modern YouTube downloader with a clean PySide6 interface. Download videos in any quality, extract audio, fetch subtitles, sponsorBlock, and view video metadata. Built with yt-dlp for reliable performance.*..[ *read more* ](apps/ytsage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytsage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytsage) | -| | [***zoom***](apps/zoom.md) | *Unofficial. Video Conferencing and Web Conferencing Service.*..[ *read more* ](apps/zoom.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zoom) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zoom) | -| | [***zy-player***](apps/zy-player.md) | *Video resource player, simple, ad-free and high-value.*..[ *read more* ](apps/zy-player.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zy-player) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zy-player) | -| | [***zyfun***](apps/zyfun.md) | *ZyPlayer. Cross-platform desktop video player, free and visually appealing.*..[ *read more* ](apps/zyfun.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zyfun) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zyfun) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/virtual-machine.md b/virtual-machine.md deleted file mode 100644 index 46950e218..000000000 --- a/virtual-machine.md +++ /dev/null @@ -1,138 +0,0 @@ -# VIRTUAL MACHINE - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **10** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***aranym***](apps/aranym.md) | *Virtual Machine for Atari 32-bit applications.*..[ *read more* ](apps/aranym.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aranym) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aranym) | -| | [***gnome-boxes***](apps/gnome-boxes.md) | *Unofficial, A simple GNOME application to access virtual machines.*..[ *read more* ](apps/gnome-boxes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gnome-boxes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gnome-boxes) | -| | [***pcsx2***](apps/pcsx2.md) | *PCSX2 is a free and open-source PlayStation 2 (PS2) emulator, using a combination of MIPS CPU Interpreters, Recompilers and a Virtual Machine which manages hardware states and PS2 system memory. This allows you to play PS2 games on your PC, with many additional features and benefits.*..[ *read more* ](apps/pcsx2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcsx2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcsx2) | -| | [***pcsx2-nightly***](apps/pcsx2-nightly.md) | *PCSX2 is a free and open-source PlayStation 2 (PS2) emulator, using a combination of MIPS CPU Interpreters, Recompilers and a Virtual Machine which manages hardware states and PS2 system memory. This allows you to play PS2 games on your PC, with many additional features and benefits. This is the nightly version.*..[ *read more* ](apps/pcsx2-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/pcsx2-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/pcsx2-nightly) | -| | [***qemu***](apps/qemu.md) | *Unofficial, a generic and open source machine & userspace emulator and virtualizer, to run a virtual machines.*..[ *read more* ](apps/qemu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qemu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qemu) | -| | [***qemu-ppc***](apps/qemu-ppc.md) | *Run PowerPC operating systems on 64-bit Intel Linux hosts.*..[ *read more* ](apps/qemu-ppc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/qemu-ppc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/qemu-ppc) | -| | [***quickgui***](apps/quickgui.md) | *An elegant virtual machine manager for the desktop.*..[ *read more* ](apps/quickgui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/quickgui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/quickgui) | -| | [***scummvm***](apps/scummvm.md) | *Unofficial, A 'virtual machine' for several classic graphical point-and-click adventure games*..[ *read more* ](apps/scummvm.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/scummvm) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/scummvm) | -| | [***virt-manager***](apps/virt-manager.md) | *Unofficial AppImage of virt-manager, interface for managing virtual machines.*..[ *read more* ](apps/virt-manager.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/virt-manager) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/virt-manager) | -| | [***virtualbox***](apps/virtualbox.md) | *Powerful x86 virtualization for enterprise as well as home use.*..[ *read more* ](apps/virtualbox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/virtualbox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/virtualbox) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/wallet.md b/wallet.md deleted file mode 100644 index 81444ccf4..000000000 --- a/wallet.md +++ /dev/null @@ -1,185 +0,0 @@ -# WALLET - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **57** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***alephium-wallet***](apps/alephium-wallet.md) | *The official Alephium wallet for desktop.*..[ *read more* ](apps/alephium-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/alephium-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/alephium-wallet) | -| | [***altitude***](apps/altitude.md) | *The Altitude wallet by Linda Project Inc.*..[ *read more* ](apps/altitude.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/altitude) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/altitude) | -| | [***anchor***](apps/anchor.md) | *An EOSIO Light Wallet with simple and advanced tools.*..[ *read more* ](apps/anchor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/anchor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/anchor) | -| | [***aphelion-wallet***](apps/aphelion-wallet.md) | *Aphelion desktop wallet application built with Electron.*..[ *read more* ](apps/aphelion-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/aphelion-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/aphelion-wallet) | -| | [***ark.desktop.wallet***](apps/ark.desktop.wallet.md) | *Ark Ecosystem Desktop Wallet.*..[ *read more* ](apps/ark.desktop.wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ark.desktop.wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ark.desktop.wallet) | -| | [***asgardex***](apps/asgardex.md) | *Thorchain wallet desktop app.*..[ *read more* ](apps/asgardex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/asgardex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/asgardex) | -| | [***atomicwallet***](apps/atomicwallet.md) | *Atomic vue-electron.*..[ *read more* ](apps/atomicwallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/atomicwallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/atomicwallet) | -| | [***axe-electrum***](apps/axe-electrum.md) | *Axe Electrum Wallet.*..[ *read more* ](apps/axe-electrum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/axe-electrum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/axe-electrum) | -| | [***bitbox-wallet***](apps/bitbox-wallet.md) | *Cryptocurrency hardware wallet desktop app.*..[ *read more* ](apps/bitbox-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bitbox-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bitbox-wallet) | -| | [***bitshares***](apps/bitshares.md) | *Advanced wallet interface for the BitShares financial blockchain.*..[ *read more* ](apps/bitshares.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bitshares) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bitshares) | -| | [***blockstream-green***](apps/blockstream-green.md) | *Bitcoin wallet compatible with Blockstream Jade.*..[ *read more* ](apps/blockstream-green.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blockstream-green) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blockstream-green) | -| | [***cake-wallet***](apps/cake-wallet.md) | *Easily and safely store, send, receive, and exchange your cryptocurrency.*..[ *read more* ](apps/cake-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cake-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cake-wallet) | -| | [***cashonize***](apps/cashonize.md) | *A cross-platform Bitcoin Cash Wallet.*..[ *read more* ](apps/cashonize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cashonize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cashonize) | -| | [***chain-desktop-wallet***](apps/chain-desktop-wallet.md) | *Crypto.com DeFi Desktop Wallet.*..[ *read more* ](apps/chain-desktop-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chain-desktop-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chain-desktop-wallet) | -| | [***concordium-desktop-wallet***](apps/concordium-desktop-wallet.md) | *The official Concordium Dektop Wallet.*..[ *read more* ](apps/concordium-desktop-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/concordium-desktop-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/concordium-desktop-wallet) | -| | [***cro-chain-desktop-bin***](apps/cro-chain-desktop-bin.md) | *Crypto.com DeFi Desktop Wallet, AppImage version.*..[ *read more* ](apps/cro-chain-desktop-bin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cro-chain-desktop-bin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cro-chain-desktop-bin) | -| | [***dbet-wallet***](apps/dbet-wallet.md) | *DBET Wallet.*..[ *read more* ](apps/dbet-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dbet-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dbet-wallet) | -| | [***defichain-app***](apps/defichain-app.md) | *DefiChain Wallet AppImage.*..[ *read more* ](apps/defichain-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/defichain-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/defichain-app) | -| | [***electrumsvp***](apps/electrumsvp.md) | *Bitcoin BSV wallet, fork of ElectrumSV.*..[ *read more* ](apps/electrumsvp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/electrumsvp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/electrumsvp) | -| | [***elphyre-walletshell***](apps/elphyre-walletshell.md) | *Elphyrecoin GUI Wallet.*..[ *read more* ](apps/elphyre-walletshell.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elphyre-walletshell) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elphyre-walletshell) | -| | [***eximchain-wallet***](apps/eximchain-wallet.md) | *Eximchain Wallet web and electron app.*..[ *read more* ](apps/eximchain-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/eximchain-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/eximchain-wallet) | -| | [***exodus***](apps/exodus.md) | *Send, receive & exchange cryptocurrency. Bitcoin wallet.*..[ *read more* ](apps/exodus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/exodus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/exodus) | -| | [***fat-wallet***](apps/fat-wallet.md) | *Wallet for FAT tokens.*..[ *read more* ](apps/fat-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fat-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fat-wallet) | -| | [***firefly-desktop***](apps/firefly-desktop.md) | *The official IOTA and Shimmer wallet.*..[ *read more* ](apps/firefly-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefly-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefly-desktop) | -| | [***frame-eth-dev***](apps/frame-eth-dev.md) | *A privacy focused Ethereum wallet.*..[ *read more* ](apps/frame-eth-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/frame-eth-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/frame-eth-dev) | -| | [***grinplusplus***](apps/grinplusplus.md) | *A C++ Grin Node & Wallet.*..[ *read more* ](apps/grinplusplus.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/grinplusplus) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/grinplusplus) | -| | [***guarda***](apps/guarda.md) | *A secure, easy-to-use open source multi-platform cryptocurrency wallet.*..[ *read more* ](apps/guarda.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/guarda) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/guarda) | -| | [***keepkey-desktop***](apps/keepkey-desktop.md) | *An all-in-one suite for using your KeepKey hardware wallet.*..[ *read more* ](apps/keepkey-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keepkey-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keepkey-desktop) | -| | [***lbry-desktop***](apps/lbry-desktop.md) | *A browser and wallet for LBRY.*..[ *read more* ](apps/lbry-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lbry-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lbry-desktop) | -| | [***ledger-live-desktop***](apps/ledger-live-desktop.md) | *Ledger Wallet crypto app. Secure your crypto assets such as Bitcoin, Ethereum, XRP, Monero, and more. Give yourself peace of mind by knowing that your cryptocurrencies are safe.*..[ *read more* ](apps/ledger-live-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ledger-live-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ledger-live-desktop) | -| | [***lescovex***](apps/lescovex.md) | *Lescovex decentralized exchange, wallet and contract issuer.*..[ *read more* ](apps/lescovex.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lescovex) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lescovex) | -| | [***lightning***](apps/lightning.md) | *Lightning Wallet Application.*..[ *read more* ](apps/lightning.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lightning) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lightning) | -| | [***lightning-peach-wallet***](apps/lightning-peach-wallet.md) | *Wallet for lightning network*..[ *read more* ](apps/lightning-peach-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lightning-peach-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lightning-peach-wallet) | -| | [***mdl***](apps/mdl.md) | *MDL wallet.*..[ *read more* ](apps/mdl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mdl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mdl) | -| | [***mytonwallet***](apps/mytonwallet.md) | *Feature-rich web wallet and browser extension for TON Network.*..[ *read more* ](apps/mytonwallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mytonwallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mytonwallet) | -| | [***nanovault***](apps/nanovault.md) | *Wallet for interacting with Nano.*..[ *read more* ](apps/nanovault.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nanovault) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nanovault) | -| | [***neon***](apps/neon.md) | *Light wallet for NEO blockchain.*..[ *read more* ](apps/neon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/neon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/neon) | -| | [***nexus-wallet***](apps/nexus-wallet.md) | *Official interface layers of the Nexus Software Stack.*..[ *read more* ](apps/nexus-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nexus-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nexus-wallet) | -| | [***niffler***](apps/niffler.md) | *A grin gui wallet.*..[ *read more* ](apps/niffler.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/niffler) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/niffler) | -| | [***nunchuk***](apps/nunchuk.md) | *Desktop bitcoin wallet with multisig, hardware, nfc and air-gapped key support.*..[ *read more* ](apps/nunchuk.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nunchuk) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nunchuk) | -| | [***nym-wallet***](apps/nym-wallet.md) | *Use the Nym network and take advantage of it.*..[ *read more* ](apps/nym-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/nym-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/nym-wallet) | -| | [***onekey-wallet***](apps/onekey-wallet.md) | *Open source crypto wallet.*..[ *read more* ](apps/onekey-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onekey-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onekey-wallet) | -| | [***owallet***](apps/owallet.md) | *A comprehensive Ontology desktop wallet.*..[ *read more* ](apps/owallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/owallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/owallet) | -| | [***oxen-gui-wallet***](apps/oxen-gui-wallet.md) | *Oxen electron GUI wallet.*..[ *read more* ](apps/oxen-gui-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oxen-gui-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oxen-gui-wallet) | -| | [***parallelcoin***](apps/parallelcoin.md) | *Parallelcoin qt wallet appimage binary.*..[ *read more* ](apps/parallelcoin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parallelcoin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parallelcoin) | -| | [***parity-fether***](apps/parity-fether.md) | *Fether Wallet.*..[ *read more* ](apps/parity-fether.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/parity-fether) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/parity-fether) | -| | [***radix-wallet***](apps/radix-wallet.md) | *Radix DLT desktop wallet.*..[ *read more* ](apps/radix-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/radix-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/radix-wallet) | -| | [***ryowallet***](apps/ryowallet.md) | *Modern GUI interface for Ryo Currency.*..[ *read more* ](apps/ryowallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ryowallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ryowallet) | -| | [***sheikah***](apps/sheikah.md) | *A Witnet compatible desktop wallet.*..[ *read more* ](apps/sheikah.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/sheikah) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/sheikah) | -| | [***simpleos***](apps/simpleos.md) | *EOS Blockchain Interface & Wallet.*..[ *read more* ](apps/simpleos.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/simpleos) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/simpleos) | -| | [***solarwallet***](apps/solarwallet.md) | *Stellar wallet. Secure and user-friendly.*..[ *read more* ](apps/solarwallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/solarwallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/solarwallet) | -| | [***spark-wallet***](apps/spark-wallet.md) | *A wallet GUI for c-lightning, accessible over web/mobile/pc.*..[ *read more* ](apps/spark-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spark-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spark-wallet) | -| | [***stack-wallet***](apps/stack-wallet.md) | *Stack Wallet, a multicoin, cryptocurrency wallet.*..[ *read more* ](apps/stack-wallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/stack-wallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/stack-wallet) | -| | [***trinity-desktop***](apps/trinity-desktop.md) | *Desktop wallet for IOTA.*..[ *read more* ](apps/trinity-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/trinity-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/trinity-desktop) | -| | [***verto***](apps/verto.md) | *A multi-currency crypto wallet with support for EOS & VTX.*..[ *read more* ](apps/verto.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/verto) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/verto) | -| | [***wallettech***](apps/wallettech.md) | *BytechCoin GUI Wallet.*..[ *read more* ](apps/wallettech.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wallettech) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wallettech) | -| | [***whirlpool-gui***](apps/whirlpool-gui.md) | *Desktop GUI for Whirlpool by Samourai-Wallet.*..[ *read more* ](apps/whirlpool-gui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/whirlpool-gui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/whirlpool-gui) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/web-app.md b/web-app.md deleted file mode 100644 index 2393d1820..000000000 --- a/web-app.md +++ /dev/null @@ -1,139 +0,0 @@ -# WEB APP - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **11** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***bauh***](apps/bauh.md) | *GUI for managing AppImage, Arch/AUR, DEBs, Flatpak, Snap and webapps.*..[ *read more* ](apps/bauh.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bauh) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bauh) | -| | [***cowitness***](apps/cowitness.md) | *A powerful web app testing tool that enhances the accuracy and efficiency of your testing efforts.*..[ *read more* ](apps/cowitness.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cowitness) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cowitness) | -| | [***godmode***](apps/godmode.md) | *AI Chat Browser fast, full webapp access to ChatGPT/Claude/Bard/Bing/Llama2.*..[ *read more* ](apps/godmode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/godmode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/godmode) | -| | [***iheartradio-webapp***](apps/iheartradio-webapp.md) | *Election WebApp for iHeartRadio.*..[ *read more* ](apps/iheartradio-webapp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/iheartradio-webapp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/iheartradio-webapp) | -| | [***kanon***](apps/kanon.md) | *Maturita GPJP designed for use with kanon web app.*..[ *read more* ](apps/kanon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kanon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kanon) | -| | [***keyrier-json***](apps/keyrier-json.md) | *A CLI/library/webapp to perfom SQL queries on JSON & CSV.*..[ *read more* ](apps/keyrier-json.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/keyrier-json) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/keyrier-json) | -| | [***onshape***](apps/onshape.md) | *Onshape desktop app, web application shell.*..[ *read more* ](apps/onshape.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/onshape) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/onshape) | -| | [***responsively***](apps/responsively.md) | *A browser for developing responsive web apps.*..[ *read more* ](apps/responsively.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/responsively) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/responsively) | -| | [***spritemate4electron***](apps/spritemate4electron.md) | *A simple Electron-wrapper for Esshahn's awesome Spritemate-webapp.*..[ *read more* ](apps/spritemate4electron.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spritemate4electron) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spritemate4electron) | -| | [***station***](apps/station.md) | *A single place for all of your web applications.*..[ *read more* ](apps/station.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/station) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/station) | -| | [***todesktop***](apps/todesktop.md) | *Take your web app codebase and transform it into a cross platform desktop app with native functionality.*..[ *read more* ](apps/todesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/todesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/todesktop) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/web-browser.md b/web-browser.md deleted file mode 100644 index 7688a63f6..000000000 --- a/web-browser.md +++ /dev/null @@ -1,204 +0,0 @@ -# WEB BROWSER - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **76** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***agregore***](apps/agregore.md) | *A minimal browser for the distributed web, Desktop version.*..[ *read more* ](apps/agregore.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/agregore) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/agregore) | -| | [***archiveweb.page***](apps/archiveweb.page.md) | *A High-Fidelity Web Archiving Extension for Chrome and Chromium based browsers.*..[ *read more* ](apps/archiveweb.page.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/archiveweb.page) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/archiveweb.page) | -| | [***basilisk2***](apps/basilisk2.md) | *Classic Macintosh emulator BasiliskII.*..[ *read more* ](apps/basilisk2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basilisk2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basilisk2) | -| | [***basiliskii-enhanced***](apps/basiliskii-enhanced.md) | *Unofficial, classic Macintosh emulator BasiliskII.*..[ *read more* ](apps/basiliskii-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/basiliskii-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/basiliskii-enhanced) | -| | [***brave***](apps/brave.md) | *Unofficial, a privacy oriented Web Browser based on Chromium, this is the "stable" release.*..[ *read more* ](apps/brave.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave) | -| | [***brave-beta***](apps/brave-beta.md) | *Unofficial, a privacy oriented Web Browser based on Chromium, this is the "beta" release.*..[ *read more* ](apps/brave-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave-beta) | -| | [***brave-nightly***](apps/brave-nightly.md) | *Unofficial, a privacy oriented Web Browser based on Chromium, this is the "nightly" release.*..[ *read more* ](apps/brave-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave-nightly) | -| | [***brave-origin***](apps/brave-origin.md) | *Unofficial, stripped down version of Brave Browser with no extra features.*..[ *read more* ](apps/brave-origin.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brave-origin) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brave-origin) | -| | [***browservice***](apps/browservice.md) | *Browse the modern web on historical browsers.*..[ *read more* ](apps/browservice.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/browservice) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/browservice) | -| | [***brs-emu-app***](apps/brs-emu-app.md) | *BrightScript Emulator, runs on browsers and Electron apps.*..[ *read more* ](apps/brs-emu-app.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/brs-emu-app) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/brs-emu-app) | -| | [***carbonyl***](apps/carbonyl.md) | *Chromium running inside your terminal.*..[ *read more* ](apps/carbonyl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/carbonyl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/carbonyl) | -| | [***catalyst***](apps/catalyst.md) | *Catalyst web browser.*..[ *read more* ](apps/catalyst.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/catalyst) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/catalyst) | -| | [***chromium***](apps/chromium.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, Edge and Brave, stable.*..[ *read more* ](apps/chromium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium) | -| | [***chromium-beta***](apps/chromium-beta.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, beta edition.*..[ *read more* ](apps/chromium-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-beta) | -| | [***chromium-bsu***](apps/chromium-bsu.md) | *Unofficial. Fast paced arcade style scrolling space shooter, game.*..[ *read more* ](apps/chromium-bsu.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-bsu) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-bsu) | -| | [***chromium-edge***](apps/chromium-edge.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, edge edition.*..[ *read more* ](apps/chromium-edge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-edge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-edge) | -| | [***chromium-rc***](apps/chromium-rc.md) | *Unofficial. FOSS Web Browser, base of Google Chrome, release candidate.*..[ *read more* ](apps/chromium-rc.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/chromium-rc) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/chromium-rc) | -| | [***cromite***](apps/cromite.md) | *Unofficial AppImage of the Cromite web browser.*..[ *read more* ](apps/cromite.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/cromite) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/cromite) | -| | [***deskreen***](apps/deskreen.md) | *Turns any device with a web browser into a secondary screen.*..[ *read more* ](apps/deskreen.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/deskreen) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/deskreen) | -| | [***dezor***](apps/dezor.md) | *The web browser including VPN and Adblocker.*..[ *read more* ](apps/dezor.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/dezor) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/dezor) | -| | [***elzabrowser***](apps/elzabrowser.md) | *Elza incognito web browser.*..[ *read more* ](apps/elzabrowser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/elzabrowser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/elzabrowser) | -| | [***falkon***](apps/falkon.md) | *Unofficial. A fast Qt web browser from KDE.*..[ *read more* ](apps/falkon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/falkon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/falkon) | -| | [***fifo***](apps/fifo.md) | *A modern web browser, built on top of modern web technologies.*..[ *read more* ](apps/fifo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fifo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fifo) | -| | [***filebrowser***](apps/filebrowser.md) | *Web File Browser.*..[ *read more* ](apps/filebrowser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filebrowser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filebrowser) | -| | [***filebrowser-quantum***](apps/filebrowser-quantum.md) | *Web File Browser.*..[ *read more* ](apps/filebrowser-quantum.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/filebrowser-quantum) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/filebrowser-quantum) | -| | [***firedragon***](apps/firedragon.md) | *A web browser based on Floorp (the Vivaldi of Firefox's) with many opiniated settings by default.*..[ *read more* ](apps/firedragon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firedragon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firedragon) | -| | [***firefox***](apps/firefox.md) | *Fast, powerful and extensible Web Browser, Stable.*..[ *read more* ](apps/firefox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox) | -| | [***firefox-beta***](apps/firefox-beta.md) | *Fast, powerful and extensible Web Browser, Beta Edition.*..[ *read more* ](apps/firefox-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-beta) | -| | [***firefox-devedition***](apps/firefox-devedition.md) | *Fast, powerful and extensible Web Browser, Developer Edition.*..[ *read more* ](apps/firefox-devedition.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-devedition) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-devedition) | -| | [***firefox-esr***](apps/firefox-esr.md) | *Fast, powerful and extensible Web Browser, ESR Edition.*..[ *read more* ](apps/firefox-esr.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-esr) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-esr) | -| | [***firefox-nightly***](apps/firefox-nightly.md) | *Fast, powerful and extensible Web Browser, Nightly Edition.*..[ *read more* ](apps/firefox-nightly.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/firefox-nightly) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/firefox-nightly) | -| | [***floorp***](apps/floorp.md) | *Floorp Web Browser, the most Advanced and Fastest Firefox derivative.*..[ *read more* ](apps/floorp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/floorp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/floorp) | -| | [***godmode***](apps/godmode.md) | *AI Chat Browser fast, full webapp access to ChatGPT/Claude/Bard/Bing/Llama2.*..[ *read more* ](apps/godmode.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/godmode) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/godmode) | -| | [***google-chrome***](apps/google-chrome.md) | *Unofficial, Web Browser, Stable version.*..[ *read more* ](apps/google-chrome.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-chrome) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-chrome) | -| | [***google-chrome-beta***](apps/google-chrome-beta.md) | *Unofficial, Web Browser, Beta version.*..[ *read more* ](apps/google-chrome-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-chrome-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-chrome-beta) | -| | [***google-chrome-dev***](apps/google-chrome-dev.md) | *Unofficial, Web Browser, Unstable version.*..[ *read more* ](apps/google-chrome-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/google-chrome-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/google-chrome-dev) | -| | [***helium***](apps/helium.md) | *The Chromium-based web browser made for people, with love. Best privacy by default, unbiased ad-blocking, no bloat and no noise.*..[ *read more* ](apps/helium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/helium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/helium) | -| | [***icecat***](apps/icecat.md) | *GNU IceCat is the GNU version of the Firefox web browser.*..[ *read more* ](apps/icecat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/icecat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/icecat) | -| | [***kiwix***](apps/kiwix.md) | *An offline reader for Web content, primarily designed to make Wikipedia available offline. It reads archives in the ZIM file format, a highly compressed open format with additional metadata.*..[ *read more* ](apps/kiwix.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kiwix) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kiwix) | -| | [***ladybird***](apps/ladybird.md) | *A truly independent web browser, using a novel engine based on web standards.*..[ *read more* ](apps/ladybird.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ladybird) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ladybird) | -| | [***librewolf***](apps/librewolf.md) | *Firefox-based Web Browser focused on privacy, security, freedom.*..[ *read more* ](apps/librewolf.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/librewolf) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/librewolf) | -| | [***mercury***](apps/mercury.md) | *Firefox fork with compiler optimizations and patches from Librewolf.*..[ *read more* ](apps/mercury.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mercury) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mercury) | -| | [***microsoft-edge***](apps/microsoft-edge.md) | *Web Browser provided by Microsoft, Stable Edition.*..[ *read more* ](apps/microsoft-edge.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/microsoft-edge) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/microsoft-edge) | -| | [***microsoft-edge-beta***](apps/microsoft-edge-beta.md) | *Web Browser provided by Microsoft, Beta Edition.*..[ *read more* ](apps/microsoft-edge-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/microsoft-edge-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/microsoft-edge-beta) | -| | [***microsoft-edge-dev***](apps/microsoft-edge-dev.md) | *Web Browser provided by Microsoft, Developer Edition.*..[ *read more* ](apps/microsoft-edge-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/microsoft-edge-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/microsoft-edge-dev) | -| | [***midori***](apps/midori.md) | *Surf lightly, quickly and safely with Midori Web Browser.*..[ *read more* ](apps/midori.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/midori) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/midori) | -| | [***mullvad-browser***](apps/mullvad-browser.md) | *A Tor-based Web Browser.*..[ *read more* ](apps/mullvad-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mullvad-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mullvad-browser) | -| | [***mytonwallet***](apps/mytonwallet.md) | *Feature-rich web wallet and browser extension for TON Network.*..[ *read more* ](apps/mytonwallet.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/mytonwallet) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/mytonwallet) | -| | [***ncsa-mosaic***](apps/ncsa-mosaic.md) | *One of the first graphical web browsers.*..[ *read more* ](apps/ncsa-mosaic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ncsa-mosaic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ncsa-mosaic) | -| | [***oneweb***](apps/oneweb.md) | *OneWeb - free, private and secure web browser! POLSKA GUROM.*..[ *read more* ](apps/oneweb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/oneweb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/oneweb) | -| | [***open-ai-translator***](apps/open-ai-translator.md) | *Browser extension for translation based on ChatGPT API.*..[ *read more* ](apps/open-ai-translator.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-ai-translator) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-ai-translator) | -| | [***opera***](apps/opera.md) | *Unofficial. Fast and secure web browser, Stable version.*..[ *read more* ](apps/opera.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opera) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opera) | -| | [***opera-beta***](apps/opera-beta.md) | *Unofficial. Fast and secure web browser, Beta version.*..[ *read more* ](apps/opera-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opera-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opera-beta) | -| | [***opera-dev***](apps/opera-dev.md) | *Unofficial. Fast and secure web browser, Developer version.*..[ *read more* ](apps/opera-dev.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/opera-dev) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/opera-dev) | -| | [***palemoon***](apps/palemoon.md) | *Unofficial. Pale Moon is a fully-independent web browser built on its own maintained platform and rendering engine (Goanna), focusing on user customization.*..[ *read more* ](apps/palemoon.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/palemoon) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/palemoon) | -| | [***palemoon-legacy***](apps/palemoon-legacy.md) | *Unofficial. Pale Moon is a fully-independent web browser built on its own maintained platform and rendering engine (Goanna), focusing on user customization. This is the GTK2 implementation.*..[ *read more* ](apps/palemoon-legacy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/palemoon-legacy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/palemoon-legacy) | -| | [***polypane***](apps/polypane.md) | *Browser for web developers.*..[ *read more* ](apps/polypane.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/polypane) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/polypane) | -| | [***programmer-browser***](apps/programmer-browser.md) | *A fast-searching and space-saving browser specially designed for programmers.*..[ *read more* ](apps/programmer-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/programmer-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/programmer-browser) | -| | [***promethium***](apps/promethium.md) | *Extensible and innovative web browser with built-in AdBlock.*..[ *read more* ](apps/promethium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/promethium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/promethium) | -| | [***responsively***](apps/responsively.md) | *A browser for developing responsive web apps.*..[ *read more* ](apps/responsively.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/responsively) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/responsively) | -| | [***servo***](apps/servo.md) | *Unofficial AppImage builds of the Servo web browser engine.*..[ *read more* ](apps/servo.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/servo) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/servo) | -| | [***theweb***](apps/theweb.md) | *Web Browser.*..[ *read more* ](apps/theweb.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/theweb) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/theweb) | -| | [***thorium***](apps/thorium.md) | *Web Browser, a Chromium fork including Widevine and FFmpeg support.*..[ *read more* ](apps/thorium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/thorium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/thorium) | -| | [***tor-browser***](apps/tor-browser.md) | *Privacy-oriented Web Browser for sites blocked in your country.*..[ *read more* ](apps/tor-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tor-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tor-browser) | -| | [***tor-browser-alpha***](apps/tor-browser-alpha.md) | *Privacy-oriented Web Browser for sites blocked in your country.*..[ *read more* ](apps/tor-browser-alpha.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/tor-browser-alpha) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/tor-browser-alpha) | -| | [***ungoogled-chromium***](apps/ungoogled-chromium.md) | *Chromium Web Browser without Google services.*..[ *read more* ](apps/ungoogled-chromium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ungoogled-chromium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ungoogled-chromium) | -| | [***varia***](apps/varia.md) | *Unofficial. Aria2-based advanced download manager with support for downloading files, torrents, video and audio + support for Chromium and Firefox extension.*..[ *read more* ](apps/varia.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/varia) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/varia) | -| | [***viper-browser***](apps/viper-browser.md) | *Fast and lightweight Qt web browser.*..[ *read more* ](apps/viper-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/viper-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/viper-browser) | -| | [***vivaldi-snapshot***](apps/vivaldi-snapshot.md) | *Unofficial. Advanced Web Browser, Testing Version.*..[ *read more* ](apps/vivaldi-snapshot.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vivaldi-snapshot) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vivaldi-snapshot) | -| | [***vivaldi-stable***](apps/vivaldi-stable.md) | *Unofficial. Advanced Web Browser, Stable Version.*..[ *read more* ](apps/vivaldi-stable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/vivaldi-stable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/vivaldi-stable) | -| | [***waterfox***](apps/waterfox.md) | *A privacy-focused web browser engineered to give you speed, control, and peace of mind on the internet.*..[ *read more* ](apps/waterfox.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/waterfox) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/waterfox) | -| | [***wexond***](apps/wexond.md) | *Extensible, fast and innovative web browser with material UI.*..[ *read more* ](apps/wexond.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wexond) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wexond) | -| | [***yandex-browser***](apps/yandex-browser.md) | *Unofficial Yandex Browser AppImage, Stable.*..[ *read more* ](apps/yandex-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yandex-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yandex-browser) | -| | [***yandex-browser-beta***](apps/yandex-browser-beta.md) | *Unofficial Yandex Browser AppImage, Beta.*..[ *read more* ](apps/yandex-browser-beta.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yandex-browser-beta) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yandex-browser-beta) | -| | [***yandex-browser-corporate***](apps/yandex-browser-corporate.md) | *Unofficial Yandex Browser AppImage, Corporate.*..[ *read more* ](apps/yandex-browser-corporate.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yandex-browser-corporate) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yandex-browser-corporate) | -| | [***zen-browser***](apps/zen-browser.md) | *Experience tranquillity while browsing the web without tracking.*..[ *read more* ](apps/zen-browser.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/zen-browser) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/zen-browser) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/wiki.html b/wiki.html new file mode 100644 index 000000000..4f381bf71 --- /dev/null +++ b/wiki.html @@ -0,0 +1,143 @@ + + + + + + Wiki - PORTABLE LINUX APPS + + + + + + + + + + + + + + + + +
    + +
    +

    Wiki

    +
    + +
    + +

    External links index

    +

    All the guides listed here are available at github.com/ivan-hc/AM

    + + + +

    Instructions for Linux Distro Maintainers

    + +

    Troubleshooting

    + + +
    + +

    Related projects

    + +

    Side Projects

    +
      +
    • amcheck — checks the validity of scripts in this database and monitors the availability of AppImages
    • +
    • am-extras — lists applications from third-party databases
    • +
    • am-gui — a graphical Front for AM, by @Shikakiben
    • +
    • vappman — a visual (curses) TUI interface to AppMan, by @joedefen
    • +
    + +

    My other projects

    +
      +
    • AppImaGen — easily create AppImages from Ubuntu PPAs or Debian using pkg2appimage and appimagetool
    • +
    • ArchImage — create AppImages for all distributions using Arch Linux packages. Powered by JuNest
    • +
    • Firefox for Linux scripts — easily install the official releases of Firefox for Linux
    • +
    • My AppImage packages — the complete list of packages managed by me and available in this database
    • +
    • portable2appimage — convert standalone, self-contained portable apps into AppImage packages
    • +
    • Snap2AppImage — try to convert Snap packages to AppImages
    • +
    + +

    ← Back to home

    +
    +
    + +
    + + + + diff --git a/wine.md b/wine.md deleted file mode 100644 index cdaaf49cf..000000000 --- a/wine.md +++ /dev/null @@ -1,141 +0,0 @@ -# WINE - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **13** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***bottles***](apps/bottles.md) | *Unofficial. Manage wine prefixes and run Windows software & games in a new way.*..[ *read more* ](apps/bottles.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/bottles) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/bottles) | -| | [***foobar2000***](apps/foobar2000.md) | *Unofficial, an advanced freeware audio player for Windows, includes WINE.*..[ *read more* ](apps/foobar2000.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/foobar2000) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/foobar2000) | -| | [***lutris***](apps/lutris.md) | *Unofficial. Install and play video games from all eras and from most gaming systems, by leveraging and combining existing emulators, WINE included.*..[ *read more* ](apps/lutris.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/lutris) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/lutris) | -| | [***notepad++***](apps/notepad++.md) | *Unofficial Appimage of Notepad++, with WINE prefix.*..[ *read more* ](apps/notepad++.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/notepad++) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/notepad++) | -| | [***protonup-qt***](apps/protonup-qt.md) | *Manage Proton-GE/Luxtorpeda for Steam/Wine-GE for Lutris.*..[ *read more* ](apps/protonup-qt.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/protonup-qt) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/protonup-qt) | -| | [***undertaker141***](apps/undertaker141.md) | *A free and open-source game-center for linux. Pre-configured Wine and Native Games for Linux.*..[ *read more* ](apps/undertaker141.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/undertaker141) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/undertaker141) | -| | [***visipics***](apps/visipics.md) | *Windows software to find and remove duplicate pictures. Unofficial AppImage built using "wine32-deploy" and powered by "wine".*..[ *read more* ](apps/visipics.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/visipics) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/visipics) | -| | [***wine***](apps/wine.md) | *Unofficial. Run Windows programs, select a version from mmtrt/WINE_AppImage.*..[ *read more* ](apps/wine.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine) | -| | [***wine-devel***](apps/wine-devel.md) | *Unofficial. Compatibility layer to run x86_64 Windows programs, Dev Edition.*..[ *read more* ](apps/wine-devel.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-devel) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-devel) | -| | [***wine-stable***](apps/wine-stable.md) | *Unofficial. Compatibility layer to run x86_64 Windows programs, Stable.*..[ *read more* ](apps/wine-stable.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-stable) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-stable) | -| | [***wine-staging***](apps/wine-staging.md) | *Unofficial. Compatibility layer to run x86_64 Windows programs, Staging.*..[ *read more* ](apps/wine-staging.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-staging) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-staging) | -| | [***wine-staging-ge-proton***](apps/wine-staging-ge-proton.md) | *Unofficial. Run x86_64 Windows programs, Staging GE Proton.*..[ *read more* ](apps/wine-staging-ge-proton.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine-staging-ge-proton) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine-staging-ge-proton) | -| | [***wine32-deploy***](apps/wine32-deploy.md) | *Tool for creating AppImages for 32-bit Microsoft Windows apps.*..[ *read more* ](apps/wine32-deploy.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/wine32-deploy) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/wine32-deploy) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - - diff --git a/youtube.md b/youtube.md deleted file mode 100644 index de1339011..000000000 --- a/youtube.md +++ /dev/null @@ -1,160 +0,0 @@ -# YOUTUBE - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - -#### Here are listed **32** programs for this category. - - - - -#### *Categories* - -
    - AppImages - - ai - - am-utils - - android - - appimage-on-the-fly - - audio - - comic - - command-line - - communication - - disk - - education - - emulator - - file-manager - - finance - - game - - gnome - - graphic - - internet - - kde - - metapackages - - office - - password - - Portable - - portable-cli - - portable-desktop - - steam - - system-monitor - - video - - virtual-machine - - wallet - - web-app - - web-browser - - wine - - youtube -
    - ------------------ - -***NOTE, Installer scripts (blob/raw) are provided for reading only: do not run them manually! Use "[AM](https://github.com/ivan-hc/AM)" or "[AppMan](https://github.com/ivan-hc/AppMan)" instead.*** - ------------------ - -| ICON | PACKAGE NAME | DESCRIPTION | INSTALLER | -| --- | --- | --- | --- | -| | [***arcdlp***](apps/arcdlp.md) | *Open-source desktop video downloader powered by yt-dlp and electron. Download videos and audio from YouTube, Vimeo, Twitter, and thousands of sites.*..[ *read more* ](apps/arcdlp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/arcdlp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/arcdlp) | -| | [***blob-dl***](apps/blob-dl.md) | *Blob-dl is a yt-dlp CLI interface used to download video and audio files from YouTube.*..[ *read more* ](apps/blob-dl.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/blob-dl) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/blob-dl) | -| | [***fraidycat***](apps/fraidycat.md) | *Follow blogs, wikis, YouTube, Twitter, Reddit, Instagram and more.*..[ *read more* ](apps/fraidycat.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/fraidycat) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/fraidycat) | -| | [***freetube***](apps/freetube.md) | *An Open Source YouTube app for privacy.*..[ *read more* ](apps/freetube.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freetube) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freetube) | -| | [***freetube-enhanced***](apps/freetube-enhanced.md) | *Unofficial, An Open Source YouTube app for privacy.*..[ *read more* ](apps/freetube-enhanced.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/freetube-enhanced) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/freetube-enhanced) | -| | [***gharmonize***](apps/gharmonize.md) | *A cross-platform media conversion app with a built-in YouTube downloader and Spotify downloader, powered by yt-dlp and ffmpeg — now featuring FPS adaptation support for AC3, EAC3, and AAC codecs.*..[ *read more* ](apps/gharmonize.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/gharmonize) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/gharmonize) | -| | [***kadium***](apps/kadium.md) | *App for staying ontop of YouTube channels' uploads.*..[ *read more* ](apps/kadium.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kadium) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kadium) | -| | [***kiku***](apps/kiku.md) | *Play music from youtube on desktop. Supports local api, invidious and piped as source.*..[ *read more* ](apps/kiku.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/kiku) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/kiku) | -| | [***media-dupes***](apps/media-dupes.md) | *Content duplicator for common media services like YouTube.*..[ *read more* ](apps/media-dupes.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/media-dupes) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/media-dupes) | -| | [***moonplayer***](apps/moonplayer.md) | *AIO video player to play Youtube, Bilibili... and local videos.*..[ *read more* ](apps/moonplayer.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moonplayer) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moonplayer) | -| | [***moosync***](apps/moosync.md) | *Music player capable of playing local audio or from Youtube/Spotify.*..[ *read more* ](apps/moosync.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/moosync) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/moosync) | -| | [***open-video-downloader***](apps/open-video-downloader.md) | *A cross-platform GUI for youtube-dl made in Electron.*..[ *read more* ](apps/open-video-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/open-video-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/open-video-downloader) | -| | [***playme***](apps/playme.md) | *Elegant YouTube Music desktop app.*..[ *read more* ](apps/playme.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/playme) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/playme) | -| | [***spmp***](apps/spmp.md) | *A YouTube Music client with a focus on customisation of colours and song metadata.*..[ *read more* ](apps/spmp.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/spmp) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/spmp) | -| | [***xgetter***](apps/xgetter.md) | *Download video on Youtube, Facebook, X(Twitter), Instagram, Tiktok, Bilibili, Douyin and more.*..[ *read more* ](apps/xgetter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xgetter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xgetter) | -| | [***xtuber***](apps/xtuber.md) | *Simple YouTube Downloader.*..[ *read more* ](apps/xtuber.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/xtuber) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/xtuber) | -| | [***yangdownloader***](apps/yangdownloader.md) | *Downloads best-quality audio and video from YouTube.*..[ *read more* ](apps/yangdownloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yangdownloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yangdownloader) | -| | [***ym-desktop***](apps/ym-desktop.md) | *The YouTube music desktop app.*..[ *read more* ](apps/ym-desktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ym-desktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ym-desktop) | -| | [***youplaytx***](apps/youplaytx.md) | *A full-screen, dual-pane YouTube audio player for the terminal.*..[ *read more* ](apps/youplaytx.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youplaytx) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youplaytx) | -| | [***youtube-download***](apps/youtube-download.md) | *GUI and CLI for downloading YouTube video/audio.*..[ *read more* ](apps/youtube-download.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-download) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-download) | -| | [***youtube-downloader***](apps/youtube-downloader.md) | *Download video/audio from youtube (and instagram) videos.*..[ *read more* ](apps/youtube-downloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-downloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-downloader) | -| | [***youtube-music***](apps/youtube-music.md) | *Unofficial. Amazing electron wrapper for YouTube Music featuring plugins.*..[ *read more* ](apps/youtube-music.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-music) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-music) | -| | [***youtube-tui***](apps/youtube-tui.md) | *An aesthetically pleasing YouTube TUI CLI written in Rust.*..[ *read more* ](apps/youtube-tui.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtube-tui) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtube-tui) | -| | [***youtubeanddownloader***](apps/youtubeanddownloader.md) | *An app to use youtube and download videos as mp3s or mp4s.*..[ *read more* ](apps/youtubeanddownloader.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtubeanddownloader) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtubeanddownloader) | -| | [***youtubesearchfilter***](apps/youtubesearchfilter.md) | *YouTube searches with/without a pre-filter from CLI.*..[ *read more* ](apps/youtubesearchfilter.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/youtubesearchfilter) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/youtubesearchfilter) | -| | [***yt-dlandcut***](apps/yt-dlandcut.md) | *Download and cut Youtube videos by providing url and time range.*..[ *read more* ](apps/yt-dlandcut.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yt-dlandcut) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yt-dlandcut) | -| | [***yt-dlg***](apps/yt-dlg.md) | *A front-end GUI of the popular youtube-dl written in wxPython.*..[ *read more* ](apps/yt-dlg.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/yt-dlg) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/yt-dlg) | -| | [***ytarchive***](apps/ytarchive.md) | *Garbage Youtube livestream downloader CLI.*..[ *read more* ](apps/ytarchive.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytarchive) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytarchive) | -| | [***ytermusic***](apps/ytermusic.md) | *An in terminal youtube music client with focus on privacy, simplicity and performance.*..[ *read more* ](apps/ytermusic.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytermusic) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytermusic) | -| | [***ytmdesktop***](apps/ytmdesktop.md) | *A Desktop App for YouTube Music.*..[ *read more* ](apps/ytmdesktop.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytmdesktop) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytmdesktop) | -| | [***ytmdesktop2***](apps/ytmdesktop2.md) | *Unofficial Youtube Music Desktop App, with LastFM support.*..[ *read more* ](apps/ytmdesktop2.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytmdesktop2) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytmdesktop2) | -| | [***ytsage***](apps/ytsage.md) | *Modern YouTube downloader with a clean PySide6 interface. Download videos in any quality, extract audio, fetch subtitles, sponsorBlock, and view video metadata. Built with yt-dlp for reliable performance.*..[ *read more* ](apps/ytsage.md)*!* | [*blob*](https://github.com/ivan-hc/AM/blob/main/programs/x86_64/ytsage) **/** [*raw*](https://raw.githubusercontent.com/ivan-hc/AM/main/programs/x86_64/ytsage) | - - ---- - -You can improve these pages via a [pull request](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io/pulls) to this site's [GitHub repository](https://github.com/Portable-Linux-Apps/Portable-Linux-Apps.github.io), or report any problems related to the installation scripts in the '[issue](https://github.com/ivan-hc/AM/issues)' section of the main database, at [https://github.com/ivan-hc/AM](https://github.com/ivan-hc/AM). - -***PORTABLE-LINUX-APPS.github.io is my gift to the Linux community and was made with love for GNU/Linux and the Open Source philosophy.*** - ---- - -| [Back to Home](index.md) | [Back to Applications](apps.md) -| --- | --- | - --------- - -# Contacts -- **Ivan-HC** *on* [**GitHub**](https://github.com/ivan-hc) -- **AM-Ivan** *on* [**Reddit**](https://www.reddit.com/u/am-ivan) - -###### *You can support me and my work on [**ko-fi.com**](https://ko-fi.com/IvanAlexHC) and [**PayPal.me**](https://paypal.me/IvanAlexHC). Thank you!* - --------- - -*© 2020-present Ivan Alessandro Sala aka 'Ivan-HC'* - I'm here just for fun! - -